@skf-design-system/ui-components 1.0.0-alpha.27 → 1.0.0-alpha.29

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.
Files changed (91) hide show
  1. package/README.md +26 -6
  2. package/custom-elements.json +18265 -0
  3. package/dist/components/alert/alert.component.js +20 -18
  4. package/dist/components/alert/alert.styles.js +50 -47
  5. package/dist/components/button/button.component.d.ts +24 -0
  6. package/dist/components/button/button.component.js +79 -55
  7. package/dist/components/button/button.styles.js +1 -0
  8. package/dist/components/checkbox/checkbox.component.d.ts +3 -8
  9. package/dist/components/checkbox/checkbox.component.js +95 -90
  10. package/dist/components/checkbox/checkbox.styles.js +2 -2
  11. package/dist/components/input/input.component.d.ts +10 -0
  12. package/dist/components/input/input.component.js +89 -82
  13. package/dist/components/progress/progress.component.d.ts +22 -0
  14. package/dist/components/progress/progress.component.js +40 -0
  15. package/dist/components/progress/progress.d.ts +8 -0
  16. package/dist/components/progress/progress.js +6 -0
  17. package/dist/components/progress/progress.styles.d.ts +1 -0
  18. package/dist/components/progress/progress.styles.js +47 -0
  19. package/dist/components/radio/radio.component.d.ts +4 -6
  20. package/dist/components/radio/radio.component.js +93 -77
  21. package/dist/components/select/select.component.d.ts +5 -2
  22. package/dist/components/select/select.component.js +103 -88
  23. package/dist/components/select/select.controllers.js +5 -2
  24. package/dist/components/switch/switch.component.js +4 -1
  25. package/dist/components/tab/tab.component.d.ts +29 -0
  26. package/dist/components/tab/tab.component.js +57 -0
  27. package/dist/components/tab/tab.d.ts +8 -0
  28. package/dist/components/tab/tab.js +6 -0
  29. package/dist/components/tab/tab.styles.d.ts +1 -0
  30. package/dist/components/tab/tab.styles.js +123 -0
  31. package/dist/components/tab-group/tab-group.component.d.ts +43 -0
  32. package/dist/components/tab-group/tab-group.component.js +98 -0
  33. package/dist/components/tab-group/tab-group.d.ts +8 -0
  34. package/dist/components/tab-group/tab-group.js +6 -0
  35. package/dist/components/tab-group/tab-group.styles.d.ts +1 -0
  36. package/dist/components/tab-group/tab-group.styles.js +75 -0
  37. package/dist/components/tab-panel/tab-panel.component.d.ts +19 -0
  38. package/dist/components/tab-panel/tab-panel.component.js +36 -0
  39. package/dist/components/tab-panel/tab-panel.d.ts +8 -0
  40. package/dist/components/tab-panel/tab-panel.js +6 -0
  41. package/dist/components/tab-panel/tab-panel.styles.d.ts +1 -0
  42. package/dist/components/tab-panel/tab-panel.styles.js +13 -0
  43. package/dist/components/textarea/textarea.component.js +5 -5
  44. package/dist/components/toast/toast.component.d.ts +35 -0
  45. package/dist/components/toast/toast.component.js +52 -0
  46. package/dist/components/toast/toast.d.ts +8 -0
  47. package/dist/components/toast/toast.js +6 -0
  48. package/dist/components/toast/toast.singleton.d.ts +26 -0
  49. package/dist/components/toast/toast.singleton.js +53 -0
  50. package/dist/components/toast/toast.styles.d.ts +1 -0
  51. package/dist/components/toast/toast.styles.js +9 -0
  52. package/dist/components/toast-item/toast-item.component.d.ts +21 -0
  53. package/dist/components/toast-item/toast-item.component.js +65 -0
  54. package/dist/components/toast-item/toast-item.d.ts +6 -0
  55. package/dist/components/toast-item/toast-item.js +2 -0
  56. package/dist/components/toast-item/toast-item.styles.d.ts +2 -0
  57. package/dist/components/toast-item/toast-item.styles.js +16 -0
  58. package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +24 -0
  59. package/dist/components/toast-wrapper/toast-wrapper.component.js +37 -0
  60. package/dist/components/toast-wrapper/toast-wrapper.d.ts +8 -0
  61. package/dist/components/toast-wrapper/toast-wrapper.js +6 -0
  62. package/dist/components/toast-wrapper/toast-wrapper.styles.d.ts +1 -0
  63. package/dist/components/toast-wrapper/toast-wrapper.styles.js +20 -0
  64. package/dist/custom-elements.json +1167 -311
  65. package/dist/index.d.ts +5 -0
  66. package/dist/index.js +57 -42
  67. package/dist/internal/components/formBase.d.ts +1 -0
  68. package/dist/internal/components/formBase.js +11 -11
  69. package/dist/internal/helpers/watch.d.ts +27 -0
  70. package/dist/internal/helpers/watch.js +28 -0
  71. package/dist/react/index.d.ts +6 -0
  72. package/dist/react/index.js +6 -0
  73. package/dist/react/skf-button/index.d.ts +7 -1
  74. package/dist/react/skf-button/index.js +5 -1
  75. package/dist/react/skf-progress/index.d.ts +3 -0
  76. package/dist/react/skf-progress/index.js +13 -0
  77. package/dist/react/skf-tab/index.d.ts +12 -0
  78. package/dist/react/skf-tab/index.js +18 -0
  79. package/dist/react/skf-tab-group/index.d.ts +3 -0
  80. package/dist/react/skf-tab-group/index.js +13 -0
  81. package/dist/react/skf-tab-panel/index.d.ts +3 -0
  82. package/dist/react/skf-tab-panel/index.js +13 -0
  83. package/dist/react/skf-toast/index.d.ts +3 -0
  84. package/dist/react/skf-toast/index.js +13 -0
  85. package/dist/react/skf-toast-wrapper/index.d.ts +3 -0
  86. package/dist/react/skf-toast-wrapper/index.js +13 -0
  87. package/dist/types/jsx/custom-element-jsx.d.ts +342 -806
  88. package/dist/types/vue/index.d.ts +147 -8
  89. package/dist/vscode.html-custom-data.json +116 -16
  90. package/dist/web-types.json +304 -35
  91. package/package.json +27 -27
@@ -186,7 +186,8 @@
186
186
  "text": "boolean | undefined"
187
187
  },
188
188
  "description": "If true, alert is being used as a toast (alertdialog) with an close button",
189
- "attribute": "closeable"
189
+ "attribute": "closeable",
190
+ "reflects": true
190
191
  },
191
192
  {
192
193
  "kind": "field",
@@ -214,7 +215,8 @@
214
215
  "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
215
216
  },
216
217
  "description": "If defined, gives the supplied appearance",
217
- "attribute": "severity"
218
+ "attribute": "severity",
219
+ "reflects": true
218
220
  }
219
221
  ],
220
222
  "events": [
@@ -292,6 +294,24 @@
292
294
  }
293
295
  ],
294
296
  "members": [
297
+ {
298
+ "kind": "field",
299
+ "name": "formAssociated",
300
+ "type": {
301
+ "text": "boolean"
302
+ },
303
+ "static": true,
304
+ "default": "true"
305
+ },
306
+ {
307
+ "kind": "field",
308
+ "name": "shadowRootOptions",
309
+ "type": {
310
+ "text": "object"
311
+ },
312
+ "static": true,
313
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
314
+ },
295
315
  {
296
316
  "kind": "field",
297
317
  "name": "destructive",
@@ -341,6 +361,15 @@
341
361
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
342
362
  "attribute": "loading"
343
363
  },
364
+ {
365
+ "kind": "field",
366
+ "name": "noValidate",
367
+ "type": {
368
+ "text": "boolean"
369
+ },
370
+ "default": "false",
371
+ "attribute": "no-validate"
372
+ },
344
373
  {
345
374
  "kind": "field",
346
375
  "name": "size",
@@ -375,13 +404,14 @@
375
404
  },
376
405
  {
377
406
  "kind": "method",
378
- "name": "_showLoader",
379
- "privacy": "private"
380
- },
407
+ "name": "click",
408
+ "description": "Simulates a click on the button."
409
+ }
410
+ ],
411
+ "events": [
381
412
  {
382
- "kind": "method",
383
- "name": "_hideLoader",
384
- "privacy": "private"
413
+ "description": "Fires when the button is clicked",
414
+ "name": "click"
385
415
  }
386
416
  ],
387
417
  "attributes": [
@@ -429,6 +459,14 @@
429
459
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
430
460
  "fieldName": "loading"
431
461
  },
462
+ {
463
+ "name": "no-validate",
464
+ "type": {
465
+ "text": "boolean"
466
+ },
467
+ "default": "false",
468
+ "fieldName": "noValidate"
469
+ },
432
470
  {
433
471
  "name": "size",
434
472
  "type": {
@@ -609,16 +647,6 @@
609
647
  "attribute": "custom-invalid",
610
648
  "reflects": true
611
649
  },
612
- {
613
- "kind": "field",
614
- "name": "hideLabel",
615
- "type": {
616
- "text": "boolean | undefined"
617
- },
618
- "description": "If true, hides the label visually",
619
- "attribute": "hide-label",
620
- "reflects": true
621
- },
622
650
  {
623
651
  "kind": "field",
624
652
  "name": "indeterminate",
@@ -629,16 +657,6 @@
629
657
  "attribute": "indeterminate",
630
658
  "reflects": true
631
659
  },
632
- {
633
- "kind": "field",
634
- "name": "invalid",
635
- "type": {
636
- "text": "boolean | undefined"
637
- },
638
- "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
639
- "attribute": "invalid",
640
- "reflects": true
641
- },
642
660
  {
643
661
  "kind": "field",
644
662
  "name": "label",
@@ -708,7 +726,15 @@
708
726
  },
709
727
  {
710
728
  "kind": "method",
711
- "name": "debugOutput"
729
+ "name": "handleInvalidChange"
730
+ },
731
+ {
732
+ "kind": "method",
733
+ "name": "handleDebugInvalid"
734
+ },
735
+ {
736
+ "kind": "method",
737
+ "name": "handleCustomInvalidChange"
712
738
  }
713
739
  ],
714
740
  "events": [
@@ -756,14 +782,6 @@
756
782
  "description": "If true, forces component to invalid state until removed",
757
783
  "fieldName": "customInvalid"
758
784
  },
759
- {
760
- "name": "hide-label",
761
- "type": {
762
- "text": "boolean | undefined"
763
- },
764
- "description": "If true, hides the label visually",
765
- "fieldName": "hideLabel"
766
- },
767
785
  {
768
786
  "name": "indeterminate",
769
787
  "type": {
@@ -772,14 +790,6 @@
772
790
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
773
791
  "fieldName": "indeterminate"
774
792
  },
775
- {
776
- "name": "invalid",
777
- "type": {
778
- "text": "boolean | undefined"
779
- },
780
- "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
781
- "fieldName": "invalid"
782
- },
783
793
  {
784
794
  "name": "label",
785
795
  "type": {
@@ -1347,6 +1357,15 @@
1347
1357
  },
1348
1358
  "privacy": "private"
1349
1359
  },
1360
+ {
1361
+ "kind": "field",
1362
+ "name": "autocomplete",
1363
+ "type": {
1364
+ "text": ""
1365
+ },
1366
+ "description": "-m }",
1367
+ "attribute": "autocomplete"
1368
+ },
1350
1369
  {
1351
1370
  "kind": "field",
1352
1371
  "name": "buttonAriaLabelClear",
@@ -1615,6 +1634,14 @@
1615
1634
  "description": "If true, value is required or must be checked for the form to be submittable",
1616
1635
  "name": "required"
1617
1636
  },
1637
+ {
1638
+ "name": "autocomplete",
1639
+ "type": {
1640
+ "text": ""
1641
+ },
1642
+ "description": "-m }",
1643
+ "fieldName": "autocomplete"
1644
+ },
1618
1645
  {
1619
1646
  "name": "button-aria-label-clear",
1620
1647
  "type": {
@@ -2309,6 +2336,102 @@
2309
2336
  }
2310
2337
  ]
2311
2338
  },
2339
+ {
2340
+ "kind": "javascript-module",
2341
+ "path": "src/components/progress/progress.component.ts",
2342
+ "declarations": [
2343
+ {
2344
+ "kind": "class",
2345
+ "description": "The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar",
2346
+ "name": "SkfProgress",
2347
+ "members": [
2348
+ {
2349
+ "kind": "field",
2350
+ "name": "formAssociated",
2351
+ "type": {
2352
+ "text": "boolean"
2353
+ },
2354
+ "static": true,
2355
+ "default": "true"
2356
+ },
2357
+ {
2358
+ "kind": "field",
2359
+ "name": "animated",
2360
+ "type": {
2361
+ "text": "boolean | undefined"
2362
+ },
2363
+ "description": "If true, the progress-bar's fill value is animated",
2364
+ "attribute": "animated",
2365
+ "reflects": true
2366
+ },
2367
+ {
2368
+ "kind": "field",
2369
+ "name": "max",
2370
+ "type": {
2371
+ "text": "number"
2372
+ },
2373
+ "default": "1",
2374
+ "description": "Describes how much work the task indicated by the progress element requires",
2375
+ "attribute": "max"
2376
+ },
2377
+ {
2378
+ "kind": "field",
2379
+ "name": "value",
2380
+ "type": {
2381
+ "text": "number"
2382
+ },
2383
+ "default": "0",
2384
+ "description": "Specifies how much of the task that has been completed",
2385
+ "attribute": "value"
2386
+ }
2387
+ ],
2388
+ "attributes": [
2389
+ {
2390
+ "name": "animated",
2391
+ "type": {
2392
+ "text": "boolean | undefined"
2393
+ },
2394
+ "description": "If true, the progress-bar's fill value is animated",
2395
+ "fieldName": "animated"
2396
+ },
2397
+ {
2398
+ "name": "max",
2399
+ "type": {
2400
+ "text": "number"
2401
+ },
2402
+ "default": "1",
2403
+ "description": "Describes how much work the task indicated by the progress element requires",
2404
+ "fieldName": "max"
2405
+ },
2406
+ {
2407
+ "name": "value",
2408
+ "type": {
2409
+ "text": "number"
2410
+ },
2411
+ "default": "0",
2412
+ "description": "Specifies how much of the task that has been completed",
2413
+ "fieldName": "value"
2414
+ }
2415
+ ],
2416
+ "superclass": {
2417
+ "name": "SkfElement",
2418
+ "package": "@internal/components/skf-element"
2419
+ },
2420
+ "tagName": "skf-progress",
2421
+ "customElement": true
2422
+ }
2423
+ ],
2424
+ "exports": [
2425
+ {
2426
+ "kind": "js",
2427
+ "name": "SkfProgress",
2428
+ "declaration": {
2429
+ "name": "SkfProgress",
2430
+ "module": "src/components/progress/progress.component.ts"
2431
+ }
2432
+ }
2433
+ ]
2434
+ },
2312
2435
  {
2313
2436
  "kind": "javascript-module",
2314
2437
  "path": "src/components/radio/radio.component.ts",
@@ -2361,16 +2484,6 @@
2361
2484
  "description": "If true, forces component to invalid state until removed",
2362
2485
  "attribute": "custom-invalid"
2363
2486
  },
2364
- {
2365
- "kind": "field",
2366
- "name": "hideLabel",
2367
- "type": {
2368
- "text": "boolean | undefined"
2369
- },
2370
- "description": "If true, hides the label visually",
2371
- "attribute": "hide-label",
2372
- "reflects": true
2373
- },
2374
2487
  {
2375
2488
  "kind": "field",
2376
2489
  "name": "label",
@@ -2439,7 +2552,19 @@
2439
2552
  },
2440
2553
  {
2441
2554
  "kind": "method",
2442
- "name": "debugOutput"
2555
+ "name": "handleInvalidChange"
2556
+ },
2557
+ {
2558
+ "kind": "method",
2559
+ "name": "handleDebugInvalid"
2560
+ },
2561
+ {
2562
+ "kind": "method",
2563
+ "name": "handleCheckedChanged"
2564
+ },
2565
+ {
2566
+ "kind": "method",
2567
+ "name": "handleCustomInvalidChange"
2443
2568
  }
2444
2569
  ],
2445
2570
  "events": [
@@ -2487,14 +2612,6 @@
2487
2612
  "description": "If true, forces component to invalid state until removed",
2488
2613
  "fieldName": "customInvalid"
2489
2614
  },
2490
- {
2491
- "name": "hide-label",
2492
- "type": {
2493
- "text": "boolean | undefined"
2494
- },
2495
- "description": "If true, hides the label visually",
2496
- "fieldName": "hideLabel"
2497
- },
2498
2615
  {
2499
2616
  "name": "label",
2500
2617
  "type": {
@@ -2638,15 +2755,13 @@
2638
2755
  },
2639
2756
  {
2640
2757
  "kind": "field",
2641
- "name": "getSelectedValues",
2642
- "description": "A readonly property that returns the selected value(s) in a array",
2643
- "readonly": true
2758
+ "name": "selectedValues",
2759
+ "description": "A readonly property that returns the selected value(s) in a array"
2644
2760
  },
2645
2761
  {
2646
2762
  "kind": "field",
2647
- "name": "getSelectedOptionsText",
2648
- "description": "A readonly property that returns the selected slot(s) text content in a array",
2649
- "readonly": true
2763
+ "name": "selectedOptionsText",
2764
+ "description": "A readonly property that returns the selected slot(s) text content in a array"
2650
2765
  },
2651
2766
  {
2652
2767
  "kind": "field",
@@ -2736,8 +2851,7 @@
2736
2851
  {
2737
2852
  "kind": "field",
2738
2853
  "name": "value",
2739
- "description": "Read only, returns the selected value. (if multiple: in a comma separated string)",
2740
- "readonly": true
2854
+ "description": "Read only, returns the selected value. (if multiple: in a comma separated string)"
2741
2855
  },
2742
2856
  {
2743
2857
  "kind": "field",
@@ -3359,529 +3473,1271 @@
3359
3473
  },
3360
3474
  {
3361
3475
  "kind": "javascript-module",
3362
- "path": "src/components/tag/tag.component.ts",
3476
+ "path": "src/components/tab/tab.component.ts",
3363
3477
  "declarations": [
3364
3478
  {
3365
3479
  "kind": "class",
3366
- "description": "The `<skf-tag>` is a component that displays a list of actions or options",
3367
- "name": "SkfTag",
3480
+ "description": "The `<skf-tab>` is a component that displays a list of actions or options",
3481
+ "name": "SkfTab",
3368
3482
  "slots": [
3369
3483
  {
3370
- "description": "The component's placeholder content",
3484
+ "description": "The tab's label",
3371
3485
  "name": ""
3372
3486
  }
3373
3487
  ],
3374
3488
  "members": [
3375
3489
  {
3376
3490
  "kind": "field",
3377
- "name": "_onClick",
3491
+ "name": "panel",
3378
3492
  "type": {
3379
- "text": "(event: Event) => void | undefined"
3493
+ "text": "string"
3380
3494
  },
3381
- "privacy": "private"
3495
+ "default": "''",
3496
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
3497
+ "attribute": "panel",
3498
+ "reflects": true
3382
3499
  },
3383
3500
  {
3384
3501
  "kind": "field",
3385
- "name": "_onRemove",
3502
+ "name": "selected",
3386
3503
  "type": {
3387
- "text": "(event: Event) => void | undefined"
3504
+ "text": "boolean"
3388
3505
  },
3389
- "privacy": "protected"
3506
+ "default": "false"
3390
3507
  },
3391
3508
  {
3392
3509
  "kind": "field",
3393
- "name": "size",
3510
+ "name": "variant",
3394
3511
  "type": {
3395
- "text": "'sm' | 'md' | 'lg'"
3512
+ "text": "SkfTabGroup['variant']"
3396
3513
  },
3397
- "default": "'md'",
3398
- "description": "Specifies Tag size",
3399
- "attribute": "size",
3400
- "reflects": true
3514
+ "default": "'expanded'"
3401
3515
  },
3402
3516
  {
3403
3517
  "kind": "field",
3404
- "name": "icon",
3518
+ "name": "role",
3405
3519
  "type": {
3406
- "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
3520
+ "text": "string"
3407
3521
  },
3408
- "description": "If defined, displays leading/provided icon",
3409
- "attribute": "icon"
3410
- },
3522
+ "default": "'tab'"
3523
+ }
3524
+ ],
3525
+ "events": [
3411
3526
  {
3412
- "kind": "field",
3413
- "name": "color",
3414
3527
  "type": {
3415
- "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
3528
+ "text": "CustomEvent"
3416
3529
  },
3417
- "description": "If defined, gives the supplied appearance",
3418
- "attribute": "color",
3419
- "reflects": true
3420
- },
3421
- {
3422
- "kind": "field",
3423
- "name": "onClick",
3424
- "description": "If defined, accepts a function that runs on click"
3530
+ "description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected",
3531
+ "name": "skf-tab-select"
3425
3532
  },
3426
3533
  {
3427
- "kind": "field",
3428
- "name": "onRemove",
3429
- "description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
3430
- },
3534
+ "description": "Fired when the component is clicked",
3535
+ "name": "click"
3536
+ }
3537
+ ],
3538
+ "attributes": [
3431
3539
  {
3432
- "kind": "field",
3433
- "name": "removable",
3540
+ "name": "panel",
3434
3541
  "type": {
3435
- "text": "boolean | undefined"
3542
+ "text": "string"
3436
3543
  },
3437
- "description": "If true, adds trailing button to remove tag",
3438
- "attribute": "removable",
3439
- "reflects": true
3440
- },
3441
- {
3442
- "kind": "field",
3443
- "name": "_handleKeyDown",
3444
- "privacy": "protected"
3445
- },
3446
- {
3447
- "kind": "field",
3448
- "name": "_handleRemove",
3449
- "privacy": "protected",
3450
- "description": "run externally provided callback (if any) first. Let click propagate to handleClick."
3451
- },
3452
- {
3453
- "kind": "field",
3454
- "name": "_handleClick",
3455
- "privacy": "protected"
3456
- }
3457
- ],
3458
- "attributes": [
3459
- {
3460
- "name": "size",
3461
- "type": {
3462
- "text": "'sm' | 'md' | 'lg'"
3463
- },
3464
- "default": "'md'",
3465
- "description": "Specifies Tag size",
3466
- "fieldName": "size"
3467
- },
3468
- {
3469
- "name": "icon",
3470
- "type": {
3471
- "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
3472
- },
3473
- "description": "If defined, displays leading/provided icon",
3474
- "fieldName": "icon"
3475
- },
3476
- {
3477
- "name": "color",
3478
- "type": {
3479
- "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
3480
- },
3481
- "description": "If defined, gives the supplied appearance",
3482
- "fieldName": "color"
3483
- },
3484
- {
3485
- "name": "removable",
3486
- "type": {
3487
- "text": "boolean | undefined"
3488
- },
3489
- "description": "If true, adds trailing button to remove tag",
3490
- "fieldName": "removable"
3544
+ "default": "''",
3545
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
3546
+ "fieldName": "panel"
3491
3547
  }
3492
3548
  ],
3493
3549
  "superclass": {
3494
3550
  "name": "SkfElement",
3495
3551
  "package": "@internal/components/skf-element"
3496
3552
  },
3497
- "tagName": "skf-tag",
3553
+ "tagName": "skf-tab",
3498
3554
  "customElement": true
3499
3555
  }
3500
3556
  ],
3501
3557
  "exports": [
3502
3558
  {
3503
3559
  "kind": "js",
3504
- "name": "SkfTag",
3560
+ "name": "SkfTab",
3505
3561
  "declaration": {
3506
- "name": "SkfTag",
3507
- "module": "src/components/tag/tag.component.ts"
3562
+ "name": "SkfTab",
3563
+ "module": "src/components/tab/tab.component.ts"
3508
3564
  }
3509
3565
  }
3510
3566
  ]
3511
3567
  },
3512
3568
  {
3513
3569
  "kind": "javascript-module",
3514
- "path": "src/components/textarea/textarea.component.ts",
3570
+ "path": "src/components/tab-group/tab-group.component.ts",
3515
3571
  "declarations": [
3516
3572
  {
3517
3573
  "kind": "class",
3518
- "description": "The skf-textarea is used to create a textarea. Use it inside a form element or wherever you like.",
3519
- "name": "SkfTextArea",
3574
+ "description": "The `<skf-tab-group>` is a component that displays a list of actions or options.",
3575
+ "name": "SkfTabGroup",
3520
3576
  "slots": [
3521
3577
  {
3522
- "description": "The textareas label. Alternatively, you can use the `label` attribute.",
3578
+ "description": "Used for grouping tab panels in the tab group. Must be <skf-tab-panel> elements",
3523
3579
  "name": ""
3580
+ },
3581
+ {
3582
+ "description": "Used for grouping tabs in the tab group. Must be <skf-tab> elements",
3583
+ "name": "tabs"
3524
3584
  }
3525
3585
  ],
3526
3586
  "members": [
3527
3587
  {
3528
3588
  "kind": "field",
3529
- "name": "customError",
3589
+ "name": "defaultSelected",
3530
3590
  "type": {
3531
- "text": "string | undefined"
3591
+ "text": "number"
3532
3592
  },
3533
- "privacy": "private"
3593
+ "default": "0",
3594
+ "description": "Sets the default selected tab",
3595
+ "attribute": "default-selected"
3534
3596
  },
3535
3597
  {
3536
3598
  "kind": "field",
3537
- "name": "cols",
3599
+ "name": "noBorder",
3538
3600
  "type": {
3539
- "text": "number | undefined"
3601
+ "text": "boolean"
3540
3602
  },
3541
- "description": "If defined, sets the cols of the textarea",
3542
- "attribute": "cols"
3603
+ "default": "false",
3604
+ "description": "If true, removes border",
3605
+ "attribute": "no-border"
3543
3606
  },
3544
3607
  {
3545
3608
  "kind": "field",
3546
- "name": "customInvalid",
3547
- "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
3548
- "attribute": "custom-invalid",
3549
- "reflects": true
3609
+ "name": "noPadding",
3610
+ "type": {
3611
+ "text": "boolean"
3612
+ },
3613
+ "default": "false",
3614
+ "description": "If true, removes padding",
3615
+ "attribute": "no-padding"
3550
3616
  },
3551
3617
  {
3552
3618
  "kind": "field",
3553
- "name": "debug",
3619
+ "name": "stretch",
3554
3620
  "type": {
3555
- "text": "boolean | undefined"
3621
+ "text": "boolean"
3556
3622
  },
3557
- "description": "If true, outputs helping hints in console",
3558
- "attribute": "debug"
3623
+ "default": "false",
3624
+ "description": "If true, component fills the parent element height",
3625
+ "attribute": "stretch"
3559
3626
  },
3560
3627
  {
3561
3628
  "kind": "field",
3562
- "name": "hideLabel",
3629
+ "name": "variant",
3563
3630
  "type": {
3564
- "text": "boolean | undefined"
3631
+ "text": "'compressed' | 'expanded'"
3565
3632
  },
3566
- "description": "If true, hides the label visually",
3567
- "attribute": "hide-label"
3568
- },
3633
+ "default": "'expanded'",
3634
+ "description": "Sets the appearance of the tabs",
3635
+ "attribute": "variant",
3636
+ "reflects": true
3637
+ }
3638
+ ],
3639
+ "attributes": [
3569
3640
  {
3570
- "kind": "field",
3571
- "name": "hint",
3641
+ "name": "default-selected",
3572
3642
  "type": {
3573
- "text": "string | undefined"
3643
+ "text": "number"
3574
3644
  },
3575
- "description": "If defined, displays informational text below the field",
3576
- "attribute": "hint"
3645
+ "default": "0",
3646
+ "description": "Sets the default selected tab",
3647
+ "fieldName": "defaultSelected"
3577
3648
  },
3578
3649
  {
3579
- "kind": "field",
3580
- "name": "label",
3650
+ "name": "no-border",
3581
3651
  "type": {
3582
- "text": "string | undefined"
3652
+ "text": "boolean"
3583
3653
  },
3584
- "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
3585
- "attribute": "label"
3654
+ "default": "false",
3655
+ "description": "If true, removes border",
3656
+ "fieldName": "noBorder"
3586
3657
  },
3587
3658
  {
3588
- "kind": "field",
3589
- "name": "name",
3659
+ "name": "no-padding",
3590
3660
  "type": {
3591
- "text": "string | undefined"
3661
+ "text": "boolean"
3592
3662
  },
3593
- "description": "If defined, adds name to the input-element",
3594
- "attribute": "name"
3663
+ "default": "false",
3664
+ "description": "If true, removes padding",
3665
+ "fieldName": "noPadding"
3595
3666
  },
3596
3667
  {
3597
- "kind": "field",
3598
- "name": "maxLength",
3668
+ "name": "stretch",
3599
3669
  "type": {
3600
- "text": "number | undefined"
3670
+ "text": "boolean"
3601
3671
  },
3602
- "description": "If defined, sets the maximum character length to accept for this input",
3603
- "attribute": "maxlength"
3672
+ "default": "false",
3673
+ "description": "If true, component fills the parent element height",
3674
+ "fieldName": "stretch"
3604
3675
  },
3605
3676
  {
3606
- "kind": "field",
3607
- "name": "minLength",
3677
+ "name": "variant",
3608
3678
  "type": {
3609
- "text": "number | undefined"
3679
+ "text": "'compressed' | 'expanded'"
3610
3680
  },
3611
- "description": "If defined, sets the minimum character length to accept for this input",
3612
- "attribute": "minlength"
3613
- },
3681
+ "default": "'expanded'",
3682
+ "description": "Sets the appearance of the tabs",
3683
+ "fieldName": "variant"
3684
+ }
3685
+ ],
3686
+ "superclass": {
3687
+ "name": "SkfElement",
3688
+ "package": "@internal/components/skf-element"
3689
+ },
3690
+ "tagName": "skf-tab-group",
3691
+ "customElement": true
3692
+ }
3693
+ ],
3694
+ "exports": [
3695
+ {
3696
+ "kind": "js",
3697
+ "name": "SkfTabGroup",
3698
+ "declaration": {
3699
+ "name": "SkfTabGroup",
3700
+ "module": "src/components/tab-group/tab-group.component.ts"
3701
+ }
3702
+ }
3703
+ ]
3704
+ },
3705
+ {
3706
+ "kind": "javascript-module",
3707
+ "path": "src/components/tab-panel/tab-panel.component.ts",
3708
+ "declarations": [
3709
+ {
3710
+ "kind": "class",
3711
+ "description": "The `<skf-tab-panel>` is a component that displays a list of actions or options.",
3712
+ "name": "SkfTabPanel",
3713
+ "slots": [
3714
+ {
3715
+ "description": "The tab panel's content",
3716
+ "name": ""
3717
+ }
3718
+ ],
3719
+ "members": [
3614
3720
  {
3615
3721
  "kind": "field",
3616
- "name": "placeholder",
3722
+ "name": "name",
3617
3723
  "type": {
3618
- "text": "string | undefined"
3724
+ "text": "string"
3619
3725
  },
3620
- "description": "If defined, displays placeholder text",
3621
- "attribute": "placeholder"
3726
+ "default": "''",
3727
+ "description": "The tab panel's name.",
3728
+ "attribute": "name"
3622
3729
  },
3623
3730
  {
3624
3731
  "kind": "field",
3625
- "name": "readonly",
3732
+ "name": "active",
3626
3733
  "type": {
3627
- "text": "boolean | undefined"
3734
+ "text": "boolean"
3628
3735
  },
3629
- "description": "If true, makes the element not mutable, meaning the user can not edit the control",
3630
- "attribute": "readonly"
3736
+ "default": "false"
3631
3737
  },
3632
3738
  {
3633
3739
  "kind": "field",
3634
- "name": "requiredLabel",
3740
+ "name": "role",
3635
3741
  "type": {
3636
- "text": "string | undefined"
3742
+ "text": "string"
3637
3743
  },
3638
- "description": "If defined, renders an alternative A11y text for the asterisk",
3639
- "attribute": "required-label"
3640
- },
3744
+ "default": "'tabpanel'"
3745
+ }
3746
+ ],
3747
+ "attributes": [
3641
3748
  {
3642
- "kind": "field",
3643
- "name": "rows",
3749
+ "name": "name",
3644
3750
  "type": {
3645
- "text": "number | undefined"
3751
+ "text": "string"
3646
3752
  },
3647
- "description": "If defined, sets the rows of the textarea",
3648
- "attribute": "rows"
3649
- },
3753
+ "default": "''",
3754
+ "description": "The tab panel's name.",
3755
+ "fieldName": "name"
3756
+ }
3757
+ ],
3758
+ "superclass": {
3759
+ "name": "SkfElement",
3760
+ "package": "@internal/components/skf-element"
3761
+ },
3762
+ "tagName": "skf-tab-panel",
3763
+ "customElement": true
3764
+ }
3765
+ ],
3766
+ "exports": [
3767
+ {
3768
+ "kind": "js",
3769
+ "name": "SkfTabPanel",
3770
+ "declaration": {
3771
+ "name": "SkfTabPanel",
3772
+ "module": "src/components/tab-panel/tab-panel.component.ts"
3773
+ }
3774
+ }
3775
+ ]
3776
+ },
3777
+ {
3778
+ "kind": "javascript-module",
3779
+ "path": "src/components/tag/tag.component.ts",
3780
+ "declarations": [
3781
+ {
3782
+ "kind": "class",
3783
+ "description": "The `<skf-tag>` is a component that displays a list of actions or options",
3784
+ "name": "SkfTag",
3785
+ "slots": [
3786
+ {
3787
+ "description": "The component's placeholder content",
3788
+ "name": ""
3789
+ }
3790
+ ],
3791
+ "members": [
3650
3792
  {
3651
3793
  "kind": "field",
3652
- "name": "severity",
3794
+ "name": "_onClick",
3653
3795
  "type": {
3654
- "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
3796
+ "text": "(event: Event) => void | undefined"
3655
3797
  },
3656
- "description": "If defined, displays provided severity state",
3657
- "attribute": "severity"
3798
+ "privacy": "private"
3658
3799
  },
3659
3800
  {
3660
3801
  "kind": "field",
3661
- "name": "showValid",
3802
+ "name": "_onRemove",
3662
3803
  "type": {
3663
- "text": "boolean | undefined"
3804
+ "text": "(event: Event) => void | undefined"
3664
3805
  },
3665
- "description": "If true, displays valid state after interaction",
3666
- "attribute": "show-valid"
3806
+ "privacy": "protected"
3667
3807
  },
3668
3808
  {
3669
3809
  "kind": "field",
3670
3810
  "name": "size",
3671
3811
  "type": {
3672
- "text": "'sm' | 'md' | undefined"
3812
+ "text": "'sm' | 'md' | 'lg'"
3673
3813
  },
3674
3814
  "default": "'md'",
3675
- "description": "Size of the Textarea",
3815
+ "description": "Specifies Tag size",
3676
3816
  "attribute": "size",
3677
3817
  "reflects": true
3678
3818
  },
3679
3819
  {
3680
3820
  "kind": "field",
3681
- "name": "validateOn",
3821
+ "name": "icon",
3682
3822
  "type": {
3683
- "text": "'input' | 'change' | 'submit'"
3823
+ "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
3684
3824
  },
3685
- "default": "'change'",
3686
- "description": "Sets validation start",
3687
- "attribute": "validate-on"
3825
+ "description": "If defined, displays leading/provided icon",
3826
+ "attribute": "icon"
3688
3827
  },
3689
3828
  {
3690
3829
  "kind": "field",
3691
- "name": "value",
3830
+ "name": "color",
3692
3831
  "type": {
3693
- "text": "string"
3832
+ "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
3694
3833
  },
3695
- "default": "''",
3696
- "description": "The current value of the text area",
3697
- "attribute": "value"
3698
- }
3699
- ],
3700
- "events": [
3834
+ "description": "If defined, gives the supplied appearance",
3835
+ "attribute": "color",
3836
+ "reflects": true
3837
+ },
3701
3838
  {
3702
- "description": "Fires when the value of the input changes",
3703
- "name": "change"
3839
+ "kind": "field",
3840
+ "name": "onClick",
3841
+ "description": "If defined, accepts a function that runs on click"
3704
3842
  },
3705
3843
  {
3706
- "description": "Fires when the input is invalid",
3707
- "name": "invalid"
3844
+ "kind": "field",
3845
+ "name": "onRemove",
3846
+ "description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
3847
+ },
3848
+ {
3849
+ "kind": "field",
3850
+ "name": "removable",
3851
+ "type": {
3852
+ "text": "boolean | undefined"
3853
+ },
3854
+ "description": "If true, adds trailing button to remove tag",
3855
+ "attribute": "removable",
3856
+ "reflects": true
3857
+ },
3858
+ {
3859
+ "kind": "field",
3860
+ "name": "_handleKeyDown",
3861
+ "privacy": "protected"
3862
+ },
3863
+ {
3864
+ "kind": "field",
3865
+ "name": "_handleRemove",
3866
+ "privacy": "protected",
3867
+ "description": "run externally provided callback (if any) first. Let click propagate to handleClick."
3868
+ },
3869
+ {
3870
+ "kind": "field",
3871
+ "name": "_handleClick",
3872
+ "privacy": "protected"
3708
3873
  }
3709
3874
  ],
3710
3875
  "attributes": [
3711
3876
  {
3877
+ "name": "size",
3712
3878
  "type": {
3713
- "text": "boolean"
3879
+ "text": "'sm' | 'md' | 'lg'"
3714
3880
  },
3715
- "description": "If true, sets disabled state",
3716
- "name": "disabled"
3881
+ "default": "'md'",
3882
+ "description": "Specifies Tag size",
3883
+ "fieldName": "size"
3717
3884
  },
3718
3885
  {
3886
+ "name": "icon",
3719
3887
  "type": {
3720
- "text": "boolean"
3888
+ "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
3721
3889
  },
3722
- "description": "If true, value is required or must be checked for the form to be submittable",
3723
- "name": "required"
3890
+ "description": "If defined, displays leading/provided icon",
3891
+ "fieldName": "icon"
3892
+ },
3893
+ {
3894
+ "name": "color",
3895
+ "type": {
3896
+ "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
3897
+ },
3898
+ "description": "If defined, gives the supplied appearance",
3899
+ "fieldName": "color"
3900
+ },
3901
+ {
3902
+ "name": "removable",
3903
+ "type": {
3904
+ "text": "boolean | undefined"
3905
+ },
3906
+ "description": "If true, adds trailing button to remove tag",
3907
+ "fieldName": "removable"
3908
+ }
3909
+ ],
3910
+ "superclass": {
3911
+ "name": "SkfElement",
3912
+ "package": "@internal/components/skf-element"
3913
+ },
3914
+ "tagName": "skf-tag",
3915
+ "customElement": true
3916
+ }
3917
+ ],
3918
+ "exports": [
3919
+ {
3920
+ "kind": "js",
3921
+ "name": "SkfTag",
3922
+ "declaration": {
3923
+ "name": "SkfTag",
3924
+ "module": "src/components/tag/tag.component.ts"
3925
+ }
3926
+ }
3927
+ ]
3928
+ },
3929
+ {
3930
+ "kind": "javascript-module",
3931
+ "path": "src/components/textarea/textarea.component.ts",
3932
+ "declarations": [
3933
+ {
3934
+ "kind": "class",
3935
+ "description": "The skf-textarea is used to create a textarea. Use it inside a form element or wherever you like.",
3936
+ "name": "SkfTextArea",
3937
+ "slots": [
3938
+ {
3939
+ "description": "The textareas label. Alternatively, you can use the `label` attribute.",
3940
+ "name": ""
3941
+ }
3942
+ ],
3943
+ "members": [
3944
+ {
3945
+ "kind": "field",
3946
+ "name": "customError",
3947
+ "type": {
3948
+ "text": "string | undefined"
3949
+ },
3950
+ "privacy": "private"
3724
3951
  },
3725
3952
  {
3953
+ "kind": "field",
3726
3954
  "name": "cols",
3727
3955
  "type": {
3728
3956
  "text": "number | undefined"
3729
3957
  },
3730
3958
  "description": "If defined, sets the cols of the textarea",
3731
- "fieldName": "cols"
3959
+ "attribute": "cols"
3732
3960
  },
3733
3961
  {
3734
- "name": "custom-invalid",
3962
+ "kind": "field",
3963
+ "name": "customInvalid",
3735
3964
  "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
3736
- "fieldName": "customInvalid"
3965
+ "attribute": "custom-invalid",
3966
+ "reflects": true
3737
3967
  },
3738
3968
  {
3969
+ "kind": "field",
3739
3970
  "name": "debug",
3740
3971
  "type": {
3741
3972
  "text": "boolean | undefined"
3742
3973
  },
3743
3974
  "description": "If true, outputs helping hints in console",
3744
- "fieldName": "debug"
3975
+ "attribute": "debug"
3745
3976
  },
3746
3977
  {
3747
- "name": "hide-label",
3978
+ "kind": "field",
3979
+ "name": "hideLabel",
3748
3980
  "type": {
3749
3981
  "text": "boolean | undefined"
3750
3982
  },
3751
3983
  "description": "If true, hides the label visually",
3752
- "fieldName": "hideLabel"
3984
+ "attribute": "hide-label"
3753
3985
  },
3754
3986
  {
3987
+ "kind": "field",
3755
3988
  "name": "hint",
3756
3989
  "type": {
3757
3990
  "text": "string | undefined"
3758
3991
  },
3759
3992
  "description": "If defined, displays informational text below the field",
3760
- "fieldName": "hint"
3993
+ "attribute": "hint"
3761
3994
  },
3762
3995
  {
3996
+ "kind": "field",
3763
3997
  "name": "label",
3764
3998
  "type": {
3765
3999
  "text": "string | undefined"
3766
4000
  },
3767
4001
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
3768
- "fieldName": "label"
4002
+ "attribute": "label"
3769
4003
  },
3770
4004
  {
4005
+ "kind": "field",
3771
4006
  "name": "name",
3772
4007
  "type": {
3773
4008
  "text": "string | undefined"
3774
4009
  },
3775
4010
  "description": "If defined, adds name to the input-element",
3776
- "fieldName": "name"
4011
+ "attribute": "name"
3777
4012
  },
3778
4013
  {
3779
- "name": "maxlength",
4014
+ "kind": "field",
4015
+ "name": "maxLength",
3780
4016
  "type": {
3781
4017
  "text": "number | undefined"
3782
4018
  },
3783
4019
  "description": "If defined, sets the maximum character length to accept for this input",
3784
- "fieldName": "maxLength"
4020
+ "attribute": "maxlength"
3785
4021
  },
3786
4022
  {
3787
- "name": "minlength",
4023
+ "kind": "field",
4024
+ "name": "minLength",
3788
4025
  "type": {
3789
4026
  "text": "number | undefined"
3790
4027
  },
3791
4028
  "description": "If defined, sets the minimum character length to accept for this input",
3792
- "fieldName": "minLength"
4029
+ "attribute": "minlength"
3793
4030
  },
3794
4031
  {
4032
+ "kind": "field",
3795
4033
  "name": "placeholder",
3796
4034
  "type": {
3797
4035
  "text": "string | undefined"
3798
4036
  },
3799
4037
  "description": "If defined, displays placeholder text",
3800
- "fieldName": "placeholder"
4038
+ "attribute": "placeholder"
3801
4039
  },
3802
4040
  {
4041
+ "kind": "field",
3803
4042
  "name": "readonly",
3804
4043
  "type": {
3805
4044
  "text": "boolean | undefined"
3806
4045
  },
3807
4046
  "description": "If true, makes the element not mutable, meaning the user can not edit the control",
3808
- "fieldName": "readonly"
4047
+ "attribute": "readonly"
3809
4048
  },
3810
4049
  {
3811
- "name": "required-label",
4050
+ "kind": "field",
4051
+ "name": "requiredLabel",
3812
4052
  "type": {
3813
4053
  "text": "string | undefined"
3814
4054
  },
3815
4055
  "description": "If defined, renders an alternative A11y text for the asterisk",
3816
- "fieldName": "requiredLabel"
4056
+ "attribute": "required-label"
3817
4057
  },
3818
4058
  {
4059
+ "kind": "field",
3819
4060
  "name": "rows",
3820
4061
  "type": {
3821
4062
  "text": "number | undefined"
3822
4063
  },
3823
4064
  "description": "If defined, sets the rows of the textarea",
3824
- "fieldName": "rows"
4065
+ "attribute": "rows"
3825
4066
  },
3826
4067
  {
4068
+ "kind": "field",
3827
4069
  "name": "severity",
3828
4070
  "type": {
3829
4071
  "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
3830
4072
  },
3831
4073
  "description": "If defined, displays provided severity state",
3832
- "fieldName": "severity"
4074
+ "attribute": "severity"
3833
4075
  },
3834
4076
  {
3835
- "name": "show-valid",
4077
+ "kind": "field",
4078
+ "name": "showValid",
3836
4079
  "type": {
3837
4080
  "text": "boolean | undefined"
3838
4081
  },
3839
4082
  "description": "If true, displays valid state after interaction",
3840
- "fieldName": "showValid"
4083
+ "attribute": "show-valid"
3841
4084
  },
3842
4085
  {
4086
+ "kind": "field",
3843
4087
  "name": "size",
3844
4088
  "type": {
3845
4089
  "text": "'sm' | 'md' | undefined"
3846
4090
  },
3847
4091
  "default": "'md'",
3848
4092
  "description": "Size of the Textarea",
3849
- "fieldName": "size"
4093
+ "attribute": "size",
4094
+ "reflects": true
3850
4095
  },
3851
4096
  {
3852
- "name": "validate-on",
4097
+ "kind": "field",
4098
+ "name": "validateOn",
3853
4099
  "type": {
3854
4100
  "text": "'input' | 'change' | 'submit'"
3855
4101
  },
3856
4102
  "default": "'change'",
3857
4103
  "description": "Sets validation start",
3858
- "fieldName": "validateOn"
4104
+ "attribute": "validate-on"
3859
4105
  },
3860
4106
  {
4107
+ "kind": "field",
3861
4108
  "name": "value",
3862
4109
  "type": {
3863
4110
  "text": "string"
3864
4111
  },
3865
4112
  "default": "''",
3866
4113
  "description": "The current value of the text area",
3867
- "fieldName": "value"
4114
+ "attribute": "value"
3868
4115
  }
3869
4116
  ],
3870
- "superclass": {
3871
- "name": "FormBase",
3872
- "package": "@internal/components/formBase.js"
3873
- },
3874
- "tagName": "skf-textarea",
3875
- "customElement": true
3876
- }
3877
- ],
3878
- "exports": [
3879
- {
3880
- "kind": "js",
3881
- "name": "SkfTextArea",
3882
- "declaration": {
3883
- "name": "SkfTextArea",
3884
- "module": "src/components/textarea/textarea.component.ts"
4117
+ "events": [
4118
+ {
4119
+ "description": "Fires when the value of the input changes",
4120
+ "name": "change"
4121
+ },
4122
+ {
4123
+ "description": "Fires when the input is invalid",
4124
+ "name": "invalid"
4125
+ }
4126
+ ],
4127
+ "attributes": [
4128
+ {
4129
+ "type": {
4130
+ "text": "boolean"
4131
+ },
4132
+ "description": "If true, sets disabled state",
4133
+ "name": "disabled"
4134
+ },
4135
+ {
4136
+ "type": {
4137
+ "text": "boolean"
4138
+ },
4139
+ "description": "If true, value is required or must be checked for the form to be submittable",
4140
+ "name": "required"
4141
+ },
4142
+ {
4143
+ "name": "cols",
4144
+ "type": {
4145
+ "text": "number | undefined"
4146
+ },
4147
+ "description": "If defined, sets the cols of the textarea",
4148
+ "fieldName": "cols"
4149
+ },
4150
+ {
4151
+ "name": "custom-invalid",
4152
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
4153
+ "fieldName": "customInvalid"
4154
+ },
4155
+ {
4156
+ "name": "debug",
4157
+ "type": {
4158
+ "text": "boolean | undefined"
4159
+ },
4160
+ "description": "If true, outputs helping hints in console",
4161
+ "fieldName": "debug"
4162
+ },
4163
+ {
4164
+ "name": "hide-label",
4165
+ "type": {
4166
+ "text": "boolean | undefined"
4167
+ },
4168
+ "description": "If true, hides the label visually",
4169
+ "fieldName": "hideLabel"
4170
+ },
4171
+ {
4172
+ "name": "hint",
4173
+ "type": {
4174
+ "text": "string | undefined"
4175
+ },
4176
+ "description": "If defined, displays informational text below the field",
4177
+ "fieldName": "hint"
4178
+ },
4179
+ {
4180
+ "name": "label",
4181
+ "type": {
4182
+ "text": "string | undefined"
4183
+ },
4184
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
4185
+ "fieldName": "label"
4186
+ },
4187
+ {
4188
+ "name": "name",
4189
+ "type": {
4190
+ "text": "string | undefined"
4191
+ },
4192
+ "description": "If defined, adds name to the input-element",
4193
+ "fieldName": "name"
4194
+ },
4195
+ {
4196
+ "name": "maxlength",
4197
+ "type": {
4198
+ "text": "number | undefined"
4199
+ },
4200
+ "description": "If defined, sets the maximum character length to accept for this input",
4201
+ "fieldName": "maxLength"
4202
+ },
4203
+ {
4204
+ "name": "minlength",
4205
+ "type": {
4206
+ "text": "number | undefined"
4207
+ },
4208
+ "description": "If defined, sets the minimum character length to accept for this input",
4209
+ "fieldName": "minLength"
4210
+ },
4211
+ {
4212
+ "name": "placeholder",
4213
+ "type": {
4214
+ "text": "string | undefined"
4215
+ },
4216
+ "description": "If defined, displays placeholder text",
4217
+ "fieldName": "placeholder"
4218
+ },
4219
+ {
4220
+ "name": "readonly",
4221
+ "type": {
4222
+ "text": "boolean | undefined"
4223
+ },
4224
+ "description": "If true, makes the element not mutable, meaning the user can not edit the control",
4225
+ "fieldName": "readonly"
4226
+ },
4227
+ {
4228
+ "name": "required-label",
4229
+ "type": {
4230
+ "text": "string | undefined"
4231
+ },
4232
+ "description": "If defined, renders an alternative A11y text for the asterisk",
4233
+ "fieldName": "requiredLabel"
4234
+ },
4235
+ {
4236
+ "name": "rows",
4237
+ "type": {
4238
+ "text": "number | undefined"
4239
+ },
4240
+ "description": "If defined, sets the rows of the textarea",
4241
+ "fieldName": "rows"
4242
+ },
4243
+ {
4244
+ "name": "severity",
4245
+ "type": {
4246
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
4247
+ },
4248
+ "description": "If defined, displays provided severity state",
4249
+ "fieldName": "severity"
4250
+ },
4251
+ {
4252
+ "name": "show-valid",
4253
+ "type": {
4254
+ "text": "boolean | undefined"
4255
+ },
4256
+ "description": "If true, displays valid state after interaction",
4257
+ "fieldName": "showValid"
4258
+ },
4259
+ {
4260
+ "name": "size",
4261
+ "type": {
4262
+ "text": "'sm' | 'md' | undefined"
4263
+ },
4264
+ "default": "'md'",
4265
+ "description": "Size of the Textarea",
4266
+ "fieldName": "size"
4267
+ },
4268
+ {
4269
+ "name": "validate-on",
4270
+ "type": {
4271
+ "text": "'input' | 'change' | 'submit'"
4272
+ },
4273
+ "default": "'change'",
4274
+ "description": "Sets validation start",
4275
+ "fieldName": "validateOn"
4276
+ },
4277
+ {
4278
+ "name": "value",
4279
+ "type": {
4280
+ "text": "string"
4281
+ },
4282
+ "default": "''",
4283
+ "description": "The current value of the text area",
4284
+ "fieldName": "value"
4285
+ }
4286
+ ],
4287
+ "superclass": {
4288
+ "name": "FormBase",
4289
+ "package": "@internal/components/formBase.js"
4290
+ },
4291
+ "tagName": "skf-textarea",
4292
+ "customElement": true
4293
+ }
4294
+ ],
4295
+ "exports": [
4296
+ {
4297
+ "kind": "js",
4298
+ "name": "SkfTextArea",
4299
+ "declaration": {
4300
+ "name": "SkfTextArea",
4301
+ "module": "src/components/textarea/textarea.component.ts"
4302
+ }
4303
+ }
4304
+ ]
4305
+ },
4306
+ {
4307
+ "kind": "javascript-module",
4308
+ "path": "src/components/toast/toast.component.ts",
4309
+ "declarations": [
4310
+ {
4311
+ "kind": "class",
4312
+ "description": "A simple toast component that displays a message to the user. Use by appending a &lt;skf-toast&gt; tag to the DOM. Position in DOM is irrelevant.",
4313
+ "name": "SkfToast",
4314
+ "slots": [
4315
+ {
4316
+ "description": "The component's placeholder content",
4317
+ "name": ""
4318
+ }
4319
+ ],
4320
+ "members": [
4321
+ {
4322
+ "kind": "field",
4323
+ "name": "closeable",
4324
+ "type": {
4325
+ "text": "boolean"
4326
+ },
4327
+ "default": "false",
4328
+ "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
4329
+ "attribute": "closeable"
4330
+ },
4331
+ {
4332
+ "kind": "field",
4333
+ "name": "debug",
4334
+ "type": {
4335
+ "text": "boolean"
4336
+ },
4337
+ "default": "false",
4338
+ "attribute": "debug"
4339
+ },
4340
+ {
4341
+ "kind": "field",
4342
+ "name": "severity",
4343
+ "type": {
4344
+ "text": "'info' | 'success' | 'warning' | 'error'"
4345
+ },
4346
+ "default": "'info'",
4347
+ "description": "Severity of the toast.",
4348
+ "attribute": "severity"
4349
+ },
4350
+ {
4351
+ "kind": "field",
4352
+ "name": "timer",
4353
+ "type": {
4354
+ "text": "number"
4355
+ },
4356
+ "default": "5",
4357
+ "description": "Time in seconds before the toast disappears.",
4358
+ "attribute": "timer"
4359
+ },
4360
+ {
4361
+ "kind": "field",
4362
+ "name": "topOffset",
4363
+ "type": {
4364
+ "text": "number | undefined"
4365
+ },
4366
+ "description": "offsets where toasts emerge vertically",
4367
+ "attribute": "topOffset"
4368
+ }
4369
+ ],
4370
+ "attributes": [
4371
+ {
4372
+ "name": "closeable",
4373
+ "type": {
4374
+ "text": "boolean"
4375
+ },
4376
+ "default": "false",
4377
+ "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
4378
+ "fieldName": "closeable"
4379
+ },
4380
+ {
4381
+ "name": "debug",
4382
+ "type": {
4383
+ "text": "boolean"
4384
+ },
4385
+ "default": "false",
4386
+ "fieldName": "debug"
4387
+ },
4388
+ {
4389
+ "name": "severity",
4390
+ "type": {
4391
+ "text": "'info' | 'success' | 'warning' | 'error'"
4392
+ },
4393
+ "default": "'info'",
4394
+ "description": "Severity of the toast.",
4395
+ "fieldName": "severity"
4396
+ },
4397
+ {
4398
+ "name": "timer",
4399
+ "type": {
4400
+ "text": "number"
4401
+ },
4402
+ "default": "5",
4403
+ "description": "Time in seconds before the toast disappears.",
4404
+ "fieldName": "timer"
4405
+ },
4406
+ {
4407
+ "name": "topOffset",
4408
+ "type": {
4409
+ "text": "number | undefined"
4410
+ },
4411
+ "description": "offsets where toasts emerge vertically",
4412
+ "fieldName": "topOffset"
4413
+ }
4414
+ ],
4415
+ "superclass": {
4416
+ "name": "SkfElement",
4417
+ "package": "@internal/components/skf-element"
4418
+ },
4419
+ "tagName": "skf-toast",
4420
+ "customElement": true
4421
+ }
4422
+ ],
4423
+ "exports": [
4424
+ {
4425
+ "kind": "js",
4426
+ "name": "SkfToast",
4427
+ "declaration": {
4428
+ "name": "SkfToast",
4429
+ "module": "src/components/toast/toast.component.ts"
4430
+ }
4431
+ }
4432
+ ]
4433
+ },
4434
+ {
4435
+ "kind": "javascript-module",
4436
+ "path": "src/components/toast-item/toast-item.component.ts",
4437
+ "declarations": [
4438
+ {
4439
+ "kind": "class",
4440
+ "description": "",
4441
+ "name": "SkfToastItem",
4442
+ "members": [
4443
+ {
4444
+ "kind": "field",
4445
+ "name": "_closeableInitialState",
4446
+ "type": {
4447
+ "text": "boolean"
4448
+ },
4449
+ "privacy": "protected",
4450
+ "default": "!!this.closeable"
4451
+ },
4452
+ {
4453
+ "kind": "field",
4454
+ "name": "_parentAnimationDiv",
4455
+ "type": {
4456
+ "text": "HTMLDivElement | null"
4457
+ },
4458
+ "privacy": "protected",
4459
+ "default": "this.parentElement"
4460
+ },
4461
+ {
4462
+ "kind": "field",
4463
+ "name": "_currentTimeoutId",
4464
+ "type": {
4465
+ "text": "ReturnType<typeof setTimeout> | null"
4466
+ },
4467
+ "privacy": "private",
4468
+ "description": "If not cloaseable, timeout id for the toast",
4469
+ "default": "null"
4470
+ },
4471
+ {
4472
+ "kind": "field",
4473
+ "name": "_timeleft",
4474
+ "type": {
4475
+ "text": "number"
4476
+ },
4477
+ "privacy": "private",
4478
+ "description": "If not closseable, time left on the timer when the mouse enters the toast",
4479
+ "default": "0"
4480
+ },
4481
+ {
4482
+ "kind": "field",
4483
+ "name": "_timeoutStarted",
4484
+ "type": {
4485
+ "text": "number"
4486
+ },
4487
+ "privacy": "private",
4488
+ "description": "If not closseable, time when the timeout started",
4489
+ "default": "0"
4490
+ },
4491
+ {
4492
+ "kind": "field",
4493
+ "name": "originEl",
4494
+ "type": {
4495
+ "text": "HTMLElement | null"
4496
+ },
4497
+ "default": "null"
4498
+ },
4499
+ {
4500
+ "kind": "field",
4501
+ "name": "timer",
4502
+ "type": {
4503
+ "text": "number"
4504
+ },
4505
+ "default": "0",
4506
+ "attribute": "timer",
4507
+ "reflects": true
4508
+ },
4509
+ {
4510
+ "kind": "method",
4511
+ "name": "_animateIn"
4512
+ },
4513
+ {
4514
+ "kind": "field",
4515
+ "name": "_handleMouseEnter"
4516
+ },
4517
+ {
4518
+ "kind": "field",
4519
+ "name": "_handleMouseLeave"
4520
+ },
4521
+ {
4522
+ "kind": "field",
4523
+ "name": "_removeToast"
4524
+ },
4525
+ {
4526
+ "kind": "field",
4527
+ "name": "parentAnimationDiv",
4528
+ "readonly": true
4529
+ },
4530
+ {
4531
+ "kind": "field",
4532
+ "name": "closeable",
4533
+ "type": {
4534
+ "text": "boolean | undefined"
4535
+ },
4536
+ "description": "If true, alert is being used as a toast (alertdialog) with an close button",
4537
+ "attribute": "closeable",
4538
+ "reflects": true,
4539
+ "inheritedFrom": {
4540
+ "name": "SkfAlert",
4541
+ "module": "src/components/alert/alert.component.ts"
4542
+ }
4543
+ },
4544
+ {
4545
+ "kind": "field",
4546
+ "name": "buttonLabel",
4547
+ "type": {
4548
+ "text": "string"
4549
+ },
4550
+ "default": "'Close'",
4551
+ "description": "Close button aria-label",
4552
+ "attribute": "button-label",
4553
+ "inheritedFrom": {
4554
+ "name": "SkfAlert",
4555
+ "module": "src/components/alert/alert.component.ts"
4556
+ }
4557
+ },
4558
+ {
4559
+ "kind": "field",
4560
+ "name": "icon",
4561
+ "type": {
4562
+ "text": "SkfIcon['name'] | undefined"
4563
+ },
4564
+ "description": "If defined, displays leading icon",
4565
+ "attribute": "icon",
4566
+ "inheritedFrom": {
4567
+ "name": "SkfAlert",
4568
+ "module": "src/components/alert/alert.component.ts"
4569
+ }
4570
+ },
4571
+ {
4572
+ "kind": "field",
4573
+ "name": "severity",
4574
+ "type": {
4575
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
4576
+ },
4577
+ "description": "If defined, gives the supplied appearance",
4578
+ "attribute": "severity",
4579
+ "reflects": true,
4580
+ "inheritedFrom": {
4581
+ "name": "SkfAlert",
4582
+ "module": "src/components/alert/alert.component.ts"
4583
+ }
4584
+ }
4585
+ ],
4586
+ "attributes": [
4587
+ {
4588
+ "name": "timer",
4589
+ "type": {
4590
+ "text": "number"
4591
+ },
4592
+ "default": "0",
4593
+ "fieldName": "timer"
4594
+ },
4595
+ {
4596
+ "name": "closeable",
4597
+ "type": {
4598
+ "text": "boolean | undefined"
4599
+ },
4600
+ "description": "If true, alert is being used as a toast (alertdialog) with an close button",
4601
+ "fieldName": "closeable",
4602
+ "inheritedFrom": {
4603
+ "name": "SkfAlert",
4604
+ "module": "src/components/alert/alert.component.ts"
4605
+ }
4606
+ },
4607
+ {
4608
+ "name": "button-label",
4609
+ "type": {
4610
+ "text": "string"
4611
+ },
4612
+ "default": "'Close'",
4613
+ "description": "Close button aria-label",
4614
+ "fieldName": "buttonLabel",
4615
+ "inheritedFrom": {
4616
+ "name": "SkfAlert",
4617
+ "module": "src/components/alert/alert.component.ts"
4618
+ }
4619
+ },
4620
+ {
4621
+ "name": "icon",
4622
+ "type": {
4623
+ "text": "SkfIcon['name'] | undefined"
4624
+ },
4625
+ "description": "If defined, displays leading icon",
4626
+ "fieldName": "icon",
4627
+ "inheritedFrom": {
4628
+ "name": "SkfAlert",
4629
+ "module": "src/components/alert/alert.component.ts"
4630
+ }
4631
+ },
4632
+ {
4633
+ "name": "severity",
4634
+ "type": {
4635
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
4636
+ },
4637
+ "description": "If defined, gives the supplied appearance",
4638
+ "fieldName": "severity",
4639
+ "inheritedFrom": {
4640
+ "name": "SkfAlert",
4641
+ "module": "src/components/alert/alert.component.ts"
4642
+ }
4643
+ }
4644
+ ],
4645
+ "superclass": {
4646
+ "name": "SkfAlert",
4647
+ "package": "@components/alert/alert.component.js"
4648
+ },
4649
+ "slots": [
4650
+ {
4651
+ "description": "Alert message. **Notice!** See design principles for approved content",
4652
+ "name": "",
4653
+ "inheritedFrom": {
4654
+ "name": "SkfAlert",
4655
+ "module": "src/components/alert/alert.component.ts"
4656
+ }
4657
+ },
4658
+ {
4659
+ "description": "Slot for the link",
4660
+ "name": "link",
4661
+ "inheritedFrom": {
4662
+ "name": "SkfAlert",
4663
+ "module": "src/components/alert/alert.component.ts"
4664
+ }
4665
+ }
4666
+ ],
4667
+ "events": [
4668
+ {
4669
+ "description": "Fires when the close button is clicked",
4670
+ "name": "skf-alert-close",
4671
+ "inheritedFrom": {
4672
+ "name": "SkfAlert",
4673
+ "module": "src/components/alert/alert.component.ts"
4674
+ }
4675
+ }
4676
+ ]
4677
+ }
4678
+ ],
4679
+ "exports": [
4680
+ {
4681
+ "kind": "js",
4682
+ "name": "SkfToastItem",
4683
+ "declaration": {
4684
+ "name": "SkfToastItem",
4685
+ "module": "src/components/toast-item/toast-item.component.ts"
4686
+ }
4687
+ }
4688
+ ]
4689
+ },
4690
+ {
4691
+ "kind": "javascript-module",
4692
+ "path": "src/components/toast-wrapper/toast-wrapper.component.ts",
4693
+ "declarations": [
4694
+ {
4695
+ "kind": "class",
4696
+ "description": "The `<skf-toast-wrapper>` is a component without UI that positions where the toast shows up on the screen. The toast-wrapper is used internally by the toast component.",
4697
+ "name": "SkfToastWrapper",
4698
+ "slots": [
4699
+ {
4700
+ "description": "The alert components that the toast creates will render here.",
4701
+ "name": ""
4702
+ }
4703
+ ],
4704
+ "members": [
4705
+ {
4706
+ "kind": "field",
4707
+ "name": "debug",
4708
+ "type": {
4709
+ "text": "boolean"
4710
+ },
4711
+ "default": "false",
4712
+ "attribute": "debug",
4713
+ "reflects": true
4714
+ }
4715
+ ],
4716
+ "attributes": [
4717
+ {
4718
+ "name": "debug",
4719
+ "type": {
4720
+ "text": "boolean"
4721
+ },
4722
+ "default": "false",
4723
+ "fieldName": "debug"
4724
+ }
4725
+ ],
4726
+ "superclass": {
4727
+ "name": "SkfElement",
4728
+ "package": "@internal/components/skf-element"
4729
+ },
4730
+ "tagName": "skf-toast-wrapper",
4731
+ "customElement": true
4732
+ }
4733
+ ],
4734
+ "exports": [
4735
+ {
4736
+ "kind": "js",
4737
+ "name": "SkfToastWrapper",
4738
+ "declaration": {
4739
+ "name": "SkfToastWrapper",
4740
+ "module": "src/components/toast-wrapper/toast-wrapper.component.ts"
3885
4741
  }
3886
4742
  }
3887
4743
  ]