|
@@ -575,7 +575,7 @@ export class View extends Module {
|
|
|
}
|
|
|
|
|
|
Text.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
fontSize: new Types.Integer(),
|
|
|
fontWeight: new Types.Text(),
|
|
|
fontFamily: new Types.Text(),
|
|
@@ -584,19 +584,19 @@ Text.Inputs = {
|
|
|
content: new Types.Text().default("Hello world!")
|
|
|
}
|
|
|
Accordion.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Actionsheet.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Body.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Button.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
text: new Types.Text().default("Press me"),
|
|
|
onPress: new Types.Action(),
|
|
|
block: new Types.Bool(),
|
|
@@ -614,7 +614,7 @@ Button.Inputs = {
|
|
|
active: new Types.Bool()
|
|
|
}
|
|
|
Badge.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
icon: new Types.Text(),
|
|
|
text: new Types.Text().require().default("1"),
|
|
|
color: new Types.Text().color().require().default("rgba(255,255,255,1)"),
|
|
@@ -625,7 +625,7 @@ Badge.Inputs = {
|
|
|
info: new Types.Bool()
|
|
|
}
|
|
|
Card.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
header: new Types.Text().default("Header"),
|
|
|
body: new Types.Text().default("Lorem ipsum body bla la trapala"),
|
|
|
footer: new Types.Text().default("Add footer here"),
|
|
@@ -634,82 +634,82 @@ Card.Inputs = {
|
|
|
|
|
|
}
|
|
|
CardItem.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
header: new Types.Bool(),
|
|
|
cardBody: new Types.Bool(),
|
|
|
footer: new Types.Bool(),
|
|
|
button: new Types.Bool()
|
|
|
}
|
|
|
Checkbox.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
checked: new Types.Bool()
|
|
|
}
|
|
|
Container.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Content.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
disableKBDismissScroll: new Types.Bool(),
|
|
|
keyboardShouldPersistTaps: new Types.Text(),
|
|
|
padder: new Types.Bool()
|
|
|
}
|
|
|
DatePicker.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
DeckSwiper.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Fab.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Footer.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
FooterTab.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Form.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
inputs: new Types.Array(new Types.Text()),
|
|
|
button: new Types.Text().default('Submit'),
|
|
|
onSubmit: new Types.Action()
|
|
|
}
|
|
|
Gravatar.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
email: new Types.Text().require(),
|
|
|
size: new Types.Real(),
|
|
|
circular: new Types.Bool(),
|
|
|
square: new Types.Bool()
|
|
|
}
|
|
|
H1.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
...Text.Inputs
|
|
|
}
|
|
|
H2.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
...Text.Inputs
|
|
|
}
|
|
|
H3.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
...Text.Inputs
|
|
|
}
|
|
|
Header.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
searchBar: new Types.Bool(),
|
|
|
rounded: new Types.Bool()
|
|
|
}
|
|
|
IconNB.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Item.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
mod: new Types.Module(),
|
|
|
inlineLabel: new Types.Bool(),
|
|
|
floatingLabel: new Types.Bool(),
|
|
@@ -719,13 +719,13 @@ Item.Inputs = {
|
|
|
error: new Types.Bool()
|
|
|
}
|
|
|
Input.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
icon: new Types.Text(),
|
|
|
placeholder: new Types.Text(),
|
|
|
...Item.Inputs
|
|
|
}
|
|
|
InputGroup.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
regular: new Types.Bool(),
|
|
|
underline: new Types.Bool(),
|
|
|
rounded: new Types.Bool(),
|
|
@@ -734,103 +734,103 @@ InputGroup.Inputs = {
|
|
|
disabled: new Types.Bool()
|
|
|
}
|
|
|
Label.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
floatBack: new Types.Real()
|
|
|
}
|
|
|
Left.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
List.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
ListItem.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
itemDivider: new Types.Bool(),
|
|
|
button: new Types.Bool()
|
|
|
}
|
|
|
PickerItem.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Radio.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
selected: new Types.Bool(),
|
|
|
standardStyle: new Types.Bool()
|
|
|
}
|
|
|
Right.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Root.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Segment.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Separator.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Spinner.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
color: new Types.Text(),
|
|
|
inverse: new Types.Bool()
|
|
|
}
|
|
|
Subtitle.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
SwipeRow.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Switch.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Tab.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
TabContainer.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
TabHeading.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Textarea.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
placeholder: new Types.Text(),
|
|
|
rowSpan: new Types.Real(),
|
|
|
bordered: new Types.Bool(),
|
|
|
underline: new Types.Bool()
|
|
|
}
|
|
|
Thumbnail.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
square: new Types.Bool(),
|
|
|
circular: new Types.Bool(),
|
|
|
size: new Types.Real()
|
|
|
}
|
|
|
Title.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
Toast.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
ToastContainer.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
View.Inputs = {
|
|
|
- ...Module.Inputs,
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|