kemet-ui 1.2.0 → 1.3.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/custom-elements.json +1383 -349
- package/dist/components/kemet-combo/kemet-combo.js +7 -3
- package/dist/components/kemet-modal/kemet-modal.js +1 -1
- package/dist/components/kemet-sortable/kemet-sortable-item.js +42 -0
- package/dist/components/kemet-sortable/kemet-sortable.js +93 -0
- package/dist/components/kemet-upload/kemet-upload-file.js +167 -0
- package/dist/components/kemet-upload/kemet-upload-file.loaders.styles.js +53 -0
- package/dist/components/kemet-upload/kemet-upload.js +260 -0
- package/dist/kemet-components.cjs +2004 -1381
- package/dist/kemet-components.js +2004 -1382
- package/dist/kemet-components.min.js +532 -320
- package/package.json +19 -15
package/custom-elements.json
CHANGED
|
@@ -35,32 +35,32 @@
|
|
|
35
35
|
{
|
|
36
36
|
"kind": "field",
|
|
37
37
|
"name": "opened",
|
|
38
|
-
"default": "undefined",
|
|
39
38
|
"privacy": "public",
|
|
40
39
|
"description": "Determines the opened state of the panel",
|
|
40
|
+
"default": "undefined",
|
|
41
41
|
"attribute": "opened",
|
|
42
42
|
"reflects": true
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"kind": "field",
|
|
46
46
|
"name": "maxHeight",
|
|
47
|
+
"privacy": "public",
|
|
48
|
+
"description": "Sets the max height of the panel's body",
|
|
47
49
|
"type": {
|
|
48
50
|
"text": "string"
|
|
49
51
|
},
|
|
50
52
|
"default": "'0px'",
|
|
51
|
-
"privacy": "public",
|
|
52
|
-
"description": "Sets the max height of the panel's body",
|
|
53
53
|
"attribute": "max-height"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"kind": "field",
|
|
57
57
|
"name": "slug",
|
|
58
|
+
"privacy": "public",
|
|
59
|
+
"description": "Uniquely identifies a panel for accessibility purposes",
|
|
58
60
|
"type": {
|
|
59
61
|
"text": "string"
|
|
60
62
|
},
|
|
61
63
|
"default": "'panel'",
|
|
62
|
-
"privacy": "public",
|
|
63
|
-
"description": "Uniquely identifies a panel for accessibility purposes",
|
|
64
64
|
"attribute": "slug"
|
|
65
65
|
}
|
|
66
66
|
],
|
|
@@ -84,16 +84,28 @@
|
|
|
84
84
|
{
|
|
85
85
|
"name": "opened",
|
|
86
86
|
"description": "Determines the opened state of the panel",
|
|
87
|
+
"default": "undefined",
|
|
88
|
+
"resolveInitializer": {
|
|
89
|
+
"module": "src/components/kemet-accordion/kemet-accordion-panel.js"
|
|
90
|
+
},
|
|
87
91
|
"fieldName": "opened"
|
|
88
92
|
},
|
|
89
93
|
{
|
|
90
94
|
"name": "max-height",
|
|
91
95
|
"description": "Sets the max height of the panel's body",
|
|
96
|
+
"type": {
|
|
97
|
+
"text": "string"
|
|
98
|
+
},
|
|
99
|
+
"default": "'0px'",
|
|
92
100
|
"fieldName": "maxHeight"
|
|
93
101
|
},
|
|
94
102
|
{
|
|
95
103
|
"name": "slug",
|
|
96
104
|
"description": "Uniquely identifies a panel for accessibility purposes",
|
|
105
|
+
"type": {
|
|
106
|
+
"text": "string"
|
|
107
|
+
},
|
|
108
|
+
"default": "'panel'",
|
|
97
109
|
"fieldName": "slug"
|
|
98
110
|
}
|
|
99
111
|
],
|
|
@@ -175,20 +187,20 @@
|
|
|
175
187
|
{
|
|
176
188
|
"kind": "field",
|
|
177
189
|
"name": "togglePanels",
|
|
190
|
+
"privacy": "public",
|
|
191
|
+
"description": "Support for closing all inactive panels when one is opened",
|
|
178
192
|
"type": {
|
|
179
193
|
"text": "boolean"
|
|
180
194
|
},
|
|
181
195
|
"default": "false",
|
|
182
|
-
"privacy": "public",
|
|
183
|
-
"description": "Support for closing all inactive panels when one is opened",
|
|
184
196
|
"attribute": "toggle-panels"
|
|
185
197
|
},
|
|
186
198
|
{
|
|
187
199
|
"kind": "field",
|
|
188
200
|
"name": "currentPanel",
|
|
189
|
-
"default": "undefined",
|
|
190
201
|
"privacy": "public",
|
|
191
202
|
"description": "The index value for the most recently opened panel",
|
|
203
|
+
"default": "undefined",
|
|
192
204
|
"attribute": "currentPanel"
|
|
193
205
|
}
|
|
194
206
|
],
|
|
@@ -196,11 +208,19 @@
|
|
|
196
208
|
{
|
|
197
209
|
"name": "currentPanel",
|
|
198
210
|
"description": "The index value for the most recently opened panel",
|
|
211
|
+
"default": "undefined",
|
|
212
|
+
"resolveInitializer": {
|
|
213
|
+
"module": "src/components/kemet-accordion/kemet-accordion.js"
|
|
214
|
+
},
|
|
199
215
|
"fieldName": "currentPanel"
|
|
200
216
|
},
|
|
201
217
|
{
|
|
202
218
|
"name": "toggle-panels",
|
|
203
219
|
"description": "Support for closing all inactive panels when one is opened",
|
|
220
|
+
"type": {
|
|
221
|
+
"text": "boolean"
|
|
222
|
+
},
|
|
223
|
+
"default": "false",
|
|
204
224
|
"fieldName": "togglePanels"
|
|
205
225
|
}
|
|
206
226
|
],
|
|
@@ -247,48 +267,48 @@
|
|
|
247
267
|
{
|
|
248
268
|
"kind": "field",
|
|
249
269
|
"name": "status",
|
|
270
|
+
"privacy": "public",
|
|
271
|
+
"description": "The status of the badge",
|
|
250
272
|
"type": {
|
|
251
273
|
"text": "string"
|
|
252
274
|
},
|
|
253
275
|
"default": "'primary'",
|
|
254
|
-
"privacy": "public",
|
|
255
|
-
"description": "The status of the badge",
|
|
256
276
|
"attribute": "status",
|
|
257
277
|
"reflects": true
|
|
258
278
|
},
|
|
259
279
|
{
|
|
260
280
|
"kind": "field",
|
|
261
281
|
"name": "pill",
|
|
282
|
+
"privacy": "public",
|
|
283
|
+
"description": "Rounds the corners on the badge",
|
|
262
284
|
"type": {
|
|
263
285
|
"text": "boolean"
|
|
264
286
|
},
|
|
265
287
|
"default": "false",
|
|
266
|
-
"privacy": "public",
|
|
267
|
-
"description": "Rounds the corners on the badge",
|
|
268
288
|
"attribute": "pill",
|
|
269
289
|
"reflects": true
|
|
270
290
|
},
|
|
271
291
|
{
|
|
272
292
|
"kind": "field",
|
|
273
293
|
"name": "circle",
|
|
294
|
+
"privacy": "public",
|
|
295
|
+
"description": "Displays the badge in a circle",
|
|
274
296
|
"type": {
|
|
275
297
|
"text": "boolean"
|
|
276
298
|
},
|
|
277
299
|
"default": "false",
|
|
278
|
-
"privacy": "public",
|
|
279
|
-
"description": "Displays the badge in a circle",
|
|
280
300
|
"attribute": "circle",
|
|
281
301
|
"reflects": true
|
|
282
302
|
},
|
|
283
303
|
{
|
|
284
304
|
"kind": "field",
|
|
285
305
|
"name": "circlePadding",
|
|
306
|
+
"privacy": "public",
|
|
307
|
+
"description": "Padding on the badge as a circle",
|
|
286
308
|
"type": {
|
|
287
309
|
"text": "number"
|
|
288
310
|
},
|
|
289
311
|
"default": "0",
|
|
290
|
-
"privacy": "public",
|
|
291
|
-
"description": "Padding on the badge as a circle",
|
|
292
312
|
"attribute": "circle-padding"
|
|
293
313
|
}
|
|
294
314
|
],
|
|
@@ -296,21 +316,37 @@
|
|
|
296
316
|
{
|
|
297
317
|
"name": "status",
|
|
298
318
|
"description": "The status of the badge",
|
|
319
|
+
"type": {
|
|
320
|
+
"text": "string"
|
|
321
|
+
},
|
|
322
|
+
"default": "'primary'",
|
|
299
323
|
"fieldName": "status"
|
|
300
324
|
},
|
|
301
325
|
{
|
|
302
326
|
"name": "circle",
|
|
303
327
|
"description": "Displays the badge in a circle",
|
|
328
|
+
"type": {
|
|
329
|
+
"text": "boolean"
|
|
330
|
+
},
|
|
331
|
+
"default": "false",
|
|
304
332
|
"fieldName": "circle"
|
|
305
333
|
},
|
|
306
334
|
{
|
|
307
335
|
"name": "pill",
|
|
308
336
|
"description": "Rounds the corners on the badge",
|
|
337
|
+
"type": {
|
|
338
|
+
"text": "boolean"
|
|
339
|
+
},
|
|
340
|
+
"default": "false",
|
|
309
341
|
"fieldName": "pill"
|
|
310
342
|
},
|
|
311
343
|
{
|
|
312
344
|
"name": "circle-padding",
|
|
313
345
|
"description": "Padding on the badge as a circle",
|
|
346
|
+
"type": {
|
|
347
|
+
"text": "number"
|
|
348
|
+
},
|
|
349
|
+
"default": "0",
|
|
314
350
|
"fieldName": "circlePadding"
|
|
315
351
|
}
|
|
316
352
|
],
|
|
@@ -392,12 +428,12 @@
|
|
|
392
428
|
{
|
|
393
429
|
"kind": "field",
|
|
394
430
|
"name": "type",
|
|
431
|
+
"privacy": "public",
|
|
432
|
+
"description": "Controls the type of button\nstandard | text | circle | rounded | pill",
|
|
395
433
|
"type": {
|
|
396
434
|
"text": "string"
|
|
397
435
|
},
|
|
398
436
|
"default": "'standard'",
|
|
399
|
-
"privacy": "public",
|
|
400
|
-
"description": "Controls the type of button\nstandard | text | circle | rounded | pill",
|
|
401
437
|
"attribute": "type",
|
|
402
438
|
"reflects": true
|
|
403
439
|
},
|
|
@@ -505,6 +541,10 @@
|
|
|
505
541
|
{
|
|
506
542
|
"name": "type",
|
|
507
543
|
"description": "Controls the type of button\nstandard | text | circle | rounded | pill",
|
|
544
|
+
"type": {
|
|
545
|
+
"text": "string"
|
|
546
|
+
},
|
|
547
|
+
"default": "'standard'",
|
|
508
548
|
"fieldName": "type"
|
|
509
549
|
}
|
|
510
550
|
],
|
|
@@ -928,12 +968,12 @@
|
|
|
928
968
|
{
|
|
929
969
|
"kind": "field",
|
|
930
970
|
"name": "selected",
|
|
971
|
+
"privacy": "public",
|
|
972
|
+
"description": "Determines if the slide is selected",
|
|
931
973
|
"type": {
|
|
932
974
|
"text": "boolean"
|
|
933
975
|
},
|
|
934
976
|
"default": "false",
|
|
935
|
-
"privacy": "public",
|
|
936
|
-
"description": "Determines if the slide is selected",
|
|
937
977
|
"attribute": "selected",
|
|
938
978
|
"reflects": true
|
|
939
979
|
},
|
|
@@ -956,6 +996,10 @@
|
|
|
956
996
|
{
|
|
957
997
|
"name": "selected",
|
|
958
998
|
"description": "Determines if the slide is selected",
|
|
999
|
+
"type": {
|
|
1000
|
+
"text": "boolean"
|
|
1001
|
+
},
|
|
1002
|
+
"default": "false",
|
|
959
1003
|
"fieldName": "selected"
|
|
960
1004
|
},
|
|
961
1005
|
{
|
|
@@ -1162,92 +1206,92 @@
|
|
|
1162
1206
|
{
|
|
1163
1207
|
"kind": "field",
|
|
1164
1208
|
"name": "index",
|
|
1209
|
+
"privacy": "public",
|
|
1210
|
+
"description": "The current slide index.",
|
|
1165
1211
|
"type": {
|
|
1166
1212
|
"text": "number"
|
|
1167
1213
|
},
|
|
1168
1214
|
"default": "0",
|
|
1169
|
-
"privacy": "public",
|
|
1170
|
-
"description": "The current slide index.",
|
|
1171
1215
|
"attribute": "index",
|
|
1172
1216
|
"reflects": true
|
|
1173
1217
|
},
|
|
1174
1218
|
{
|
|
1175
1219
|
"kind": "field",
|
|
1176
1220
|
"name": "total",
|
|
1221
|
+
"privacy": "public",
|
|
1222
|
+
"description": "The total amount of slides",
|
|
1177
1223
|
"type": {
|
|
1178
1224
|
"text": "number"
|
|
1179
1225
|
},
|
|
1180
1226
|
"default": "0",
|
|
1181
|
-
"privacy": "public",
|
|
1182
|
-
"description": "The total amount of slides",
|
|
1183
1227
|
"attribute": "total"
|
|
1184
1228
|
},
|
|
1185
1229
|
{
|
|
1186
1230
|
"kind": "field",
|
|
1187
1231
|
"name": "sliderWidth",
|
|
1232
|
+
"privacy": "public",
|
|
1233
|
+
"description": "The width of the slider",
|
|
1188
1234
|
"type": {
|
|
1189
1235
|
"text": "string"
|
|
1190
1236
|
},
|
|
1191
1237
|
"default": "'auto'",
|
|
1192
|
-
"privacy": "public",
|
|
1193
|
-
"description": "The width of the slider",
|
|
1194
1238
|
"attribute": "sliderWidth"
|
|
1195
1239
|
},
|
|
1196
1240
|
{
|
|
1197
1241
|
"kind": "field",
|
|
1198
1242
|
"name": "sliderTranslateX",
|
|
1243
|
+
"privacy": "public",
|
|
1244
|
+
"description": "The X position of the slider",
|
|
1199
1245
|
"type": {
|
|
1200
1246
|
"text": "string"
|
|
1201
1247
|
},
|
|
1202
1248
|
"default": "'0'",
|
|
1203
|
-
"privacy": "public",
|
|
1204
|
-
"description": "The X position of the slider",
|
|
1205
1249
|
"attribute": "sliderTranslateX"
|
|
1206
1250
|
},
|
|
1207
1251
|
{
|
|
1208
1252
|
"kind": "field",
|
|
1209
1253
|
"name": "inner",
|
|
1254
|
+
"privacy": "public",
|
|
1255
|
+
"description": "Displays the toolbar inside the carousel container",
|
|
1210
1256
|
"type": {
|
|
1211
1257
|
"text": "boolean"
|
|
1212
1258
|
},
|
|
1213
1259
|
"default": "false",
|
|
1214
|
-
"privacy": "public",
|
|
1215
|
-
"description": "Displays the toolbar inside the carousel container",
|
|
1216
1260
|
"attribute": "inner",
|
|
1217
1261
|
"reflects": true
|
|
1218
1262
|
},
|
|
1219
1263
|
{
|
|
1220
1264
|
"kind": "field",
|
|
1221
1265
|
"name": "arrows",
|
|
1266
|
+
"privacy": "public",
|
|
1267
|
+
"description": "Determines whether or not to display arrows",
|
|
1222
1268
|
"type": {
|
|
1223
1269
|
"text": "boolean"
|
|
1224
1270
|
},
|
|
1225
1271
|
"default": "false",
|
|
1226
|
-
"privacy": "public",
|
|
1227
|
-
"description": "Determines whether or not to display arrows",
|
|
1228
1272
|
"attribute": "arrows",
|
|
1229
1273
|
"reflects": true
|
|
1230
1274
|
},
|
|
1231
1275
|
{
|
|
1232
1276
|
"kind": "field",
|
|
1233
1277
|
"name": "options",
|
|
1278
|
+
"privacy": "public",
|
|
1279
|
+
"description": "Default options for the carousel",
|
|
1234
1280
|
"type": {
|
|
1235
1281
|
"text": "object"
|
|
1236
1282
|
},
|
|
1237
1283
|
"default": "{\n perView: 1,\n perMove: 1,\n gap: 12,\n slideshow: 0,\n rewind: true,\n center: false,\n }",
|
|
1238
|
-
"privacy": "public",
|
|
1239
|
-
"description": "Default options for the carousel",
|
|
1240
1284
|
"attribute": "options"
|
|
1241
1285
|
},
|
|
1242
1286
|
{
|
|
1243
1287
|
"kind": "field",
|
|
1244
1288
|
"name": "breakpoints",
|
|
1289
|
+
"privacy": "public",
|
|
1290
|
+
"description": "Options are different breakpoints for the carousel. Is mobile first.",
|
|
1245
1291
|
"type": {
|
|
1246
1292
|
"text": "object"
|
|
1247
1293
|
},
|
|
1248
1294
|
"default": "{\n 768: {\n perView: 2,\n gap: 24,\n rewind: false,\n },\n 1280: {\n perView: 2.5,\n center: true,\n },\n }",
|
|
1249
|
-
"privacy": "public",
|
|
1250
|
-
"description": "Options are different breakpoints for the carousel. Is mobile first.",
|
|
1251
1295
|
"attribute": "breakpoints"
|
|
1252
1296
|
}
|
|
1253
1297
|
],
|
|
@@ -1271,41 +1315,73 @@
|
|
|
1271
1315
|
{
|
|
1272
1316
|
"name": "index",
|
|
1273
1317
|
"description": "The current slide index.",
|
|
1318
|
+
"type": {
|
|
1319
|
+
"text": "number"
|
|
1320
|
+
},
|
|
1321
|
+
"default": "0",
|
|
1274
1322
|
"fieldName": "index"
|
|
1275
1323
|
},
|
|
1276
1324
|
{
|
|
1277
1325
|
"name": "total",
|
|
1278
1326
|
"description": "The total amount of slides",
|
|
1327
|
+
"type": {
|
|
1328
|
+
"text": "number"
|
|
1329
|
+
},
|
|
1330
|
+
"default": "0",
|
|
1279
1331
|
"fieldName": "total"
|
|
1280
1332
|
},
|
|
1281
1333
|
{
|
|
1282
1334
|
"name": "sliderWidth",
|
|
1283
1335
|
"description": "The width of the slider",
|
|
1336
|
+
"type": {
|
|
1337
|
+
"text": "string"
|
|
1338
|
+
},
|
|
1339
|
+
"default": "'auto'",
|
|
1284
1340
|
"fieldName": "sliderWidth"
|
|
1285
1341
|
},
|
|
1286
1342
|
{
|
|
1287
1343
|
"name": "sliderTranslateX",
|
|
1288
1344
|
"description": "The X position of the slider",
|
|
1345
|
+
"type": {
|
|
1346
|
+
"text": "string"
|
|
1347
|
+
},
|
|
1348
|
+
"default": "'0'",
|
|
1289
1349
|
"fieldName": "sliderTranslateX"
|
|
1290
1350
|
},
|
|
1291
1351
|
{
|
|
1292
1352
|
"name": "inner",
|
|
1293
1353
|
"description": "Displays the toolbar inside the carousel container",
|
|
1354
|
+
"type": {
|
|
1355
|
+
"text": "boolean"
|
|
1356
|
+
},
|
|
1357
|
+
"default": "false",
|
|
1294
1358
|
"fieldName": "inner"
|
|
1295
1359
|
},
|
|
1296
1360
|
{
|
|
1297
1361
|
"name": "arrows",
|
|
1298
1362
|
"description": "Determines whether or not to display arrows",
|
|
1363
|
+
"type": {
|
|
1364
|
+
"text": "boolean"
|
|
1365
|
+
},
|
|
1366
|
+
"default": "false",
|
|
1299
1367
|
"fieldName": "arrows"
|
|
1300
1368
|
},
|
|
1301
1369
|
{
|
|
1302
1370
|
"name": "options",
|
|
1303
1371
|
"description": "Default options for the carousel",
|
|
1372
|
+
"type": {
|
|
1373
|
+
"text": "object"
|
|
1374
|
+
},
|
|
1375
|
+
"default": "{\n perView: 1,\n perMove: 1,\n gap: 12,\n slideshow: 0,\n rewind: true,\n center: false,\n }",
|
|
1304
1376
|
"fieldName": "options"
|
|
1305
1377
|
},
|
|
1306
1378
|
{
|
|
1307
1379
|
"name": "breakpoints",
|
|
1308
1380
|
"description": "Options are different breakpoints for the carousel. Is mobile first.",
|
|
1381
|
+
"type": {
|
|
1382
|
+
"text": "object"
|
|
1383
|
+
},
|
|
1384
|
+
"default": "{\n 768: {\n perView: 2,\n gap: 24,\n rewind: false,\n },\n 1280: {\n perView: 2.5,\n center: true,\n },\n }",
|
|
1309
1385
|
"fieldName": "breakpoints"
|
|
1310
1386
|
}
|
|
1311
1387
|
],
|
|
@@ -1380,75 +1456,75 @@
|
|
|
1380
1456
|
{
|
|
1381
1457
|
"kind": "field",
|
|
1382
1458
|
"name": "label",
|
|
1459
|
+
"privacy": "public",
|
|
1383
1460
|
"type": {
|
|
1384
1461
|
"text": "string"
|
|
1385
1462
|
},
|
|
1386
1463
|
"default": "''",
|
|
1387
|
-
"privacy": "public",
|
|
1388
1464
|
"attribute": "label"
|
|
1389
1465
|
},
|
|
1390
1466
|
{
|
|
1391
1467
|
"kind": "field",
|
|
1392
1468
|
"name": "name",
|
|
1469
|
+
"privacy": "public",
|
|
1393
1470
|
"type": {
|
|
1394
1471
|
"text": "string"
|
|
1395
1472
|
},
|
|
1396
1473
|
"default": "'checkbox'",
|
|
1397
|
-
"privacy": "public",
|
|
1398
1474
|
"attribute": "name"
|
|
1399
1475
|
},
|
|
1400
1476
|
{
|
|
1401
1477
|
"kind": "field",
|
|
1402
1478
|
"name": "disabled",
|
|
1479
|
+
"privacy": "public",
|
|
1403
1480
|
"type": {
|
|
1404
1481
|
"text": "boolean"
|
|
1405
1482
|
},
|
|
1406
1483
|
"default": "false",
|
|
1407
|
-
"privacy": "public",
|
|
1408
1484
|
"attribute": "disabled",
|
|
1409
1485
|
"reflects": true
|
|
1410
1486
|
},
|
|
1411
1487
|
{
|
|
1412
1488
|
"kind": "field",
|
|
1413
1489
|
"name": "required",
|
|
1490
|
+
"privacy": "public",
|
|
1414
1491
|
"type": {
|
|
1415
1492
|
"text": "boolean"
|
|
1416
1493
|
},
|
|
1417
1494
|
"default": "false",
|
|
1418
|
-
"privacy": "public",
|
|
1419
1495
|
"attribute": "required",
|
|
1420
1496
|
"reflects": true
|
|
1421
1497
|
},
|
|
1422
1498
|
{
|
|
1423
1499
|
"kind": "field",
|
|
1424
1500
|
"name": "rounded",
|
|
1501
|
+
"privacy": "public",
|
|
1425
1502
|
"type": {
|
|
1426
1503
|
"text": "boolean"
|
|
1427
1504
|
},
|
|
1428
1505
|
"default": "false",
|
|
1429
|
-
"privacy": "public",
|
|
1430
1506
|
"attribute": "rounded",
|
|
1431
1507
|
"reflects": true
|
|
1432
1508
|
},
|
|
1433
1509
|
{
|
|
1434
1510
|
"kind": "field",
|
|
1435
1511
|
"name": "filled",
|
|
1512
|
+
"privacy": "public",
|
|
1436
1513
|
"type": {
|
|
1437
1514
|
"text": "boolean"
|
|
1438
1515
|
},
|
|
1439
1516
|
"default": "false",
|
|
1440
|
-
"privacy": "public",
|
|
1441
1517
|
"attribute": "filled",
|
|
1442
1518
|
"reflects": true
|
|
1443
1519
|
},
|
|
1444
1520
|
{
|
|
1445
1521
|
"kind": "field",
|
|
1446
1522
|
"name": "status",
|
|
1523
|
+
"privacy": "public",
|
|
1447
1524
|
"type": {
|
|
1448
1525
|
"text": "string"
|
|
1449
1526
|
},
|
|
1450
1527
|
"default": "'standard'",
|
|
1451
|
-
"privacy": "public",
|
|
1452
1528
|
"attribute": "status",
|
|
1453
1529
|
"reflects": true
|
|
1454
1530
|
},
|
|
@@ -1511,6 +1587,10 @@
|
|
|
1511
1587
|
"attributes": [
|
|
1512
1588
|
{
|
|
1513
1589
|
"name": "label",
|
|
1590
|
+
"type": {
|
|
1591
|
+
"text": "string"
|
|
1592
|
+
},
|
|
1593
|
+
"default": "''",
|
|
1514
1594
|
"fieldName": "label"
|
|
1515
1595
|
},
|
|
1516
1596
|
{
|
|
@@ -1523,6 +1603,10 @@
|
|
|
1523
1603
|
},
|
|
1524
1604
|
{
|
|
1525
1605
|
"name": "name",
|
|
1606
|
+
"type": {
|
|
1607
|
+
"text": "string"
|
|
1608
|
+
},
|
|
1609
|
+
"default": "'checkbox'",
|
|
1526
1610
|
"fieldName": "name"
|
|
1527
1611
|
},
|
|
1528
1612
|
{
|
|
@@ -1531,10 +1615,18 @@
|
|
|
1531
1615
|
},
|
|
1532
1616
|
{
|
|
1533
1617
|
"name": "disabled",
|
|
1618
|
+
"type": {
|
|
1619
|
+
"text": "boolean"
|
|
1620
|
+
},
|
|
1621
|
+
"default": "false",
|
|
1534
1622
|
"fieldName": "disabled"
|
|
1535
1623
|
},
|
|
1536
1624
|
{
|
|
1537
1625
|
"name": "required",
|
|
1626
|
+
"type": {
|
|
1627
|
+
"text": "boolean"
|
|
1628
|
+
},
|
|
1629
|
+
"default": "false",
|
|
1538
1630
|
"fieldName": "required"
|
|
1539
1631
|
},
|
|
1540
1632
|
{
|
|
@@ -1543,14 +1635,26 @@
|
|
|
1543
1635
|
},
|
|
1544
1636
|
{
|
|
1545
1637
|
"name": "rounded",
|
|
1638
|
+
"type": {
|
|
1639
|
+
"text": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"default": "false",
|
|
1546
1642
|
"fieldName": "rounded"
|
|
1547
1643
|
},
|
|
1548
1644
|
{
|
|
1549
1645
|
"name": "filled",
|
|
1646
|
+
"type": {
|
|
1647
|
+
"text": "boolean"
|
|
1648
|
+
},
|
|
1649
|
+
"default": "false",
|
|
1550
1650
|
"fieldName": "filled"
|
|
1551
1651
|
},
|
|
1552
1652
|
{
|
|
1553
1653
|
"name": "status",
|
|
1654
|
+
"type": {
|
|
1655
|
+
"text": "string"
|
|
1656
|
+
},
|
|
1657
|
+
"default": "'standard'",
|
|
1554
1658
|
"fieldName": "status"
|
|
1555
1659
|
},
|
|
1556
1660
|
{
|
|
@@ -1587,119 +1691,78 @@
|
|
|
1587
1691
|
},
|
|
1588
1692
|
{
|
|
1589
1693
|
"kind": "javascript-module",
|
|
1590
|
-
"path": "src/components/kemet-
|
|
1694
|
+
"path": "src/components/kemet-count/kemet-count.js",
|
|
1591
1695
|
"declarations": [
|
|
1592
1696
|
{
|
|
1593
1697
|
"kind": "class",
|
|
1594
1698
|
"description": "",
|
|
1595
|
-
"name": "
|
|
1699
|
+
"name": "KemetCount",
|
|
1596
1700
|
"members": [
|
|
1597
|
-
{
|
|
1598
|
-
"kind": "method",
|
|
1599
|
-
"name": "makeOptions"
|
|
1600
|
-
},
|
|
1601
|
-
{
|
|
1602
|
-
"kind": "method",
|
|
1603
|
-
"name": "handleInput",
|
|
1604
|
-
"parameters": [
|
|
1605
|
-
{
|
|
1606
|
-
"name": "event"
|
|
1607
|
-
}
|
|
1608
|
-
]
|
|
1609
|
-
},
|
|
1610
|
-
{
|
|
1611
|
-
"kind": "method",
|
|
1612
|
-
"name": "handleSelection",
|
|
1613
|
-
"parameters": [
|
|
1614
|
-
{
|
|
1615
|
-
"name": "event"
|
|
1616
|
-
}
|
|
1617
|
-
]
|
|
1618
|
-
},
|
|
1619
|
-
{
|
|
1620
|
-
"kind": "method",
|
|
1621
|
-
"name": "handleOptionKeyDown",
|
|
1622
|
-
"parameters": [
|
|
1623
|
-
{
|
|
1624
|
-
"name": "event"
|
|
1625
|
-
}
|
|
1626
|
-
]
|
|
1627
|
-
},
|
|
1628
|
-
{
|
|
1629
|
-
"kind": "method",
|
|
1630
|
-
"name": "handleInputKeyDown",
|
|
1631
|
-
"parameters": [
|
|
1632
|
-
{
|
|
1633
|
-
"name": "event"
|
|
1634
|
-
}
|
|
1635
|
-
]
|
|
1636
|
-
},
|
|
1637
1701
|
{
|
|
1638
1702
|
"kind": "field",
|
|
1639
|
-
"name": "
|
|
1703
|
+
"name": "message",
|
|
1640
1704
|
"privacy": "public",
|
|
1641
|
-
"description": "
|
|
1642
|
-
"attribute": "
|
|
1705
|
+
"description": "The text label shown to users",
|
|
1706
|
+
"attribute": "message"
|
|
1643
1707
|
},
|
|
1644
1708
|
{
|
|
1645
1709
|
"kind": "field",
|
|
1646
|
-
"name": "
|
|
1710
|
+
"name": "remaining",
|
|
1647
1711
|
"privacy": "public",
|
|
1648
|
-
"description": "
|
|
1649
|
-
"attribute": "
|
|
1712
|
+
"description": "The number of characters remaining",
|
|
1713
|
+
"attribute": "remaining"
|
|
1650
1714
|
},
|
|
1651
1715
|
{
|
|
1652
1716
|
"kind": "field",
|
|
1653
|
-
"name": "
|
|
1717
|
+
"name": "limit",
|
|
1654
1718
|
"privacy": "public",
|
|
1655
|
-
"description": "
|
|
1656
|
-
"attribute": "
|
|
1719
|
+
"description": "The maximum number of characters allowed",
|
|
1720
|
+
"attribute": "limit"
|
|
1657
1721
|
},
|
|
1658
1722
|
{
|
|
1659
1723
|
"kind": "field",
|
|
1660
|
-
"name": "
|
|
1724
|
+
"name": "validateImmediately",
|
|
1661
1725
|
"privacy": "public",
|
|
1662
|
-
"description": "
|
|
1663
|
-
"attribute": "
|
|
1664
|
-
"reflects": true
|
|
1726
|
+
"description": "Set to true if the field should validate as soon as the character limit is reached",
|
|
1727
|
+
"attribute": "validate-immediately"
|
|
1665
1728
|
}
|
|
1666
1729
|
],
|
|
1667
1730
|
"events": [
|
|
1668
1731
|
{
|
|
1669
|
-
"name": "kemet-
|
|
1732
|
+
"name": "kemet-count-status",
|
|
1670
1733
|
"type": {
|
|
1671
1734
|
"text": "CustomEvent"
|
|
1672
1735
|
},
|
|
1673
|
-
"description": "Fires when a
|
|
1736
|
+
"description": "Fires when there's a change in status."
|
|
1674
1737
|
}
|
|
1675
1738
|
],
|
|
1676
1739
|
"attributes": [
|
|
1677
1740
|
{
|
|
1678
|
-
"name": "
|
|
1679
|
-
"description": "
|
|
1680
|
-
"fieldName": "
|
|
1741
|
+
"name": "message",
|
|
1742
|
+
"description": "The text label shown to users",
|
|
1743
|
+
"fieldName": "message"
|
|
1681
1744
|
},
|
|
1682
1745
|
{
|
|
1683
|
-
"name": "
|
|
1684
|
-
"description": "
|
|
1685
|
-
"fieldName": "
|
|
1746
|
+
"name": "remaining",
|
|
1747
|
+
"description": "The number of characters remaining",
|
|
1748
|
+
"fieldName": "remaining"
|
|
1686
1749
|
},
|
|
1687
1750
|
{
|
|
1688
|
-
"name": "
|
|
1689
|
-
"description": "
|
|
1690
|
-
"fieldName": "
|
|
1751
|
+
"name": "limit",
|
|
1752
|
+
"description": "The maximum number of characters allowed",
|
|
1753
|
+
"fieldName": "limit"
|
|
1691
1754
|
},
|
|
1692
1755
|
{
|
|
1693
|
-
"name": "
|
|
1694
|
-
"description": "
|
|
1695
|
-
"fieldName": "
|
|
1756
|
+
"name": "validate-immediately",
|
|
1757
|
+
"description": "Set to true if the field should validate as soon as the character limit is reached",
|
|
1758
|
+
"fieldName": "validateImmediately"
|
|
1696
1759
|
}
|
|
1697
1760
|
],
|
|
1698
1761
|
"superclass": {
|
|
1699
1762
|
"name": "LitElement",
|
|
1700
1763
|
"package": "lit"
|
|
1701
1764
|
},
|
|
1702
|
-
"tagName": "kemet-
|
|
1765
|
+
"tagName": "kemet-count",
|
|
1703
1766
|
"customElement": true
|
|
1704
1767
|
}
|
|
1705
1768
|
],
|
|
@@ -1708,94 +1771,135 @@
|
|
|
1708
1771
|
"kind": "js",
|
|
1709
1772
|
"name": "default",
|
|
1710
1773
|
"declaration": {
|
|
1711
|
-
"name": "
|
|
1712
|
-
"module": "src/components/kemet-
|
|
1774
|
+
"name": "KemetCount",
|
|
1775
|
+
"module": "src/components/kemet-count/kemet-count.js"
|
|
1713
1776
|
}
|
|
1714
1777
|
},
|
|
1715
1778
|
{
|
|
1716
1779
|
"kind": "custom-element-definition",
|
|
1717
|
-
"name": "kemet-
|
|
1780
|
+
"name": "kemet-count",
|
|
1718
1781
|
"declaration": {
|
|
1719
|
-
"name": "
|
|
1720
|
-
"module": "src/components/kemet-
|
|
1782
|
+
"name": "KemetCount",
|
|
1783
|
+
"module": "src/components/kemet-count/kemet-count.js"
|
|
1721
1784
|
}
|
|
1722
1785
|
}
|
|
1723
1786
|
]
|
|
1724
1787
|
},
|
|
1725
1788
|
{
|
|
1726
1789
|
"kind": "javascript-module",
|
|
1727
|
-
"path": "src/components/kemet-
|
|
1790
|
+
"path": "src/components/kemet-combo/kemet-combo.js",
|
|
1728
1791
|
"declarations": [
|
|
1729
1792
|
{
|
|
1730
1793
|
"kind": "class",
|
|
1731
1794
|
"description": "",
|
|
1732
|
-
"name": "
|
|
1795
|
+
"name": "KemetCombo",
|
|
1733
1796
|
"members": [
|
|
1797
|
+
{
|
|
1798
|
+
"kind": "method",
|
|
1799
|
+
"name": "makeOptions"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"kind": "method",
|
|
1803
|
+
"name": "handleInput",
|
|
1804
|
+
"parameters": [
|
|
1805
|
+
{
|
|
1806
|
+
"name": "event"
|
|
1807
|
+
}
|
|
1808
|
+
]
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"kind": "method",
|
|
1812
|
+
"name": "handleSelection",
|
|
1813
|
+
"parameters": [
|
|
1814
|
+
{
|
|
1815
|
+
"name": "event"
|
|
1816
|
+
}
|
|
1817
|
+
]
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"kind": "method",
|
|
1821
|
+
"name": "handleOptionKeyDown",
|
|
1822
|
+
"parameters": [
|
|
1823
|
+
{
|
|
1824
|
+
"name": "event"
|
|
1825
|
+
}
|
|
1826
|
+
]
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"kind": "method",
|
|
1830
|
+
"name": "handleInputKeyDown",
|
|
1831
|
+
"parameters": [
|
|
1832
|
+
{
|
|
1833
|
+
"name": "event"
|
|
1834
|
+
}
|
|
1835
|
+
]
|
|
1836
|
+
},
|
|
1734
1837
|
{
|
|
1735
1838
|
"kind": "field",
|
|
1736
|
-
"name": "
|
|
1839
|
+
"name": "slug",
|
|
1737
1840
|
"privacy": "public",
|
|
1738
|
-
"description": "
|
|
1739
|
-
"attribute": "
|
|
1841
|
+
"description": "Uniquely identifies the component. Should match the slug used in a control.",
|
|
1842
|
+
"attribute": "slug"
|
|
1740
1843
|
},
|
|
1741
1844
|
{
|
|
1742
1845
|
"kind": "field",
|
|
1743
|
-
"name": "
|
|
1846
|
+
"name": "options",
|
|
1744
1847
|
"privacy": "public",
|
|
1745
|
-
"description": "
|
|
1746
|
-
"attribute": "
|
|
1848
|
+
"description": "An array of items listed for the combo box",
|
|
1849
|
+
"attribute": "options"
|
|
1747
1850
|
},
|
|
1748
1851
|
{
|
|
1749
1852
|
"kind": "field",
|
|
1750
|
-
"name": "
|
|
1853
|
+
"name": "filteredOptions",
|
|
1751
1854
|
"privacy": "public",
|
|
1752
|
-
"description": "
|
|
1753
|
-
"attribute": "
|
|
1855
|
+
"description": "Used internally",
|
|
1856
|
+
"attribute": "filteredOptions"
|
|
1754
1857
|
},
|
|
1755
1858
|
{
|
|
1756
1859
|
"kind": "field",
|
|
1757
|
-
"name": "
|
|
1860
|
+
"name": "show",
|
|
1758
1861
|
"privacy": "public",
|
|
1759
|
-
"description": "
|
|
1760
|
-
"attribute": "
|
|
1862
|
+
"description": "Controls the display of the combo box",
|
|
1863
|
+
"attribute": "show",
|
|
1864
|
+
"reflects": true
|
|
1761
1865
|
}
|
|
1762
1866
|
],
|
|
1763
1867
|
"events": [
|
|
1764
1868
|
{
|
|
1765
|
-
"name": "kemet-
|
|
1869
|
+
"name": "kemet-combo-selection",
|
|
1766
1870
|
"type": {
|
|
1767
1871
|
"text": "CustomEvent"
|
|
1768
1872
|
},
|
|
1769
|
-
"description": "Fires when
|
|
1873
|
+
"description": "Fires when a selection has been made"
|
|
1770
1874
|
}
|
|
1771
1875
|
],
|
|
1772
1876
|
"attributes": [
|
|
1773
1877
|
{
|
|
1774
|
-
"name": "
|
|
1775
|
-
"description": "
|
|
1776
|
-
"fieldName": "
|
|
1878
|
+
"name": "slug",
|
|
1879
|
+
"description": "Uniquely identifies the component. Should match the slug used in a control.",
|
|
1880
|
+
"fieldName": "slug"
|
|
1777
1881
|
},
|
|
1778
1882
|
{
|
|
1779
|
-
"name": "
|
|
1780
|
-
"description": "
|
|
1781
|
-
"fieldName": "
|
|
1883
|
+
"name": "options",
|
|
1884
|
+
"description": "An array of items listed for the combo box",
|
|
1885
|
+
"fieldName": "options"
|
|
1782
1886
|
},
|
|
1783
1887
|
{
|
|
1784
|
-
"name": "
|
|
1785
|
-
"description": "
|
|
1786
|
-
"fieldName": "
|
|
1888
|
+
"name": "filteredOptions",
|
|
1889
|
+
"description": "Used internally",
|
|
1890
|
+
"fieldName": "filteredOptions"
|
|
1787
1891
|
},
|
|
1788
1892
|
{
|
|
1789
|
-
"name": "
|
|
1790
|
-
"description": "
|
|
1791
|
-
"fieldName": "
|
|
1893
|
+
"name": "show",
|
|
1894
|
+
"description": "Controls the display of the combo box",
|
|
1895
|
+
"fieldName": "show"
|
|
1792
1896
|
}
|
|
1793
1897
|
],
|
|
1794
1898
|
"superclass": {
|
|
1795
1899
|
"name": "LitElement",
|
|
1796
1900
|
"package": "lit"
|
|
1797
1901
|
},
|
|
1798
|
-
"tagName": "kemet-
|
|
1902
|
+
"tagName": "kemet-combo",
|
|
1799
1903
|
"customElement": true
|
|
1800
1904
|
}
|
|
1801
1905
|
],
|
|
@@ -1804,16 +1908,16 @@
|
|
|
1804
1908
|
"kind": "js",
|
|
1805
1909
|
"name": "default",
|
|
1806
1910
|
"declaration": {
|
|
1807
|
-
"name": "
|
|
1808
|
-
"module": "src/components/kemet-
|
|
1911
|
+
"name": "KemetCombo",
|
|
1912
|
+
"module": "src/components/kemet-combo/kemet-combo.js"
|
|
1809
1913
|
}
|
|
1810
1914
|
},
|
|
1811
1915
|
{
|
|
1812
1916
|
"kind": "custom-element-definition",
|
|
1813
|
-
"name": "kemet-
|
|
1917
|
+
"name": "kemet-combo",
|
|
1814
1918
|
"declaration": {
|
|
1815
|
-
"name": "
|
|
1816
|
-
"module": "src/components/kemet-
|
|
1919
|
+
"name": "KemetCombo",
|
|
1920
|
+
"module": "src/components/kemet-combo/kemet-combo.js"
|
|
1817
1921
|
}
|
|
1818
1922
|
}
|
|
1819
1923
|
]
|
|
@@ -1856,34 +1960,34 @@
|
|
|
1856
1960
|
{
|
|
1857
1961
|
"kind": "field",
|
|
1858
1962
|
"name": "top",
|
|
1963
|
+
"privacy": "public",
|
|
1964
|
+
"description": "The elements top position in pixels.",
|
|
1859
1965
|
"type": {
|
|
1860
1966
|
"text": "string"
|
|
1861
1967
|
},
|
|
1862
1968
|
"default": "'auto'",
|
|
1863
|
-
"privacy": "public",
|
|
1864
|
-
"description": "The elements top position in pixels.",
|
|
1865
1969
|
"attribute": "top"
|
|
1866
1970
|
},
|
|
1867
1971
|
{
|
|
1868
1972
|
"kind": "field",
|
|
1869
1973
|
"name": "left",
|
|
1974
|
+
"privacy": "public",
|
|
1975
|
+
"description": "The element's left position in pixels.",
|
|
1870
1976
|
"type": {
|
|
1871
1977
|
"text": "string"
|
|
1872
1978
|
},
|
|
1873
1979
|
"default": "'auto'",
|
|
1874
|
-
"privacy": "public",
|
|
1875
|
-
"description": "The element's left position in pixels.",
|
|
1876
1980
|
"attribute": "left"
|
|
1877
1981
|
},
|
|
1878
1982
|
{
|
|
1879
1983
|
"kind": "field",
|
|
1880
1984
|
"name": "measure",
|
|
1985
|
+
"privacy": "public",
|
|
1986
|
+
"description": "If set to true, will measure the width and height\nof the element's content and apply it to the host element.",
|
|
1881
1987
|
"type": {
|
|
1882
1988
|
"text": "boolean"
|
|
1883
1989
|
},
|
|
1884
1990
|
"default": "false",
|
|
1885
|
-
"privacy": "public",
|
|
1886
|
-
"description": "If set to true, will measure the width and height\nof the element's content and apply it to the host element.",
|
|
1887
1991
|
"attribute": "measure"
|
|
1888
1992
|
},
|
|
1889
1993
|
{
|
|
@@ -1917,16 +2021,28 @@
|
|
|
1917
2021
|
{
|
|
1918
2022
|
"name": "top",
|
|
1919
2023
|
"description": "The elements top position in pixels.",
|
|
2024
|
+
"type": {
|
|
2025
|
+
"text": "string"
|
|
2026
|
+
},
|
|
2027
|
+
"default": "'auto'",
|
|
1920
2028
|
"fieldName": "top"
|
|
1921
2029
|
},
|
|
1922
2030
|
{
|
|
1923
2031
|
"name": "left",
|
|
1924
2032
|
"description": "The element's left position in pixels.",
|
|
2033
|
+
"type": {
|
|
2034
|
+
"text": "string"
|
|
2035
|
+
},
|
|
2036
|
+
"default": "'auto'",
|
|
1925
2037
|
"fieldName": "left"
|
|
1926
2038
|
},
|
|
1927
2039
|
{
|
|
1928
2040
|
"name": "measure",
|
|
1929
2041
|
"description": "If set to true, will measure the width and height\nof the element's content and apply it to the host element.",
|
|
2042
|
+
"type": {
|
|
2043
|
+
"text": "boolean"
|
|
2044
|
+
},
|
|
2045
|
+
"default": "false",
|
|
1930
2046
|
"fieldName": "measure"
|
|
1931
2047
|
}
|
|
1932
2048
|
],
|
|
@@ -1969,45 +2085,45 @@
|
|
|
1969
2085
|
{
|
|
1970
2086
|
"kind": "field",
|
|
1971
2087
|
"name": "opened",
|
|
1972
|
-
"default": "undefined",
|
|
1973
2088
|
"privacy": "public",
|
|
1974
2089
|
"description": "Determines if the drawer is opened or not.",
|
|
2090
|
+
"default": "undefined",
|
|
1975
2091
|
"attribute": "opened",
|
|
1976
2092
|
"reflects": true
|
|
1977
2093
|
},
|
|
1978
2094
|
{
|
|
1979
2095
|
"kind": "field",
|
|
1980
2096
|
"name": "effect",
|
|
2097
|
+
"privacy": "public",
|
|
2098
|
+
"description": "The animation effect for opening and closing the drawer.\nValues include: (slide | reveal | push | scale)",
|
|
1981
2099
|
"type": {
|
|
1982
2100
|
"text": "string"
|
|
1983
2101
|
},
|
|
1984
2102
|
"default": "'slide'",
|
|
1985
|
-
"privacy": "public",
|
|
1986
|
-
"description": "The animation effect for opening and closing the drawer.\nValues include: (slide | reveal | push | scale)",
|
|
1987
2103
|
"attribute": "effect",
|
|
1988
2104
|
"reflects": true
|
|
1989
2105
|
},
|
|
1990
2106
|
{
|
|
1991
2107
|
"kind": "field",
|
|
1992
2108
|
"name": "side",
|
|
2109
|
+
"privacy": "public",
|
|
2110
|
+
"description": "Allows you to control which side the drawer opens from.\nValues include: (left | right | top | bottom)",
|
|
1993
2111
|
"type": {
|
|
1994
2112
|
"text": "string"
|
|
1995
2113
|
},
|
|
1996
2114
|
"default": "'left'",
|
|
1997
|
-
"privacy": "public",
|
|
1998
|
-
"description": "Allows you to control which side the drawer opens from.\nValues include: (left | right | top | bottom)",
|
|
1999
2115
|
"attribute": "side",
|
|
2000
2116
|
"reflects": true
|
|
2001
2117
|
},
|
|
2002
2118
|
{
|
|
2003
2119
|
"kind": "field",
|
|
2004
2120
|
"name": "overlay",
|
|
2121
|
+
"privacy": "public",
|
|
2122
|
+
"description": "Adds a overlay over the content section of the Drawer when opened",
|
|
2005
2123
|
"type": {
|
|
2006
2124
|
"text": "boolean"
|
|
2007
2125
|
},
|
|
2008
2126
|
"default": "false",
|
|
2009
|
-
"privacy": "public",
|
|
2010
|
-
"description": "Adds a overlay over the content section of the Drawer when opened",
|
|
2011
2127
|
"attribute": "overlay",
|
|
2012
2128
|
"reflects": true
|
|
2013
2129
|
}
|
|
@@ -2032,21 +2148,37 @@
|
|
|
2032
2148
|
{
|
|
2033
2149
|
"name": "opened",
|
|
2034
2150
|
"description": "Determines if the drawer is opened or not.",
|
|
2151
|
+
"default": "undefined",
|
|
2152
|
+
"resolveInitializer": {
|
|
2153
|
+
"module": "src/components/kemet-drawer/kemet-drawer.js"
|
|
2154
|
+
},
|
|
2035
2155
|
"fieldName": "opened"
|
|
2036
2156
|
},
|
|
2037
2157
|
{
|
|
2038
2158
|
"name": "effect",
|
|
2039
2159
|
"description": "The animation effect for opening and closing the drawer.\nValues include: (slide | reveal | push | scale)",
|
|
2160
|
+
"type": {
|
|
2161
|
+
"text": "string"
|
|
2162
|
+
},
|
|
2163
|
+
"default": "'slide'",
|
|
2040
2164
|
"fieldName": "effect"
|
|
2041
2165
|
},
|
|
2042
2166
|
{
|
|
2043
2167
|
"name": "side",
|
|
2044
2168
|
"description": "Allows you to control which side the drawer opens from.\nValues include: (left | right | top | bottom)",
|
|
2169
|
+
"type": {
|
|
2170
|
+
"text": "string"
|
|
2171
|
+
},
|
|
2172
|
+
"default": "'left'",
|
|
2045
2173
|
"fieldName": "side"
|
|
2046
2174
|
},
|
|
2047
2175
|
{
|
|
2048
2176
|
"name": "overlay",
|
|
2049
2177
|
"description": "Adds a overlay over the content section of the Drawer when opened",
|
|
2178
|
+
"type": {
|
|
2179
|
+
"text": "boolean"
|
|
2180
|
+
},
|
|
2181
|
+
"default": "false",
|
|
2050
2182
|
"fieldName": "overlay"
|
|
2051
2183
|
}
|
|
2052
2184
|
],
|
|
@@ -2135,36 +2267,36 @@
|
|
|
2135
2267
|
{
|
|
2136
2268
|
"kind": "field",
|
|
2137
2269
|
"name": "outlined",
|
|
2270
|
+
"privacy": "public",
|
|
2271
|
+
"description": "Outline style for a button",
|
|
2138
2272
|
"type": {
|
|
2139
2273
|
"text": "boolean"
|
|
2140
2274
|
},
|
|
2141
2275
|
"default": "false",
|
|
2142
|
-
"privacy": "public",
|
|
2143
|
-
"description": "Outline style for a button",
|
|
2144
2276
|
"attribute": "outlined",
|
|
2145
2277
|
"reflects": true
|
|
2146
2278
|
},
|
|
2147
2279
|
{
|
|
2148
2280
|
"kind": "field",
|
|
2149
2281
|
"name": "disabled",
|
|
2282
|
+
"privacy": "public",
|
|
2283
|
+
"description": "Determines whether not a button is disabled",
|
|
2150
2284
|
"type": {
|
|
2151
2285
|
"text": "boolean"
|
|
2152
2286
|
},
|
|
2153
2287
|
"default": "false",
|
|
2154
|
-
"privacy": "public",
|
|
2155
|
-
"description": "Determines whether not a button is disabled",
|
|
2156
2288
|
"attribute": "disabled",
|
|
2157
2289
|
"reflects": true
|
|
2158
2290
|
},
|
|
2159
2291
|
{
|
|
2160
2292
|
"kind": "field",
|
|
2161
2293
|
"name": "expanded",
|
|
2294
|
+
"privacy": "public",
|
|
2295
|
+
"description": "The expanded state of the button",
|
|
2162
2296
|
"type": {
|
|
2163
2297
|
"text": "boolean"
|
|
2164
2298
|
},
|
|
2165
2299
|
"default": "false",
|
|
2166
|
-
"privacy": "public",
|
|
2167
|
-
"description": "The expanded state of the button",
|
|
2168
2300
|
"attribute": "expanded",
|
|
2169
2301
|
"reflects": true
|
|
2170
2302
|
},
|
|
@@ -2195,16 +2327,28 @@
|
|
|
2195
2327
|
{
|
|
2196
2328
|
"name": "expanded",
|
|
2197
2329
|
"description": "The expanded state of the button",
|
|
2330
|
+
"type": {
|
|
2331
|
+
"text": "boolean"
|
|
2332
|
+
},
|
|
2333
|
+
"default": "false",
|
|
2198
2334
|
"fieldName": "expanded"
|
|
2199
2335
|
},
|
|
2200
2336
|
{
|
|
2201
2337
|
"name": "outlined",
|
|
2202
2338
|
"description": "Outline style for a button",
|
|
2339
|
+
"type": {
|
|
2340
|
+
"text": "boolean"
|
|
2341
|
+
},
|
|
2342
|
+
"default": "false",
|
|
2203
2343
|
"fieldName": "outlined"
|
|
2204
2344
|
},
|
|
2205
2345
|
{
|
|
2206
2346
|
"name": "disabled",
|
|
2207
2347
|
"description": "Determines whether not a button is disabled",
|
|
2348
|
+
"type": {
|
|
2349
|
+
"text": "boolean"
|
|
2350
|
+
},
|
|
2351
|
+
"default": "false",
|
|
2208
2352
|
"fieldName": "disabled"
|
|
2209
2353
|
},
|
|
2210
2354
|
{
|
|
@@ -2306,35 +2450,35 @@
|
|
|
2306
2450
|
{
|
|
2307
2451
|
"kind": "field",
|
|
2308
2452
|
"name": "status",
|
|
2453
|
+
"privacy": "public",
|
|
2454
|
+
"description": "The validation status of standard, error, or success",
|
|
2309
2455
|
"type": {
|
|
2310
2456
|
"text": "string"
|
|
2311
2457
|
},
|
|
2312
2458
|
"default": "'standard'",
|
|
2313
|
-
"privacy": "public",
|
|
2314
|
-
"description": "The validation status of standard, error, or success",
|
|
2315
2459
|
"attribute": "status",
|
|
2316
2460
|
"reflects": true
|
|
2317
2461
|
},
|
|
2318
2462
|
{
|
|
2319
2463
|
"kind": "field",
|
|
2320
2464
|
"name": "errorIcon",
|
|
2465
|
+
"privacy": "public",
|
|
2466
|
+
"description": "The icon while in an error or warning state",
|
|
2321
2467
|
"type": {
|
|
2322
2468
|
"text": "string"
|
|
2323
2469
|
},
|
|
2324
2470
|
"default": "'exclamation-triangle-fill'",
|
|
2325
|
-
"privacy": "public",
|
|
2326
|
-
"description": "The icon while in an error or warning state",
|
|
2327
2471
|
"attribute": "error-icon"
|
|
2328
2472
|
},
|
|
2329
2473
|
{
|
|
2330
2474
|
"kind": "field",
|
|
2331
2475
|
"name": "successIcon",
|
|
2476
|
+
"privacy": "public",
|
|
2477
|
+
"description": "The icon while in an success state",
|
|
2332
2478
|
"type": {
|
|
2333
2479
|
"text": "string"
|
|
2334
2480
|
},
|
|
2335
2481
|
"default": "'check-lg'",
|
|
2336
|
-
"privacy": "public",
|
|
2337
|
-
"description": "The icon while in an success state",
|
|
2338
2482
|
"attribute": "success-icon"
|
|
2339
2483
|
},
|
|
2340
2484
|
{
|
|
@@ -2423,6 +2567,10 @@
|
|
|
2423
2567
|
{
|
|
2424
2568
|
"name": "status",
|
|
2425
2569
|
"description": "The validation status of standard, error, or success",
|
|
2570
|
+
"type": {
|
|
2571
|
+
"text": "string"
|
|
2572
|
+
},
|
|
2573
|
+
"default": "'standard'",
|
|
2426
2574
|
"fieldName": "status"
|
|
2427
2575
|
},
|
|
2428
2576
|
{
|
|
@@ -2443,11 +2591,19 @@
|
|
|
2443
2591
|
{
|
|
2444
2592
|
"name": "error-icon",
|
|
2445
2593
|
"description": "The icon while in an error or warning state",
|
|
2594
|
+
"type": {
|
|
2595
|
+
"text": "string"
|
|
2596
|
+
},
|
|
2597
|
+
"default": "'exclamation-triangle-fill'",
|
|
2446
2598
|
"fieldName": "errorIcon"
|
|
2447
2599
|
},
|
|
2448
2600
|
{
|
|
2449
2601
|
"name": "success-icon",
|
|
2450
2602
|
"description": "The icon while in an success state",
|
|
2603
|
+
"type": {
|
|
2604
|
+
"text": "string"
|
|
2605
|
+
},
|
|
2606
|
+
"default": "'check-lg'",
|
|
2451
2607
|
"fieldName": "successIcon"
|
|
2452
2608
|
}
|
|
2453
2609
|
],
|
|
@@ -2552,75 +2708,95 @@
|
|
|
2552
2708
|
{
|
|
2553
2709
|
"kind": "field",
|
|
2554
2710
|
"name": "axis",
|
|
2711
|
+
"privacy": "public",
|
|
2555
2712
|
"type": {
|
|
2556
2713
|
"text": "string"
|
|
2557
2714
|
},
|
|
2558
2715
|
"default": "'horizontal'",
|
|
2559
|
-
"privacy": "public",
|
|
2560
2716
|
"attribute": "axis",
|
|
2561
2717
|
"reflects": true
|
|
2562
2718
|
},
|
|
2563
2719
|
{
|
|
2564
2720
|
"kind": "field",
|
|
2565
2721
|
"name": "flipped",
|
|
2722
|
+
"privacy": "public",
|
|
2566
2723
|
"type": {
|
|
2567
2724
|
"text": "boolean"
|
|
2568
2725
|
},
|
|
2569
2726
|
"default": "false",
|
|
2570
|
-
"privacy": "public",
|
|
2571
2727
|
"attribute": "flipped",
|
|
2572
2728
|
"reflects": true
|
|
2573
2729
|
},
|
|
2574
2730
|
{
|
|
2575
2731
|
"kind": "field",
|
|
2576
2732
|
"name": "flipOnHover",
|
|
2733
|
+
"privacy": "public",
|
|
2577
2734
|
"type": {
|
|
2578
2735
|
"text": "boolean"
|
|
2579
2736
|
},
|
|
2580
2737
|
"default": "false",
|
|
2581
|
-
"privacy": "public",
|
|
2582
2738
|
"attribute": "flip-on-hover"
|
|
2583
2739
|
},
|
|
2584
2740
|
{
|
|
2585
2741
|
"kind": "field",
|
|
2586
2742
|
"name": "height",
|
|
2743
|
+
"privacy": "public",
|
|
2587
2744
|
"type": {
|
|
2588
2745
|
"text": "string"
|
|
2589
2746
|
},
|
|
2590
2747
|
"default": "'auto'",
|
|
2591
|
-
"privacy": "public",
|
|
2592
2748
|
"attribute": "height"
|
|
2593
2749
|
},
|
|
2594
2750
|
{
|
|
2595
2751
|
"kind": "field",
|
|
2596
2752
|
"name": "measure",
|
|
2753
|
+
"privacy": "public",
|
|
2597
2754
|
"type": {
|
|
2598
2755
|
"text": "boolean"
|
|
2599
2756
|
},
|
|
2600
2757
|
"default": "false",
|
|
2601
|
-
"privacy": "public",
|
|
2602
2758
|
"attribute": "measure"
|
|
2603
2759
|
}
|
|
2604
2760
|
],
|
|
2605
2761
|
"attributes": [
|
|
2606
2762
|
{
|
|
2607
2763
|
"name": "axis",
|
|
2764
|
+
"type": {
|
|
2765
|
+
"text": "string"
|
|
2766
|
+
},
|
|
2767
|
+
"default": "'horizontal'",
|
|
2608
2768
|
"fieldName": "axis"
|
|
2609
2769
|
},
|
|
2610
2770
|
{
|
|
2611
2771
|
"name": "flipped",
|
|
2772
|
+
"type": {
|
|
2773
|
+
"text": "boolean"
|
|
2774
|
+
},
|
|
2775
|
+
"default": "false",
|
|
2612
2776
|
"fieldName": "flipped"
|
|
2613
2777
|
},
|
|
2614
2778
|
{
|
|
2615
2779
|
"name": "flip-on-hover",
|
|
2780
|
+
"type": {
|
|
2781
|
+
"text": "boolean"
|
|
2782
|
+
},
|
|
2783
|
+
"default": "false",
|
|
2616
2784
|
"fieldName": "flipOnHover"
|
|
2617
2785
|
},
|
|
2618
2786
|
{
|
|
2619
2787
|
"name": "height",
|
|
2788
|
+
"type": {
|
|
2789
|
+
"text": "string"
|
|
2790
|
+
},
|
|
2791
|
+
"default": "'auto'",
|
|
2620
2792
|
"fieldName": "height"
|
|
2621
2793
|
},
|
|
2622
2794
|
{
|
|
2623
2795
|
"name": "measure",
|
|
2796
|
+
"type": {
|
|
2797
|
+
"text": "boolean"
|
|
2798
|
+
},
|
|
2799
|
+
"default": "false",
|
|
2624
2800
|
"fieldName": "measure"
|
|
2625
2801
|
}
|
|
2626
2802
|
],
|
|
@@ -2671,34 +2847,34 @@
|
|
|
2671
2847
|
{
|
|
2672
2848
|
"kind": "field",
|
|
2673
2849
|
"name": "set",
|
|
2850
|
+
"privacy": "public",
|
|
2851
|
+
"description": "The sprite map from an open source project that an icon belongs too.\nValues include:\n(bootstrap | font-awesome-brand | font-awesome-regular | font-awesome-solid)",
|
|
2674
2852
|
"type": {
|
|
2675
2853
|
"text": "string"
|
|
2676
2854
|
},
|
|
2677
2855
|
"default": "'bootstrap'",
|
|
2678
|
-
"privacy": "public",
|
|
2679
|
-
"description": "The sprite map from an open source project that an icon belongs too.\nValues include:\n(bootstrap | font-awesome-brand | font-awesome-regular | font-awesome-solid)",
|
|
2680
2856
|
"attribute": "set"
|
|
2681
2857
|
},
|
|
2682
2858
|
{
|
|
2683
2859
|
"kind": "field",
|
|
2684
2860
|
"name": "icon",
|
|
2861
|
+
"privacy": "public",
|
|
2862
|
+
"description": "The name of the icon to reference.",
|
|
2685
2863
|
"type": {
|
|
2686
2864
|
"text": "string"
|
|
2687
2865
|
},
|
|
2688
2866
|
"default": "'alarm'",
|
|
2689
|
-
"privacy": "public",
|
|
2690
|
-
"description": "The name of the icon to reference.",
|
|
2691
2867
|
"attribute": "icon"
|
|
2692
2868
|
},
|
|
2693
2869
|
{
|
|
2694
2870
|
"kind": "field",
|
|
2695
2871
|
"name": "size",
|
|
2872
|
+
"privacy": "public",
|
|
2873
|
+
"description": "The width and height of the icon in pixels.",
|
|
2696
2874
|
"type": {
|
|
2697
2875
|
"text": "number"
|
|
2698
2876
|
},
|
|
2699
2877
|
"default": "16",
|
|
2700
|
-
"privacy": "public",
|
|
2701
|
-
"description": "The width and height of the icon in pixels.",
|
|
2702
2878
|
"attribute": "size"
|
|
2703
2879
|
}
|
|
2704
2880
|
],
|
|
@@ -2706,16 +2882,28 @@
|
|
|
2706
2882
|
{
|
|
2707
2883
|
"name": "icon",
|
|
2708
2884
|
"description": "The name of the icon to reference.",
|
|
2885
|
+
"type": {
|
|
2886
|
+
"text": "string"
|
|
2887
|
+
},
|
|
2888
|
+
"default": "'alarm'",
|
|
2709
2889
|
"fieldName": "icon"
|
|
2710
2890
|
},
|
|
2711
2891
|
{
|
|
2712
2892
|
"name": "set",
|
|
2713
2893
|
"description": "The sprite map from an open source project that an icon belongs too.\nValues include:\n(bootstrap | font-awesome-brand | font-awesome-regular | font-awesome-solid)",
|
|
2894
|
+
"type": {
|
|
2895
|
+
"text": "string"
|
|
2896
|
+
},
|
|
2897
|
+
"default": "'bootstrap'",
|
|
2714
2898
|
"fieldName": "set"
|
|
2715
2899
|
},
|
|
2716
2900
|
{
|
|
2717
2901
|
"name": "size",
|
|
2718
2902
|
"description": "The width and height of the icon in pixels.",
|
|
2903
|
+
"type": {
|
|
2904
|
+
"text": "number"
|
|
2905
|
+
},
|
|
2906
|
+
"default": "16",
|
|
2719
2907
|
"fieldName": "size"
|
|
2720
2908
|
}
|
|
2721
2909
|
],
|
|
@@ -2884,90 +3072,90 @@
|
|
|
2884
3072
|
{
|
|
2885
3073
|
"kind": "field",
|
|
2886
3074
|
"name": "name",
|
|
3075
|
+
"privacy": "public",
|
|
3076
|
+
"description": "The name of the input",
|
|
2887
3077
|
"type": {
|
|
2888
3078
|
"text": "string"
|
|
2889
3079
|
},
|
|
2890
3080
|
"default": "'input'",
|
|
2891
|
-
"privacy": "public",
|
|
2892
|
-
"description": "The name of the input",
|
|
2893
3081
|
"attribute": "name"
|
|
2894
3082
|
},
|
|
2895
3083
|
{
|
|
2896
3084
|
"kind": "field",
|
|
2897
3085
|
"name": "type",
|
|
3086
|
+
"privacy": "public",
|
|
3087
|
+
"description": "The type of input",
|
|
2898
3088
|
"type": {
|
|
2899
3089
|
"text": "string"
|
|
2900
3090
|
},
|
|
2901
3091
|
"default": "'text'",
|
|
2902
|
-
"privacy": "public",
|
|
2903
|
-
"description": "The type of input",
|
|
2904
3092
|
"attribute": "type"
|
|
2905
3093
|
},
|
|
2906
3094
|
{
|
|
2907
3095
|
"kind": "field",
|
|
2908
3096
|
"name": "value",
|
|
3097
|
+
"privacy": "public",
|
|
3098
|
+
"description": "The input's value",
|
|
2909
3099
|
"type": {
|
|
2910
3100
|
"text": "string"
|
|
2911
3101
|
},
|
|
2912
3102
|
"default": "''",
|
|
2913
|
-
"privacy": "public",
|
|
2914
|
-
"description": "The input's value",
|
|
2915
3103
|
"attribute": "value"
|
|
2916
3104
|
},
|
|
2917
3105
|
{
|
|
2918
3106
|
"kind": "field",
|
|
2919
3107
|
"name": "status",
|
|
3108
|
+
"privacy": "public",
|
|
3109
|
+
"description": "The status of the input",
|
|
2920
3110
|
"type": {
|
|
2921
3111
|
"text": "string"
|
|
2922
3112
|
},
|
|
2923
3113
|
"default": "'standard'",
|
|
2924
|
-
"privacy": "public",
|
|
2925
|
-
"description": "The status of the input",
|
|
2926
3114
|
"attribute": "status",
|
|
2927
3115
|
"reflects": true
|
|
2928
3116
|
},
|
|
2929
3117
|
{
|
|
2930
3118
|
"kind": "field",
|
|
2931
3119
|
"name": "iconSize",
|
|
3120
|
+
"privacy": "public",
|
|
3121
|
+
"description": "Size of the icons",
|
|
2932
3122
|
"type": {
|
|
2933
3123
|
"text": "number"
|
|
2934
3124
|
},
|
|
2935
3125
|
"default": "20",
|
|
2936
|
-
"privacy": "public",
|
|
2937
|
-
"description": "Size of the icons",
|
|
2938
3126
|
"attribute": "iconSize"
|
|
2939
3127
|
},
|
|
2940
3128
|
{
|
|
2941
3129
|
"kind": "field",
|
|
2942
3130
|
"name": "validateOnBlur",
|
|
3131
|
+
"privacy": "public",
|
|
3132
|
+
"description": "Activates validation on blur",
|
|
2943
3133
|
"type": {
|
|
2944
3134
|
"text": "boolean"
|
|
2945
3135
|
},
|
|
2946
3136
|
"default": "false",
|
|
2947
|
-
"privacy": "public",
|
|
2948
|
-
"description": "Activates validation on blur",
|
|
2949
3137
|
"attribute": "validate-on-blur"
|
|
2950
3138
|
},
|
|
2951
3139
|
{
|
|
2952
3140
|
"kind": "field",
|
|
2953
3141
|
"name": "isPasswordVisible",
|
|
3142
|
+
"privacy": "public",
|
|
3143
|
+
"description": "Manages password visibility",
|
|
2954
3144
|
"type": {
|
|
2955
3145
|
"text": "boolean"
|
|
2956
3146
|
},
|
|
2957
3147
|
"default": "false",
|
|
2958
|
-
"privacy": "public",
|
|
2959
|
-
"description": "Manages password visibility",
|
|
2960
3148
|
"attribute": "isPasswordVisible"
|
|
2961
3149
|
},
|
|
2962
3150
|
{
|
|
2963
3151
|
"kind": "field",
|
|
2964
3152
|
"name": "focused",
|
|
3153
|
+
"privacy": "public",
|
|
3154
|
+
"description": "Determines if the input is focused",
|
|
2965
3155
|
"type": {
|
|
2966
3156
|
"text": "boolean"
|
|
2967
3157
|
},
|
|
2968
3158
|
"default": "false",
|
|
2969
|
-
"privacy": "public",
|
|
2970
|
-
"description": "Determines if the input is focused",
|
|
2971
3159
|
"attribute": "focused",
|
|
2972
3160
|
"reflects": true
|
|
2973
3161
|
},
|
|
@@ -3185,6 +3373,10 @@
|
|
|
3185
3373
|
{
|
|
3186
3374
|
"name": "name",
|
|
3187
3375
|
"description": "The name of the input",
|
|
3376
|
+
"type": {
|
|
3377
|
+
"text": "string"
|
|
3378
|
+
},
|
|
3379
|
+
"default": "'input'",
|
|
3188
3380
|
"fieldName": "name"
|
|
3189
3381
|
},
|
|
3190
3382
|
{
|
|
@@ -3255,11 +3447,19 @@
|
|
|
3255
3447
|
{
|
|
3256
3448
|
"name": "type",
|
|
3257
3449
|
"description": "The type of input",
|
|
3450
|
+
"type": {
|
|
3451
|
+
"text": "string"
|
|
3452
|
+
},
|
|
3453
|
+
"default": "'text'",
|
|
3258
3454
|
"fieldName": "type"
|
|
3259
3455
|
},
|
|
3260
3456
|
{
|
|
3261
3457
|
"name": "value",
|
|
3262
3458
|
"description": "The input's value",
|
|
3459
|
+
"type": {
|
|
3460
|
+
"text": "string"
|
|
3461
|
+
},
|
|
3462
|
+
"default": "''",
|
|
3263
3463
|
"fieldName": "value"
|
|
3264
3464
|
},
|
|
3265
3465
|
{
|
|
@@ -3270,11 +3470,19 @@
|
|
|
3270
3470
|
{
|
|
3271
3471
|
"name": "status",
|
|
3272
3472
|
"description": "The status of the input",
|
|
3473
|
+
"type": {
|
|
3474
|
+
"text": "string"
|
|
3475
|
+
},
|
|
3476
|
+
"default": "'standard'",
|
|
3273
3477
|
"fieldName": "status"
|
|
3274
3478
|
},
|
|
3275
3479
|
{
|
|
3276
3480
|
"name": "validate-on-blur",
|
|
3277
3481
|
"description": "Activates validation on blur",
|
|
3482
|
+
"type": {
|
|
3483
|
+
"text": "boolean"
|
|
3484
|
+
},
|
|
3485
|
+
"default": "false",
|
|
3278
3486
|
"fieldName": "validateOnBlur"
|
|
3279
3487
|
},
|
|
3280
3488
|
{
|
|
@@ -3315,6 +3523,10 @@
|
|
|
3315
3523
|
{
|
|
3316
3524
|
"name": "iconSize",
|
|
3317
3525
|
"description": "Size of the icons",
|
|
3526
|
+
"type": {
|
|
3527
|
+
"text": "number"
|
|
3528
|
+
},
|
|
3529
|
+
"default": "20",
|
|
3318
3530
|
"fieldName": "iconSize"
|
|
3319
3531
|
},
|
|
3320
3532
|
{
|
|
@@ -3325,6 +3537,10 @@
|
|
|
3325
3537
|
{
|
|
3326
3538
|
"name": "isPasswordVisible",
|
|
3327
3539
|
"description": "Manages password visibility",
|
|
3540
|
+
"type": {
|
|
3541
|
+
"text": "boolean"
|
|
3542
|
+
},
|
|
3543
|
+
"default": "false",
|
|
3328
3544
|
"fieldName": "isPasswordVisible"
|
|
3329
3545
|
},
|
|
3330
3546
|
{
|
|
@@ -3335,6 +3551,10 @@
|
|
|
3335
3551
|
{
|
|
3336
3552
|
"name": "focused",
|
|
3337
3553
|
"description": "Determines if the input is focused",
|
|
3554
|
+
"type": {
|
|
3555
|
+
"text": "boolean"
|
|
3556
|
+
},
|
|
3557
|
+
"default": "false",
|
|
3338
3558
|
"fieldName": "focused"
|
|
3339
3559
|
}
|
|
3340
3560
|
],
|
|
@@ -3440,32 +3660,32 @@
|
|
|
3440
3660
|
{
|
|
3441
3661
|
"kind": "field",
|
|
3442
3662
|
"name": "opened",
|
|
3663
|
+
"privacy": "public",
|
|
3443
3664
|
"type": {
|
|
3444
3665
|
"text": "boolean"
|
|
3445
3666
|
},
|
|
3446
3667
|
"default": "false",
|
|
3447
|
-
"privacy": "public",
|
|
3448
3668
|
"attribute": "opened",
|
|
3449
3669
|
"reflects": true
|
|
3450
3670
|
},
|
|
3451
3671
|
{
|
|
3452
3672
|
"kind": "field",
|
|
3453
3673
|
"name": "closeOnClick",
|
|
3674
|
+
"privacy": "public",
|
|
3454
3675
|
"type": {
|
|
3455
3676
|
"text": "boolean"
|
|
3456
3677
|
},
|
|
3457
3678
|
"default": "false",
|
|
3458
|
-
"privacy": "public",
|
|
3459
3679
|
"attribute": "close-on-click"
|
|
3460
3680
|
},
|
|
3461
3681
|
{
|
|
3462
3682
|
"kind": "field",
|
|
3463
3683
|
"name": "breakpoint",
|
|
3684
|
+
"privacy": "public",
|
|
3464
3685
|
"type": {
|
|
3465
3686
|
"text": "string"
|
|
3466
3687
|
},
|
|
3467
3688
|
"default": "'600px'",
|
|
3468
|
-
"privacy": "public",
|
|
3469
3689
|
"attribute": "breakpoint"
|
|
3470
3690
|
},
|
|
3471
3691
|
{
|
|
@@ -3502,6 +3722,10 @@
|
|
|
3502
3722
|
"attributes": [
|
|
3503
3723
|
{
|
|
3504
3724
|
"name": "opened",
|
|
3725
|
+
"type": {
|
|
3726
|
+
"text": "boolean"
|
|
3727
|
+
},
|
|
3728
|
+
"default": "false",
|
|
3505
3729
|
"fieldName": "opened"
|
|
3506
3730
|
},
|
|
3507
3731
|
{
|
|
@@ -3510,10 +3734,18 @@
|
|
|
3510
3734
|
},
|
|
3511
3735
|
{
|
|
3512
3736
|
"name": "close-on-click",
|
|
3737
|
+
"type": {
|
|
3738
|
+
"text": "boolean"
|
|
3739
|
+
},
|
|
3740
|
+
"default": "false",
|
|
3513
3741
|
"fieldName": "closeOnClick"
|
|
3514
3742
|
},
|
|
3515
3743
|
{
|
|
3516
3744
|
"name": "breakpoint",
|
|
3745
|
+
"type": {
|
|
3746
|
+
"text": "string"
|
|
3747
|
+
},
|
|
3748
|
+
"default": "'600px'",
|
|
3517
3749
|
"fieldName": "breakpoint"
|
|
3518
3750
|
},
|
|
3519
3751
|
{
|
|
@@ -3650,43 +3882,43 @@
|
|
|
3650
3882
|
{
|
|
3651
3883
|
"kind": "field",
|
|
3652
3884
|
"name": "rules",
|
|
3885
|
+
"privacy": "public",
|
|
3886
|
+
"description": "An array of objects containing the rules the password must meet",
|
|
3653
3887
|
"type": {
|
|
3654
3888
|
"text": "array"
|
|
3655
3889
|
},
|
|
3656
3890
|
"default": "[\n { pattern: '(?=.{8,}$)', message: 'At least 8 characters long' },\n { pattern: '(?=.*[a-z])(?=.*[A-Z])', message: 'Uppercase and lowercase' },\n { pattern: '(?=.*[0-9])', message: 'At least one number (0-9)' },\n ]",
|
|
3657
|
-
"privacy": "public",
|
|
3658
|
-
"description": "An array of objects containing the rules the password must meet",
|
|
3659
3891
|
"attribute": "rules"
|
|
3660
3892
|
},
|
|
3661
3893
|
{
|
|
3662
3894
|
"kind": "field",
|
|
3663
3895
|
"name": "message",
|
|
3896
|
+
"privacy": "public",
|
|
3897
|
+
"description": "A message that is above the rules",
|
|
3664
3898
|
"type": {
|
|
3665
3899
|
"text": "string"
|
|
3666
3900
|
},
|
|
3667
3901
|
"default": "'Please make sure you meet all the requirements.'",
|
|
3668
|
-
"privacy": "public",
|
|
3669
|
-
"description": "A message that is above the rules",
|
|
3670
3902
|
"attribute": "message"
|
|
3671
3903
|
},
|
|
3672
3904
|
{
|
|
3673
3905
|
"kind": "field",
|
|
3674
3906
|
"name": "icon",
|
|
3907
|
+
"privacy": "public",
|
|
3675
3908
|
"type": {
|
|
3676
3909
|
"text": "string"
|
|
3677
3910
|
},
|
|
3678
3911
|
"default": "'check2'",
|
|
3679
|
-
"privacy": "public",
|
|
3680
3912
|
"attribute": "icon"
|
|
3681
3913
|
},
|
|
3682
3914
|
{
|
|
3683
3915
|
"kind": "field",
|
|
3684
3916
|
"name": "iconSize",
|
|
3917
|
+
"privacy": "public",
|
|
3685
3918
|
"type": {
|
|
3686
3919
|
"text": "number"
|
|
3687
3920
|
},
|
|
3688
3921
|
"default": "16",
|
|
3689
|
-
"privacy": "public",
|
|
3690
3922
|
"attribute": "iconSize"
|
|
3691
3923
|
},
|
|
3692
3924
|
{
|
|
@@ -3725,6 +3957,10 @@
|
|
|
3725
3957
|
{
|
|
3726
3958
|
"name": "rules",
|
|
3727
3959
|
"description": "An array of objects containing the rules the password must meet",
|
|
3960
|
+
"type": {
|
|
3961
|
+
"text": "array"
|
|
3962
|
+
},
|
|
3963
|
+
"default": "[\n { pattern: '(?=.{8,}$)', message: 'At least 8 characters long' },\n { pattern: '(?=.*[a-z])(?=.*[A-Z])', message: 'Uppercase and lowercase' },\n { pattern: '(?=.*[0-9])', message: 'At least one number (0-9)' },\n ]",
|
|
3728
3964
|
"fieldName": "rules"
|
|
3729
3965
|
},
|
|
3730
3966
|
{
|
|
@@ -3740,6 +3976,10 @@
|
|
|
3740
3976
|
{
|
|
3741
3977
|
"name": "message",
|
|
3742
3978
|
"description": "A message that is above the rules",
|
|
3979
|
+
"type": {
|
|
3980
|
+
"text": "string"
|
|
3981
|
+
},
|
|
3982
|
+
"default": "'Please make sure you meet all the requirements.'",
|
|
3743
3983
|
"fieldName": "message"
|
|
3744
3984
|
},
|
|
3745
3985
|
{
|
|
@@ -3749,10 +3989,18 @@
|
|
|
3749
3989
|
},
|
|
3750
3990
|
{
|
|
3751
3991
|
"name": "icon",
|
|
3992
|
+
"type": {
|
|
3993
|
+
"text": "string"
|
|
3994
|
+
},
|
|
3995
|
+
"default": "'check2'",
|
|
3752
3996
|
"fieldName": "icon"
|
|
3753
3997
|
},
|
|
3754
3998
|
{
|
|
3755
3999
|
"name": "iconSize",
|
|
4000
|
+
"type": {
|
|
4001
|
+
"text": "number"
|
|
4002
|
+
},
|
|
4003
|
+
"default": "16",
|
|
3756
4004
|
"fieldName": "iconSize"
|
|
3757
4005
|
}
|
|
3758
4006
|
],
|
|
@@ -4021,92 +4269,92 @@
|
|
|
4021
4269
|
{
|
|
4022
4270
|
"kind": "field",
|
|
4023
4271
|
"name": "opened",
|
|
4272
|
+
"privacy": "public",
|
|
4273
|
+
"description": "Determines whether or not the popover displays.",
|
|
4024
4274
|
"type": {
|
|
4025
4275
|
"text": "boolean"
|
|
4026
4276
|
},
|
|
4027
4277
|
"default": "false",
|
|
4028
|
-
"privacy": "public",
|
|
4029
|
-
"description": "Determines whether or not the popover displays.",
|
|
4030
4278
|
"attribute": "opened",
|
|
4031
4279
|
"reflects": true
|
|
4032
4280
|
},
|
|
4033
4281
|
{
|
|
4034
4282
|
"kind": "field",
|
|
4035
4283
|
"name": "effect",
|
|
4284
|
+
"privacy": "public",
|
|
4285
|
+
"description": "The opening and closing effect of the popover. Is optional.\nValues include:\n(fade | scale | slide | fall | flip horizontal | flip vertical | sign | super scaled)",
|
|
4036
4286
|
"type": {
|
|
4037
4287
|
"text": "null"
|
|
4038
4288
|
},
|
|
4039
4289
|
"default": "null",
|
|
4040
|
-
"privacy": "public",
|
|
4041
|
-
"description": "The opening and closing effect of the popover. Is optional.\nValues include:\n(fade | scale | slide | fall | flip horizontal | flip vertical | sign | super scaled)",
|
|
4042
4290
|
"attribute": "effect",
|
|
4043
4291
|
"reflects": true
|
|
4044
4292
|
},
|
|
4045
4293
|
{
|
|
4046
4294
|
"kind": "field",
|
|
4047
4295
|
"name": "position",
|
|
4296
|
+
"privacy": "public",
|
|
4297
|
+
"description": "Determines the placement of the popover.\nValues include: (top | right | bottom | left)",
|
|
4048
4298
|
"type": {
|
|
4049
4299
|
"text": "string"
|
|
4050
4300
|
},
|
|
4051
4301
|
"default": "'top'",
|
|
4052
|
-
"privacy": "public",
|
|
4053
|
-
"description": "Determines the placement of the popover.\nValues include: (top | right | bottom | left)",
|
|
4054
4302
|
"attribute": "position",
|
|
4055
4303
|
"reflects": true
|
|
4056
4304
|
},
|
|
4057
4305
|
{
|
|
4058
4306
|
"kind": "field",
|
|
4059
4307
|
"name": "tooltip",
|
|
4308
|
+
"privacy": "public",
|
|
4309
|
+
"description": "Adds a built in tooltip to the popover.",
|
|
4060
4310
|
"type": {
|
|
4061
4311
|
"text": "boolean"
|
|
4062
4312
|
},
|
|
4063
4313
|
"default": "false",
|
|
4064
|
-
"privacy": "public",
|
|
4065
|
-
"description": "Adds a built in tooltip to the popover.",
|
|
4066
4314
|
"attribute": "tooltip"
|
|
4067
4315
|
},
|
|
4068
4316
|
{
|
|
4069
4317
|
"kind": "field",
|
|
4070
4318
|
"name": "customTooltip",
|
|
4319
|
+
"privacy": "public",
|
|
4320
|
+
"description": "Adds a custom tooltip to the popover.\nUse the custom-tooltip slot to specify the custom tooltip.",
|
|
4071
4321
|
"type": {
|
|
4072
4322
|
"text": "boolean"
|
|
4073
4323
|
},
|
|
4074
4324
|
"default": "false",
|
|
4075
|
-
"privacy": "public",
|
|
4076
|
-
"description": "Adds a custom tooltip to the popover.\nUse the custom-tooltip slot to specify the custom tooltip.",
|
|
4077
4325
|
"attribute": "custom-tooltip"
|
|
4078
4326
|
},
|
|
4079
4327
|
{
|
|
4080
4328
|
"kind": "field",
|
|
4081
4329
|
"name": "fireOn",
|
|
4330
|
+
"privacy": "public",
|
|
4331
|
+
"description": "Controls how the trigger should activate the popover.\nValues include: (click | hover)",
|
|
4082
4332
|
"type": {
|
|
4083
4333
|
"text": "string"
|
|
4084
4334
|
},
|
|
4085
4335
|
"default": "'hover'",
|
|
4086
|
-
"privacy": "public",
|
|
4087
|
-
"description": "Controls how the trigger should activate the popover.\nValues include: (click | hover)",
|
|
4088
4336
|
"attribute": "fire-on"
|
|
4089
4337
|
},
|
|
4090
4338
|
{
|
|
4091
4339
|
"kind": "field",
|
|
4092
4340
|
"name": "clickOutside",
|
|
4341
|
+
"privacy": "public",
|
|
4342
|
+
"description": "Allows the popover to be closed by clicking outside of its content.",
|
|
4093
4343
|
"type": {
|
|
4094
4344
|
"text": "boolean"
|
|
4095
4345
|
},
|
|
4096
4346
|
"default": "false",
|
|
4097
|
-
"privacy": "public",
|
|
4098
|
-
"description": "Allows the popover to be closed by clicking outside of its content.",
|
|
4099
4347
|
"attribute": "click-outside"
|
|
4100
4348
|
},
|
|
4101
4349
|
{
|
|
4102
4350
|
"kind": "field",
|
|
4103
4351
|
"name": "smart",
|
|
4352
|
+
"privacy": "public",
|
|
4353
|
+
"description": "Intelligently positions the popover.",
|
|
4104
4354
|
"type": {
|
|
4105
4355
|
"text": "boolean"
|
|
4106
4356
|
},
|
|
4107
4357
|
"default": "true",
|
|
4108
|
-
"privacy": "public",
|
|
4109
|
-
"description": "Intelligently positions the popover.",
|
|
4110
4358
|
"attribute": "smart"
|
|
4111
4359
|
}
|
|
4112
4360
|
],
|
|
@@ -4130,41 +4378,73 @@
|
|
|
4130
4378
|
{
|
|
4131
4379
|
"name": "opened",
|
|
4132
4380
|
"description": "Determines whether or not the popover displays.",
|
|
4381
|
+
"type": {
|
|
4382
|
+
"text": "boolean"
|
|
4383
|
+
},
|
|
4384
|
+
"default": "false",
|
|
4133
4385
|
"fieldName": "opened"
|
|
4134
4386
|
},
|
|
4135
4387
|
{
|
|
4136
4388
|
"name": "effect",
|
|
4137
4389
|
"description": "The opening and closing effect of the popover. Is optional.\nValues include:\n(fade | scale | slide | fall | flip horizontal | flip vertical | sign | super scaled)",
|
|
4390
|
+
"type": {
|
|
4391
|
+
"text": "null"
|
|
4392
|
+
},
|
|
4393
|
+
"default": "null",
|
|
4138
4394
|
"fieldName": "effect"
|
|
4139
4395
|
},
|
|
4140
4396
|
{
|
|
4141
4397
|
"name": "position",
|
|
4142
4398
|
"description": "Determines the placement of the popover.\nValues include: (top | right | bottom | left)",
|
|
4399
|
+
"type": {
|
|
4400
|
+
"text": "string"
|
|
4401
|
+
},
|
|
4402
|
+
"default": "'top'",
|
|
4143
4403
|
"fieldName": "position"
|
|
4144
4404
|
},
|
|
4145
4405
|
{
|
|
4146
4406
|
"name": "tooltip",
|
|
4147
4407
|
"description": "Adds a built in tooltip to the popover.",
|
|
4408
|
+
"type": {
|
|
4409
|
+
"text": "boolean"
|
|
4410
|
+
},
|
|
4411
|
+
"default": "false",
|
|
4148
4412
|
"fieldName": "tooltip"
|
|
4149
4413
|
},
|
|
4150
4414
|
{
|
|
4151
4415
|
"name": "custom-tooltip",
|
|
4152
4416
|
"description": "Adds a custom tooltip to the popover.\nUse the custom-tooltip slot to specify the custom tooltip.",
|
|
4417
|
+
"type": {
|
|
4418
|
+
"text": "boolean"
|
|
4419
|
+
},
|
|
4420
|
+
"default": "false",
|
|
4153
4421
|
"fieldName": "customTooltip"
|
|
4154
4422
|
},
|
|
4155
4423
|
{
|
|
4156
4424
|
"name": "fire-on",
|
|
4157
4425
|
"description": "Controls how the trigger should activate the popover.\nValues include: (click | hover)",
|
|
4426
|
+
"type": {
|
|
4427
|
+
"text": "string"
|
|
4428
|
+
},
|
|
4429
|
+
"default": "'hover'",
|
|
4158
4430
|
"fieldName": "fireOn"
|
|
4159
4431
|
},
|
|
4160
4432
|
{
|
|
4161
4433
|
"name": "click-outside",
|
|
4162
4434
|
"description": "Allows the popover to be closed by clicking outside of its content.",
|
|
4435
|
+
"type": {
|
|
4436
|
+
"text": "boolean"
|
|
4437
|
+
},
|
|
4438
|
+
"default": "false",
|
|
4163
4439
|
"fieldName": "clickOutside"
|
|
4164
4440
|
},
|
|
4165
4441
|
{
|
|
4166
4442
|
"name": "smart",
|
|
4167
4443
|
"description": "Intelligently positions the popover.",
|
|
4444
|
+
"type": {
|
|
4445
|
+
"text": "boolean"
|
|
4446
|
+
},
|
|
4447
|
+
"default": "true",
|
|
4168
4448
|
"fieldName": "smart"
|
|
4169
4449
|
}
|
|
4170
4450
|
],
|
|
@@ -4265,12 +4545,12 @@
|
|
|
4265
4545
|
{
|
|
4266
4546
|
"kind": "field",
|
|
4267
4547
|
"name": "label",
|
|
4548
|
+
"privacy": "public",
|
|
4549
|
+
"description": "The text next to the radio button",
|
|
4268
4550
|
"type": {
|
|
4269
4551
|
"text": "string"
|
|
4270
4552
|
},
|
|
4271
4553
|
"default": "''",
|
|
4272
|
-
"privacy": "public",
|
|
4273
|
-
"description": "The text next to the radio button",
|
|
4274
4554
|
"attribute": "label"
|
|
4275
4555
|
},
|
|
4276
4556
|
{
|
|
@@ -4283,12 +4563,12 @@
|
|
|
4283
4563
|
{
|
|
4284
4564
|
"kind": "field",
|
|
4285
4565
|
"name": "disabled",
|
|
4566
|
+
"privacy": "public",
|
|
4567
|
+
"description": "Determines if the button should be disabled",
|
|
4286
4568
|
"type": {
|
|
4287
4569
|
"text": "boolean"
|
|
4288
4570
|
},
|
|
4289
4571
|
"default": "false",
|
|
4290
|
-
"privacy": "public",
|
|
4291
|
-
"description": "Determines if the button should be disabled",
|
|
4292
4572
|
"attribute": "disabled",
|
|
4293
4573
|
"reflects": true
|
|
4294
4574
|
},
|
|
@@ -4337,6 +4617,10 @@
|
|
|
4337
4617
|
{
|
|
4338
4618
|
"name": "label",
|
|
4339
4619
|
"description": "The text next to the radio button",
|
|
4620
|
+
"type": {
|
|
4621
|
+
"text": "string"
|
|
4622
|
+
},
|
|
4623
|
+
"default": "''",
|
|
4340
4624
|
"fieldName": "label"
|
|
4341
4625
|
},
|
|
4342
4626
|
{
|
|
@@ -4357,6 +4641,10 @@
|
|
|
4357
4641
|
{
|
|
4358
4642
|
"name": "disabled",
|
|
4359
4643
|
"description": "Determines if the button should be disabled",
|
|
4644
|
+
"type": {
|
|
4645
|
+
"text": "boolean"
|
|
4646
|
+
},
|
|
4647
|
+
"default": "false",
|
|
4360
4648
|
"fieldName": "disabled"
|
|
4361
4649
|
},
|
|
4362
4650
|
{
|
|
@@ -4439,46 +4727,46 @@
|
|
|
4439
4727
|
{
|
|
4440
4728
|
"kind": "field",
|
|
4441
4729
|
"name": "legend",
|
|
4730
|
+
"privacy": "public",
|
|
4731
|
+
"description": "The legend text for the fieldset",
|
|
4442
4732
|
"type": {
|
|
4443
4733
|
"text": "string"
|
|
4444
4734
|
},
|
|
4445
4735
|
"default": "''",
|
|
4446
|
-
"privacy": "public",
|
|
4447
|
-
"description": "The legend text for the fieldset",
|
|
4448
4736
|
"attribute": "legend"
|
|
4449
4737
|
},
|
|
4450
4738
|
{
|
|
4451
4739
|
"kind": "field",
|
|
4452
4740
|
"name": "axis",
|
|
4741
|
+
"privacy": "public",
|
|
4742
|
+
"description": "The direction of the button's layout",
|
|
4453
4743
|
"type": {
|
|
4454
4744
|
"text": "string"
|
|
4455
4745
|
},
|
|
4456
4746
|
"default": "'horizontal'",
|
|
4457
|
-
"privacy": "public",
|
|
4458
|
-
"description": "The direction of the button's layout",
|
|
4459
4747
|
"attribute": "axis",
|
|
4460
4748
|
"reflects": true
|
|
4461
4749
|
},
|
|
4462
4750
|
{
|
|
4463
4751
|
"kind": "field",
|
|
4464
4752
|
"name": "name",
|
|
4753
|
+
"privacy": "public",
|
|
4754
|
+
"description": "The name of the radio button set",
|
|
4465
4755
|
"type": {
|
|
4466
4756
|
"text": "string"
|
|
4467
4757
|
},
|
|
4468
4758
|
"default": "'radios'",
|
|
4469
|
-
"privacy": "public",
|
|
4470
|
-
"description": "The name of the radio button set",
|
|
4471
4759
|
"attribute": "name"
|
|
4472
4760
|
},
|
|
4473
4761
|
{
|
|
4474
4762
|
"kind": "field",
|
|
4475
4763
|
"name": "status",
|
|
4764
|
+
"privacy": "public",
|
|
4765
|
+
"description": "The status of the radio button set",
|
|
4476
4766
|
"type": {
|
|
4477
4767
|
"text": "string"
|
|
4478
4768
|
},
|
|
4479
4769
|
"default": "'standard'",
|
|
4480
|
-
"privacy": "public",
|
|
4481
|
-
"description": "The status of the radio button set",
|
|
4482
4770
|
"attribute": "status",
|
|
4483
4771
|
"reflects": true
|
|
4484
4772
|
},
|
|
@@ -4523,11 +4811,19 @@
|
|
|
4523
4811
|
{
|
|
4524
4812
|
"name": "legend",
|
|
4525
4813
|
"description": "The legend text for the fieldset",
|
|
4814
|
+
"type": {
|
|
4815
|
+
"text": "string"
|
|
4816
|
+
},
|
|
4817
|
+
"default": "''",
|
|
4526
4818
|
"fieldName": "legend"
|
|
4527
4819
|
},
|
|
4528
4820
|
{
|
|
4529
4821
|
"name": "axis",
|
|
4530
4822
|
"description": "The direction of the button's layout",
|
|
4823
|
+
"type": {
|
|
4824
|
+
"text": "string"
|
|
4825
|
+
},
|
|
4826
|
+
"default": "'horizontal'",
|
|
4531
4827
|
"fieldName": "axis"
|
|
4532
4828
|
},
|
|
4533
4829
|
{
|
|
@@ -4538,11 +4834,19 @@
|
|
|
4538
4834
|
{
|
|
4539
4835
|
"name": "name",
|
|
4540
4836
|
"description": "The name of the radio button set",
|
|
4837
|
+
"type": {
|
|
4838
|
+
"text": "string"
|
|
4839
|
+
},
|
|
4840
|
+
"default": "'radios'",
|
|
4541
4841
|
"fieldName": "name"
|
|
4542
4842
|
},
|
|
4543
4843
|
{
|
|
4544
4844
|
"name": "status",
|
|
4545
4845
|
"description": "The status of the radio button set",
|
|
4846
|
+
"type": {
|
|
4847
|
+
"text": "string"
|
|
4848
|
+
},
|
|
4849
|
+
"default": "'standard'",
|
|
4546
4850
|
"fieldName": "status"
|
|
4547
4851
|
},
|
|
4548
4852
|
{
|
|
@@ -4607,68 +4911,68 @@
|
|
|
4607
4911
|
{
|
|
4608
4912
|
"kind": "field",
|
|
4609
4913
|
"name": "activeSlide",
|
|
4914
|
+
"privacy": "public",
|
|
4915
|
+
"description": "The index number for the current slide.",
|
|
4610
4916
|
"type": {
|
|
4611
4917
|
"text": "number"
|
|
4612
4918
|
},
|
|
4613
4919
|
"default": "0",
|
|
4614
|
-
"privacy": "public",
|
|
4615
|
-
"description": "The index number for the current slide.",
|
|
4616
4920
|
"attribute": "activeSlide"
|
|
4617
4921
|
},
|
|
4618
4922
|
{
|
|
4619
4923
|
"kind": "field",
|
|
4620
4924
|
"name": "messages",
|
|
4925
|
+
"privacy": "public",
|
|
4926
|
+
"description": "Text in the rotator. Supports HTML.",
|
|
4621
4927
|
"type": {
|
|
4622
4928
|
"text": "array"
|
|
4623
4929
|
},
|
|
4624
4930
|
"default": "[]",
|
|
4625
|
-
"privacy": "public",
|
|
4626
|
-
"description": "Text in the rotator. Supports HTML.",
|
|
4627
4931
|
"attribute": "messages"
|
|
4628
4932
|
},
|
|
4629
4933
|
{
|
|
4630
4934
|
"kind": "field",
|
|
4631
4935
|
"name": "effect",
|
|
4936
|
+
"privacy": "public",
|
|
4937
|
+
"description": "The transition effect type.",
|
|
4632
4938
|
"type": {
|
|
4633
4939
|
"text": "string"
|
|
4634
4940
|
},
|
|
4635
4941
|
"default": "'fade'",
|
|
4636
|
-
"privacy": "public",
|
|
4637
|
-
"description": "The transition effect type.",
|
|
4638
4942
|
"attribute": "effect",
|
|
4639
4943
|
"reflects": true
|
|
4640
4944
|
},
|
|
4641
4945
|
{
|
|
4642
4946
|
"kind": "field",
|
|
4643
4947
|
"name": "rotationSpeed",
|
|
4948
|
+
"privacy": "public",
|
|
4949
|
+
"description": "How fast, in seconds, each slide lasts. Stop the rotator with 0.",
|
|
4644
4950
|
"type": {
|
|
4645
4951
|
"text": "number"
|
|
4646
4952
|
},
|
|
4647
4953
|
"default": "3",
|
|
4648
|
-
"privacy": "public",
|
|
4649
|
-
"description": "How fast, in seconds, each slide lasts. Stop the rotator with 0.",
|
|
4650
4954
|
"attribute": "rotation-speed"
|
|
4651
4955
|
},
|
|
4652
4956
|
{
|
|
4653
4957
|
"kind": "field",
|
|
4654
4958
|
"name": "width",
|
|
4959
|
+
"privacy": "public",
|
|
4960
|
+
"description": "The width of the rotator block.",
|
|
4655
4961
|
"type": {
|
|
4656
4962
|
"text": "string"
|
|
4657
4963
|
},
|
|
4658
4964
|
"default": "'auto'",
|
|
4659
|
-
"privacy": "public",
|
|
4660
|
-
"description": "The width of the rotator block.",
|
|
4661
4965
|
"attribute": "width"
|
|
4662
4966
|
},
|
|
4663
4967
|
{
|
|
4664
4968
|
"kind": "field",
|
|
4665
4969
|
"name": "height",
|
|
4970
|
+
"privacy": "public",
|
|
4971
|
+
"description": "The height of the rotator block.",
|
|
4666
4972
|
"type": {
|
|
4667
4973
|
"text": "string"
|
|
4668
4974
|
},
|
|
4669
4975
|
"default": "'auto'",
|
|
4670
|
-
"privacy": "public",
|
|
4671
|
-
"description": "The height of the rotator block.",
|
|
4672
4976
|
"attribute": "height"
|
|
4673
4977
|
}
|
|
4674
4978
|
],
|
|
@@ -4676,31 +4980,55 @@
|
|
|
4676
4980
|
{
|
|
4677
4981
|
"name": "activeSlide",
|
|
4678
4982
|
"description": "The index number for the current slide.",
|
|
4983
|
+
"type": {
|
|
4984
|
+
"text": "number"
|
|
4985
|
+
},
|
|
4986
|
+
"default": "0",
|
|
4679
4987
|
"fieldName": "activeSlide"
|
|
4680
4988
|
},
|
|
4681
4989
|
{
|
|
4682
4990
|
"name": "width",
|
|
4683
4991
|
"description": "The width of the rotator block.",
|
|
4992
|
+
"type": {
|
|
4993
|
+
"text": "string"
|
|
4994
|
+
},
|
|
4995
|
+
"default": "'auto'",
|
|
4684
4996
|
"fieldName": "width"
|
|
4685
4997
|
},
|
|
4686
4998
|
{
|
|
4687
4999
|
"name": "height",
|
|
4688
5000
|
"description": "The height of the rotator block.",
|
|
5001
|
+
"type": {
|
|
5002
|
+
"text": "string"
|
|
5003
|
+
},
|
|
5004
|
+
"default": "'auto'",
|
|
4689
5005
|
"fieldName": "height"
|
|
4690
5006
|
},
|
|
4691
5007
|
{
|
|
4692
5008
|
"name": "messages",
|
|
4693
5009
|
"description": "Text in the rotator. Supports HTML.",
|
|
5010
|
+
"type": {
|
|
5011
|
+
"text": "array"
|
|
5012
|
+
},
|
|
5013
|
+
"default": "[]",
|
|
4694
5014
|
"fieldName": "messages"
|
|
4695
5015
|
},
|
|
4696
5016
|
{
|
|
4697
5017
|
"name": "effect",
|
|
4698
5018
|
"description": "The transition effect type.",
|
|
5019
|
+
"type": {
|
|
5020
|
+
"text": "string"
|
|
5021
|
+
},
|
|
5022
|
+
"default": "'fade'",
|
|
4699
5023
|
"fieldName": "effect"
|
|
4700
5024
|
},
|
|
4701
5025
|
{
|
|
4702
5026
|
"name": "rotation-speed",
|
|
4703
5027
|
"description": "How fast, in seconds, each slide lasts. Stop the rotator with 0.",
|
|
5028
|
+
"type": {
|
|
5029
|
+
"text": "number"
|
|
5030
|
+
},
|
|
5031
|
+
"default": "3",
|
|
4704
5032
|
"fieldName": "rotationSpeed"
|
|
4705
5033
|
}
|
|
4706
5034
|
],
|
|
@@ -4770,24 +5098,24 @@
|
|
|
4770
5098
|
{
|
|
4771
5099
|
"kind": "field",
|
|
4772
5100
|
"name": "xOffset",
|
|
5101
|
+
"privacy": "public",
|
|
5102
|
+
"description": "Allows the horizontal scrolling to stop short of the given value.",
|
|
4773
5103
|
"type": {
|
|
4774
5104
|
"text": "number"
|
|
4775
5105
|
},
|
|
4776
5106
|
"default": "0",
|
|
4777
|
-
"privacy": "public",
|
|
4778
|
-
"description": "Allows the horizontal scrolling to stop short of the given value.",
|
|
4779
5107
|
"attribute": "x-offset",
|
|
4780
5108
|
"reflects": true
|
|
4781
5109
|
},
|
|
4782
5110
|
{
|
|
4783
5111
|
"kind": "field",
|
|
4784
5112
|
"name": "yOffset",
|
|
5113
|
+
"privacy": "public",
|
|
5114
|
+
"description": "Allows the vertical scrolling to stop short of the given value.",
|
|
4785
5115
|
"type": {
|
|
4786
5116
|
"text": "number"
|
|
4787
5117
|
},
|
|
4788
5118
|
"default": "0",
|
|
4789
|
-
"privacy": "public",
|
|
4790
|
-
"description": "Allows the vertical scrolling to stop short of the given value.",
|
|
4791
5119
|
"attribute": "y-offset",
|
|
4792
5120
|
"reflects": true
|
|
4793
5121
|
}
|
|
@@ -4806,11 +5134,19 @@
|
|
|
4806
5134
|
{
|
|
4807
5135
|
"name": "x-offset",
|
|
4808
5136
|
"description": "Allows the horizontal scrolling to stop short of the given value.",
|
|
5137
|
+
"type": {
|
|
5138
|
+
"text": "number"
|
|
5139
|
+
},
|
|
5140
|
+
"default": "0",
|
|
4809
5141
|
"fieldName": "xOffset"
|
|
4810
5142
|
},
|
|
4811
5143
|
{
|
|
4812
5144
|
"name": "y-offset",
|
|
4813
5145
|
"description": "Allows the vertical scrolling to stop short of the given value.",
|
|
5146
|
+
"type": {
|
|
5147
|
+
"text": "number"
|
|
5148
|
+
},
|
|
5149
|
+
"default": "0",
|
|
4814
5150
|
"fieldName": "yOffset"
|
|
4815
5151
|
}
|
|
4816
5152
|
],
|
|
@@ -4865,36 +5201,36 @@
|
|
|
4865
5201
|
{
|
|
4866
5202
|
"kind": "field",
|
|
4867
5203
|
"name": "effect",
|
|
5204
|
+
"privacy": "public",
|
|
5205
|
+
"description": "Determines where the transform point is activated. Values include: (sticky | resize)",
|
|
4868
5206
|
"type": {
|
|
4869
5207
|
"text": "string"
|
|
4870
5208
|
},
|
|
4871
5209
|
"default": "'sticky'",
|
|
4872
|
-
"privacy": "public",
|
|
4873
|
-
"description": "Determines where the transform point is activated. Values include: (sticky | resize)",
|
|
4874
5210
|
"attribute": "effect",
|
|
4875
5211
|
"reflects": true
|
|
4876
5212
|
},
|
|
4877
5213
|
{
|
|
4878
5214
|
"kind": "field",
|
|
4879
5215
|
"name": "transform",
|
|
5216
|
+
"privacy": "public",
|
|
5217
|
+
"description": "Whether or not the nav has shifted into a new state.",
|
|
4880
5218
|
"type": {
|
|
4881
5219
|
"text": "boolean"
|
|
4882
5220
|
},
|
|
4883
5221
|
"default": "false",
|
|
4884
|
-
"privacy": "public",
|
|
4885
|
-
"description": "Whether or not the nav has shifted into a new state.",
|
|
4886
5222
|
"attribute": "transform",
|
|
4887
5223
|
"reflects": true
|
|
4888
5224
|
},
|
|
4889
5225
|
{
|
|
4890
5226
|
"kind": "field",
|
|
4891
5227
|
"name": "offset",
|
|
5228
|
+
"privacy": "public",
|
|
5229
|
+
"description": "Allows for an arbitrary adjustment of the transform point in pixels.\nWorks with negative values.",
|
|
4892
5230
|
"type": {
|
|
4893
5231
|
"text": "number"
|
|
4894
5232
|
},
|
|
4895
5233
|
"default": "0",
|
|
4896
|
-
"privacy": "public",
|
|
4897
|
-
"description": "Allows for an arbitrary adjustment of the transform point in pixels.\nWorks with negative values.",
|
|
4898
5234
|
"attribute": "offset"
|
|
4899
5235
|
}
|
|
4900
5236
|
],
|
|
@@ -4902,16 +5238,28 @@
|
|
|
4902
5238
|
{
|
|
4903
5239
|
"name": "effect",
|
|
4904
5240
|
"description": "Determines where the transform point is activated. Values include: (sticky | resize)",
|
|
5241
|
+
"type": {
|
|
5242
|
+
"text": "string"
|
|
5243
|
+
},
|
|
5244
|
+
"default": "'sticky'",
|
|
4905
5245
|
"fieldName": "effect"
|
|
4906
5246
|
},
|
|
4907
5247
|
{
|
|
4908
5248
|
"name": "transform",
|
|
4909
5249
|
"description": "Whether or not the nav has shifted into a new state.",
|
|
5250
|
+
"type": {
|
|
5251
|
+
"text": "boolean"
|
|
5252
|
+
},
|
|
5253
|
+
"default": "false",
|
|
4910
5254
|
"fieldName": "transform"
|
|
4911
5255
|
},
|
|
4912
5256
|
{
|
|
4913
5257
|
"name": "offset",
|
|
4914
5258
|
"description": "Allows for an arbitrary adjustment of the transform point in pixels.\nWorks with negative values.",
|
|
5259
|
+
"type": {
|
|
5260
|
+
"text": "number"
|
|
5261
|
+
},
|
|
5262
|
+
"default": "0",
|
|
4915
5263
|
"fieldName": "offset"
|
|
4916
5264
|
}
|
|
4917
5265
|
],
|
|
@@ -4991,68 +5339,68 @@
|
|
|
4991
5339
|
{
|
|
4992
5340
|
"kind": "field",
|
|
4993
5341
|
"name": "slides",
|
|
5342
|
+
"privacy": "public",
|
|
5343
|
+
"description": "Information about each slide.",
|
|
4994
5344
|
"type": {
|
|
4995
5345
|
"text": "array"
|
|
4996
5346
|
},
|
|
4997
5347
|
"default": "[]",
|
|
4998
|
-
"privacy": "public",
|
|
4999
|
-
"description": "Information about each slide.",
|
|
5000
5348
|
"attribute": "slides"
|
|
5001
5349
|
},
|
|
5002
5350
|
{
|
|
5003
5351
|
"kind": "field",
|
|
5004
5352
|
"name": "icon",
|
|
5353
|
+
"privacy": "public",
|
|
5354
|
+
"description": "A string representing which icon to use for pagination. Supports icons used in kemet-icon.",
|
|
5005
5355
|
"type": {
|
|
5006
5356
|
"text": "string"
|
|
5007
5357
|
},
|
|
5008
5358
|
"default": "'circle-fill'",
|
|
5009
|
-
"privacy": "public",
|
|
5010
|
-
"description": "A string representing which icon to use for pagination. Supports icons used in kemet-icon.",
|
|
5011
5359
|
"attribute": "icon"
|
|
5012
5360
|
},
|
|
5013
5361
|
{
|
|
5014
5362
|
"kind": "field",
|
|
5015
5363
|
"name": "size",
|
|
5364
|
+
"privacy": "public",
|
|
5365
|
+
"description": "The size in pixels of the icons.",
|
|
5016
5366
|
"type": {
|
|
5017
5367
|
"text": "number"
|
|
5018
5368
|
},
|
|
5019
5369
|
"default": "16",
|
|
5020
|
-
"privacy": "public",
|
|
5021
|
-
"description": "The size in pixels of the icons.",
|
|
5022
5370
|
"attribute": "size"
|
|
5023
5371
|
},
|
|
5024
5372
|
{
|
|
5025
5373
|
"kind": "field",
|
|
5026
5374
|
"name": "hideFocusedLinks",
|
|
5375
|
+
"privacy": "public",
|
|
5376
|
+
"description": "Will hide inactive pagination items if set to true.",
|
|
5027
5377
|
"type": {
|
|
5028
5378
|
"text": "boolean"
|
|
5029
5379
|
},
|
|
5030
5380
|
"default": "false",
|
|
5031
|
-
"privacy": "public",
|
|
5032
|
-
"description": "Will hide inactive pagination items if set to true.",
|
|
5033
5381
|
"attribute": "hide-focused-links"
|
|
5034
5382
|
},
|
|
5035
5383
|
{
|
|
5036
5384
|
"kind": "field",
|
|
5037
5385
|
"name": "useNumberPages",
|
|
5386
|
+
"privacy": "public",
|
|
5387
|
+
"description": "If set to true, the pages in the pagination iterator will appear as a set of numbers.",
|
|
5038
5388
|
"type": {
|
|
5039
5389
|
"text": "boolean"
|
|
5040
5390
|
},
|
|
5041
5391
|
"default": "false",
|
|
5042
|
-
"privacy": "public",
|
|
5043
|
-
"description": "If set to true, the pages in the pagination iterator will appear as a set of numbers.",
|
|
5044
5392
|
"attribute": "use-number-pages",
|
|
5045
5393
|
"reflects": true
|
|
5046
5394
|
},
|
|
5047
5395
|
{
|
|
5048
5396
|
"kind": "field",
|
|
5049
5397
|
"name": "useLabelPages",
|
|
5398
|
+
"privacy": "public",
|
|
5399
|
+
"description": "If set to true, the pages in the pagination iterator will appear as the label set on\nthe slide.",
|
|
5050
5400
|
"type": {
|
|
5051
5401
|
"text": "boolean"
|
|
5052
5402
|
},
|
|
5053
5403
|
"default": "false",
|
|
5054
|
-
"privacy": "public",
|
|
5055
|
-
"description": "If set to true, the pages in the pagination iterator will appear as the label set on\nthe slide.",
|
|
5056
5404
|
"attribute": "use-label-pages",
|
|
5057
5405
|
"reflects": true
|
|
5058
5406
|
},
|
|
@@ -5078,16 +5426,28 @@
|
|
|
5078
5426
|
{
|
|
5079
5427
|
"name": "slides",
|
|
5080
5428
|
"description": "Information about each slide.",
|
|
5429
|
+
"type": {
|
|
5430
|
+
"text": "array"
|
|
5431
|
+
},
|
|
5432
|
+
"default": "[]",
|
|
5081
5433
|
"fieldName": "slides"
|
|
5082
5434
|
},
|
|
5083
5435
|
{
|
|
5084
5436
|
"name": "icon",
|
|
5085
5437
|
"description": "A string representing which icon to use for pagination. Supports icons used in kemet-icon.",
|
|
5438
|
+
"type": {
|
|
5439
|
+
"text": "string"
|
|
5440
|
+
},
|
|
5441
|
+
"default": "'circle-fill'",
|
|
5086
5442
|
"fieldName": "icon"
|
|
5087
5443
|
},
|
|
5088
5444
|
{
|
|
5089
5445
|
"name": "size",
|
|
5090
5446
|
"description": "The size in pixels of the icons.",
|
|
5447
|
+
"type": {
|
|
5448
|
+
"text": "number"
|
|
5449
|
+
},
|
|
5450
|
+
"default": "16",
|
|
5091
5451
|
"fieldName": "size"
|
|
5092
5452
|
},
|
|
5093
5453
|
{
|
|
@@ -5098,16 +5458,28 @@
|
|
|
5098
5458
|
{
|
|
5099
5459
|
"name": "hide-focused-links",
|
|
5100
5460
|
"description": "Will hide inactive pagination items if set to true.",
|
|
5461
|
+
"type": {
|
|
5462
|
+
"text": "boolean"
|
|
5463
|
+
},
|
|
5464
|
+
"default": "false",
|
|
5101
5465
|
"fieldName": "hideFocusedLinks"
|
|
5102
5466
|
},
|
|
5103
5467
|
{
|
|
5104
5468
|
"name": "use-number-pages",
|
|
5105
5469
|
"description": "If set to true, the pages in the pagination iterator will appear as a set of numbers.",
|
|
5470
|
+
"type": {
|
|
5471
|
+
"text": "boolean"
|
|
5472
|
+
},
|
|
5473
|
+
"default": "false",
|
|
5106
5474
|
"fieldName": "useNumberPages"
|
|
5107
5475
|
},
|
|
5108
5476
|
{
|
|
5109
5477
|
"name": "use-label-pages",
|
|
5110
5478
|
"description": "If set to true, the pages in the pagination iterator will appear as the label set on\nthe slide.",
|
|
5479
|
+
"type": {
|
|
5480
|
+
"text": "boolean"
|
|
5481
|
+
},
|
|
5482
|
+
"default": "false",
|
|
5111
5483
|
"fieldName": "useLabelPages"
|
|
5112
5484
|
}
|
|
5113
5485
|
],
|
|
@@ -5253,24 +5625,24 @@
|
|
|
5253
5625
|
{
|
|
5254
5626
|
"kind": "field",
|
|
5255
5627
|
"name": "axis",
|
|
5628
|
+
"privacy": "public",
|
|
5629
|
+
"description": "Determines the direction the component flows. Values include: (horizontal|vertical)",
|
|
5256
5630
|
"type": {
|
|
5257
5631
|
"text": "string"
|
|
5258
5632
|
},
|
|
5259
5633
|
"default": "'horizontal'",
|
|
5260
|
-
"privacy": "public",
|
|
5261
|
-
"description": "Determines the direction the component flows. Values include: (horizontal|vertical)",
|
|
5262
5634
|
"attribute": "axis",
|
|
5263
5635
|
"reflects": true
|
|
5264
5636
|
},
|
|
5265
5637
|
{
|
|
5266
5638
|
"kind": "field",
|
|
5267
5639
|
"name": "pagination",
|
|
5640
|
+
"privacy": "public",
|
|
5641
|
+
"description": "Determines where to display the paginator. Values include: (top | right | bottom | left)",
|
|
5268
5642
|
"type": {
|
|
5269
5643
|
"text": "string"
|
|
5270
5644
|
},
|
|
5271
5645
|
"default": "'bottom'",
|
|
5272
|
-
"privacy": "public",
|
|
5273
|
-
"description": "Determines where to display the paginator. Values include: (top | right | bottom | left)",
|
|
5274
5646
|
"attribute": "pagination",
|
|
5275
5647
|
"reflects": true
|
|
5276
5648
|
}
|
|
@@ -5288,11 +5660,19 @@
|
|
|
5288
5660
|
{
|
|
5289
5661
|
"name": "axis",
|
|
5290
5662
|
"description": "Determines the direction the component flows. Values include: (horizontal|vertical)",
|
|
5663
|
+
"type": {
|
|
5664
|
+
"text": "string"
|
|
5665
|
+
},
|
|
5666
|
+
"default": "'horizontal'",
|
|
5291
5667
|
"fieldName": "axis"
|
|
5292
5668
|
},
|
|
5293
5669
|
{
|
|
5294
5670
|
"name": "pagination",
|
|
5295
5671
|
"description": "Determines where to display the paginator. Values include: (top | right | bottom | left)",
|
|
5672
|
+
"type": {
|
|
5673
|
+
"text": "string"
|
|
5674
|
+
},
|
|
5675
|
+
"default": "'bottom'",
|
|
5296
5676
|
"fieldName": "pagination"
|
|
5297
5677
|
}
|
|
5298
5678
|
],
|
|
@@ -5335,12 +5715,12 @@
|
|
|
5335
5715
|
{
|
|
5336
5716
|
"kind": "field",
|
|
5337
5717
|
"name": "value",
|
|
5718
|
+
"privacy": "public",
|
|
5719
|
+
"description": "The value of the options",
|
|
5338
5720
|
"type": {
|
|
5339
5721
|
"text": "string"
|
|
5340
5722
|
},
|
|
5341
5723
|
"default": "''",
|
|
5342
|
-
"privacy": "public",
|
|
5343
|
-
"description": "The value of the options",
|
|
5344
5724
|
"attribute": "value"
|
|
5345
5725
|
},
|
|
5346
5726
|
{
|
|
@@ -5374,6 +5754,10 @@
|
|
|
5374
5754
|
{
|
|
5375
5755
|
"name": "value",
|
|
5376
5756
|
"description": "The value of the options",
|
|
5757
|
+
"type": {
|
|
5758
|
+
"text": "string"
|
|
5759
|
+
},
|
|
5760
|
+
"default": "''",
|
|
5377
5761
|
"fieldName": "value"
|
|
5378
5762
|
},
|
|
5379
5763
|
{
|
|
@@ -5478,34 +5862,34 @@
|
|
|
5478
5862
|
{
|
|
5479
5863
|
"kind": "field",
|
|
5480
5864
|
"name": "name",
|
|
5865
|
+
"privacy": "public",
|
|
5866
|
+
"description": "The name of the select",
|
|
5481
5867
|
"type": {
|
|
5482
5868
|
"text": "string"
|
|
5483
5869
|
},
|
|
5484
5870
|
"default": "'select'",
|
|
5485
|
-
"privacy": "public",
|
|
5486
|
-
"description": "The name of the select",
|
|
5487
5871
|
"attribute": "name"
|
|
5488
5872
|
},
|
|
5489
5873
|
{
|
|
5490
5874
|
"kind": "field",
|
|
5491
5875
|
"name": "icon",
|
|
5876
|
+
"privacy": "public",
|
|
5877
|
+
"description": "The dropdown icon",
|
|
5492
5878
|
"type": {
|
|
5493
5879
|
"text": "string"
|
|
5494
5880
|
},
|
|
5495
5881
|
"default": "'chevron-down'",
|
|
5496
|
-
"privacy": "public",
|
|
5497
|
-
"description": "The dropdown icon",
|
|
5498
5882
|
"attribute": "icon"
|
|
5499
5883
|
},
|
|
5500
5884
|
{
|
|
5501
5885
|
"kind": "field",
|
|
5502
5886
|
"name": "iconSize",
|
|
5887
|
+
"privacy": "public",
|
|
5888
|
+
"description": "The dropdown icon size",
|
|
5503
5889
|
"type": {
|
|
5504
5890
|
"text": "number"
|
|
5505
5891
|
},
|
|
5506
5892
|
"default": "16",
|
|
5507
|
-
"privacy": "public",
|
|
5508
|
-
"description": "The dropdown icon size",
|
|
5509
5893
|
"attribute": "icon-size"
|
|
5510
5894
|
},
|
|
5511
5895
|
{
|
|
@@ -5611,6 +5995,10 @@
|
|
|
5611
5995
|
{
|
|
5612
5996
|
"name": "name",
|
|
5613
5997
|
"description": "The name of the select",
|
|
5998
|
+
"type": {
|
|
5999
|
+
"text": "string"
|
|
6000
|
+
},
|
|
6001
|
+
"default": "'select'",
|
|
5614
6002
|
"fieldName": "name"
|
|
5615
6003
|
},
|
|
5616
6004
|
{
|
|
@@ -5646,11 +6034,19 @@
|
|
|
5646
6034
|
{
|
|
5647
6035
|
"name": "icon",
|
|
5648
6036
|
"description": "The dropdown icon",
|
|
6037
|
+
"type": {
|
|
6038
|
+
"text": "string"
|
|
6039
|
+
},
|
|
6040
|
+
"default": "'chevron-down'",
|
|
5649
6041
|
"fieldName": "icon"
|
|
5650
6042
|
},
|
|
5651
6043
|
{
|
|
5652
6044
|
"name": "icon-size",
|
|
5653
6045
|
"description": "The dropdown icon size",
|
|
6046
|
+
"type": {
|
|
6047
|
+
"text": "number"
|
|
6048
|
+
},
|
|
6049
|
+
"default": "16",
|
|
5654
6050
|
"fieldName": "iconSize"
|
|
5655
6051
|
},
|
|
5656
6052
|
{
|
|
@@ -5693,61 +6089,184 @@
|
|
|
5693
6089
|
},
|
|
5694
6090
|
{
|
|
5695
6091
|
"kind": "javascript-module",
|
|
5696
|
-
"path": "src/components/kemet-
|
|
6092
|
+
"path": "src/components/kemet-sortable/kemet-sortable-item.js",
|
|
5697
6093
|
"declarations": [
|
|
5698
6094
|
{
|
|
5699
6095
|
"kind": "class",
|
|
5700
6096
|
"description": "",
|
|
5701
|
-
"name": "
|
|
6097
|
+
"name": "KemetSortableItem",
|
|
6098
|
+
"members": [
|
|
6099
|
+
{
|
|
6100
|
+
"kind": "field",
|
|
6101
|
+
"name": "ghost",
|
|
6102
|
+
"privacy": "public",
|
|
6103
|
+
"attribute": "ghost",
|
|
6104
|
+
"reflects": true
|
|
6105
|
+
}
|
|
6106
|
+
],
|
|
6107
|
+
"attributes": [
|
|
6108
|
+
{
|
|
6109
|
+
"name": "ghost",
|
|
6110
|
+
"fieldName": "ghost"
|
|
6111
|
+
}
|
|
6112
|
+
],
|
|
6113
|
+
"superclass": {
|
|
6114
|
+
"name": "LitElement",
|
|
6115
|
+
"package": "lit"
|
|
6116
|
+
},
|
|
6117
|
+
"tagName": "kemet-sortable-item",
|
|
6118
|
+
"customElement": true
|
|
6119
|
+
}
|
|
6120
|
+
],
|
|
6121
|
+
"exports": [
|
|
6122
|
+
{
|
|
6123
|
+
"kind": "js",
|
|
6124
|
+
"name": "default",
|
|
6125
|
+
"declaration": {
|
|
6126
|
+
"name": "KemetSortableItem",
|
|
6127
|
+
"module": "src/components/kemet-sortable/kemet-sortable-item.js"
|
|
6128
|
+
}
|
|
6129
|
+
},
|
|
6130
|
+
{
|
|
6131
|
+
"kind": "custom-element-definition",
|
|
6132
|
+
"name": "kemet-sortable-item",
|
|
6133
|
+
"declaration": {
|
|
6134
|
+
"name": "KemetSortableItem",
|
|
6135
|
+
"module": "src/components/kemet-sortable/kemet-sortable-item.js"
|
|
6136
|
+
}
|
|
6137
|
+
}
|
|
6138
|
+
]
|
|
6139
|
+
},
|
|
6140
|
+
{
|
|
6141
|
+
"kind": "javascript-module",
|
|
6142
|
+
"path": "src/components/kemet-sortable/kemet-sortable.js",
|
|
6143
|
+
"declarations": [
|
|
6144
|
+
{
|
|
6145
|
+
"kind": "class",
|
|
6146
|
+
"description": "",
|
|
6147
|
+
"name": "KemetSortable",
|
|
5702
6148
|
"members": [
|
|
5703
6149
|
{
|
|
5704
6150
|
"kind": "method",
|
|
5705
|
-
"name": "
|
|
6151
|
+
"name": "handleDragStart",
|
|
6152
|
+
"parameters": [
|
|
6153
|
+
{
|
|
6154
|
+
"name": "event"
|
|
6155
|
+
}
|
|
6156
|
+
]
|
|
5706
6157
|
},
|
|
5707
6158
|
{
|
|
5708
6159
|
"kind": "method",
|
|
5709
|
-
"name": "
|
|
6160
|
+
"name": "handleDragOver",
|
|
6161
|
+
"parameters": [
|
|
6162
|
+
{
|
|
6163
|
+
"name": "event"
|
|
6164
|
+
}
|
|
6165
|
+
]
|
|
5710
6166
|
},
|
|
5711
6167
|
{
|
|
5712
6168
|
"kind": "method",
|
|
5713
|
-
"name": "
|
|
6169
|
+
"name": "handleDragEnd",
|
|
5714
6170
|
"parameters": [
|
|
5715
6171
|
{
|
|
5716
|
-
"name": "
|
|
6172
|
+
"name": "event"
|
|
5717
6173
|
}
|
|
5718
6174
|
]
|
|
5719
|
-
}
|
|
6175
|
+
}
|
|
6176
|
+
],
|
|
6177
|
+
"events": [
|
|
5720
6178
|
{
|
|
5721
|
-
"
|
|
6179
|
+
"name": "kemet-sortable-drag-end",
|
|
6180
|
+
"type": {
|
|
6181
|
+
"text": "CustomEvent"
|
|
6182
|
+
},
|
|
6183
|
+
"description": "Fires when an item has been moved to a new spot"
|
|
6184
|
+
}
|
|
6185
|
+
],
|
|
6186
|
+
"superclass": {
|
|
6187
|
+
"name": "LitElement",
|
|
6188
|
+
"package": "lit"
|
|
6189
|
+
},
|
|
6190
|
+
"tagName": "kemet-sortable",
|
|
6191
|
+
"customElement": true
|
|
6192
|
+
}
|
|
6193
|
+
],
|
|
6194
|
+
"exports": [
|
|
6195
|
+
{
|
|
6196
|
+
"kind": "js",
|
|
6197
|
+
"name": "default",
|
|
6198
|
+
"declaration": {
|
|
6199
|
+
"name": "KemetSortable",
|
|
6200
|
+
"module": "src/components/kemet-sortable/kemet-sortable.js"
|
|
6201
|
+
}
|
|
6202
|
+
},
|
|
6203
|
+
{
|
|
6204
|
+
"kind": "custom-element-definition",
|
|
6205
|
+
"name": "kemet-sortable",
|
|
6206
|
+
"declaration": {
|
|
6207
|
+
"name": "KemetSortable",
|
|
6208
|
+
"module": "src/components/kemet-sortable/kemet-sortable.js"
|
|
6209
|
+
}
|
|
6210
|
+
}
|
|
6211
|
+
]
|
|
6212
|
+
},
|
|
6213
|
+
{
|
|
6214
|
+
"kind": "javascript-module",
|
|
6215
|
+
"path": "src/components/kemet-svgs/kemet-svg.js",
|
|
6216
|
+
"declarations": [
|
|
6217
|
+
{
|
|
6218
|
+
"kind": "class",
|
|
6219
|
+
"description": "",
|
|
6220
|
+
"name": "KemetSVG",
|
|
6221
|
+
"members": [
|
|
6222
|
+
{
|
|
6223
|
+
"kind": "method",
|
|
6224
|
+
"name": "setSize"
|
|
6225
|
+
},
|
|
6226
|
+
{
|
|
6227
|
+
"kind": "method",
|
|
6228
|
+
"name": "getIcon"
|
|
6229
|
+
},
|
|
6230
|
+
{
|
|
6231
|
+
"kind": "method",
|
|
6232
|
+
"name": "fillSVG",
|
|
6233
|
+
"parameters": [
|
|
6234
|
+
{
|
|
6235
|
+
"name": "element"
|
|
6236
|
+
}
|
|
6237
|
+
]
|
|
6238
|
+
},
|
|
6239
|
+
{
|
|
6240
|
+
"kind": "field",
|
|
5722
6241
|
"name": "set",
|
|
6242
|
+
"privacy": "public",
|
|
6243
|
+
"description": "Defines which set of svgs is referenced.",
|
|
5723
6244
|
"type": {
|
|
5724
6245
|
"text": "string"
|
|
5725
6246
|
},
|
|
5726
6247
|
"default": "'svgs'",
|
|
5727
|
-
"privacy": "public",
|
|
5728
|
-
"description": "Defines which set of svgs is referenced.",
|
|
5729
6248
|
"attribute": "set"
|
|
5730
6249
|
},
|
|
5731
6250
|
{
|
|
5732
6251
|
"kind": "field",
|
|
5733
6252
|
"name": "ratio",
|
|
6253
|
+
"privacy": "public",
|
|
6254
|
+
"description": "The value for the preserveAspectRatio attribute of the svg.",
|
|
5734
6255
|
"type": {
|
|
5735
6256
|
"text": "string"
|
|
5736
6257
|
},
|
|
5737
6258
|
"default": "'none'",
|
|
5738
|
-
"privacy": "public",
|
|
5739
|
-
"description": "The value for the preserveAspectRatio attribute of the svg.",
|
|
5740
6259
|
"attribute": "ratio"
|
|
5741
6260
|
},
|
|
5742
6261
|
{
|
|
5743
6262
|
"kind": "field",
|
|
5744
6263
|
"name": "viewBox",
|
|
6264
|
+
"privacy": "public",
|
|
6265
|
+
"description": "The value for the viewBox attribute of the svg.",
|
|
5745
6266
|
"type": {
|
|
5746
6267
|
"text": "string"
|
|
5747
6268
|
},
|
|
5748
6269
|
"default": "'0 0 128 128'",
|
|
5749
|
-
"privacy": "public",
|
|
5750
|
-
"description": "The value for the viewBox attribute of the svg.",
|
|
5751
6270
|
"attribute": "viewBox"
|
|
5752
6271
|
},
|
|
5753
6272
|
{
|
|
@@ -5769,6 +6288,10 @@
|
|
|
5769
6288
|
{
|
|
5770
6289
|
"name": "set",
|
|
5771
6290
|
"description": "Defines which set of svgs is referenced.",
|
|
6291
|
+
"type": {
|
|
6292
|
+
"text": "string"
|
|
6293
|
+
},
|
|
6294
|
+
"default": "'svgs'",
|
|
5772
6295
|
"fieldName": "set"
|
|
5773
6296
|
},
|
|
5774
6297
|
{
|
|
@@ -5784,11 +6307,19 @@
|
|
|
5784
6307
|
{
|
|
5785
6308
|
"name": "ratio",
|
|
5786
6309
|
"description": "The value for the preserveAspectRatio attribute of the svg.",
|
|
6310
|
+
"type": {
|
|
6311
|
+
"text": "string"
|
|
6312
|
+
},
|
|
6313
|
+
"default": "'none'",
|
|
5787
6314
|
"fieldName": "ratio"
|
|
5788
6315
|
},
|
|
5789
6316
|
{
|
|
5790
6317
|
"name": "viewBox",
|
|
5791
6318
|
"description": "The value for the viewBox attribute of the svg.",
|
|
6319
|
+
"type": {
|
|
6320
|
+
"text": "string"
|
|
6321
|
+
},
|
|
6322
|
+
"default": "'0 0 128 128'",
|
|
5792
6323
|
"fieldName": "viewBox"
|
|
5793
6324
|
}
|
|
5794
6325
|
],
|
|
@@ -5835,12 +6366,12 @@
|
|
|
5835
6366
|
{
|
|
5836
6367
|
"kind": "field",
|
|
5837
6368
|
"name": "set",
|
|
6369
|
+
"privacy": "public",
|
|
6370
|
+
"description": "Defines the name for the set of svgs.",
|
|
5838
6371
|
"type": {
|
|
5839
6372
|
"text": "string"
|
|
5840
6373
|
},
|
|
5841
6374
|
"default": "'svgs'",
|
|
5842
|
-
"privacy": "public",
|
|
5843
|
-
"description": "Defines the name for the set of svgs.",
|
|
5844
6375
|
"attribute": "set"
|
|
5845
6376
|
}
|
|
5846
6377
|
],
|
|
@@ -5848,6 +6379,10 @@
|
|
|
5848
6379
|
{
|
|
5849
6380
|
"name": "set",
|
|
5850
6381
|
"description": "Defines the name for the set of svgs.",
|
|
6382
|
+
"type": {
|
|
6383
|
+
"text": "string"
|
|
6384
|
+
},
|
|
6385
|
+
"default": "'svgs'",
|
|
5851
6386
|
"fieldName": "set"
|
|
5852
6387
|
}
|
|
5853
6388
|
],
|
|
@@ -5894,12 +6429,12 @@
|
|
|
5894
6429
|
{
|
|
5895
6430
|
"kind": "field",
|
|
5896
6431
|
"name": "selected",
|
|
6432
|
+
"privacy": "public",
|
|
6433
|
+
"description": "Is true when a panel is selected",
|
|
5897
6434
|
"type": {
|
|
5898
6435
|
"text": "boolean"
|
|
5899
6436
|
},
|
|
5900
6437
|
"default": "false",
|
|
5901
|
-
"privacy": "public",
|
|
5902
|
-
"description": "Is true when a panel is selected",
|
|
5903
6438
|
"attribute": "selected",
|
|
5904
6439
|
"reflects": true
|
|
5905
6440
|
},
|
|
@@ -5915,6 +6450,10 @@
|
|
|
5915
6450
|
{
|
|
5916
6451
|
"name": "selected",
|
|
5917
6452
|
"description": "Is true when a panel is selected",
|
|
6453
|
+
"type": {
|
|
6454
|
+
"text": "boolean"
|
|
6455
|
+
},
|
|
6456
|
+
"default": "false",
|
|
5918
6457
|
"fieldName": "selected"
|
|
5919
6458
|
},
|
|
5920
6459
|
{
|
|
@@ -5978,12 +6517,12 @@
|
|
|
5978
6517
|
{
|
|
5979
6518
|
"kind": "field",
|
|
5980
6519
|
"name": "selected",
|
|
6520
|
+
"privacy": "public",
|
|
6521
|
+
"description": "Is true when the tab is selected",
|
|
5981
6522
|
"type": {
|
|
5982
6523
|
"text": "boolean"
|
|
5983
6524
|
},
|
|
5984
6525
|
"default": "false",
|
|
5985
|
-
"privacy": "public",
|
|
5986
|
-
"description": "Is true when the tab is selected",
|
|
5987
6526
|
"attribute": "selected",
|
|
5988
6527
|
"reflects": true
|
|
5989
6528
|
},
|
|
@@ -6022,6 +6561,10 @@
|
|
|
6022
6561
|
{
|
|
6023
6562
|
"name": "selected",
|
|
6024
6563
|
"description": "Is true when the tab is selected",
|
|
6564
|
+
"type": {
|
|
6565
|
+
"text": "boolean"
|
|
6566
|
+
},
|
|
6567
|
+
"default": "false",
|
|
6025
6568
|
"fieldName": "selected"
|
|
6026
6569
|
},
|
|
6027
6570
|
{
|
|
@@ -6192,70 +6735,70 @@
|
|
|
6192
6735
|
{
|
|
6193
6736
|
"kind": "field",
|
|
6194
6737
|
"name": "selectedIndex",
|
|
6738
|
+
"privacy": "public",
|
|
6739
|
+
"description": "The selected tab by index",
|
|
6195
6740
|
"type": {
|
|
6196
6741
|
"text": "number"
|
|
6197
6742
|
},
|
|
6198
6743
|
"default": "0",
|
|
6199
|
-
"privacy": "public",
|
|
6200
|
-
"description": "The selected tab by index",
|
|
6201
6744
|
"attribute": "selectedIndex"
|
|
6202
6745
|
},
|
|
6203
6746
|
{
|
|
6204
6747
|
"kind": "field",
|
|
6205
6748
|
"name": "panelPosition",
|
|
6749
|
+
"privacy": "public",
|
|
6750
|
+
"description": "Positions the current panel",
|
|
6206
6751
|
"type": {
|
|
6207
6752
|
"text": "number"
|
|
6208
6753
|
},
|
|
6209
6754
|
"default": "0",
|
|
6210
|
-
"privacy": "public",
|
|
6211
|
-
"description": "Positions the current panel",
|
|
6212
6755
|
"attribute": "panelPosition"
|
|
6213
6756
|
},
|
|
6214
6757
|
{
|
|
6215
6758
|
"kind": "field",
|
|
6216
6759
|
"name": "panelEffect",
|
|
6760
|
+
"privacy": "public",
|
|
6761
|
+
"description": "The transition effect for panels",
|
|
6217
6762
|
"type": {
|
|
6218
6763
|
"text": "string"
|
|
6219
6764
|
},
|
|
6220
6765
|
"default": "'none'",
|
|
6221
|
-
"privacy": "public",
|
|
6222
|
-
"description": "The transition effect for panels",
|
|
6223
6766
|
"attribute": "panel-effect",
|
|
6224
6767
|
"reflects": true
|
|
6225
6768
|
},
|
|
6226
6769
|
{
|
|
6227
6770
|
"kind": "field",
|
|
6228
6771
|
"name": "placement",
|
|
6772
|
+
"privacy": "public",
|
|
6773
|
+
"description": "Places the tabs to the top, right, bottom, or left",
|
|
6229
6774
|
"type": {
|
|
6230
6775
|
"text": "string"
|
|
6231
6776
|
},
|
|
6232
6777
|
"default": "'top'",
|
|
6233
|
-
"privacy": "public",
|
|
6234
|
-
"description": "Places the tabs to the top, right, bottom, or left",
|
|
6235
6778
|
"attribute": "placement",
|
|
6236
6779
|
"reflects": true
|
|
6237
6780
|
},
|
|
6238
6781
|
{
|
|
6239
6782
|
"kind": "field",
|
|
6240
6783
|
"name": "tabsAlign",
|
|
6784
|
+
"privacy": "public",
|
|
6785
|
+
"description": "Spacing alignment of the tabs",
|
|
6241
6786
|
"type": {
|
|
6242
6787
|
"text": "string"
|
|
6243
6788
|
},
|
|
6244
6789
|
"default": "'center'",
|
|
6245
|
-
"privacy": "public",
|
|
6246
|
-
"description": "Spacing alignment of the tabs",
|
|
6247
6790
|
"attribute": "tabs-align",
|
|
6248
6791
|
"reflects": true
|
|
6249
6792
|
},
|
|
6250
6793
|
{
|
|
6251
6794
|
"kind": "field",
|
|
6252
6795
|
"name": "hideInk",
|
|
6796
|
+
"privacy": "public",
|
|
6797
|
+
"description": "Determines whether or not to hide the ink",
|
|
6253
6798
|
"type": {
|
|
6254
6799
|
"text": "boolean"
|
|
6255
6800
|
},
|
|
6256
6801
|
"default": "false",
|
|
6257
|
-
"privacy": "public",
|
|
6258
|
-
"description": "Determines whether or not to hide the ink",
|
|
6259
6802
|
"attribute": "hide-ink"
|
|
6260
6803
|
},
|
|
6261
6804
|
{
|
|
@@ -6305,16 +6848,28 @@
|
|
|
6305
6848
|
{
|
|
6306
6849
|
"name": "selectedIndex",
|
|
6307
6850
|
"description": "The selected tab by index",
|
|
6851
|
+
"type": {
|
|
6852
|
+
"text": "number"
|
|
6853
|
+
},
|
|
6854
|
+
"default": "0",
|
|
6308
6855
|
"fieldName": "selectedIndex"
|
|
6309
6856
|
},
|
|
6310
6857
|
{
|
|
6311
6858
|
"name": "panelPosition",
|
|
6312
6859
|
"description": "Positions the current panel",
|
|
6860
|
+
"type": {
|
|
6861
|
+
"text": "number"
|
|
6862
|
+
},
|
|
6863
|
+
"default": "0",
|
|
6313
6864
|
"fieldName": "panelPosition"
|
|
6314
6865
|
},
|
|
6315
6866
|
{
|
|
6316
6867
|
"name": "panel-effect",
|
|
6317
6868
|
"description": "The transition effect for panels",
|
|
6869
|
+
"type": {
|
|
6870
|
+
"text": "string"
|
|
6871
|
+
},
|
|
6872
|
+
"default": "'none'",
|
|
6318
6873
|
"fieldName": "panelEffect"
|
|
6319
6874
|
},
|
|
6320
6875
|
{
|
|
@@ -6325,6 +6880,10 @@
|
|
|
6325
6880
|
{
|
|
6326
6881
|
"name": "placement",
|
|
6327
6882
|
"description": "Places the tabs to the top, right, bottom, or left",
|
|
6883
|
+
"type": {
|
|
6884
|
+
"text": "string"
|
|
6885
|
+
},
|
|
6886
|
+
"default": "'top'",
|
|
6328
6887
|
"fieldName": "placement"
|
|
6329
6888
|
},
|
|
6330
6889
|
{
|
|
@@ -6335,6 +6894,10 @@
|
|
|
6335
6894
|
{
|
|
6336
6895
|
"name": "tabs-align",
|
|
6337
6896
|
"description": "Spacing alignment of the tabs",
|
|
6897
|
+
"type": {
|
|
6898
|
+
"text": "string"
|
|
6899
|
+
},
|
|
6900
|
+
"default": "'center'",
|
|
6338
6901
|
"fieldName": "tabsAlign"
|
|
6339
6902
|
},
|
|
6340
6903
|
{
|
|
@@ -6345,6 +6908,10 @@
|
|
|
6345
6908
|
{
|
|
6346
6909
|
"name": "hide-ink",
|
|
6347
6910
|
"description": "Determines whether or not to hide the ink",
|
|
6911
|
+
"type": {
|
|
6912
|
+
"text": "boolean"
|
|
6913
|
+
},
|
|
6914
|
+
"default": "false",
|
|
6348
6915
|
"fieldName": "hideInk"
|
|
6349
6916
|
},
|
|
6350
6917
|
{
|
|
@@ -6471,57 +7038,57 @@
|
|
|
6471
7038
|
{
|
|
6472
7039
|
"kind": "field",
|
|
6473
7040
|
"name": "slug",
|
|
7041
|
+
"privacy": "public",
|
|
7042
|
+
"description": "Used for the id of the input",
|
|
6474
7043
|
"type": {
|
|
6475
7044
|
"text": "string"
|
|
6476
7045
|
},
|
|
6477
7046
|
"default": "'textarea'",
|
|
6478
|
-
"privacy": "public",
|
|
6479
|
-
"description": "Used for the id of the input",
|
|
6480
7047
|
"attribute": "slug"
|
|
6481
7048
|
},
|
|
6482
7049
|
{
|
|
6483
7050
|
"kind": "field",
|
|
6484
7051
|
"name": "name",
|
|
7052
|
+
"privacy": "public",
|
|
7053
|
+
"description": "The name of the input",
|
|
6485
7054
|
"type": {
|
|
6486
7055
|
"text": "string"
|
|
6487
7056
|
},
|
|
6488
7057
|
"default": "'textarea'",
|
|
6489
|
-
"privacy": "public",
|
|
6490
|
-
"description": "The name of the input",
|
|
6491
7058
|
"attribute": "name"
|
|
6492
7059
|
},
|
|
6493
7060
|
{
|
|
6494
7061
|
"kind": "field",
|
|
6495
7062
|
"name": "value",
|
|
7063
|
+
"privacy": "public",
|
|
7064
|
+
"description": "The input's value",
|
|
6496
7065
|
"type": {
|
|
6497
7066
|
"text": "string"
|
|
6498
7067
|
},
|
|
6499
7068
|
"default": "''",
|
|
6500
|
-
"privacy": "public",
|
|
6501
|
-
"description": "The input's value",
|
|
6502
7069
|
"attribute": "value"
|
|
6503
7070
|
},
|
|
6504
7071
|
{
|
|
6505
7072
|
"kind": "field",
|
|
6506
7073
|
"name": "status",
|
|
7074
|
+
"privacy": "public",
|
|
7075
|
+
"description": "The status of the input",
|
|
6507
7076
|
"type": {
|
|
6508
7077
|
"text": "string"
|
|
6509
7078
|
},
|
|
6510
7079
|
"default": "'standard'",
|
|
6511
|
-
"privacy": "public",
|
|
6512
|
-
"description": "The status of the input",
|
|
6513
7080
|
"attribute": "status",
|
|
6514
7081
|
"reflects": true
|
|
6515
7082
|
},
|
|
6516
7083
|
{
|
|
6517
7084
|
"kind": "field",
|
|
6518
7085
|
"name": "rows",
|
|
7086
|
+
"privacy": "public",
|
|
7087
|
+
"description": "The rows of the textarea",
|
|
6519
7088
|
"type": {
|
|
6520
7089
|
"text": "number"
|
|
6521
7090
|
},
|
|
6522
7091
|
"default": "4",
|
|
6523
|
-
"privacy": "public",
|
|
6524
|
-
"description": "The rows of the textarea",
|
|
6525
7092
|
"attribute": "rows"
|
|
6526
7093
|
},
|
|
6527
7094
|
{
|
|
@@ -6647,11 +7214,19 @@
|
|
|
6647
7214
|
{
|
|
6648
7215
|
"name": "slug",
|
|
6649
7216
|
"description": "Used for the id of the input",
|
|
7217
|
+
"type": {
|
|
7218
|
+
"text": "string"
|
|
7219
|
+
},
|
|
7220
|
+
"default": "'textarea'",
|
|
6650
7221
|
"fieldName": "slug"
|
|
6651
7222
|
},
|
|
6652
7223
|
{
|
|
6653
7224
|
"name": "name",
|
|
6654
7225
|
"description": "The name of the input",
|
|
7226
|
+
"type": {
|
|
7227
|
+
"text": "string"
|
|
7228
|
+
},
|
|
7229
|
+
"default": "'textarea'",
|
|
6655
7230
|
"fieldName": "name"
|
|
6656
7231
|
},
|
|
6657
7232
|
{
|
|
@@ -6697,6 +7272,10 @@
|
|
|
6697
7272
|
{
|
|
6698
7273
|
"name": "value",
|
|
6699
7274
|
"description": "The input's value",
|
|
7275
|
+
"type": {
|
|
7276
|
+
"text": "string"
|
|
7277
|
+
},
|
|
7278
|
+
"default": "''",
|
|
6700
7279
|
"fieldName": "value"
|
|
6701
7280
|
},
|
|
6702
7281
|
{
|
|
@@ -6707,11 +7286,19 @@
|
|
|
6707
7286
|
{
|
|
6708
7287
|
"name": "status",
|
|
6709
7288
|
"description": "The status of the input",
|
|
7289
|
+
"type": {
|
|
7290
|
+
"text": "string"
|
|
7291
|
+
},
|
|
7292
|
+
"default": "'standard'",
|
|
6710
7293
|
"fieldName": "status"
|
|
6711
7294
|
},
|
|
6712
7295
|
{
|
|
6713
7296
|
"name": "rows",
|
|
6714
7297
|
"description": "The rows of the textarea",
|
|
7298
|
+
"type": {
|
|
7299
|
+
"text": "number"
|
|
7300
|
+
},
|
|
7301
|
+
"default": "4",
|
|
6715
7302
|
"fieldName": "rows"
|
|
6716
7303
|
},
|
|
6717
7304
|
{
|
|
@@ -6781,90 +7368,90 @@
|
|
|
6781
7368
|
{
|
|
6782
7369
|
"kind": "field",
|
|
6783
7370
|
"name": "name",
|
|
7371
|
+
"privacy": "public",
|
|
7372
|
+
"description": "The name on the input field",
|
|
6784
7373
|
"type": {
|
|
6785
7374
|
"text": "string"
|
|
6786
7375
|
},
|
|
6787
7376
|
"default": "'toggle-switch'",
|
|
6788
|
-
"privacy": "public",
|
|
6789
|
-
"description": "The name on the input field",
|
|
6790
7377
|
"attribute": "name"
|
|
6791
7378
|
},
|
|
6792
7379
|
{
|
|
6793
7380
|
"kind": "field",
|
|
6794
7381
|
"name": "disabled",
|
|
7382
|
+
"privacy": "public",
|
|
7383
|
+
"description": "Determines whether or not the toggle is disabled",
|
|
6795
7384
|
"type": {
|
|
6796
7385
|
"text": "boolean"
|
|
6797
7386
|
},
|
|
6798
7387
|
"default": "false",
|
|
6799
|
-
"privacy": "public",
|
|
6800
|
-
"description": "Determines whether or not the toggle is disabled",
|
|
6801
7388
|
"attribute": "disabled"
|
|
6802
7389
|
},
|
|
6803
7390
|
{
|
|
6804
7391
|
"kind": "field",
|
|
6805
7392
|
"name": "checked",
|
|
7393
|
+
"privacy": "public",
|
|
7394
|
+
"description": "Determines whether or not the toggle is checked",
|
|
6806
7395
|
"type": {
|
|
6807
7396
|
"text": "boolean"
|
|
6808
7397
|
},
|
|
6809
7398
|
"default": "false",
|
|
6810
|
-
"privacy": "public",
|
|
6811
|
-
"description": "Determines whether or not the toggle is checked",
|
|
6812
7399
|
"attribute": "checked",
|
|
6813
7400
|
"reflects": true
|
|
6814
7401
|
},
|
|
6815
7402
|
{
|
|
6816
7403
|
"kind": "field",
|
|
6817
7404
|
"name": "show",
|
|
7405
|
+
"privacy": "public",
|
|
7406
|
+
"description": "Determines whether or not to show text options",
|
|
6818
7407
|
"type": {
|
|
6819
7408
|
"text": "boolean"
|
|
6820
7409
|
},
|
|
6821
7410
|
"default": "false",
|
|
6822
|
-
"privacy": "public",
|
|
6823
|
-
"description": "Determines whether or not to show text options",
|
|
6824
7411
|
"attribute": "show"
|
|
6825
7412
|
},
|
|
6826
7413
|
{
|
|
6827
7414
|
"kind": "field",
|
|
6828
7415
|
"name": "squared",
|
|
7416
|
+
"privacy": "public",
|
|
7417
|
+
"description": "Displays the toggle as squared instead of rounded",
|
|
6829
7418
|
"type": {
|
|
6830
7419
|
"text": "boolean"
|
|
6831
7420
|
},
|
|
6832
7421
|
"default": "false",
|
|
6833
|
-
"privacy": "public",
|
|
6834
|
-
"description": "Displays the toggle as squared instead of rounded",
|
|
6835
7422
|
"attribute": "squared"
|
|
6836
7423
|
},
|
|
6837
7424
|
{
|
|
6838
7425
|
"kind": "field",
|
|
6839
7426
|
"name": "label",
|
|
7427
|
+
"privacy": "public",
|
|
7428
|
+
"description": "A description of the toggle's purpose",
|
|
6840
7429
|
"type": {
|
|
6841
7430
|
"text": "string"
|
|
6842
7431
|
},
|
|
6843
7432
|
"default": "''",
|
|
6844
|
-
"privacy": "public",
|
|
6845
|
-
"description": "A description of the toggle's purpose",
|
|
6846
7433
|
"attribute": "label"
|
|
6847
7434
|
},
|
|
6848
7435
|
{
|
|
6849
7436
|
"kind": "field",
|
|
6850
7437
|
"name": "optionChecked",
|
|
7438
|
+
"privacy": "public",
|
|
7439
|
+
"description": "The checked option text",
|
|
6851
7440
|
"type": {
|
|
6852
7441
|
"text": "string"
|
|
6853
7442
|
},
|
|
6854
7443
|
"default": "'on'",
|
|
6855
|
-
"privacy": "public",
|
|
6856
|
-
"description": "The checked option text",
|
|
6857
7444
|
"attribute": "option-checked"
|
|
6858
7445
|
},
|
|
6859
7446
|
{
|
|
6860
7447
|
"kind": "field",
|
|
6861
7448
|
"name": "optionUnchecked",
|
|
7449
|
+
"privacy": "public",
|
|
7450
|
+
"description": "The unchecked option text",
|
|
6862
7451
|
"type": {
|
|
6863
7452
|
"text": "string"
|
|
6864
7453
|
},
|
|
6865
7454
|
"default": "'off'",
|
|
6866
|
-
"privacy": "public",
|
|
6867
|
-
"description": "The unchecked option text",
|
|
6868
7455
|
"attribute": "option-unchecked"
|
|
6869
7456
|
},
|
|
6870
7457
|
{
|
|
@@ -6891,41 +7478,73 @@
|
|
|
6891
7478
|
{
|
|
6892
7479
|
"name": "name",
|
|
6893
7480
|
"description": "The name on the input field",
|
|
7481
|
+
"type": {
|
|
7482
|
+
"text": "string"
|
|
7483
|
+
},
|
|
7484
|
+
"default": "'toggle-switch'",
|
|
6894
7485
|
"fieldName": "name"
|
|
6895
7486
|
},
|
|
6896
7487
|
{
|
|
6897
7488
|
"name": "checked",
|
|
6898
7489
|
"description": "Determines whether or not the toggle is checked",
|
|
7490
|
+
"type": {
|
|
7491
|
+
"text": "boolean"
|
|
7492
|
+
},
|
|
7493
|
+
"default": "false",
|
|
6899
7494
|
"fieldName": "checked"
|
|
6900
7495
|
},
|
|
6901
7496
|
{
|
|
6902
7497
|
"name": "disabled",
|
|
6903
7498
|
"description": "Determines whether or not the toggle is disabled",
|
|
7499
|
+
"type": {
|
|
7500
|
+
"text": "boolean"
|
|
7501
|
+
},
|
|
7502
|
+
"default": "false",
|
|
6904
7503
|
"fieldName": "disabled"
|
|
6905
7504
|
},
|
|
6906
7505
|
{
|
|
6907
7506
|
"name": "label",
|
|
6908
7507
|
"description": "A description of the toggle's purpose",
|
|
7508
|
+
"type": {
|
|
7509
|
+
"text": "string"
|
|
7510
|
+
},
|
|
7511
|
+
"default": "''",
|
|
6909
7512
|
"fieldName": "label"
|
|
6910
7513
|
},
|
|
6911
7514
|
{
|
|
6912
7515
|
"name": "show",
|
|
6913
7516
|
"description": "Determines whether or not to show text options",
|
|
7517
|
+
"type": {
|
|
7518
|
+
"text": "boolean"
|
|
7519
|
+
},
|
|
7520
|
+
"default": "false",
|
|
6914
7521
|
"fieldName": "show"
|
|
6915
7522
|
},
|
|
6916
7523
|
{
|
|
6917
7524
|
"name": "squared",
|
|
6918
7525
|
"description": "Displays the toggle as squared instead of rounded",
|
|
7526
|
+
"type": {
|
|
7527
|
+
"text": "boolean"
|
|
7528
|
+
},
|
|
7529
|
+
"default": "false",
|
|
6919
7530
|
"fieldName": "squared"
|
|
6920
7531
|
},
|
|
6921
7532
|
{
|
|
6922
7533
|
"name": "option-checked",
|
|
6923
7534
|
"description": "The checked option text",
|
|
7535
|
+
"type": {
|
|
7536
|
+
"text": "string"
|
|
7537
|
+
},
|
|
7538
|
+
"default": "'on'",
|
|
6924
7539
|
"fieldName": "optionChecked"
|
|
6925
7540
|
},
|
|
6926
7541
|
{
|
|
6927
7542
|
"name": "option-unchecked",
|
|
6928
7543
|
"description": "The unchecked option text",
|
|
7544
|
+
"type": {
|
|
7545
|
+
"text": "string"
|
|
7546
|
+
},
|
|
7547
|
+
"default": "'off'",
|
|
6929
7548
|
"fieldName": "optionUnchecked"
|
|
6930
7549
|
}
|
|
6931
7550
|
],
|
|
@@ -6988,12 +7607,12 @@
|
|
|
6988
7607
|
{
|
|
6989
7608
|
"kind": "field",
|
|
6990
7609
|
"name": "completedSize",
|
|
7610
|
+
"privacy": "public",
|
|
7611
|
+
"description": "The icon size for the completed check mark",
|
|
6991
7612
|
"type": {
|
|
6992
7613
|
"text": "number"
|
|
6993
7614
|
},
|
|
6994
7615
|
"default": "16",
|
|
6995
|
-
"privacy": "public",
|
|
6996
|
-
"description": "The icon size for the completed check mark",
|
|
6997
7616
|
"attribute": "completedSize"
|
|
6998
7617
|
},
|
|
6999
7618
|
{
|
|
@@ -7078,6 +7697,10 @@
|
|
|
7078
7697
|
{
|
|
7079
7698
|
"name": "completedSize",
|
|
7080
7699
|
"description": "The icon size for the completed check mark",
|
|
7700
|
+
"type": {
|
|
7701
|
+
"text": "number"
|
|
7702
|
+
},
|
|
7703
|
+
"default": "16",
|
|
7081
7704
|
"fieldName": "completedSize"
|
|
7082
7705
|
}
|
|
7083
7706
|
],
|
|
@@ -7128,12 +7751,12 @@
|
|
|
7128
7751
|
{
|
|
7129
7752
|
"kind": "field",
|
|
7130
7753
|
"name": "breakpoint",
|
|
7754
|
+
"privacy": "public",
|
|
7755
|
+
"description": "The point at which the tracker goes from mobile to standard",
|
|
7131
7756
|
"type": {
|
|
7132
7757
|
"text": "string"
|
|
7133
7758
|
},
|
|
7134
7759
|
"default": "'767px'",
|
|
7135
|
-
"privacy": "public",
|
|
7136
|
-
"description": "The point at which the tracker goes from mobile to standard",
|
|
7137
7760
|
"attribute": "breakpoint"
|
|
7138
7761
|
},
|
|
7139
7762
|
{
|
|
@@ -7153,6 +7776,10 @@
|
|
|
7153
7776
|
{
|
|
7154
7777
|
"name": "breakpoint",
|
|
7155
7778
|
"description": "The point at which the tracker goes from mobile to standard",
|
|
7779
|
+
"type": {
|
|
7780
|
+
"text": "string"
|
|
7781
|
+
},
|
|
7782
|
+
"default": "'767px'",
|
|
7156
7783
|
"fieldName": "breakpoint"
|
|
7157
7784
|
}
|
|
7158
7785
|
],
|
|
@@ -7182,6 +7809,413 @@
|
|
|
7182
7809
|
}
|
|
7183
7810
|
}
|
|
7184
7811
|
]
|
|
7812
|
+
},
|
|
7813
|
+
{
|
|
7814
|
+
"kind": "javascript-module",
|
|
7815
|
+
"path": "src/components/kemet-upload/kemet-upload-file.js",
|
|
7816
|
+
"declarations": [
|
|
7817
|
+
{
|
|
7818
|
+
"kind": "class",
|
|
7819
|
+
"description": "",
|
|
7820
|
+
"name": "KemetUploadFile",
|
|
7821
|
+
"members": [
|
|
7822
|
+
{
|
|
7823
|
+
"kind": "method",
|
|
7824
|
+
"name": "calculatePercent"
|
|
7825
|
+
},
|
|
7826
|
+
{
|
|
7827
|
+
"kind": "method",
|
|
7828
|
+
"name": "getStatusIcon"
|
|
7829
|
+
},
|
|
7830
|
+
{
|
|
7831
|
+
"kind": "field",
|
|
7832
|
+
"name": "loaded",
|
|
7833
|
+
"privacy": "public",
|
|
7834
|
+
"description": "The number of bytes loaded",
|
|
7835
|
+
"type": {
|
|
7836
|
+
"text": "number"
|
|
7837
|
+
},
|
|
7838
|
+
"default": "0",
|
|
7839
|
+
"attribute": "loaded"
|
|
7840
|
+
},
|
|
7841
|
+
{
|
|
7842
|
+
"kind": "field",
|
|
7843
|
+
"name": "size",
|
|
7844
|
+
"privacy": "public",
|
|
7845
|
+
"description": "The file size in bytes",
|
|
7846
|
+
"type": {
|
|
7847
|
+
"text": "number"
|
|
7848
|
+
},
|
|
7849
|
+
"default": "0",
|
|
7850
|
+
"attribute": "size"
|
|
7851
|
+
},
|
|
7852
|
+
{
|
|
7853
|
+
"kind": "field",
|
|
7854
|
+
"name": "percent",
|
|
7855
|
+
"privacy": "public",
|
|
7856
|
+
"description": "A percentage of file completion that's calculated by the loaded property",
|
|
7857
|
+
"type": {
|
|
7858
|
+
"text": "number"
|
|
7859
|
+
},
|
|
7860
|
+
"default": "0",
|
|
7861
|
+
"attribute": "percent"
|
|
7862
|
+
},
|
|
7863
|
+
{
|
|
7864
|
+
"kind": "field",
|
|
7865
|
+
"name": "name",
|
|
7866
|
+
"privacy": "public",
|
|
7867
|
+
"description": "The name of the file",
|
|
7868
|
+
"attribute": "name"
|
|
7869
|
+
},
|
|
7870
|
+
{
|
|
7871
|
+
"kind": "field",
|
|
7872
|
+
"name": "type",
|
|
7873
|
+
"privacy": "public",
|
|
7874
|
+
"description": "The file type",
|
|
7875
|
+
"attribute": "type"
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"kind": "field",
|
|
7879
|
+
"name": "status",
|
|
7880
|
+
"privacy": "public",
|
|
7881
|
+
"description": "The status of the file. Values are complete | uploading | error.",
|
|
7882
|
+
"attribute": "status",
|
|
7883
|
+
"reflects": true
|
|
7884
|
+
},
|
|
7885
|
+
{
|
|
7886
|
+
"kind": "field",
|
|
7887
|
+
"name": "message",
|
|
7888
|
+
"privacy": "public",
|
|
7889
|
+
"description": "An error message to give to users",
|
|
7890
|
+
"attribute": "message"
|
|
7891
|
+
}
|
|
7892
|
+
],
|
|
7893
|
+
"attributes": [
|
|
7894
|
+
{
|
|
7895
|
+
"name": "name",
|
|
7896
|
+
"description": "The name of the file",
|
|
7897
|
+
"fieldName": "name"
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
"name": "loaded",
|
|
7901
|
+
"description": "The number of bytes loaded",
|
|
7902
|
+
"type": {
|
|
7903
|
+
"text": "number"
|
|
7904
|
+
},
|
|
7905
|
+
"default": "0",
|
|
7906
|
+
"fieldName": "loaded"
|
|
7907
|
+
},
|
|
7908
|
+
{
|
|
7909
|
+
"name": "size",
|
|
7910
|
+
"description": "The file size in bytes",
|
|
7911
|
+
"type": {
|
|
7912
|
+
"text": "number"
|
|
7913
|
+
},
|
|
7914
|
+
"default": "0",
|
|
7915
|
+
"fieldName": "size"
|
|
7916
|
+
},
|
|
7917
|
+
{
|
|
7918
|
+
"name": "type",
|
|
7919
|
+
"description": "The file type",
|
|
7920
|
+
"fieldName": "type"
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
"name": "status",
|
|
7924
|
+
"description": "The status of the file. Values are complete | uploading | error.",
|
|
7925
|
+
"fieldName": "status"
|
|
7926
|
+
},
|
|
7927
|
+
{
|
|
7928
|
+
"name": "percent",
|
|
7929
|
+
"description": "A percentage of file completion that's calculated by the loaded property",
|
|
7930
|
+
"type": {
|
|
7931
|
+
"text": "number"
|
|
7932
|
+
},
|
|
7933
|
+
"default": "0",
|
|
7934
|
+
"fieldName": "percent"
|
|
7935
|
+
},
|
|
7936
|
+
{
|
|
7937
|
+
"name": "message",
|
|
7938
|
+
"description": "An error message to give to users",
|
|
7939
|
+
"fieldName": "message"
|
|
7940
|
+
}
|
|
7941
|
+
],
|
|
7942
|
+
"superclass": {
|
|
7943
|
+
"name": "LitElement",
|
|
7944
|
+
"package": "lit"
|
|
7945
|
+
},
|
|
7946
|
+
"tagName": "kemet-upload-file",
|
|
7947
|
+
"customElement": true
|
|
7948
|
+
}
|
|
7949
|
+
],
|
|
7950
|
+
"exports": [
|
|
7951
|
+
{
|
|
7952
|
+
"kind": "js",
|
|
7953
|
+
"name": "default",
|
|
7954
|
+
"declaration": {
|
|
7955
|
+
"name": "KemetUploadFile",
|
|
7956
|
+
"module": "src/components/kemet-upload/kemet-upload-file.js"
|
|
7957
|
+
}
|
|
7958
|
+
},
|
|
7959
|
+
{
|
|
7960
|
+
"kind": "custom-element-definition",
|
|
7961
|
+
"name": "kemet-upload-file",
|
|
7962
|
+
"declaration": {
|
|
7963
|
+
"name": "KemetUploadFile",
|
|
7964
|
+
"module": "src/components/kemet-upload/kemet-upload-file.js"
|
|
7965
|
+
}
|
|
7966
|
+
}
|
|
7967
|
+
]
|
|
7968
|
+
},
|
|
7969
|
+
{
|
|
7970
|
+
"kind": "javascript-module",
|
|
7971
|
+
"path": "src/components/kemet-upload/kemet-upload-file.loaders.styles.js",
|
|
7972
|
+
"declarations": [
|
|
7973
|
+
{
|
|
7974
|
+
"kind": "variable",
|
|
7975
|
+
"name": "stylesLoaders",
|
|
7976
|
+
"default": "css`\n .lds-ripple {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n }\n\n .lds-ripple div {\n position: absolute;\n border: 4px solid var(--kemet-upload-file-ripple-color);\n opacity: 1;\n border-radius: 50%;\n animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n }\n\n .lds-ripple div:nth-child(2) {\n animation-delay: -0.5s;\n }\n\n @keyframes lds-ripple {\n 0% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n 4.9% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n 5% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n 100% {\n top: 0px;\n left: 0px;\n width: 72px;\n height: 72px;\n opacity: 0;\n }\n }\n`"
|
|
7977
|
+
}
|
|
7978
|
+
],
|
|
7979
|
+
"exports": [
|
|
7980
|
+
{
|
|
7981
|
+
"kind": "js",
|
|
7982
|
+
"name": "stylesLoaders",
|
|
7983
|
+
"declaration": {
|
|
7984
|
+
"name": "stylesLoaders",
|
|
7985
|
+
"module": "src/components/kemet-upload/kemet-upload-file.loaders.styles.js"
|
|
7986
|
+
}
|
|
7987
|
+
}
|
|
7988
|
+
]
|
|
7989
|
+
},
|
|
7990
|
+
{
|
|
7991
|
+
"kind": "javascript-module",
|
|
7992
|
+
"path": "src/components/kemet-upload/kemet-upload.js",
|
|
7993
|
+
"declarations": [
|
|
7994
|
+
{
|
|
7995
|
+
"kind": "class",
|
|
7996
|
+
"description": "",
|
|
7997
|
+
"name": "KemetUpload",
|
|
7998
|
+
"members": [
|
|
7999
|
+
{
|
|
8000
|
+
"kind": "method",
|
|
8001
|
+
"name": "handleChange",
|
|
8002
|
+
"parameters": [
|
|
8003
|
+
{
|
|
8004
|
+
"name": "event"
|
|
8005
|
+
}
|
|
8006
|
+
]
|
|
8007
|
+
},
|
|
8008
|
+
{
|
|
8009
|
+
"kind": "method",
|
|
8010
|
+
"name": "handleDrop",
|
|
8011
|
+
"parameters": [
|
|
8012
|
+
{
|
|
8013
|
+
"name": "event"
|
|
8014
|
+
}
|
|
8015
|
+
]
|
|
8016
|
+
},
|
|
8017
|
+
{
|
|
8018
|
+
"kind": "method",
|
|
8019
|
+
"name": "isMobile"
|
|
8020
|
+
},
|
|
8021
|
+
{
|
|
8022
|
+
"kind": "method",
|
|
8023
|
+
"name": "hasDragDrop"
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"kind": "field",
|
|
8027
|
+
"name": "slug",
|
|
8028
|
+
"privacy": "public",
|
|
8029
|
+
"description": "A unique identifier for the component",
|
|
8030
|
+
"type": {
|
|
8031
|
+
"text": "string"
|
|
8032
|
+
},
|
|
8033
|
+
"default": "'upload'",
|
|
8034
|
+
"attribute": "slug"
|
|
8035
|
+
},
|
|
8036
|
+
{
|
|
8037
|
+
"kind": "field",
|
|
8038
|
+
"name": "breakpoint",
|
|
8039
|
+
"privacy": "public",
|
|
8040
|
+
"description": "Controls the point at which the component is considered mobile",
|
|
8041
|
+
"type": {
|
|
8042
|
+
"text": "string"
|
|
8043
|
+
},
|
|
8044
|
+
"default": "'600px'",
|
|
8045
|
+
"attribute": "breakpoint",
|
|
8046
|
+
"reflects": true
|
|
8047
|
+
},
|
|
8048
|
+
{
|
|
8049
|
+
"kind": "field",
|
|
8050
|
+
"name": "buttonLabel",
|
|
8051
|
+
"privacy": "public",
|
|
8052
|
+
"description": "The browse files button text",
|
|
8053
|
+
"type": {
|
|
8054
|
+
"text": "string"
|
|
8055
|
+
},
|
|
8056
|
+
"default": "'Browse Files'",
|
|
8057
|
+
"attribute": "button-label"
|
|
8058
|
+
},
|
|
8059
|
+
{
|
|
8060
|
+
"kind": "field",
|
|
8061
|
+
"name": "heading",
|
|
8062
|
+
"privacy": "public",
|
|
8063
|
+
"description": "Descriptive text for the upload area",
|
|
8064
|
+
"type": {
|
|
8065
|
+
"text": "string"
|
|
8066
|
+
},
|
|
8067
|
+
"default": "'Drag & Drop Files'",
|
|
8068
|
+
"attribute": "heading"
|
|
8069
|
+
},
|
|
8070
|
+
{
|
|
8071
|
+
"kind": "field",
|
|
8072
|
+
"name": "accept",
|
|
8073
|
+
"privacy": "public",
|
|
8074
|
+
"description": "Determines what file types are accepted",
|
|
8075
|
+
"attribute": "accept"
|
|
8076
|
+
},
|
|
8077
|
+
{
|
|
8078
|
+
"kind": "field",
|
|
8079
|
+
"name": "multiple",
|
|
8080
|
+
"privacy": "public",
|
|
8081
|
+
"description": "Allows for multiple files",
|
|
8082
|
+
"attribute": "multiple"
|
|
8083
|
+
},
|
|
8084
|
+
{
|
|
8085
|
+
"kind": "field",
|
|
8086
|
+
"name": "over",
|
|
8087
|
+
"privacy": "public",
|
|
8088
|
+
"description": "Automatically is true when a file is being dragged over the upload area",
|
|
8089
|
+
"attribute": "over",
|
|
8090
|
+
"reflects": true
|
|
8091
|
+
},
|
|
8092
|
+
{
|
|
8093
|
+
"kind": "field",
|
|
8094
|
+
"name": "mobile",
|
|
8095
|
+
"privacy": "public",
|
|
8096
|
+
"description": "Displays the component in a mobile context",
|
|
8097
|
+
"attribute": "mobile",
|
|
8098
|
+
"reflects": true
|
|
8099
|
+
},
|
|
8100
|
+
{
|
|
8101
|
+
"kind": "field",
|
|
8102
|
+
"name": "noDragDrop",
|
|
8103
|
+
"privacy": "public",
|
|
8104
|
+
"description": "If true if drag and drop support is not detected",
|
|
8105
|
+
"attribute": "no-drag-drop",
|
|
8106
|
+
"reflects": true
|
|
8107
|
+
},
|
|
8108
|
+
{
|
|
8109
|
+
"kind": "field",
|
|
8110
|
+
"name": "maxSize",
|
|
8111
|
+
"privacy": "public",
|
|
8112
|
+
"description": "The maximum file size for uploads",
|
|
8113
|
+
"attribute": "max-size"
|
|
8114
|
+
}
|
|
8115
|
+
],
|
|
8116
|
+
"events": [
|
|
8117
|
+
{
|
|
8118
|
+
"name": "kemet-upload-change",
|
|
8119
|
+
"type": {
|
|
8120
|
+
"text": "CustomEvent"
|
|
8121
|
+
},
|
|
8122
|
+
"description": "Fires when files have been added"
|
|
8123
|
+
}
|
|
8124
|
+
],
|
|
8125
|
+
"attributes": [
|
|
8126
|
+
{
|
|
8127
|
+
"name": "slug",
|
|
8128
|
+
"description": "A unique identifier for the component",
|
|
8129
|
+
"type": {
|
|
8130
|
+
"text": "string"
|
|
8131
|
+
},
|
|
8132
|
+
"default": "'upload'",
|
|
8133
|
+
"fieldName": "slug"
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"name": "accept",
|
|
8137
|
+
"description": "Determines what file types are accepted",
|
|
8138
|
+
"fieldName": "accept"
|
|
8139
|
+
},
|
|
8140
|
+
{
|
|
8141
|
+
"name": "multiple",
|
|
8142
|
+
"description": "Allows for multiple files",
|
|
8143
|
+
"fieldName": "multiple"
|
|
8144
|
+
},
|
|
8145
|
+
{
|
|
8146
|
+
"name": "over",
|
|
8147
|
+
"description": "Automatically is true when a file is being dragged over the upload area",
|
|
8148
|
+
"fieldName": "over"
|
|
8149
|
+
},
|
|
8150
|
+
{
|
|
8151
|
+
"name": "heading",
|
|
8152
|
+
"description": "Descriptive text for the upload area",
|
|
8153
|
+
"type": {
|
|
8154
|
+
"text": "string"
|
|
8155
|
+
},
|
|
8156
|
+
"default": "'Drag & Drop Files'",
|
|
8157
|
+
"fieldName": "heading"
|
|
8158
|
+
},
|
|
8159
|
+
{
|
|
8160
|
+
"name": "mobile",
|
|
8161
|
+
"description": "Displays the component in a mobile context",
|
|
8162
|
+
"fieldName": "mobile"
|
|
8163
|
+
},
|
|
8164
|
+
{
|
|
8165
|
+
"name": "breakpoint",
|
|
8166
|
+
"description": "Controls the point at which the component is considered mobile",
|
|
8167
|
+
"type": {
|
|
8168
|
+
"text": "string"
|
|
8169
|
+
},
|
|
8170
|
+
"default": "'600px'",
|
|
8171
|
+
"fieldName": "breakpoint"
|
|
8172
|
+
},
|
|
8173
|
+
{
|
|
8174
|
+
"name": "no-drag-drop",
|
|
8175
|
+
"description": "If true if drag and drop support is not detected",
|
|
8176
|
+
"fieldName": "noDragDrop"
|
|
8177
|
+
},
|
|
8178
|
+
{
|
|
8179
|
+
"name": "max-size",
|
|
8180
|
+
"description": "The maximum file size for uploads",
|
|
8181
|
+
"fieldName": "maxSize"
|
|
8182
|
+
},
|
|
8183
|
+
{
|
|
8184
|
+
"name": "button-label",
|
|
8185
|
+
"description": "The browse files button text",
|
|
8186
|
+
"type": {
|
|
8187
|
+
"text": "string"
|
|
8188
|
+
},
|
|
8189
|
+
"default": "'Browse Files'",
|
|
8190
|
+
"fieldName": "buttonLabel"
|
|
8191
|
+
}
|
|
8192
|
+
],
|
|
8193
|
+
"superclass": {
|
|
8194
|
+
"name": "LitElement",
|
|
8195
|
+
"package": "lit"
|
|
8196
|
+
},
|
|
8197
|
+
"tagName": "kemet-upload",
|
|
8198
|
+
"customElement": true
|
|
8199
|
+
}
|
|
8200
|
+
],
|
|
8201
|
+
"exports": [
|
|
8202
|
+
{
|
|
8203
|
+
"kind": "js",
|
|
8204
|
+
"name": "default",
|
|
8205
|
+
"declaration": {
|
|
8206
|
+
"name": "KemetUpload",
|
|
8207
|
+
"module": "src/components/kemet-upload/kemet-upload.js"
|
|
8208
|
+
}
|
|
8209
|
+
},
|
|
8210
|
+
{
|
|
8211
|
+
"kind": "custom-element-definition",
|
|
8212
|
+
"name": "kemet-upload",
|
|
8213
|
+
"declaration": {
|
|
8214
|
+
"name": "KemetUpload",
|
|
8215
|
+
"module": "src/components/kemet-upload/kemet-upload.js"
|
|
8216
|
+
}
|
|
8217
|
+
}
|
|
8218
|
+
]
|
|
7185
8219
|
}
|
|
7186
8220
|
]
|
|
7187
8221
|
}
|