@telus-uds/components-base 1.18.1 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -2
- package/__tests17__/ThemeProvider/ThemeProvider.test.jsx +2 -1
- package/component-docs.json +1035 -231
- package/jest.config-android.js +17 -0
- package/jest.config-ios.js +18 -0
- package/jest.config-web.js +31 -0
- package/lib/BaseProvider/index.js +2 -1
- package/lib/Box/Box.js +14 -1
- package/lib/Button/ButtonBase.js +6 -2
- package/lib/Button/ButtonDropdown.js +207 -0
- package/lib/Button/index.js +8 -0
- package/lib/Carousel/Carousel.js +34 -6
- package/lib/Carousel/CarouselItem/CarouselItem.js +7 -1
- package/lib/Carousel/CarouselTabs/CarouselTabsPanel.js +22 -14
- package/lib/FlexGrid/Col/Col.js +1 -3
- package/lib/FlexGrid/FlexGrid.js +3 -5
- package/lib/FlexGrid/Row/Row.js +3 -3
- package/lib/IconButton/IconButton.js +12 -4
- package/lib/MultiSelectFilter/MultiSelectFilter.js +276 -0
- package/lib/MultiSelectFilter/dictionary.js +19 -0
- package/lib/MultiSelectFilter/index.js +13 -0
- package/lib/Pagination/SideButton.js +6 -4
- package/lib/Responsive/Responsive.js +58 -0
- package/lib/Responsive/index.js +13 -0
- package/lib/Search/Search.js +33 -63
- package/lib/Select/Picker.native.js +16 -13
- package/lib/Select/Select.js +7 -1
- package/lib/Select/constants.js +15 -0
- package/lib/StepTracker/Step.js +2 -1
- package/lib/Tags/Tags.js +10 -4
- package/lib/TextInput/TextInput.js +9 -2
- package/lib/TextInput/TextInputBase.js +98 -20
- package/lib/TextInput/dictionary.js +15 -0
- package/lib/ThemeProvider/ThemeProvider.js +6 -1
- package/lib/index.js +18 -0
- package/lib/utils/BaseView/BaseView.js +64 -0
- package/lib/utils/BaseView/BaseView.native.js +16 -0
- package/lib/utils/BaseView/index.js +13 -0
- package/lib/utils/index.js +10 -1
- package/lib/utils/input.js +11 -3
- package/lib/utils/props/handlerProps.js +5 -0
- package/lib-module/BaseProvider/index.js +2 -1
- package/lib-module/Box/Box.js +14 -1
- package/lib-module/Button/ButtonBase.js +6 -2
- package/lib-module/Button/ButtonDropdown.js +181 -0
- package/lib-module/Button/index.js +2 -1
- package/lib-module/Carousel/Carousel.js +34 -6
- package/lib-module/Carousel/CarouselItem/CarouselItem.js +8 -2
- package/lib-module/Carousel/CarouselTabs/CarouselTabsPanel.js +24 -16
- package/lib-module/FlexGrid/Col/Col.js +2 -3
- package/lib-module/FlexGrid/FlexGrid.js +2 -3
- package/lib-module/FlexGrid/Row/Row.js +2 -2
- package/lib-module/IconButton/IconButton.js +14 -4
- package/lib-module/MultiSelectFilter/MultiSelectFilter.js +248 -0
- package/lib-module/MultiSelectFilter/dictionary.js +12 -0
- package/lib-module/MultiSelectFilter/index.js +2 -0
- package/lib-module/Pagination/SideButton.js +6 -4
- package/lib-module/Responsive/Responsive.js +45 -0
- package/lib-module/Responsive/index.js +2 -0
- package/lib-module/Search/Search.js +33 -61
- package/lib-module/Select/Picker.native.js +15 -13
- package/lib-module/Select/Select.js +6 -1
- package/lib-module/Select/constants.js +5 -0
- package/lib-module/StepTracker/Step.js +2 -1
- package/lib-module/Tags/Tags.js +10 -4
- package/lib-module/TextInput/TextInput.js +6 -0
- package/lib-module/TextInput/TextInputBase.js +96 -21
- package/lib-module/TextInput/dictionary.js +8 -0
- package/lib-module/ThemeProvider/ThemeProvider.js +6 -1
- package/lib-module/index.js +2 -0
- package/lib-module/utils/BaseView/BaseView.js +43 -0
- package/lib-module/utils/BaseView/BaseView.native.js +6 -0
- package/lib-module/utils/BaseView/index.js +2 -0
- package/lib-module/utils/index.js +2 -1
- package/lib-module/utils/input.js +11 -3
- package/lib-module/utils/props/handlerProps.js +5 -0
- package/package.json +6 -3
- package/src/BaseProvider/index.jsx +4 -1
- package/src/Box/Box.jsx +14 -1
- package/src/Button/ButtonBase.jsx +4 -2
- package/src/Button/ButtonDropdown.jsx +179 -0
- package/src/Button/index.js +2 -1
- package/src/Carousel/Carousel.jsx +48 -13
- package/src/Carousel/CarouselItem/CarouselItem.jsx +9 -2
- package/src/Carousel/CarouselTabs/CarouselTabsPanel.jsx +19 -15
- package/src/FlexGrid/Col/Col.jsx +4 -4
- package/src/FlexGrid/FlexGrid.jsx +11 -10
- package/src/FlexGrid/Row/Row.jsx +4 -3
- package/src/IconButton/IconButton.jsx +3 -1
- package/src/MultiSelectFilter/MultiSelectFilter.jsx +227 -0
- package/src/MultiSelectFilter/dictionary.js +12 -0
- package/src/MultiSelectFilter/index.js +3 -0
- package/src/Pagination/SideButton.jsx +5 -5
- package/src/Responsive/Responsive.jsx +33 -0
- package/src/Responsive/index.js +3 -0
- package/src/Search/Search.jsx +19 -33
- package/src/Select/Picker.native.jsx +29 -14
- package/src/Select/Select.jsx +7 -1
- package/src/Select/constants.js +5 -0
- package/src/StepTracker/Step.jsx +5 -1
- package/src/Tags/Tags.jsx +46 -33
- package/src/TextInput/TextInput.jsx +5 -0
- package/src/TextInput/TextInputBase.jsx +85 -20
- package/src/TextInput/dictionary.js +8 -0
- package/src/ThemeProvider/ThemeProvider.jsx +5 -1
- package/src/index.js +2 -0
- package/src/utils/BaseView/BaseView.jsx +38 -0
- package/src/utils/BaseView/BaseView.native.jsx +6 -0
- package/src/utils/BaseView/index.js +3 -0
- package/src/utils/index.js +1 -0
- package/src/utils/input.js +9 -4
- package/src/utils/props/handlerProps.js +4 -0
package/component-docs.json
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"color": "color"
|
|
8
8
|
},
|
|
9
9
|
"Box": {
|
|
10
|
-
"backgroundColor": "color"
|
|
10
|
+
"backgroundColor": "color",
|
|
11
|
+
"gradient": "gradient"
|
|
11
12
|
},
|
|
12
13
|
"Button": {
|
|
13
14
|
"borderColor": "color",
|
|
@@ -35,6 +36,44 @@
|
|
|
35
36
|
"outerBorderColor": "color",
|
|
36
37
|
"outerBorderWidth": "border",
|
|
37
38
|
"outerBorderGap": "size",
|
|
39
|
+
"outerBackgroundColor": "color",
|
|
40
|
+
"textLine": "textLine",
|
|
41
|
+
"textLineStyle": "textLineStyle"
|
|
42
|
+
},
|
|
43
|
+
"ButtonDropdown": {
|
|
44
|
+
"icon": "icon",
|
|
45
|
+
"iconPosition": "position",
|
|
46
|
+
"iconSpace": "integer",
|
|
47
|
+
"iconSize": "size",
|
|
48
|
+
"iconColor": "color",
|
|
49
|
+
"iconPadding": "size",
|
|
50
|
+
"iconAlignSelf": "flexAlign",
|
|
51
|
+
"iconTranslateX": "size",
|
|
52
|
+
"iconTranslateY": "size",
|
|
53
|
+
"iconBackground": "color",
|
|
54
|
+
"iconBorderRadius": "radius",
|
|
55
|
+
"borderColor": "color",
|
|
56
|
+
"borderWidth": "border",
|
|
57
|
+
"borderRadius": "radius",
|
|
58
|
+
"shadow": "shadow",
|
|
59
|
+
"fontSize": "fontSize",
|
|
60
|
+
"color": "color",
|
|
61
|
+
"lineHeight": "lineHeight",
|
|
62
|
+
"textAlign": "flexJustifyContent",
|
|
63
|
+
"alignSelf": "flexAlign",
|
|
64
|
+
"fontName": "fontName",
|
|
65
|
+
"fontWeight": "fontWeight",
|
|
66
|
+
"backgroundColor": "color",
|
|
67
|
+
"opacity": "opacity",
|
|
68
|
+
"paddingLeft": "size",
|
|
69
|
+
"paddingRight": "size",
|
|
70
|
+
"paddingTop": "size",
|
|
71
|
+
"paddingBottom": "size",
|
|
72
|
+
"width": "size",
|
|
73
|
+
"minWidth": "size",
|
|
74
|
+
"outerBorderColor": "color",
|
|
75
|
+
"outerBorderWidth": "border",
|
|
76
|
+
"outerBorderGap": "size",
|
|
38
77
|
"outerBackgroundColor": "color"
|
|
39
78
|
},
|
|
40
79
|
"ButtonGroup": {
|
|
@@ -85,6 +124,7 @@
|
|
|
85
124
|
"shadow": "shadow"
|
|
86
125
|
},
|
|
87
126
|
"Carousel": {
|
|
127
|
+
"backgroundColor": "color",
|
|
88
128
|
"nextIcon": "icon",
|
|
89
129
|
"previousIcon": "icon",
|
|
90
130
|
"showPreviousNextNavigation": "show",
|
|
@@ -403,7 +443,8 @@
|
|
|
403
443
|
"iconSize": "size",
|
|
404
444
|
"iconDisplace": "size",
|
|
405
445
|
"width": "size",
|
|
406
|
-
"textAlign": "flexJustifyContent"
|
|
446
|
+
"textAlign": "flexJustifyContent",
|
|
447
|
+
"displayLabel": "show"
|
|
407
448
|
},
|
|
408
449
|
"Progress": {
|
|
409
450
|
"backgroundColor": "color",
|
|
@@ -821,6 +862,10 @@
|
|
|
821
862
|
"borderWidth": "border",
|
|
822
863
|
"borderColor": "color",
|
|
823
864
|
"borderRadius": "radius",
|
|
865
|
+
"buttonSize": "size",
|
|
866
|
+
"buttonsGap": "size",
|
|
867
|
+
"buttonsPaddingRight": "size",
|
|
868
|
+
"clearButtonIcon": "icon",
|
|
824
869
|
"paddingTop": "size",
|
|
825
870
|
"paddingBottom": "size",
|
|
826
871
|
"paddingLeft": "size",
|
|
@@ -967,15 +1012,64 @@
|
|
|
967
1012
|
"values": [
|
|
968
1013
|
true
|
|
969
1014
|
],
|
|
970
|
-
"type": "state"
|
|
1015
|
+
"type": "state",
|
|
1016
|
+
"platforms": [
|
|
1017
|
+
"rn"
|
|
1018
|
+
]
|
|
971
1019
|
},
|
|
972
1020
|
"hover": {
|
|
973
1021
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
974
1022
|
"values": [
|
|
975
1023
|
true
|
|
976
1024
|
],
|
|
1025
|
+
"type": "state",
|
|
1026
|
+
"platforms": [
|
|
1027
|
+
"rn"
|
|
1028
|
+
]
|
|
1029
|
+
},
|
|
1030
|
+
"pressed": {
|
|
1031
|
+
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
1032
|
+
"values": [
|
|
1033
|
+
true
|
|
1034
|
+
],
|
|
1035
|
+
"type": "state"
|
|
1036
|
+
},
|
|
1037
|
+
"inactive": {
|
|
1038
|
+
"description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
|
|
1039
|
+
"values": [
|
|
1040
|
+
true
|
|
1041
|
+
],
|
|
977
1042
|
"type": "state"
|
|
978
1043
|
},
|
|
1044
|
+
"selected": {
|
|
1045
|
+
"description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
|
|
1046
|
+
"values": [
|
|
1047
|
+
true
|
|
1048
|
+
],
|
|
1049
|
+
"type": "state"
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"ButtonDropdown": {
|
|
1053
|
+
"focus": {
|
|
1054
|
+
"description": "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1055
|
+
"values": [
|
|
1056
|
+
true
|
|
1057
|
+
],
|
|
1058
|
+
"type": "state",
|
|
1059
|
+
"platforms": [
|
|
1060
|
+
"rn"
|
|
1061
|
+
]
|
|
1062
|
+
},
|
|
1063
|
+
"hover": {
|
|
1064
|
+
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1065
|
+
"values": [
|
|
1066
|
+
true
|
|
1067
|
+
],
|
|
1068
|
+
"type": "state",
|
|
1069
|
+
"platforms": [
|
|
1070
|
+
"rn"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
979
1073
|
"pressed": {
|
|
980
1074
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
981
1075
|
"values": [
|
|
@@ -996,6 +1090,13 @@
|
|
|
996
1090
|
true
|
|
997
1091
|
],
|
|
998
1092
|
"type": "state"
|
|
1093
|
+
},
|
|
1094
|
+
"open": {
|
|
1095
|
+
"description": "Applies when a ButtonDropdown is open.",
|
|
1096
|
+
"values": [
|
|
1097
|
+
true
|
|
1098
|
+
],
|
|
1099
|
+
"type": "state"
|
|
999
1100
|
}
|
|
1000
1101
|
},
|
|
1001
1102
|
"ButtonGroupItem": {
|
|
@@ -1004,14 +1105,20 @@
|
|
|
1004
1105
|
"values": [
|
|
1005
1106
|
true
|
|
1006
1107
|
],
|
|
1007
|
-
"type": "state"
|
|
1108
|
+
"type": "state",
|
|
1109
|
+
"platforms": [
|
|
1110
|
+
"rn"
|
|
1111
|
+
]
|
|
1008
1112
|
},
|
|
1009
1113
|
"hover": {
|
|
1010
1114
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1011
1115
|
"values": [
|
|
1012
1116
|
true
|
|
1013
1117
|
],
|
|
1014
|
-
"type": "state"
|
|
1118
|
+
"type": "state",
|
|
1119
|
+
"platforms": [
|
|
1120
|
+
"rn"
|
|
1121
|
+
]
|
|
1015
1122
|
},
|
|
1016
1123
|
"pressed": {
|
|
1017
1124
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1041,14 +1148,20 @@
|
|
|
1041
1148
|
"values": [
|
|
1042
1149
|
true
|
|
1043
1150
|
],
|
|
1044
|
-
"type": "state"
|
|
1151
|
+
"type": "state",
|
|
1152
|
+
"platforms": [
|
|
1153
|
+
"rn"
|
|
1154
|
+
]
|
|
1045
1155
|
},
|
|
1046
1156
|
"hover": {
|
|
1047
1157
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1048
1158
|
"values": [
|
|
1049
1159
|
true
|
|
1050
1160
|
],
|
|
1051
|
-
"type": "state"
|
|
1161
|
+
"type": "state",
|
|
1162
|
+
"platforms": [
|
|
1163
|
+
"rn"
|
|
1164
|
+
]
|
|
1052
1165
|
},
|
|
1053
1166
|
"pressed": {
|
|
1054
1167
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1091,14 +1204,20 @@
|
|
|
1091
1204
|
"values": [
|
|
1092
1205
|
true
|
|
1093
1206
|
],
|
|
1094
|
-
"type": "state"
|
|
1207
|
+
"type": "state",
|
|
1208
|
+
"platforms": [
|
|
1209
|
+
"rn"
|
|
1210
|
+
]
|
|
1095
1211
|
},
|
|
1096
1212
|
"hover": {
|
|
1097
1213
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1098
1214
|
"values": [
|
|
1099
1215
|
true
|
|
1100
1216
|
],
|
|
1101
|
-
"type": "state"
|
|
1217
|
+
"type": "state",
|
|
1218
|
+
"platforms": [
|
|
1219
|
+
"rn"
|
|
1220
|
+
]
|
|
1102
1221
|
},
|
|
1103
1222
|
"inactive": {
|
|
1104
1223
|
"description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
|
|
@@ -1114,7 +1233,10 @@
|
|
|
1114
1233
|
"values": [
|
|
1115
1234
|
true
|
|
1116
1235
|
],
|
|
1117
|
-
"type": "state"
|
|
1236
|
+
"type": "state",
|
|
1237
|
+
"platforms": [
|
|
1238
|
+
"rn"
|
|
1239
|
+
]
|
|
1118
1240
|
}
|
|
1119
1241
|
},
|
|
1120
1242
|
"ExpandCollapseControl": {
|
|
@@ -1130,14 +1252,20 @@
|
|
|
1130
1252
|
"values": [
|
|
1131
1253
|
true
|
|
1132
1254
|
],
|
|
1133
|
-
"type": "state"
|
|
1255
|
+
"type": "state",
|
|
1256
|
+
"platforms": [
|
|
1257
|
+
"rn"
|
|
1258
|
+
]
|
|
1134
1259
|
},
|
|
1135
1260
|
"focus": {
|
|
1136
1261
|
"description": "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1137
1262
|
"values": [
|
|
1138
1263
|
true
|
|
1139
1264
|
],
|
|
1140
|
-
"type": "state"
|
|
1265
|
+
"type": "state",
|
|
1266
|
+
"platforms": [
|
|
1267
|
+
"rn"
|
|
1268
|
+
]
|
|
1141
1269
|
},
|
|
1142
1270
|
"expanded": {
|
|
1143
1271
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
@@ -1172,14 +1300,20 @@
|
|
|
1172
1300
|
"values": [
|
|
1173
1301
|
true
|
|
1174
1302
|
],
|
|
1175
|
-
"type": "state"
|
|
1303
|
+
"type": "state",
|
|
1304
|
+
"platforms": [
|
|
1305
|
+
"rn"
|
|
1306
|
+
]
|
|
1176
1307
|
},
|
|
1177
1308
|
"hover": {
|
|
1178
1309
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1179
1310
|
"values": [
|
|
1180
1311
|
true
|
|
1181
1312
|
],
|
|
1182
|
-
"type": "state"
|
|
1313
|
+
"type": "state",
|
|
1314
|
+
"platforms": [
|
|
1315
|
+
"rn"
|
|
1316
|
+
]
|
|
1183
1317
|
},
|
|
1184
1318
|
"pressed": {
|
|
1185
1319
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1195,14 +1329,20 @@
|
|
|
1195
1329
|
"values": [
|
|
1196
1330
|
true
|
|
1197
1331
|
],
|
|
1198
|
-
"type": "state"
|
|
1332
|
+
"type": "state",
|
|
1333
|
+
"platforms": [
|
|
1334
|
+
"rn"
|
|
1335
|
+
]
|
|
1199
1336
|
},
|
|
1200
1337
|
"hover": {
|
|
1201
1338
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1202
1339
|
"values": [
|
|
1203
1340
|
true
|
|
1204
1341
|
],
|
|
1205
|
-
"type": "state"
|
|
1342
|
+
"type": "state",
|
|
1343
|
+
"platforms": [
|
|
1344
|
+
"rn"
|
|
1345
|
+
]
|
|
1206
1346
|
},
|
|
1207
1347
|
"pressed": {
|
|
1208
1348
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1218,14 +1358,20 @@
|
|
|
1218
1358
|
"values": [
|
|
1219
1359
|
true
|
|
1220
1360
|
],
|
|
1221
|
-
"type": "state"
|
|
1361
|
+
"type": "state",
|
|
1362
|
+
"platforms": [
|
|
1363
|
+
"rn"
|
|
1364
|
+
]
|
|
1222
1365
|
},
|
|
1223
1366
|
"hover": {
|
|
1224
1367
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1225
1368
|
"values": [
|
|
1226
1369
|
true
|
|
1227
1370
|
],
|
|
1228
|
-
"type": "state"
|
|
1371
|
+
"type": "state",
|
|
1372
|
+
"platforms": [
|
|
1373
|
+
"rn"
|
|
1374
|
+
]
|
|
1229
1375
|
},
|
|
1230
1376
|
"pressed": {
|
|
1231
1377
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1284,14 +1430,20 @@
|
|
|
1284
1430
|
"values": [
|
|
1285
1431
|
true
|
|
1286
1432
|
],
|
|
1287
|
-
"type": "state"
|
|
1433
|
+
"type": "state",
|
|
1434
|
+
"platforms": [
|
|
1435
|
+
"rn"
|
|
1436
|
+
]
|
|
1288
1437
|
},
|
|
1289
1438
|
"hover": {
|
|
1290
1439
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1291
1440
|
"values": [
|
|
1292
1441
|
true
|
|
1293
1442
|
],
|
|
1294
|
-
"type": "state"
|
|
1443
|
+
"type": "state",
|
|
1444
|
+
"platforms": [
|
|
1445
|
+
"rn"
|
|
1446
|
+
]
|
|
1295
1447
|
},
|
|
1296
1448
|
"pressed": {
|
|
1297
1449
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1314,14 +1466,20 @@
|
|
|
1314
1466
|
"values": [
|
|
1315
1467
|
true
|
|
1316
1468
|
],
|
|
1317
|
-
"type": "state"
|
|
1469
|
+
"type": "state",
|
|
1470
|
+
"platforms": [
|
|
1471
|
+
"rn"
|
|
1472
|
+
]
|
|
1318
1473
|
},
|
|
1319
1474
|
"hover": {
|
|
1320
1475
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1321
1476
|
"values": [
|
|
1322
1477
|
true
|
|
1323
1478
|
],
|
|
1324
|
-
"type": "state"
|
|
1479
|
+
"type": "state",
|
|
1480
|
+
"platforms": [
|
|
1481
|
+
"rn"
|
|
1482
|
+
]
|
|
1325
1483
|
},
|
|
1326
1484
|
"pressed": {
|
|
1327
1485
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1344,6 +1502,13 @@
|
|
|
1344
1502
|
],
|
|
1345
1503
|
"description": "Determines which way does the button navigate in Pagination's context",
|
|
1346
1504
|
"type": "state"
|
|
1505
|
+
},
|
|
1506
|
+
"compact": {
|
|
1507
|
+
"values": [
|
|
1508
|
+
true
|
|
1509
|
+
],
|
|
1510
|
+
"description": "Determines if the \"Next\" and \"Previous\" labels should be omitted",
|
|
1511
|
+
"type": "state"
|
|
1347
1512
|
}
|
|
1348
1513
|
},
|
|
1349
1514
|
"ProgressBar": {
|
|
@@ -1361,14 +1526,20 @@
|
|
|
1361
1526
|
"values": [
|
|
1362
1527
|
true
|
|
1363
1528
|
],
|
|
1364
|
-
"type": "state"
|
|
1529
|
+
"type": "state",
|
|
1530
|
+
"platforms": [
|
|
1531
|
+
"rn"
|
|
1532
|
+
]
|
|
1365
1533
|
},
|
|
1366
1534
|
"focus": {
|
|
1367
1535
|
"description": "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1368
1536
|
"values": [
|
|
1369
1537
|
true
|
|
1370
1538
|
],
|
|
1371
|
-
"type": "state"
|
|
1539
|
+
"type": "state",
|
|
1540
|
+
"platforms": [
|
|
1541
|
+
"rn"
|
|
1542
|
+
]
|
|
1372
1543
|
},
|
|
1373
1544
|
"pressed": {
|
|
1374
1545
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1397,14 +1568,20 @@
|
|
|
1397
1568
|
"values": [
|
|
1398
1569
|
true
|
|
1399
1570
|
],
|
|
1400
|
-
"type": "state"
|
|
1571
|
+
"type": "state",
|
|
1572
|
+
"platforms": [
|
|
1573
|
+
"rn"
|
|
1574
|
+
]
|
|
1401
1575
|
},
|
|
1402
1576
|
"hover": {
|
|
1403
1577
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1404
1578
|
"values": [
|
|
1405
1579
|
true
|
|
1406
1580
|
],
|
|
1407
|
-
"type": "state"
|
|
1581
|
+
"type": "state",
|
|
1582
|
+
"platforms": [
|
|
1583
|
+
"rn"
|
|
1584
|
+
]
|
|
1408
1585
|
},
|
|
1409
1586
|
"inactive": {
|
|
1410
1587
|
"description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
|
|
@@ -1440,14 +1617,20 @@
|
|
|
1440
1617
|
"values": [
|
|
1441
1618
|
true
|
|
1442
1619
|
],
|
|
1443
|
-
"type": "state"
|
|
1620
|
+
"type": "state",
|
|
1621
|
+
"platforms": [
|
|
1622
|
+
"rn"
|
|
1623
|
+
]
|
|
1444
1624
|
},
|
|
1445
1625
|
"hover": {
|
|
1446
1626
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1447
1627
|
"values": [
|
|
1448
1628
|
true
|
|
1449
1629
|
],
|
|
1450
|
-
"type": "state"
|
|
1630
|
+
"type": "state",
|
|
1631
|
+
"platforms": [
|
|
1632
|
+
"rn"
|
|
1633
|
+
]
|
|
1451
1634
|
},
|
|
1452
1635
|
"inactive": {
|
|
1453
1636
|
"description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
|
|
@@ -1463,10 +1646,13 @@
|
|
|
1463
1646
|
"values": [
|
|
1464
1647
|
true
|
|
1465
1648
|
],
|
|
1466
|
-
"type": "state"
|
|
1649
|
+
"type": "state",
|
|
1650
|
+
"platforms": [
|
|
1651
|
+
"rn"
|
|
1652
|
+
]
|
|
1467
1653
|
},
|
|
1468
1654
|
"focus": {
|
|
1469
|
-
"description": "
|
|
1655
|
+
"description": "Focus states for some input elements are well supported across web, RN, ios and android",
|
|
1470
1656
|
"values": [
|
|
1471
1657
|
true
|
|
1472
1658
|
],
|
|
@@ -1486,14 +1672,20 @@
|
|
|
1486
1672
|
"values": [
|
|
1487
1673
|
true
|
|
1488
1674
|
],
|
|
1489
|
-
"type": "state"
|
|
1675
|
+
"type": "state",
|
|
1676
|
+
"platforms": [
|
|
1677
|
+
"rn"
|
|
1678
|
+
]
|
|
1490
1679
|
},
|
|
1491
1680
|
"focus": {
|
|
1492
1681
|
"description": "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1493
1682
|
"values": [
|
|
1494
1683
|
true
|
|
1495
1684
|
],
|
|
1496
|
-
"type": "state"
|
|
1685
|
+
"type": "state",
|
|
1686
|
+
"platforms": [
|
|
1687
|
+
"rn"
|
|
1688
|
+
]
|
|
1497
1689
|
},
|
|
1498
1690
|
"pressed": {
|
|
1499
1691
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1524,10 +1716,13 @@
|
|
|
1524
1716
|
"values": [
|
|
1525
1717
|
true
|
|
1526
1718
|
],
|
|
1527
|
-
"type": "state"
|
|
1719
|
+
"type": "state",
|
|
1720
|
+
"platforms": [
|
|
1721
|
+
"rn"
|
|
1722
|
+
]
|
|
1528
1723
|
},
|
|
1529
1724
|
"focus": {
|
|
1530
|
-
"description": "
|
|
1725
|
+
"description": "Focus states for some input elements are well supported across web, RN, ios and android",
|
|
1531
1726
|
"values": [
|
|
1532
1727
|
true
|
|
1533
1728
|
],
|
|
@@ -1570,7 +1765,10 @@
|
|
|
1570
1765
|
"values": [
|
|
1571
1766
|
true
|
|
1572
1767
|
],
|
|
1573
|
-
"type": "state"
|
|
1768
|
+
"type": "state",
|
|
1769
|
+
"platforms": [
|
|
1770
|
+
"rn"
|
|
1771
|
+
]
|
|
1574
1772
|
}
|
|
1575
1773
|
},
|
|
1576
1774
|
"SideNavItemGroup": {
|
|
@@ -1608,14 +1806,20 @@
|
|
|
1608
1806
|
"values": [
|
|
1609
1807
|
true
|
|
1610
1808
|
],
|
|
1611
|
-
"type": "state"
|
|
1809
|
+
"type": "state",
|
|
1810
|
+
"platforms": [
|
|
1811
|
+
"rn"
|
|
1812
|
+
]
|
|
1612
1813
|
},
|
|
1613
1814
|
"hover": {
|
|
1614
1815
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1615
1816
|
"values": [
|
|
1616
1817
|
true
|
|
1617
1818
|
],
|
|
1618
|
-
"type": "state"
|
|
1819
|
+
"type": "state",
|
|
1820
|
+
"platforms": [
|
|
1821
|
+
"rn"
|
|
1822
|
+
]
|
|
1619
1823
|
},
|
|
1620
1824
|
"pressed": {
|
|
1621
1825
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1638,14 +1842,20 @@
|
|
|
1638
1842
|
"values": [
|
|
1639
1843
|
true
|
|
1640
1844
|
],
|
|
1641
|
-
"type": "state"
|
|
1845
|
+
"type": "state",
|
|
1846
|
+
"platforms": [
|
|
1847
|
+
"rn"
|
|
1848
|
+
]
|
|
1642
1849
|
},
|
|
1643
1850
|
"hover": {
|
|
1644
1851
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1645
1852
|
"values": [
|
|
1646
1853
|
true
|
|
1647
1854
|
],
|
|
1648
|
-
"type": "state"
|
|
1855
|
+
"type": "state",
|
|
1856
|
+
"platforms": [
|
|
1857
|
+
"rn"
|
|
1858
|
+
]
|
|
1649
1859
|
},
|
|
1650
1860
|
"pressed": {
|
|
1651
1861
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1683,17 +1893,20 @@
|
|
|
1683
1893
|
"values": [
|
|
1684
1894
|
true
|
|
1685
1895
|
],
|
|
1686
|
-
"type": "state"
|
|
1896
|
+
"type": "state",
|
|
1897
|
+
"platforms": [
|
|
1898
|
+
"rn"
|
|
1899
|
+
]
|
|
1687
1900
|
},
|
|
1688
|
-
"
|
|
1689
|
-
"description": "
|
|
1901
|
+
"inactive": {
|
|
1902
|
+
"description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
|
|
1690
1903
|
"values": [
|
|
1691
1904
|
true
|
|
1692
1905
|
],
|
|
1693
1906
|
"type": "state"
|
|
1694
1907
|
},
|
|
1695
|
-
"
|
|
1696
|
-
"description": "
|
|
1908
|
+
"focus": {
|
|
1909
|
+
"description": "Focus states for some input elements are well supported across web, RN, ios and android",
|
|
1697
1910
|
"values": [
|
|
1698
1911
|
true
|
|
1699
1912
|
],
|
|
@@ -1706,14 +1919,20 @@
|
|
|
1706
1919
|
"values": [
|
|
1707
1920
|
true
|
|
1708
1921
|
],
|
|
1709
|
-
"type": "state"
|
|
1922
|
+
"type": "state",
|
|
1923
|
+
"platforms": [
|
|
1924
|
+
"rn"
|
|
1925
|
+
]
|
|
1710
1926
|
},
|
|
1711
1927
|
"hover": {
|
|
1712
1928
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1713
1929
|
"values": [
|
|
1714
1930
|
true
|
|
1715
1931
|
],
|
|
1716
|
-
"type": "state"
|
|
1932
|
+
"type": "state",
|
|
1933
|
+
"platforms": [
|
|
1934
|
+
"rn"
|
|
1935
|
+
]
|
|
1717
1936
|
},
|
|
1718
1937
|
"pressed": {
|
|
1719
1938
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1743,14 +1962,20 @@
|
|
|
1743
1962
|
"values": [
|
|
1744
1963
|
true
|
|
1745
1964
|
],
|
|
1746
|
-
"type": "state"
|
|
1965
|
+
"type": "state",
|
|
1966
|
+
"platforms": [
|
|
1967
|
+
"rn"
|
|
1968
|
+
]
|
|
1747
1969
|
},
|
|
1748
1970
|
"hover": {
|
|
1749
1971
|
"description": "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1750
1972
|
"values": [
|
|
1751
1973
|
true
|
|
1752
1974
|
],
|
|
1753
|
-
"type": "state"
|
|
1975
|
+
"type": "state",
|
|
1976
|
+
"platforms": [
|
|
1977
|
+
"rn"
|
|
1978
|
+
]
|
|
1754
1979
|
},
|
|
1755
1980
|
"pressed": {
|
|
1756
1981
|
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
@@ -1766,7 +1991,10 @@
|
|
|
1766
1991
|
"values": [
|
|
1767
1992
|
true
|
|
1768
1993
|
],
|
|
1769
|
-
"type": "state"
|
|
1994
|
+
"type": "state",
|
|
1995
|
+
"platforms": [
|
|
1996
|
+
"rn"
|
|
1997
|
+
]
|
|
1770
1998
|
}
|
|
1771
1999
|
}
|
|
1772
2000
|
}
|
|
@@ -2124,6 +2352,10 @@
|
|
|
2124
2352
|
"forceAbsoluteFontSizing": {
|
|
2125
2353
|
"name": "bool",
|
|
2126
2354
|
"required": false
|
|
2355
|
+
},
|
|
2356
|
+
"forceZIndex": {
|
|
2357
|
+
"name": "bool",
|
|
2358
|
+
"required": false
|
|
2127
2359
|
}
|
|
2128
2360
|
}
|
|
2129
2361
|
},
|
|
@@ -2291,7 +2523,8 @@
|
|
|
2291
2523
|
"type": {
|
|
2292
2524
|
"name": "custom",
|
|
2293
2525
|
"raw": {
|
|
2294
|
-
"backgroundColor": "color"
|
|
2526
|
+
"backgroundColor": "color",
|
|
2527
|
+
"gradient": "gradient"
|
|
2295
2528
|
}
|
|
2296
2529
|
},
|
|
2297
2530
|
"required": false,
|
|
@@ -5237,101 +5470,307 @@
|
|
|
5237
5470
|
}
|
|
5238
5471
|
}
|
|
5239
5472
|
},
|
|
5240
|
-
"
|
|
5473
|
+
"MultiSelectFilter": {
|
|
5241
5474
|
"docs": {
|
|
5242
|
-
"description": "
|
|
5475
|
+
"description": "",
|
|
5243
5476
|
"props": {
|
|
5244
|
-
"
|
|
5477
|
+
"id": {
|
|
5245
5478
|
"defaultValue": {
|
|
5246
|
-
"value": "
|
|
5479
|
+
"value": "label",
|
|
5480
|
+
"computed": true
|
|
5481
|
+
},
|
|
5482
|
+
"type": {
|
|
5483
|
+
"name": "string"
|
|
5484
|
+
},
|
|
5485
|
+
"required": false,
|
|
5486
|
+
"description": "An optional unique string may be provided to identify the ButtonDropdown.\nIf not provided, the label is used."
|
|
5487
|
+
},
|
|
5488
|
+
"items": {
|
|
5489
|
+
"defaultValue": {
|
|
5490
|
+
"value": "[]",
|
|
5247
5491
|
"computed": false
|
|
5248
5492
|
},
|
|
5249
5493
|
"type": {
|
|
5250
|
-
"name": "
|
|
5251
|
-
"value":
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
"
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
]
|
|
5264
|
-
},
|
|
5265
|
-
{
|
|
5266
|
-
"name": "shape",
|
|
5267
|
-
"value": {
|
|
5268
|
-
"dismiss": {
|
|
5269
|
-
"name": "string",
|
|
5270
|
-
"required": false
|
|
5271
|
-
}
|
|
5494
|
+
"name": "arrayOf",
|
|
5495
|
+
"value": {
|
|
5496
|
+
"name": "shape",
|
|
5497
|
+
"value": {
|
|
5498
|
+
"label": {
|
|
5499
|
+
"name": "string",
|
|
5500
|
+
"description": "The text displayed to the user with a checkbox, describing this option.",
|
|
5501
|
+
"required": true
|
|
5502
|
+
},
|
|
5503
|
+
"id": {
|
|
5504
|
+
"name": "string",
|
|
5505
|
+
"description": "An optional unique string may be provided to identify this option.\nIf not provided, the label is used.",
|
|
5506
|
+
"required": false
|
|
5272
5507
|
}
|
|
5273
5508
|
}
|
|
5274
|
-
|
|
5509
|
+
}
|
|
5275
5510
|
},
|
|
5276
5511
|
"required": false,
|
|
5277
|
-
"description": "
|
|
5512
|
+
"description": "The options a user may select."
|
|
5278
5513
|
},
|
|
5279
|
-
"
|
|
5514
|
+
"copy": {
|
|
5515
|
+
"defaultValue": {
|
|
5516
|
+
"value": "'en'",
|
|
5517
|
+
"computed": false
|
|
5518
|
+
},
|
|
5280
5519
|
"type": {
|
|
5281
|
-
"name": "
|
|
5520
|
+
"name": "enum",
|
|
5282
5521
|
"value": [
|
|
5283
5522
|
{
|
|
5284
|
-
"
|
|
5285
|
-
|
|
5286
|
-
{
|
|
5287
|
-
"name": "node"
|
|
5523
|
+
"value": "'en'",
|
|
5524
|
+
"computed": false
|
|
5288
5525
|
},
|
|
5289
5526
|
{
|
|
5290
|
-
"
|
|
5527
|
+
"value": "'fr'",
|
|
5528
|
+
"computed": false
|
|
5291
5529
|
}
|
|
5292
5530
|
]
|
|
5293
5531
|
},
|
|
5294
5532
|
"required": false,
|
|
5295
|
-
"description": "
|
|
5533
|
+
"description": "Select English or French copy for the accessible label."
|
|
5296
5534
|
},
|
|
5297
|
-
"
|
|
5535
|
+
"readOnly": {
|
|
5536
|
+
"defaultValue": {
|
|
5537
|
+
"value": "false",
|
|
5538
|
+
"computed": false
|
|
5539
|
+
},
|
|
5298
5540
|
"type": {
|
|
5299
|
-
"name": "
|
|
5541
|
+
"name": "string"
|
|
5300
5542
|
},
|
|
5301
5543
|
"required": false,
|
|
5302
|
-
"description": "
|
|
5544
|
+
"description": "If true, the ButtonDropdown cannot be selected by the user and simply show their current state."
|
|
5303
5545
|
},
|
|
5304
|
-
"
|
|
5546
|
+
"inactive": {
|
|
5547
|
+
"defaultValue": {
|
|
5548
|
+
"value": "false",
|
|
5549
|
+
"computed": false
|
|
5550
|
+
},
|
|
5305
5551
|
"type": {
|
|
5306
|
-
"name": "
|
|
5552
|
+
"name": "string"
|
|
5307
5553
|
},
|
|
5308
5554
|
"required": false,
|
|
5309
|
-
"description": "
|
|
5555
|
+
"description": "If true, the MultiSelectFilter cannot be interacted with, ButtonDropdown is\nset as `disabled` and if the theme supports `inactive` appearances rules, these\nare applied."
|
|
5310
5556
|
},
|
|
5311
|
-
"
|
|
5557
|
+
"rowLimit": {
|
|
5558
|
+
"defaultValue": {
|
|
5559
|
+
"value": "12",
|
|
5560
|
+
"computed": false
|
|
5561
|
+
},
|
|
5312
5562
|
"type": {
|
|
5313
|
-
"name": "
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
"
|
|
5330
|
-
"
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5563
|
+
"name": "number"
|
|
5564
|
+
},
|
|
5565
|
+
"required": false,
|
|
5566
|
+
"description": "Sets the maximum number of items in one column. If number of items are more\nthan the `rowLimit`, they will be rendered in 2 columns."
|
|
5567
|
+
},
|
|
5568
|
+
"label": {
|
|
5569
|
+
"type": {
|
|
5570
|
+
"name": "string"
|
|
5571
|
+
},
|
|
5572
|
+
"required": true,
|
|
5573
|
+
"description": "The text displayed to the user in a ButtonDropdown."
|
|
5574
|
+
},
|
|
5575
|
+
"variant": {
|
|
5576
|
+
"type": {
|
|
5577
|
+
"name": "objectOf",
|
|
5578
|
+
"value": {
|
|
5579
|
+
"name": "union",
|
|
5580
|
+
"value": [
|
|
5581
|
+
{
|
|
5582
|
+
"name": "string"
|
|
5583
|
+
},
|
|
5584
|
+
{
|
|
5585
|
+
"name": "number"
|
|
5586
|
+
},
|
|
5587
|
+
{
|
|
5588
|
+
"name": "bool"
|
|
5589
|
+
}
|
|
5590
|
+
]
|
|
5591
|
+
}
|
|
5592
|
+
},
|
|
5593
|
+
"required": false,
|
|
5594
|
+
"description": "Sets the variant for ButtonDropdown element."
|
|
5595
|
+
},
|
|
5596
|
+
"tokens": {
|
|
5597
|
+
"type": {
|
|
5598
|
+
"name": "custom",
|
|
5599
|
+
"raw": {
|
|
5600
|
+
"icon": "icon",
|
|
5601
|
+
"iconPosition": "position",
|
|
5602
|
+
"iconSpace": "integer",
|
|
5603
|
+
"iconSize": "size",
|
|
5604
|
+
"iconColor": "color",
|
|
5605
|
+
"iconPadding": "size",
|
|
5606
|
+
"iconAlignSelf": "flexAlign",
|
|
5607
|
+
"iconTranslateX": "size",
|
|
5608
|
+
"iconTranslateY": "size",
|
|
5609
|
+
"iconBackground": "color",
|
|
5610
|
+
"iconBorderRadius": "radius",
|
|
5611
|
+
"borderColor": "color",
|
|
5612
|
+
"borderWidth": "border",
|
|
5613
|
+
"borderRadius": "radius",
|
|
5614
|
+
"shadow": "shadow",
|
|
5615
|
+
"fontSize": "fontSize",
|
|
5616
|
+
"color": "color",
|
|
5617
|
+
"lineHeight": "lineHeight",
|
|
5618
|
+
"textAlign": "flexJustifyContent",
|
|
5619
|
+
"alignSelf": "flexAlign",
|
|
5620
|
+
"fontName": "fontName",
|
|
5621
|
+
"fontWeight": "fontWeight",
|
|
5622
|
+
"backgroundColor": "color",
|
|
5623
|
+
"opacity": "opacity",
|
|
5624
|
+
"paddingLeft": "size",
|
|
5625
|
+
"paddingRight": "size",
|
|
5626
|
+
"paddingTop": "size",
|
|
5627
|
+
"paddingBottom": "size",
|
|
5628
|
+
"width": "size",
|
|
5629
|
+
"minWidth": "size",
|
|
5630
|
+
"outerBorderColor": "color",
|
|
5631
|
+
"outerBorderWidth": "border",
|
|
5632
|
+
"outerBorderGap": "size",
|
|
5633
|
+
"outerBackgroundColor": "color"
|
|
5634
|
+
}
|
|
5635
|
+
},
|
|
5636
|
+
"required": false,
|
|
5637
|
+
"description": "Sets the tokens for ButtonDropdown element."
|
|
5638
|
+
},
|
|
5639
|
+
"values": {
|
|
5640
|
+
"type": {
|
|
5641
|
+
"name": "arrayOf",
|
|
5642
|
+
"value": {
|
|
5643
|
+
"name": "string"
|
|
5644
|
+
}
|
|
5645
|
+
},
|
|
5646
|
+
"required": false,
|
|
5647
|
+
"description": "If the selected item(s) in the checkbox group(s) are to be controlled externally by\na parent component, pass an array of strings as well as an `onChange` handler.\nPassing an array for \"values\" makes the MultiSelectFilter a \"controlled\" component that\nexpects its state to be handled via `onChange` and so doesn't handle it itself."
|
|
5648
|
+
},
|
|
5649
|
+
"initialValues": {
|
|
5650
|
+
"type": {
|
|
5651
|
+
"name": "arrayOf",
|
|
5652
|
+
"value": {
|
|
5653
|
+
"name": "string"
|
|
5654
|
+
}
|
|
5655
|
+
},
|
|
5656
|
+
"required": false,
|
|
5657
|
+
"description": "If `values` is not passed, making the MultiSelectFilter an \"uncontrolled\" component\nmanaging its own selected state, a default set of selections may be provided.\nChanging the `initialValues` does not change the user's selections."
|
|
5658
|
+
},
|
|
5659
|
+
"maxValues": {
|
|
5660
|
+
"type": {
|
|
5661
|
+
"name": "number"
|
|
5662
|
+
},
|
|
5663
|
+
"required": false,
|
|
5664
|
+
"description": "If provided, sets a maximum number of items a user may select at once."
|
|
5665
|
+
},
|
|
5666
|
+
"onChange": {
|
|
5667
|
+
"type": {
|
|
5668
|
+
"name": "func"
|
|
5669
|
+
},
|
|
5670
|
+
"required": false,
|
|
5671
|
+
"description": "If provided, this function is called when the current selection is changed\nand is passed an array of the `id`s of all currently selected `items`."
|
|
5672
|
+
}
|
|
5673
|
+
},
|
|
5674
|
+
"attributes": {
|
|
5675
|
+
"acceptsRNA11yProps": false
|
|
5676
|
+
}
|
|
5677
|
+
}
|
|
5678
|
+
},
|
|
5679
|
+
"Notification": {
|
|
5680
|
+
"docs": {
|
|
5681
|
+
"description": "A banner that highlights important messages:\n- Status message to show there is an error or outage of services\n- Confirmation message in response to user action\n- Account information letting the user know they have almost used all their data\n\n## Usage criteria\n- Use simple text content only, such as bold test or links. Don’t use other complex components or paragraphs\n- Show notifications before the content that the message is related to, otherwise show at the top of the main content\n- Show system notifications at the top of the page, below the navigation, and expands the full-width of the viewport\n- When showing multiple notifications, show them in order of importance from top to bottom\n- Use variants to visually show the type of message contained within the Notification.\n- The icon and colour will indicate meaning and importance\n\n### Variants\n- Use `variant.style` to set the visual style of the notification\n- Use `dismissible` prop to enable dismissible functionality\n- Use `system` prop to set the visual style of the notification and denote an announcement from the system or application\n\n### When to use the system prop?\n- Use `system` to show system-based messages coming from the application\n- Don’t use `system` when the message is in response to user action\n\n## Variants\n\n#### Success\nUse the success variant to provide feedback of a successful operation. The message will include an icon to indicate meaning and importance.\n\n#### Warning\nUse the warning variant to provide feedback of a warning; users would still be able to proceed forward.\nThe message will include an icon to indicate meaning and importance.\n\n#### Error\nUse the error variant to provide feedback of a failed operation. The message will include an icon to indicate meaning and importance.\n\n#### Dismissible\nDismissible notifications should only be used for default or success notifications where there is no action needed from the user.\nIf the information is passive then it should be dismissible as indicated by an interactive close button on the far right.\nIf the notification requires an action then make the option(s) clear with a `ChevronLink` or `Link`.\n\nUse the `dismissible` prop to allow users to dismiss the Notification at any time. Once dismissed, the Notification is removed from the DOM.\n\nPlease note:\n\n- Default and Success variants are dismissible\n- Error and Warning variants are not dismissible\n\n#### System message\nUse full-width `Notifications` to show system-based messages coming from the application, not in response to user action.\nShow system notifications at the top of the page, below the navigation, and expands the full-width of the viewport",
|
|
5682
|
+
"props": {
|
|
5683
|
+
"copy": {
|
|
5684
|
+
"defaultValue": {
|
|
5685
|
+
"value": "'en'",
|
|
5686
|
+
"computed": false
|
|
5687
|
+
},
|
|
5688
|
+
"type": {
|
|
5689
|
+
"name": "union",
|
|
5690
|
+
"value": [
|
|
5691
|
+
{
|
|
5692
|
+
"name": "enum",
|
|
5693
|
+
"value": [
|
|
5694
|
+
{
|
|
5695
|
+
"value": "'en'",
|
|
5696
|
+
"computed": false
|
|
5697
|
+
},
|
|
5698
|
+
{
|
|
5699
|
+
"value": "'fr'",
|
|
5700
|
+
"computed": false
|
|
5701
|
+
}
|
|
5702
|
+
]
|
|
5703
|
+
},
|
|
5704
|
+
{
|
|
5705
|
+
"name": "shape",
|
|
5706
|
+
"value": {
|
|
5707
|
+
"dismiss": {
|
|
5708
|
+
"name": "string",
|
|
5709
|
+
"required": false
|
|
5710
|
+
}
|
|
5711
|
+
}
|
|
5712
|
+
}
|
|
5713
|
+
]
|
|
5714
|
+
},
|
|
5715
|
+
"required": false,
|
|
5716
|
+
"description": "Select English or French copy for the accessible label of the dismiss button."
|
|
5717
|
+
},
|
|
5718
|
+
"children": {
|
|
5719
|
+
"type": {
|
|
5720
|
+
"name": "union",
|
|
5721
|
+
"value": [
|
|
5722
|
+
{
|
|
5723
|
+
"name": "string"
|
|
5724
|
+
},
|
|
5725
|
+
{
|
|
5726
|
+
"name": "node"
|
|
5727
|
+
},
|
|
5728
|
+
{
|
|
5729
|
+
"name": "func"
|
|
5730
|
+
}
|
|
5731
|
+
]
|
|
5732
|
+
},
|
|
5733
|
+
"required": false,
|
|
5734
|
+
"description": "Content of the `Notification`."
|
|
5735
|
+
},
|
|
5736
|
+
"system": {
|
|
5737
|
+
"type": {
|
|
5738
|
+
"name": "bool"
|
|
5739
|
+
},
|
|
5740
|
+
"required": false,
|
|
5741
|
+
"description": "Use `system` prop to set the visual style of the notification and denote an announcement from the system or application"
|
|
5742
|
+
},
|
|
5743
|
+
"dismissible": {
|
|
5744
|
+
"type": {
|
|
5745
|
+
"name": "bool"
|
|
5746
|
+
},
|
|
5747
|
+
"required": false,
|
|
5748
|
+
"description": "Use the `dismissible` prop to allow users to dismiss the Notification at any time."
|
|
5749
|
+
},
|
|
5750
|
+
"tokens": {
|
|
5751
|
+
"type": {
|
|
5752
|
+
"name": "custom",
|
|
5753
|
+
"raw": {
|
|
5754
|
+
"backgroundColor": "color",
|
|
5755
|
+
"borderBottomWidth": "border",
|
|
5756
|
+
"borderTopWidth": "border",
|
|
5757
|
+
"borderLeftWidth": "border",
|
|
5758
|
+
"borderRightWidth": "border",
|
|
5759
|
+
"borderColor": "color",
|
|
5760
|
+
"borderRadius": "radius",
|
|
5761
|
+
"paddingTop": "size",
|
|
5762
|
+
"paddingBottom": "size",
|
|
5763
|
+
"paddingLeft": "size",
|
|
5764
|
+
"paddingRight": "size",
|
|
5765
|
+
"color": "color",
|
|
5766
|
+
"fontSize": "fontSize",
|
|
5767
|
+
"lineHeight": "lineHeight",
|
|
5768
|
+
"fontName": "fontName",
|
|
5769
|
+
"fontWeight": "fontWeight",
|
|
5770
|
+
"icon": "icon",
|
|
5771
|
+
"iconColor": "color",
|
|
5772
|
+
"iconSize": "size",
|
|
5773
|
+
"iconGap": "size",
|
|
5335
5774
|
"dismissIcon": "icon",
|
|
5336
5775
|
"dismissIconColor": "color",
|
|
5337
5776
|
"dismissIconSize": "size",
|
|
@@ -5496,7 +5935,8 @@
|
|
|
5496
5935
|
"iconSize": "size",
|
|
5497
5936
|
"iconDisplace": "size",
|
|
5498
5937
|
"width": "size",
|
|
5499
|
-
"textAlign": "flexJustifyContent"
|
|
5938
|
+
"textAlign": "flexJustifyContent",
|
|
5939
|
+
"displayLabel": "show"
|
|
5500
5940
|
}
|
|
5501
5941
|
},
|
|
5502
5942
|
"required": false,
|
|
@@ -6409,6 +6849,81 @@
|
|
|
6409
6849
|
}
|
|
6410
6850
|
}
|
|
6411
6851
|
},
|
|
6852
|
+
"Responsive": {
|
|
6853
|
+
"docs": {
|
|
6854
|
+
"description": "Responsive conditionally renders children based on whether the viewport matches the provided\nmin and max viewports.\n\nIn SSR, like other viewport utilities, it treats the viewport as `xs` both in SSR itself and\nduring first hydration on the client side; then if the viewport is not `xs`, it re-renders\nafter hydration. This may cause a layout shift on devices other than the narrowest.",
|
|
6855
|
+
"props": {
|
|
6856
|
+
"min": {
|
|
6857
|
+
"defaultValue": {
|
|
6858
|
+
"value": "'xs'",
|
|
6859
|
+
"computed": false
|
|
6860
|
+
},
|
|
6861
|
+
"type": {
|
|
6862
|
+
"name": "enum",
|
|
6863
|
+
"value": [
|
|
6864
|
+
{
|
|
6865
|
+
"value": "'xs'",
|
|
6866
|
+
"computed": false
|
|
6867
|
+
},
|
|
6868
|
+
{
|
|
6869
|
+
"value": "'sm'",
|
|
6870
|
+
"computed": false
|
|
6871
|
+
},
|
|
6872
|
+
{
|
|
6873
|
+
"value": "'md'",
|
|
6874
|
+
"computed": false
|
|
6875
|
+
},
|
|
6876
|
+
{
|
|
6877
|
+
"value": "'lg'",
|
|
6878
|
+
"computed": false
|
|
6879
|
+
},
|
|
6880
|
+
{
|
|
6881
|
+
"value": "'xl'",
|
|
6882
|
+
"computed": false
|
|
6883
|
+
}
|
|
6884
|
+
]
|
|
6885
|
+
},
|
|
6886
|
+
"required": false,
|
|
6887
|
+
"description": ""
|
|
6888
|
+
},
|
|
6889
|
+
"max": {
|
|
6890
|
+
"type": {
|
|
6891
|
+
"name": "enum",
|
|
6892
|
+
"value": [
|
|
6893
|
+
{
|
|
6894
|
+
"value": "'sm'",
|
|
6895
|
+
"computed": false
|
|
6896
|
+
},
|
|
6897
|
+
{
|
|
6898
|
+
"value": "'md'",
|
|
6899
|
+
"computed": false
|
|
6900
|
+
},
|
|
6901
|
+
{
|
|
6902
|
+
"value": "'lg'",
|
|
6903
|
+
"computed": false
|
|
6904
|
+
},
|
|
6905
|
+
{
|
|
6906
|
+
"value": "'xl'",
|
|
6907
|
+
"computed": false
|
|
6908
|
+
}
|
|
6909
|
+
]
|
|
6910
|
+
},
|
|
6911
|
+
"required": false,
|
|
6912
|
+
"description": ""
|
|
6913
|
+
},
|
|
6914
|
+
"children": {
|
|
6915
|
+
"type": {
|
|
6916
|
+
"name": "node"
|
|
6917
|
+
},
|
|
6918
|
+
"required": true,
|
|
6919
|
+
"description": ""
|
|
6920
|
+
}
|
|
6921
|
+
},
|
|
6922
|
+
"attributes": {
|
|
6923
|
+
"acceptsRNA11yProps": false
|
|
6924
|
+
}
|
|
6925
|
+
}
|
|
6926
|
+
},
|
|
6412
6927
|
"Search": {
|
|
6413
6928
|
"docs": {
|
|
6414
6929
|
"description": "The `Search` component is a combination of a `TextInput` and 2 different kinds of custom buttons.\nUse `Search` to feature autocomplete interactions.\n\nThis component includes a clear button, which will appear as text is entered and pressing it will\ncause the input's internal state value to be set to an empty string.\n\nThis component may only be used as uncontrolled, as the search value is managed within an internal state.\nYou can use the `onChange` prop to react to value changes and the `onSubmit` prop to react on search submission.\n\nUse the following props to supply additional accessibility labels for the input - `accessibilityLabel`,\nclear button - `clearButtonAccessibilityLabel`, and submit button - `submitButtonAccessibilityLabel`.",
|
|
@@ -7985,7 +8500,7 @@
|
|
|
7985
8500
|
"props": {
|
|
7986
8501
|
"themeOptions": {
|
|
7987
8502
|
"defaultValue": {
|
|
7988
|
-
"value": "{ forceAbsoluteFontSizing: true }",
|
|
8503
|
+
"value": "{ forceAbsoluteFontSizing: true, forceZIndex: true }",
|
|
7989
8504
|
"computed": false
|
|
7990
8505
|
},
|
|
7991
8506
|
"type": {
|
|
@@ -7995,6 +8510,10 @@
|
|
|
7995
8510
|
"name": "bool",
|
|
7996
8511
|
"required": false
|
|
7997
8512
|
},
|
|
8513
|
+
"forceZIndex": {
|
|
8514
|
+
"name": "bool",
|
|
8515
|
+
"required": false
|
|
8516
|
+
},
|
|
7998
8517
|
"contentMaxWidth": {
|
|
7999
8518
|
"name": "custom",
|
|
8000
8519
|
"raw": "responsiveProps.getTypeOptionallyByViewport(PropTypes.number)",
|
|
@@ -8003,7 +8522,7 @@
|
|
|
8003
8522
|
}
|
|
8004
8523
|
},
|
|
8005
8524
|
"required": false,
|
|
8006
|
-
"description": "An object containing options allowing to customize the theming experience:\n\n- `forceAbsoluteFontSizing`: available on web only; when set to true, allows\n using absolute font sizing (in pixels, doesn't scale) instead of the\n relative sizing (in `rem`, scales depending on the browser settings)\n- `contentMaxWidth`: allows configuration of the content max width to be used in components\n such as Footnote and Notification to avoid content to stretch width more then the page's width"
|
|
8525
|
+
"description": "An object containing options allowing to customize the theming experience:\n\n- `forceAbsoluteFontSizing`: available on web only; when set to true, allows\n using absolute font sizing (in pixels, doesn't scale) instead of the\n relative sizing (in `rem`, scales depending on the browser settings)\n- `contentMaxWidth`: allows configuration of the content max width to be used in components\n such as Footnote and Notification to avoid content to stretch width more then the page's width\n- `forceZIndex`: available on web only, when set to false, sets zIndex on `View` to be `auto`\n and when true, sets zIndex to be `0` (the default from `react-native-web`)"
|
|
8007
8526
|
},
|
|
8008
8527
|
"children": {
|
|
8009
8528
|
"type": {
|
|
@@ -8611,36 +9130,247 @@
|
|
|
8611
9130
|
{
|
|
8612
9131
|
"value": "'right'",
|
|
8613
9132
|
"computed": false
|
|
8614
|
-
},
|
|
8615
|
-
{
|
|
8616
|
-
"value": "'center'",
|
|
8617
|
-
"computed": false
|
|
8618
|
-
},
|
|
8619
|
-
{
|
|
8620
|
-
"value": "'justify'",
|
|
8621
|
-
"computed": false
|
|
9133
|
+
},
|
|
9134
|
+
{
|
|
9135
|
+
"value": "'center'",
|
|
9136
|
+
"computed": false
|
|
9137
|
+
},
|
|
9138
|
+
{
|
|
9139
|
+
"value": "'justify'",
|
|
9140
|
+
"computed": false
|
|
9141
|
+
}
|
|
9142
|
+
]
|
|
9143
|
+
},
|
|
9144
|
+
"required": false,
|
|
9145
|
+
"description": "Works the same as css text-align, note that RN doesn't support \"start\" or \"end\" (see https://reactnative.dev/docs/text-style-props#textalign)\nJustify is known to make text harder to read, especially for people with dyslexia (see https://developer.mozilla.org/en-US/docs/Web/CSS/text-align#accessibility_concerns)"
|
|
9146
|
+
},
|
|
9147
|
+
"tokens": {
|
|
9148
|
+
"type": {
|
|
9149
|
+
"name": "custom",
|
|
9150
|
+
"raw": {
|
|
9151
|
+
"fontName": "fontName",
|
|
9152
|
+
"fontWeight": "fontWeight",
|
|
9153
|
+
"fontSize": "fontSize",
|
|
9154
|
+
"color": "color",
|
|
9155
|
+
"lineHeight": "lineHeight",
|
|
9156
|
+
"textTransform": "textTransform",
|
|
9157
|
+
"fontScaleCap": "fontSize",
|
|
9158
|
+
"letterSpacing": "letterSpacing"
|
|
9159
|
+
}
|
|
9160
|
+
},
|
|
9161
|
+
"required": false,
|
|
9162
|
+
"description": ""
|
|
9163
|
+
},
|
|
9164
|
+
"variant": {
|
|
9165
|
+
"type": {
|
|
9166
|
+
"name": "objectOf",
|
|
9167
|
+
"value": {
|
|
9168
|
+
"name": "union",
|
|
9169
|
+
"value": [
|
|
9170
|
+
{
|
|
9171
|
+
"name": "string"
|
|
9172
|
+
},
|
|
9173
|
+
{
|
|
9174
|
+
"name": "number"
|
|
9175
|
+
},
|
|
9176
|
+
{
|
|
9177
|
+
"name": "bool"
|
|
9178
|
+
}
|
|
9179
|
+
]
|
|
9180
|
+
}
|
|
9181
|
+
},
|
|
9182
|
+
"required": false,
|
|
9183
|
+
"description": ""
|
|
9184
|
+
},
|
|
9185
|
+
"heading": {
|
|
9186
|
+
"type": {
|
|
9187
|
+
"name": "enum",
|
|
9188
|
+
"value": [
|
|
9189
|
+
{
|
|
9190
|
+
"value": "'h1'",
|
|
9191
|
+
"computed": false
|
|
9192
|
+
},
|
|
9193
|
+
{
|
|
9194
|
+
"value": "'h2'",
|
|
9195
|
+
"computed": false
|
|
9196
|
+
},
|
|
9197
|
+
{
|
|
9198
|
+
"value": "'h3'",
|
|
9199
|
+
"computed": false
|
|
9200
|
+
},
|
|
9201
|
+
{
|
|
9202
|
+
"value": "'h4'",
|
|
9203
|
+
"computed": false
|
|
9204
|
+
},
|
|
9205
|
+
{
|
|
9206
|
+
"value": "'h5'",
|
|
9207
|
+
"computed": false
|
|
9208
|
+
},
|
|
9209
|
+
{
|
|
9210
|
+
"value": "'h6'",
|
|
9211
|
+
"computed": false
|
|
9212
|
+
},
|
|
9213
|
+
{
|
|
9214
|
+
"value": "true",
|
|
9215
|
+
"computed": false
|
|
9216
|
+
}
|
|
9217
|
+
]
|
|
9218
|
+
},
|
|
9219
|
+
"required": false,
|
|
9220
|
+
"description": "Renders the text as a semantic heading. If a html heading tag is provided, uses that tag on Web.\n\nDoes not affect styling: <Typography heading=\"h2\"> will render a <h2> that looks like plain text.\nUse both `heading` and `variant` props to render semantic headings that look like headings.\n\nIn native apps, if this is `true` or any html heading tag string and accessibilityRole prop\nis not defined, the accessibilityRole will default to \"heading\"."
|
|
9221
|
+
},
|
|
9222
|
+
"children": {
|
|
9223
|
+
"type": {
|
|
9224
|
+
"name": "node"
|
|
9225
|
+
},
|
|
9226
|
+
"required": false,
|
|
9227
|
+
"description": "Same children allowed as a React Native <Text> node"
|
|
9228
|
+
}
|
|
9229
|
+
},
|
|
9230
|
+
"attributes": {
|
|
9231
|
+
"acceptsRNA11yProps": false
|
|
9232
|
+
}
|
|
9233
|
+
}
|
|
9234
|
+
},
|
|
9235
|
+
"ViewportProvider": {
|
|
9236
|
+
"docs": {
|
|
9237
|
+
"description": "Provides an up-to-date viewport value from system-constants, available via the `useViewport` hook",
|
|
9238
|
+
"props": {
|
|
9239
|
+
"children": {
|
|
9240
|
+
"type": {
|
|
9241
|
+
"name": "node"
|
|
9242
|
+
},
|
|
9243
|
+
"required": true,
|
|
9244
|
+
"description": ""
|
|
9245
|
+
}
|
|
9246
|
+
},
|
|
9247
|
+
"attributes": {
|
|
9248
|
+
"acceptsRNA11yProps": false
|
|
9249
|
+
}
|
|
9250
|
+
}
|
|
9251
|
+
},
|
|
9252
|
+
"Button": {
|
|
9253
|
+
"docs": {
|
|
9254
|
+
"description": "",
|
|
9255
|
+
"props": {
|
|
9256
|
+
"tokens": {
|
|
9257
|
+
"type": {
|
|
9258
|
+
"name": "custom",
|
|
9259
|
+
"raw": {
|
|
9260
|
+
"borderColor": "color",
|
|
9261
|
+
"borderWidth": "border",
|
|
9262
|
+
"borderRadius": "radius",
|
|
9263
|
+
"shadow": "shadow",
|
|
9264
|
+
"fontSize": "fontSize",
|
|
9265
|
+
"color": "color",
|
|
9266
|
+
"lineHeight": "lineHeight",
|
|
9267
|
+
"textAlign": "flexJustifyContent",
|
|
9268
|
+
"alignSelf": "flexAlign",
|
|
9269
|
+
"fontName": "fontName",
|
|
9270
|
+
"fontWeight": "fontWeight",
|
|
9271
|
+
"backgroundColor": "color",
|
|
9272
|
+
"opacity": "opacity",
|
|
9273
|
+
"paddingLeft": "size",
|
|
9274
|
+
"paddingRight": "size",
|
|
9275
|
+
"paddingTop": "size",
|
|
9276
|
+
"paddingBottom": "size",
|
|
9277
|
+
"width": "size",
|
|
9278
|
+
"minWidth": "size",
|
|
9279
|
+
"iconSize": "size",
|
|
9280
|
+
"iconSpace": "integer",
|
|
9281
|
+
"icon": "icon",
|
|
9282
|
+
"outerBorderColor": "color",
|
|
9283
|
+
"outerBorderWidth": "border",
|
|
9284
|
+
"outerBorderGap": "size",
|
|
9285
|
+
"outerBackgroundColor": "color",
|
|
9286
|
+
"textLine": "textLine",
|
|
9287
|
+
"textLineStyle": "textLineStyle"
|
|
9288
|
+
}
|
|
9289
|
+
},
|
|
9290
|
+
"required": false,
|
|
9291
|
+
"description": ""
|
|
9292
|
+
},
|
|
9293
|
+
"inactive": {
|
|
9294
|
+
"type": {
|
|
9295
|
+
"name": "bool"
|
|
9296
|
+
},
|
|
9297
|
+
"required": false,
|
|
9298
|
+
"description": "If true, prevents the button from being pressed, changes the cursor (on web) and accessibility\nattributes to communicate this to the user, and applies `inactive: true` appearances from the theme"
|
|
9299
|
+
},
|
|
9300
|
+
"disabled": {
|
|
9301
|
+
"type": {
|
|
9302
|
+
"name": "bool"
|
|
9303
|
+
},
|
|
9304
|
+
"required": false,
|
|
9305
|
+
"description": "Alias for `inactive`"
|
|
9306
|
+
},
|
|
9307
|
+
"children": {
|
|
9308
|
+
"type": {
|
|
9309
|
+
"name": "custom",
|
|
9310
|
+
"raw": "ABBPropTypes.childrenOf(\n PropTypes.oneOfType([ABBPropTypes.elementType(A11yText), PropTypes.string])\n)"
|
|
9311
|
+
},
|
|
9312
|
+
"required": false,
|
|
9313
|
+
"description": "Button's children must be either:\n - One or more text strings and / or A11yText components\n - A render function with contents that responds to current button state by being passed an object of:\n```\n{ hovered<bool>, focused<bool>, pressed<bool>, inactive<bool>, selected<bool>, textStyles<RNStyle> }\n```"
|
|
9314
|
+
},
|
|
9315
|
+
"onPress": {
|
|
9316
|
+
"type": {
|
|
9317
|
+
"name": "func"
|
|
9318
|
+
},
|
|
9319
|
+
"required": false,
|
|
9320
|
+
"description": "Function called when the button is pressed. Required unless the button has a href."
|
|
9321
|
+
},
|
|
9322
|
+
"iconProps": {
|
|
9323
|
+
"type": {
|
|
9324
|
+
"name": "exact",
|
|
9325
|
+
"value": {
|
|
9326
|
+
"variant": {
|
|
9327
|
+
"name": "custom",
|
|
9328
|
+
"raw": "variantProp.propType",
|
|
9329
|
+
"required": false
|
|
9330
|
+
},
|
|
9331
|
+
"tokens": {
|
|
9332
|
+
"name": "custom",
|
|
9333
|
+
"raw": "getTokensPropType('Icon')",
|
|
9334
|
+
"required": false
|
|
9335
|
+
},
|
|
9336
|
+
"accessibilityLabel": {
|
|
9337
|
+
"name": "string",
|
|
9338
|
+
"description": "Descriptive label used in web SVG title tag for accessibility",
|
|
9339
|
+
"required": false
|
|
9340
|
+
},
|
|
9341
|
+
"scalesWithText": {
|
|
9342
|
+
"name": "bool",
|
|
9343
|
+
"description": "controls whether the icon size should be proportionate to any accessibility-related font scaling.",
|
|
9344
|
+
"required": false
|
|
9345
|
+
}
|
|
9346
|
+
}
|
|
9347
|
+
},
|
|
9348
|
+
"required": false,
|
|
9349
|
+
"description": "Optional variant that may be passed down to the link's icon if there is one"
|
|
9350
|
+
},
|
|
9351
|
+
"iconPosition": {
|
|
9352
|
+
"type": {
|
|
9353
|
+
"name": "enum",
|
|
9354
|
+
"value": [
|
|
9355
|
+
{
|
|
9356
|
+
"value": "'left'",
|
|
9357
|
+
"computed": false
|
|
9358
|
+
},
|
|
9359
|
+
{
|
|
9360
|
+
"value": "'right'",
|
|
9361
|
+
"computed": false
|
|
8622
9362
|
}
|
|
8623
9363
|
]
|
|
8624
9364
|
},
|
|
8625
9365
|
"required": false,
|
|
8626
|
-
"description": "
|
|
9366
|
+
"description": "When `icon` is provided, use `iconPosition` to place the Icon to the left or right side of the button."
|
|
8627
9367
|
},
|
|
8628
|
-
"
|
|
9368
|
+
"icon": {
|
|
8629
9369
|
"type": {
|
|
8630
|
-
"name": "
|
|
8631
|
-
"raw": {
|
|
8632
|
-
"fontName": "fontName",
|
|
8633
|
-
"fontWeight": "fontWeight",
|
|
8634
|
-
"fontSize": "fontSize",
|
|
8635
|
-
"color": "color",
|
|
8636
|
-
"lineHeight": "lineHeight",
|
|
8637
|
-
"textTransform": "textTransform",
|
|
8638
|
-
"fontScaleCap": "fontSize",
|
|
8639
|
-
"letterSpacing": "letterSpacing"
|
|
8640
|
-
}
|
|
9370
|
+
"name": "func"
|
|
8641
9371
|
},
|
|
8642
9372
|
"required": false,
|
|
8643
|
-
"description": ""
|
|
9373
|
+
"description": "A function component for an SVG icon to render inside the link. Inherits size and color from\nthe link and any Typography the link is nested inside."
|
|
8644
9374
|
},
|
|
8645
9375
|
"variant": {
|
|
8646
9376
|
"type": {
|
|
@@ -8662,78 +9392,61 @@
|
|
|
8662
9392
|
},
|
|
8663
9393
|
"required": false,
|
|
8664
9394
|
"description": ""
|
|
8665
|
-
},
|
|
8666
|
-
"heading": {
|
|
8667
|
-
"type": {
|
|
8668
|
-
"name": "enum",
|
|
8669
|
-
"value": [
|
|
8670
|
-
{
|
|
8671
|
-
"value": "'h1'",
|
|
8672
|
-
"computed": false
|
|
8673
|
-
},
|
|
8674
|
-
{
|
|
8675
|
-
"value": "'h2'",
|
|
8676
|
-
"computed": false
|
|
8677
|
-
},
|
|
8678
|
-
{
|
|
8679
|
-
"value": "'h3'",
|
|
8680
|
-
"computed": false
|
|
8681
|
-
},
|
|
8682
|
-
{
|
|
8683
|
-
"value": "'h4'",
|
|
8684
|
-
"computed": false
|
|
8685
|
-
},
|
|
8686
|
-
{
|
|
8687
|
-
"value": "'h5'",
|
|
8688
|
-
"computed": false
|
|
8689
|
-
},
|
|
8690
|
-
{
|
|
8691
|
-
"value": "'h6'",
|
|
8692
|
-
"computed": false
|
|
8693
|
-
},
|
|
8694
|
-
{
|
|
8695
|
-
"value": "true",
|
|
8696
|
-
"computed": false
|
|
8697
|
-
}
|
|
8698
|
-
]
|
|
8699
|
-
},
|
|
8700
|
-
"required": false,
|
|
8701
|
-
"description": "Renders the text as a semantic heading. If a html heading tag is provided, uses that tag on Web.\n\nDoes not affect styling: <Typography heading=\"h2\"> will render a <h2> that looks like plain text.\nUse both `heading` and `variant` props to render semantic headings that look like headings.\n\nIn native apps, if this is `true` or any html heading tag string and accessibilityRole prop\nis not defined, the accessibilityRole will default to \"heading\"."
|
|
8702
|
-
},
|
|
8703
|
-
"children": {
|
|
8704
|
-
"type": {
|
|
8705
|
-
"name": "node"
|
|
8706
|
-
},
|
|
8707
|
-
"required": false,
|
|
8708
|
-
"description": "Same children allowed as a React Native <Text> node"
|
|
8709
9395
|
}
|
|
8710
9396
|
},
|
|
8711
9397
|
"attributes": {
|
|
8712
|
-
"acceptsRNA11yProps":
|
|
9398
|
+
"acceptsRNA11yProps": true
|
|
8713
9399
|
}
|
|
8714
9400
|
}
|
|
8715
9401
|
},
|
|
8716
|
-
"
|
|
9402
|
+
"ButtonDropdown": {
|
|
8717
9403
|
"docs": {
|
|
8718
|
-
"description": "
|
|
9404
|
+
"description": "",
|
|
8719
9405
|
"props": {
|
|
9406
|
+
"inactive": {
|
|
9407
|
+
"defaultValue": {
|
|
9408
|
+
"value": "false",
|
|
9409
|
+
"computed": false
|
|
9410
|
+
},
|
|
9411
|
+
"type": {
|
|
9412
|
+
"name": "bool"
|
|
9413
|
+
},
|
|
9414
|
+
"required": false,
|
|
9415
|
+
"description": "If true, prevents the button from being pressed, changes the cursor (on web) and accessibility\nattributes to communicate this to the user, and applies `inactive: true` appearances from the theme"
|
|
9416
|
+
},
|
|
9417
|
+
"readOnly": {
|
|
9418
|
+
"defaultValue": {
|
|
9419
|
+
"value": "false",
|
|
9420
|
+
"computed": false
|
|
9421
|
+
},
|
|
9422
|
+
"required": false
|
|
9423
|
+
},
|
|
8720
9424
|
"children": {
|
|
9425
|
+
"defaultValue": {
|
|
9426
|
+
"value": "null",
|
|
9427
|
+
"computed": false
|
|
9428
|
+
},
|
|
8721
9429
|
"type": {
|
|
8722
|
-
"name": "
|
|
9430
|
+
"name": "custom",
|
|
9431
|
+
"raw": "ABBPropTypes.childrenOf(\n PropTypes.oneOfType([ABBPropTypes.elementType(A11yText), PropTypes.string])\n)"
|
|
8723
9432
|
},
|
|
8724
|
-
"required":
|
|
8725
|
-
"description": ""
|
|
8726
|
-
}
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
8730
|
-
|
|
8731
|
-
|
|
8732
|
-
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
|
|
9433
|
+
"required": false,
|
|
9434
|
+
"description": "Button's children must be either:\n - One or more text strings and / or A11yText components\n - A render function with contents that responds to current button state by being passed an object of:\n```\n{ hovered<bool>, focused<bool>, pressed<bool>, inactive<bool>, selected<bool>, textStyles<RNStyle> }\n```"
|
|
9435
|
+
},
|
|
9436
|
+
"onBlur": {
|
|
9437
|
+
"type": {
|
|
9438
|
+
"name": "func"
|
|
9439
|
+
},
|
|
9440
|
+
"required": false,
|
|
9441
|
+
"description": "onBlur handler"
|
|
9442
|
+
},
|
|
9443
|
+
"onFocus": {
|
|
9444
|
+
"type": {
|
|
9445
|
+
"name": "func"
|
|
9446
|
+
},
|
|
9447
|
+
"required": false,
|
|
9448
|
+
"description": "onFocus handler"
|
|
9449
|
+
},
|
|
8737
9450
|
"tokens": {
|
|
8738
9451
|
"type": {
|
|
8739
9452
|
"name": "custom",
|
|
@@ -8763,19 +9476,14 @@
|
|
|
8763
9476
|
"outerBorderColor": "color",
|
|
8764
9477
|
"outerBorderWidth": "border",
|
|
8765
9478
|
"outerBorderGap": "size",
|
|
8766
|
-
"outerBackgroundColor": "color"
|
|
9479
|
+
"outerBackgroundColor": "color",
|
|
9480
|
+
"textLine": "textLine",
|
|
9481
|
+
"textLineStyle": "textLineStyle"
|
|
8767
9482
|
}
|
|
8768
9483
|
},
|
|
8769
9484
|
"required": false,
|
|
8770
9485
|
"description": ""
|
|
8771
9486
|
},
|
|
8772
|
-
"inactive": {
|
|
8773
|
-
"type": {
|
|
8774
|
-
"name": "bool"
|
|
8775
|
-
},
|
|
8776
|
-
"required": false,
|
|
8777
|
-
"description": "If true, prevents the button from being pressed, changes the cursor (on web) and accessibility\nattributes to communicate this to the user, and applies `inactive: true` appearances from the theme"
|
|
8778
|
-
},
|
|
8779
9487
|
"disabled": {
|
|
8780
9488
|
"type": {
|
|
8781
9489
|
"name": "bool"
|
|
@@ -8783,14 +9491,6 @@
|
|
|
8783
9491
|
"required": false,
|
|
8784
9492
|
"description": "Alias for `inactive`"
|
|
8785
9493
|
},
|
|
8786
|
-
"children": {
|
|
8787
|
-
"type": {
|
|
8788
|
-
"name": "custom",
|
|
8789
|
-
"raw": "ABBPropTypes.childrenOf(\n PropTypes.oneOfType([ABBPropTypes.elementType(A11yText), PropTypes.string])\n)"
|
|
8790
|
-
},
|
|
8791
|
-
"required": false,
|
|
8792
|
-
"description": "Button's children must be either:\n - One or more text strings and / or A11yText components\n - A render function with contents that responds to current button state by being passed an object of:\n```\n{ hovered<bool>, focused<bool>, pressed<bool>, inactive<bool>, selected<bool>, textStyles<RNStyle> }\n```"
|
|
8793
|
-
},
|
|
8794
9494
|
"onPress": {
|
|
8795
9495
|
"type": {
|
|
8796
9496
|
"name": "func"
|
|
@@ -8871,6 +9571,34 @@
|
|
|
8871
9571
|
},
|
|
8872
9572
|
"required": false,
|
|
8873
9573
|
"description": ""
|
|
9574
|
+
},
|
|
9575
|
+
"onChange": {
|
|
9576
|
+
"type": {
|
|
9577
|
+
"name": "func"
|
|
9578
|
+
},
|
|
9579
|
+
"required": false,
|
|
9580
|
+
"description": "Callback called when a controlled ButtonDropdown gets interacted with."
|
|
9581
|
+
},
|
|
9582
|
+
"value": {
|
|
9583
|
+
"type": {
|
|
9584
|
+
"name": "bool"
|
|
9585
|
+
},
|
|
9586
|
+
"required": false,
|
|
9587
|
+
"description": "`value` prop is being used to set the 'open' state of ButtonDropdown. Use it for\n controlled ButtonDropdown. For uncontrolled ButtonDropdown, use `initialValue`."
|
|
9588
|
+
},
|
|
9589
|
+
"initialValue": {
|
|
9590
|
+
"type": {
|
|
9591
|
+
"name": "bool"
|
|
9592
|
+
},
|
|
9593
|
+
"required": false,
|
|
9594
|
+
"description": "Use `initialValue` to provide the initial value for an uncontrolled version."
|
|
9595
|
+
},
|
|
9596
|
+
"label": {
|
|
9597
|
+
"type": {
|
|
9598
|
+
"name": "string"
|
|
9599
|
+
},
|
|
9600
|
+
"required": false,
|
|
9601
|
+
"description": "The label of ButtonDropdown."
|
|
8874
9602
|
}
|
|
8875
9603
|
},
|
|
8876
9604
|
"attributes": {
|
|
@@ -9152,7 +9880,9 @@
|
|
|
9152
9880
|
"outerBorderColor": "color",
|
|
9153
9881
|
"outerBorderWidth": "border",
|
|
9154
9882
|
"outerBorderGap": "size",
|
|
9155
|
-
"outerBackgroundColor": "color"
|
|
9883
|
+
"outerBackgroundColor": "color",
|
|
9884
|
+
"textLine": "textLine",
|
|
9885
|
+
"textLineStyle": "textLineStyle"
|
|
9156
9886
|
}
|
|
9157
9887
|
},
|
|
9158
9888
|
"required": false,
|
|
@@ -9571,17 +10301,6 @@
|
|
|
9571
10301
|
"required": false,
|
|
9572
10302
|
"description": "HTML tag to use for the Carousel item's immediate parent. Defaults to `'ul'` so that\nassistive technology tools know to intepret the carousel as a list.\n\nNote that if the immediate Carousel children do not all render as `'li'` elements,\nthis should be changed (e.g. pass tag=\"div\") because only 'li' is a valid child of 'ul'."
|
|
9573
10303
|
},
|
|
9574
|
-
"accessibilityLabel": {
|
|
9575
|
-
"defaultValue": {
|
|
9576
|
-
"value": "title",
|
|
9577
|
-
"computed": true
|
|
9578
|
-
},
|
|
9579
|
-
"type": {
|
|
9580
|
-
"name": "string"
|
|
9581
|
-
},
|
|
9582
|
-
"required": false,
|
|
9583
|
-
"description": "Provide custom accessibilityLabel for Carousel container"
|
|
9584
|
-
},
|
|
9585
10304
|
"accessibilityLiveRegion": {
|
|
9586
10305
|
"defaultValue": {
|
|
9587
10306
|
"value": "'polite'",
|
|
@@ -9593,6 +10312,7 @@
|
|
|
9593
10312
|
"type": {
|
|
9594
10313
|
"name": "custom",
|
|
9595
10314
|
"raw": {
|
|
10315
|
+
"backgroundColor": "color",
|
|
9596
10316
|
"nextIcon": "icon",
|
|
9597
10317
|
"previousIcon": "icon",
|
|
9598
10318
|
"showPreviousNextNavigation": "show",
|
|
@@ -9658,7 +10378,7 @@
|
|
|
9658
10378
|
"name": "func"
|
|
9659
10379
|
},
|
|
9660
10380
|
"required": false,
|
|
9661
|
-
"description": "Called when active index changed\nThis function is also provided with a parameter indicating changed index (either 1, or -1)\nUse it as follows:\n```js\n const onIndexChangedCallback = React.useCallback((changedIndex) => {\n console.log(changedIndex)\n }, []) // pass local dependencies as per your component\n <Carousel\n onIndexChanged={onIndexChangedCallback}\n >\n <Carousel.Item>First Slide</Carousel.Item>\n </Carousel>\n```\nCaution: Always consider wrapping your callback for `onIndexChanged` in `useCallback` in order to avoid bugs and performance issues"
|
|
10381
|
+
"description": "Called when active index changed\nThis function is also provided with a parameter indicating changed index (either 1, or -1)\nUse it as follows:\n```js\n const onIndexChangedCallback = React.useCallback((changedIndex, currentActiveIndex) => {\n console.log(changedIndex)\n }, []) // pass local dependencies as per your component\n <Carousel\n onIndexChanged={onIndexChangedCallback}\n >\n <Carousel.Item>First Slide</Carousel.Item>\n </Carousel>\n```\nCaution: Always consider wrapping your callback for `onIndexChanged` in `useCallback` in order to avoid bugs and performance issues"
|
|
9662
10382
|
},
|
|
9663
10383
|
"skipLinkHref": {
|
|
9664
10384
|
"type": {
|
|
@@ -9728,6 +10448,13 @@
|
|
|
9728
10448
|
},
|
|
9729
10449
|
"required": false,
|
|
9730
10450
|
"description": "Provide custom accessibilityRole for Carousel container"
|
|
10451
|
+
},
|
|
10452
|
+
"accessibilityLabel": {
|
|
10453
|
+
"type": {
|
|
10454
|
+
"name": "string"
|
|
10455
|
+
},
|
|
10456
|
+
"required": false,
|
|
10457
|
+
"description": "Provide custom accessibilityLabel for Carousel container"
|
|
9731
10458
|
}
|
|
9732
10459
|
},
|
|
9733
10460
|
"attributes": {
|
|
@@ -9827,6 +10554,27 @@
|
|
|
9827
10554
|
"required": false,
|
|
9828
10555
|
"description": "Sets the HTML tag of the outer container. By default `'li'` so that assistive technology sees\nthe Carousel as a list of items.\n\nCarousel's innermost container defaults to `'ul'` which can be overridden. If the tag of either\n`Carousel` or `Carousel.Item` is overriden, the other should be too, to avoid producing invalid HTML."
|
|
9829
10556
|
},
|
|
10557
|
+
"variant": {
|
|
10558
|
+
"type": {
|
|
10559
|
+
"name": "objectOf",
|
|
10560
|
+
"value": {
|
|
10561
|
+
"name": "union",
|
|
10562
|
+
"value": [
|
|
10563
|
+
{
|
|
10564
|
+
"name": "string"
|
|
10565
|
+
},
|
|
10566
|
+
{
|
|
10567
|
+
"name": "number"
|
|
10568
|
+
},
|
|
10569
|
+
{
|
|
10570
|
+
"name": "bool"
|
|
10571
|
+
}
|
|
10572
|
+
]
|
|
10573
|
+
}
|
|
10574
|
+
},
|
|
10575
|
+
"required": false,
|
|
10576
|
+
"description": ""
|
|
10577
|
+
},
|
|
9830
10578
|
"elementIndex": {
|
|
9831
10579
|
"type": {
|
|
9832
10580
|
"name": "number"
|
|
@@ -9858,6 +10606,13 @@
|
|
|
9858
10606
|
},
|
|
9859
10607
|
"required": true,
|
|
9860
10608
|
"description": "Content of the slide"
|
|
10609
|
+
},
|
|
10610
|
+
"setContentBackgroundColor": {
|
|
10611
|
+
"type": {
|
|
10612
|
+
"name": "func"
|
|
10613
|
+
},
|
|
10614
|
+
"required": false,
|
|
10615
|
+
"description": "Function to set carousel content background color when slide is being display"
|
|
9861
10616
|
}
|
|
9862
10617
|
},
|
|
9863
10618
|
"attributes": {
|
|
@@ -9905,6 +10660,7 @@
|
|
|
9905
10660
|
"type": {
|
|
9906
10661
|
"name": "custom",
|
|
9907
10662
|
"raw": {
|
|
10663
|
+
"backgroundColor": "color",
|
|
9908
10664
|
"nextIcon": "icon",
|
|
9909
10665
|
"previousIcon": "icon",
|
|
9910
10666
|
"showPreviousNextNavigation": "show",
|
|
@@ -10064,7 +10820,7 @@
|
|
|
10064
10820
|
"name": "func"
|
|
10065
10821
|
},
|
|
10066
10822
|
"required": false,
|
|
10067
|
-
"description": "Called when active index changed\nThis function is also provided with a parameter indicating changed index (either 1, or -1)\nUse it as follows:\n```js\n const onIndexChangedCallback = React.useCallback((changedIndex) => {\n console.log(changedIndex)\n }, []) // pass local dependencies as per your component\n <Carousel\n onIndexChanged={onIndexChangedCallback}\n >\n <Carousel.Item>First Slide</Carousel.Item>\n </Carousel>\n```\nCaution: Always consider wrapping your callback for `onIndexChanged` in `useCallback` in order to avoid bugs and performance issues"
|
|
10823
|
+
"description": "Called when active index changed\nThis function is also provided with a parameter indicating changed index (either 1, or -1)\nUse it as follows:\n```js\n const onIndexChangedCallback = React.useCallback((changedIndex, currentActiveIndex) => {\n console.log(changedIndex)\n }, []) // pass local dependencies as per your component\n <Carousel\n onIndexChanged={onIndexChangedCallback}\n >\n <Carousel.Item>First Slide</Carousel.Item>\n </Carousel>\n```\nCaution: Always consider wrapping your callback for `onIndexChanged` in `useCallback` in order to avoid bugs and performance issues"
|
|
10068
10824
|
},
|
|
10069
10825
|
"skipLinkHref": {
|
|
10070
10826
|
"type": {
|
|
@@ -10297,6 +11053,7 @@
|
|
|
10297
11053
|
"type": {
|
|
10298
11054
|
"name": "custom",
|
|
10299
11055
|
"raw": {
|
|
11056
|
+
"backgroundColor": "color",
|
|
10300
11057
|
"nextIcon": "icon",
|
|
10301
11058
|
"previousIcon": "icon",
|
|
10302
11059
|
"showPreviousNextNavigation": "show",
|
|
@@ -11757,6 +12514,10 @@
|
|
|
11757
12514
|
"borderWidth": "border",
|
|
11758
12515
|
"borderColor": "color",
|
|
11759
12516
|
"borderRadius": "radius",
|
|
12517
|
+
"buttonSize": "size",
|
|
12518
|
+
"buttonsGap": "size",
|
|
12519
|
+
"buttonsPaddingRight": "size",
|
|
12520
|
+
"clearButtonIcon": "icon",
|
|
11760
12521
|
"paddingTop": "size",
|
|
11761
12522
|
"paddingBottom": "size",
|
|
11762
12523
|
"paddingLeft": "size",
|
|
@@ -11846,6 +12607,13 @@
|
|
|
11846
12607
|
"required": false,
|
|
11847
12608
|
"description": "Use to react upon input's value changes. Required when the `value` prop is set.\nWill receive the input's value as an argument."
|
|
11848
12609
|
},
|
|
12610
|
+
"onClear": {
|
|
12611
|
+
"type": {
|
|
12612
|
+
"name": "func"
|
|
12613
|
+
},
|
|
12614
|
+
"required": false,
|
|
12615
|
+
"description": "A callback which if provided will get a clear button rendered and will be called whenever that button gets pressed."
|
|
12616
|
+
},
|
|
11849
12617
|
"tokens": {
|
|
11850
12618
|
"type": {
|
|
11851
12619
|
"name": "custom",
|
|
@@ -11855,6 +12623,10 @@
|
|
|
11855
12623
|
"borderWidth": "border",
|
|
11856
12624
|
"borderColor": "color",
|
|
11857
12625
|
"borderRadius": "radius",
|
|
12626
|
+
"buttonSize": "size",
|
|
12627
|
+
"buttonsGap": "size",
|
|
12628
|
+
"buttonsPaddingRight": "size",
|
|
12629
|
+
"clearButtonIcon": "icon",
|
|
11858
12630
|
"paddingTop": "size",
|
|
11859
12631
|
"paddingBottom": "size",
|
|
11860
12632
|
"paddingLeft": "size",
|
|
@@ -12310,6 +13082,38 @@
|
|
|
12310
13082
|
"acceptsRNA11yProps": false
|
|
12311
13083
|
}
|
|
12312
13084
|
}
|
|
13085
|
+
},
|
|
13086
|
+
"BaseView": {
|
|
13087
|
+
"docs": {
|
|
13088
|
+
"description": "Identical to React Native's View and supporting all the same props, but with:\n - a zIndex: 'auto' style added to prevent unexpectedly causing children to overlap other elements from other stacking contexts",
|
|
13089
|
+
"props": {
|
|
13090
|
+
"children": {
|
|
13091
|
+
"type": {
|
|
13092
|
+
"name": "node"
|
|
13093
|
+
},
|
|
13094
|
+
"required": false,
|
|
13095
|
+
"description": ""
|
|
13096
|
+
},
|
|
13097
|
+
"style": {
|
|
13098
|
+
"type": {
|
|
13099
|
+
"name": "union",
|
|
13100
|
+
"value": [
|
|
13101
|
+
{
|
|
13102
|
+
"name": "object"
|
|
13103
|
+
},
|
|
13104
|
+
{
|
|
13105
|
+
"name": "array"
|
|
13106
|
+
}
|
|
13107
|
+
]
|
|
13108
|
+
},
|
|
13109
|
+
"required": false,
|
|
13110
|
+
"description": ""
|
|
13111
|
+
}
|
|
13112
|
+
},
|
|
13113
|
+
"attributes": {
|
|
13114
|
+
"acceptsRNA11yProps": false
|
|
13115
|
+
}
|
|
13116
|
+
}
|
|
12313
13117
|
}
|
|
12314
13118
|
}
|
|
12315
13119
|
}
|