@skf-design-system/ui-components 1.0.0-beta.7 → 1.0.1-beta.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.
Files changed (115) hide show
  1. package/dist/components/accordion/accordion.component.js +3 -3
  2. package/dist/components/alert/alert.component.d.ts +2 -2
  3. package/dist/components/alert/alert.component.js +32 -32
  4. package/dist/components/breadcrumb/breadcrumb.component.d.ts +29 -0
  5. package/dist/components/breadcrumb/breadcrumb.d.ts +8 -0
  6. package/dist/components/breadcrumb/breadcrumb.styles.d.ts +1 -0
  7. package/dist/components/breadcrumb-item/breadcrumb-item.component.d.ts +25 -0
  8. package/dist/components/breadcrumb-item/breadcrumb-item.d.ts +8 -0
  9. package/dist/components/breadcrumb-item/breadcrumb-item.styles.d.ts +1 -0
  10. package/dist/components/button/button.component.d.ts +3 -1
  11. package/dist/components/button/button.component.js +60 -47
  12. package/dist/components/button/button.styles.js +64 -45
  13. package/dist/components/card/card.component.js +4 -4
  14. package/dist/components/checkbox/checkbox.component.js +4 -4
  15. package/dist/components/dialog/dialog.component.d.ts +0 -1
  16. package/dist/components/dialog/dialog.component.js +21 -23
  17. package/dist/components/divider/divider.component.js +12 -12
  18. package/dist/components/heading/heading.component.js +13 -13
  19. package/dist/components/icon/icon.component.d.ts +1 -4
  20. package/dist/components/icon/icon.component.js +32 -23
  21. package/dist/components/icon/icon.styles.js +53 -47
  22. package/dist/components/link/link.component.d.ts +1 -0
  23. package/dist/components/link/link.component.js +42 -42
  24. package/dist/components/loader/loader.component.js +19 -19
  25. package/dist/components/logo/logo.component.js +6 -6
  26. package/dist/components/menu/menu.component.d.ts +24 -0
  27. package/dist/components/menu/menu.component.js +18 -0
  28. package/dist/components/menu/menu.d.ts +8 -0
  29. package/dist/components/menu/menu.js +6 -0
  30. package/dist/components/menu/menu.styles.d.ts +1 -0
  31. package/dist/components/menu/menu.styles.js +11 -0
  32. package/dist/components/menu-item/menu-item.component.d.ts +25 -0
  33. package/dist/components/menu-item/menu-item.component.js +13 -0
  34. package/dist/components/menu-item/menu-item.d.ts +8 -0
  35. package/dist/components/menu-item/menu-item.js +6 -0
  36. package/dist/components/menu-item/menu-item.styles.d.ts +1 -0
  37. package/dist/components/menu-item/menu-item.styles.js +19 -0
  38. package/dist/components/popover/popover.component.d.ts +29 -0
  39. package/dist/components/popover/popover.component.js +37 -0
  40. package/dist/components/popover/popover.d.ts +8 -0
  41. package/dist/components/popover/popover.js +6 -0
  42. package/dist/components/popover/popover.styles.d.ts +1 -0
  43. package/dist/components/popover/popover.styles.js +12 -0
  44. package/dist/components/progress/progress.component.js +7 -7
  45. package/dist/components/radio/radio.component.js +4 -4
  46. package/dist/components/select/select.component.d.ts +8 -10
  47. package/dist/components/select/select.component.js +115 -118
  48. package/dist/components/select/select.controllers.d.ts +0 -25
  49. package/dist/components/select/select.controllers.js +35 -95
  50. package/dist/components/select-option-group/select-option-group.component.js +9 -9
  51. package/dist/components/stepper/stepper.component.d.ts +38 -0
  52. package/dist/components/stepper/stepper.component.js +91 -0
  53. package/dist/components/stepper/stepper.d.ts +8 -0
  54. package/dist/components/stepper/stepper.helpers.d.ts +16 -0
  55. package/dist/components/stepper/stepper.helpers.js +18 -0
  56. package/dist/components/stepper/stepper.js +6 -0
  57. package/dist/components/stepper/stepper.styles.d.ts +1 -0
  58. package/dist/components/stepper/stepper.styles.js +15 -0
  59. package/dist/components/stepper-item/stepper-item.component.d.ts +47 -0
  60. package/dist/components/stepper-item/stepper-item.component.js +113 -0
  61. package/dist/components/stepper-item/stepper-item.d.ts +8 -0
  62. package/dist/components/stepper-item/stepper-item.js +6 -0
  63. package/dist/components/stepper-item/stepper-item.styles.d.ts +1 -0
  64. package/dist/components/stepper-item/stepper-item.styles.js +98 -0
  65. package/dist/components/tab/tab.component.js +4 -4
  66. package/dist/components/tab-panel/tab-panel.component.js +12 -12
  67. package/dist/components/tag/tag.component.js +9 -9
  68. package/dist/components/textarea/textarea.component.js +3 -3
  69. package/dist/components/toast/toast.component.d.ts +7 -4
  70. package/dist/components/toast/toast.component.js +30 -26
  71. package/dist/components/toast/toast.singleton.d.ts +2 -7
  72. package/dist/components/toast/toast.singleton.js +25 -25
  73. package/dist/components/toast-item/toast-item.component.js +15 -15
  74. package/dist/components/toast-item/toast-item.styles.js +13 -11
  75. package/dist/components/toast-wrapper/toast-wrapper.component.js +10 -10
  76. package/dist/components/tooltip/tooltip.component.d.ts +24 -0
  77. package/dist/components/tooltip/tooltip.component.js +18 -0
  78. package/dist/components/tooltip/tooltip.d.ts +8 -0
  79. package/dist/components/tooltip/tooltip.js +6 -0
  80. package/dist/components/tooltip/tooltip.styles.d.ts +1 -0
  81. package/dist/components/tooltip/tooltip.styles.js +12 -0
  82. package/dist/custom-elements.json +2179 -1002
  83. package/dist/index.d.ts +6 -0
  84. package/dist/index.js +72 -54
  85. package/dist/internal/base-classes/popover/popover.base.d.ts +29 -0
  86. package/dist/internal/base-classes/popover/popover.base.js +116 -0
  87. package/dist/internal/base-classes/popover/popover.styles.d.ts +1 -0
  88. package/dist/internal/base-classes/popover/popover.styles.js +29 -0
  89. package/dist/internal/components/hint/hint.component.js +13 -13
  90. package/dist/internal/controllers/popover.controller.d.ts +16 -0
  91. package/dist/internal/controllers/popover.controller.js +44 -0
  92. package/dist/internal/helpers/hintSeverity.d.ts +1 -1
  93. package/dist/react/index.d.ts +10 -2
  94. package/dist/react/index.js +10 -2
  95. package/dist/react/skf-breadcrumb/index.d.ts +9 -0
  96. package/dist/react/skf-breadcrumb/index.js +17 -0
  97. package/dist/react/skf-breadcrumb-item/index.d.ts +3 -0
  98. package/dist/react/skf-breadcrumb-item/index.js +13 -0
  99. package/dist/react/skf-menu/index.d.ts +12 -0
  100. package/dist/react/skf-menu/index.js +18 -0
  101. package/dist/react/skf-menu-item/index.d.ts +27 -0
  102. package/dist/react/skf-menu-item/index.js +23 -0
  103. package/dist/react/skf-popover/index.d.ts +12 -0
  104. package/dist/react/skf-popover/index.js +18 -0
  105. package/dist/react/skf-stepper/index.d.ts +9 -0
  106. package/dist/react/skf-stepper/index.js +17 -0
  107. package/dist/react/skf-stepper-item/index.d.ts +9 -0
  108. package/dist/react/skf-stepper-item/index.js +17 -0
  109. package/dist/react/skf-tooltip/index.d.ts +12 -0
  110. package/dist/react/skf-tooltip/index.js +18 -0
  111. package/dist/types/jsx/custom-element-jsx.d.ts +594 -163
  112. package/dist/types/vue/index.d.ts +326 -74
  113. package/dist/vscode.html-custom-data.json +722 -390
  114. package/dist/web-types.json +836 -290
  115. package/package.json +33 -33
@@ -164,880 +164,1279 @@
164
164
  },
165
165
  {
166
166
  "kind": "javascript-module",
167
- "path": "src/components/card/card.component.ts",
167
+ "path": "src/components/alert/alert.component.ts",
168
168
  "declarations": [
169
169
  {
170
170
  "kind": "class",
171
- "description": "The `<skf-card>` can be used to group related subjects in a container",
172
- "name": "SkfCard",
171
+ "description": "The `<skf-alert>` is a type of notification that appears in-line",
172
+ "name": "SkfAlert",
173
173
  "slots": [
174
174
  {
175
- "description": "The card's main content",
175
+ "description": "Alert message. **Notice!** See design principles for approved content",
176
176
  "name": ""
177
+ },
178
+ {
179
+ "description": "Slot for the link",
180
+ "name": "link"
177
181
  }
178
182
  ],
179
183
  "members": [
180
184
  {
181
185
  "kind": "field",
182
- "name": "noBorder",
186
+ "name": "buttonLabel",
183
187
  "type": {
184
- "text": "boolean"
188
+ "text": "string"
185
189
  },
186
- "default": "false",
187
- "description": "If true, removes border",
188
- "attribute": "no-border"
190
+ "default": "'Close'",
191
+ "description": "Close button aria-label",
192
+ "attribute": "button-label"
189
193
  },
190
194
  {
191
195
  "kind": "field",
192
- "name": "noPadding",
196
+ "name": "icon",
193
197
  "type": {
194
- "text": "boolean"
198
+ "text": "SkfIcon['name'] | undefined"
195
199
  },
196
- "default": "false",
197
- "description": "If true, removes padding",
198
- "attribute": "no-padding"
200
+ "description": "If defined, displays leading icon",
201
+ "attribute": "icon"
199
202
  },
200
203
  {
201
204
  "kind": "field",
202
- "name": "stretch",
205
+ "name": "persistent",
203
206
  "type": {
204
- "text": "boolean"
207
+ "text": "boolean | undefined"
205
208
  },
206
- "default": "false",
207
- "description": "If true, the Card fills the parent element height",
208
- "attribute": "stretch",
209
+ "description": "If true, renders with an close button and sets aria-role to `status`",
210
+ "attribute": "persistent",
211
+ "reflects": true
212
+ },
213
+ {
214
+ "kind": "field",
215
+ "name": "severity",
216
+ "type": {
217
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
218
+ },
219
+ "description": "If defined, gives the supplied appearance",
220
+ "attribute": "severity",
209
221
  "reflects": true
210
222
  }
211
223
  ],
224
+ "events": [
225
+ {
226
+ "description": "Fires when the close button is clicked",
227
+ "name": "skf-alert-close"
228
+ }
229
+ ],
212
230
  "attributes": [
213
231
  {
214
- "name": "no-border",
232
+ "name": "button-label",
215
233
  "type": {
216
- "text": "boolean"
234
+ "text": "string"
217
235
  },
218
- "default": "false",
219
- "description": "If true, removes border",
220
- "fieldName": "noBorder"
236
+ "default": "'Close'",
237
+ "description": "Close button aria-label",
238
+ "fieldName": "buttonLabel"
221
239
  },
222
240
  {
223
- "name": "no-padding",
241
+ "name": "icon",
224
242
  "type": {
225
- "text": "boolean"
243
+ "text": "SkfIcon['name'] | undefined"
226
244
  },
227
- "default": "false",
228
- "description": "If true, removes padding",
229
- "fieldName": "noPadding"
245
+ "description": "If defined, displays leading icon",
246
+ "fieldName": "icon"
230
247
  },
231
248
  {
232
- "name": "stretch",
249
+ "name": "persistent",
233
250
  "type": {
234
- "text": "boolean"
251
+ "text": "boolean | undefined"
235
252
  },
236
- "default": "false",
237
- "description": "If true, the Card fills the parent element height",
238
- "fieldName": "stretch"
253
+ "description": "If true, renders with an close button and sets aria-role to `status`",
254
+ "fieldName": "persistent"
255
+ },
256
+ {
257
+ "name": "severity",
258
+ "type": {
259
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
260
+ },
261
+ "description": "If defined, gives the supplied appearance",
262
+ "fieldName": "severity"
239
263
  }
240
264
  ],
241
265
  "superclass": {
242
266
  "name": "SkfElement",
243
267
  "package": "@internal/components/skf-element.js"
244
268
  },
245
- "tagName": "skf-card",
269
+ "tagName": "skf-alert",
246
270
  "customElement": true
247
271
  }
248
272
  ],
249
273
  "exports": [
250
274
  {
251
275
  "kind": "js",
252
- "name": "SkfCard",
276
+ "name": "SkfAlert",
253
277
  "declaration": {
254
- "name": "SkfCard",
255
- "module": "src/components/card/card.component.ts"
278
+ "name": "SkfAlert",
279
+ "module": "src/components/alert/alert.component.ts"
256
280
  }
257
281
  }
258
282
  ]
259
283
  },
260
284
  {
261
285
  "kind": "javascript-module",
262
- "path": "src/components/checkbox/checkbox.component.ts",
286
+ "path": "src/components/breadcrumb/breadcrumb.component.ts",
263
287
  "declarations": [
264
288
  {
265
289
  "kind": "class",
266
- "description": "The `<skf-checkbox>` component is used to create a checkbox input",
267
- "name": "SkfCheckbox",
290
+ "description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.",
291
+ "name": "SkfBreadcrumb",
268
292
  "slots": [
269
293
  {
270
- "description": "The Radios label. Alternatively, you can use the `label` attribute.",
294
+ "description": "One or more `<skf-breadcrumb-item>`",
271
295
  "name": ""
272
296
  }
273
297
  ],
274
298
  "members": [
275
299
  {
276
300
  "kind": "field",
277
- "name": "debug",
301
+ "name": "label",
278
302
  "type": {
279
- "text": "boolean | undefined"
303
+ "text": "string"
280
304
  },
281
- "description": "If defined, outputs helping hints in console",
282
- "attribute": "debug"
305
+ "default": "'Breadcrumb'",
306
+ "description": "aria-label for the breadcrumb control",
307
+ "attribute": "label"
283
308
  },
284
309
  {
285
310
  "kind": "field",
286
- "name": "checked",
311
+ "name": "size",
287
312
  "type": {
288
- "text": "boolean | undefined"
313
+ "text": "'md' | 'sm'"
289
314
  },
290
- "description": "If true, outputs helping hints in console",
291
- "attribute": "checked",
315
+ "default": "'md'",
316
+ "description": "Displays an alternative size",
317
+ "attribute": "size",
292
318
  "reflects": true
293
- },
319
+ }
320
+ ],
321
+ "events": [
294
322
  {
295
- "kind": "field",
296
- "name": "customInvalid",
323
+ "description": "Fired when the item is clicked",
324
+ "name": "click"
325
+ }
326
+ ],
327
+ "attributes": [
328
+ {
329
+ "name": "label",
297
330
  "type": {
298
- "text": "boolean | undefined"
331
+ "text": "string"
299
332
  },
300
- "description": "If true, forces component to invalid state until removed",
301
- "attribute": "custom-invalid",
302
- "reflects": true
333
+ "default": "'Breadcrumb'",
334
+ "description": "aria-label for the breadcrumb control",
335
+ "fieldName": "label"
303
336
  },
304
337
  {
305
- "kind": "field",
306
- "name": "indeterminate",
338
+ "name": "size",
307
339
  "type": {
308
- "text": "boolean | undefined"
340
+ "text": "'md' | 'sm'"
309
341
  },
310
- "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
311
- "attribute": "indeterminate",
312
- "reflects": true
313
- },
342
+ "default": "'md'",
343
+ "description": "Displays an alternative size",
344
+ "fieldName": "size"
345
+ }
346
+ ],
347
+ "superclass": {
348
+ "name": "SkfElement",
349
+ "package": "@internal/components/skf-element"
350
+ },
351
+ "tagName": "skf-breadcrumb",
352
+ "customElement": true
353
+ }
354
+ ],
355
+ "exports": [
356
+ {
357
+ "kind": "js",
358
+ "name": "SkfBreadcrumb",
359
+ "declaration": {
360
+ "name": "SkfBreadcrumb",
361
+ "module": "src/components/breadcrumb/breadcrumb.component.ts"
362
+ }
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "kind": "javascript-module",
368
+ "path": "src/components/breadcrumb-item/breadcrumb-item.component.ts",
369
+ "declarations": [
370
+ {
371
+ "kind": "class",
372
+ "description": "The `<skf-breadcrumb-item>` is used in conjunction with the `<skf-breadcrumb>` component",
373
+ "name": "SkfBreadcrumbItem",
374
+ "slots": [
375
+ {
376
+ "description": "Label of the breadcrumb item",
377
+ "name": ""
378
+ }
379
+ ],
380
+ "members": [
314
381
  {
315
382
  "kind": "field",
316
- "name": "label",
383
+ "name": "_onClick",
317
384
  "type": {
318
- "text": "string | undefined"
385
+ "text": "(event: Event, route: string) => void | undefined"
319
386
  },
320
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
321
- "attribute": "label"
387
+ "privacy": "private"
322
388
  },
323
389
  {
324
390
  "kind": "field",
325
- "name": "name",
391
+ "name": "href",
326
392
  "type": {
327
393
  "text": "string | undefined"
328
394
  },
329
- "description": "If defined, adds name to the input-element",
330
- "attribute": "name"
395
+ "description": "If defined, loads url on click",
396
+ "attribute": "href"
331
397
  },
332
398
  {
333
399
  "kind": "field",
334
- "name": "requiredLabel",
400
+ "name": "onClick",
401
+ "description": "If defined, custom onClick where the second return parameter enables custom routing. **Notice!** Only applicable if `href` is defined."
402
+ }
403
+ ],
404
+ "attributes": [
405
+ {
406
+ "name": "href",
335
407
  "type": {
336
408
  "text": "string | undefined"
337
409
  },
338
- "description": "If defined, renders an alternative A11y text for the asterisk",
339
- "attribute": "required-label"
340
- },
410
+ "description": "If defined, loads url on click",
411
+ "fieldName": "href"
412
+ }
413
+ ],
414
+ "superclass": {
415
+ "name": "SkfElement",
416
+ "package": "@internal/components/skf-element"
417
+ },
418
+ "tagName": "skf-breadcrumb-item",
419
+ "customElement": true
420
+ }
421
+ ],
422
+ "exports": [
423
+ {
424
+ "kind": "js",
425
+ "name": "SkfBreadcrumbItem",
426
+ "declaration": {
427
+ "name": "SkfBreadcrumbItem",
428
+ "module": "src/components/breadcrumb-item/breadcrumb-item.component.ts"
429
+ }
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "kind": "javascript-module",
435
+ "path": "src/components/button/button.component.ts",
436
+ "declarations": [
437
+ {
438
+ "kind": "class",
439
+ "description": "Component to be used in forms or for interactivity",
440
+ "name": "SkfButton",
441
+ "slots": [
442
+ {
443
+ "description": "The Primary content",
444
+ "name": ""
445
+ }
446
+ ],
447
+ "members": [
341
448
  {
342
449
  "kind": "field",
343
- "name": "severity",
450
+ "name": "formAssociated",
344
451
  "type": {
345
- "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
452
+ "text": "boolean"
346
453
  },
347
- "description": "If defined, styles checkbox using provided severity",
348
- "attribute": "severity",
349
- "reflects": true
454
+ "static": true,
455
+ "default": "true"
350
456
  },
351
457
  {
352
458
  "kind": "field",
353
- "name": "showValid",
459
+ "name": "shadowRootOptions",
354
460
  "type": {
355
- "text": "boolean | undefined"
461
+ "text": "object"
356
462
  },
357
- "description": "If true, displays valid state after interaction",
358
- "attribute": "show-valid"
463
+ "static": true,
464
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
359
465
  },
360
466
  {
361
467
  "kind": "field",
362
- "name": "size",
468
+ "name": "destructive",
363
469
  "type": {
364
- "text": "'sm' | 'md'"
470
+ "text": "boolean"
365
471
  },
366
- "default": "'md'",
367
- "description": "Size of the checkbox",
368
- "attribute": "size",
369
- "reflects": true
472
+ "default": "false",
473
+ "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
474
+ "attribute": "destructive"
370
475
  },
371
476
  {
372
477
  "kind": "field",
373
- "name": "value",
478
+ "name": "disabled",
374
479
  "type": {
375
- "text": "string"
480
+ "text": "boolean"
376
481
  },
377
- "default": "''",
378
- "description": "The current value of the input field",
379
- "attribute": "value"
482
+ "default": "false",
483
+ "description": "If true, removes border",
484
+ "attribute": "disabled"
380
485
  },
381
486
  {
382
- "kind": "method",
383
- "name": "handleInvalidChange"
487
+ "kind": "field",
488
+ "name": "icon",
489
+ "type": {
490
+ "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\""
491
+ },
492
+ "description": "If provided, renders an icon before or after the text",
493
+ "attribute": "icon"
384
494
  },
385
495
  {
386
- "kind": "method",
387
- "name": "handleDebugInvalid"
496
+ "kind": "field",
497
+ "name": "iconOnly",
498
+ "type": {
499
+ "text": "boolean"
500
+ },
501
+ "default": "false",
502
+ "description": "If true, removes border",
503
+ "attribute": "iconOnly"
388
504
  },
389
505
  {
390
- "kind": "method",
391
- "name": "handleCustomInvalidChange"
392
- }
393
- ],
394
- "events": [
395
- {
396
- "description": "{object} - When the value of the input changes",
397
- "name": "change"
398
- }
399
- ],
400
- "attributes": [
506
+ "kind": "field",
507
+ "name": "iconPosition",
508
+ "type": {
509
+ "text": "'left' | 'right' | undefined"
510
+ },
511
+ "default": "'left'",
512
+ "description": "If provided, determines the positioning of the icon in relation to the text",
513
+ "attribute": "icon-position"
514
+ },
401
515
  {
516
+ "kind": "field",
517
+ "name": "loading",
402
518
  "type": {
403
519
  "text": "boolean"
404
520
  },
405
- "description": "If true, sets disabled state",
406
- "name": "disabled"
521
+ "default": "false",
522
+ "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
523
+ "attribute": "loading"
407
524
  },
408
525
  {
526
+ "kind": "field",
527
+ "name": "noValidate",
409
528
  "type": {
410
529
  "text": "boolean"
411
530
  },
412
- "description": "If true, value is required or must be checked for the form to be submittable",
413
- "name": "required"
531
+ "default": "false",
532
+ "attribute": "no-validate"
414
533
  },
415
534
  {
416
- "name": "debug",
535
+ "kind": "field",
536
+ "name": "size",
417
537
  "type": {
418
- "text": "boolean | undefined"
538
+ "text": "'sm' | 'md' | 'lg'"
419
539
  },
420
- "description": "If defined, outputs helping hints in console",
421
- "fieldName": "debug"
540
+ "default": "'md'",
541
+ "description": "If provided, displays an alternative size",
542
+ "attribute": "size",
543
+ "reflects": true
422
544
  },
423
545
  {
424
- "name": "checked",
546
+ "kind": "field",
547
+ "name": "type",
425
548
  "type": {
426
- "text": "boolean | undefined"
549
+ "text": "'button' | 'submit' | 'reset'"
427
550
  },
428
- "description": "If true, outputs helping hints in console",
429
- "fieldName": "checked"
551
+ "default": "'button'",
552
+ "description": "If provided, changes the button type",
553
+ "attribute": "type"
430
554
  },
431
555
  {
432
- "name": "custom-invalid",
556
+ "kind": "field",
557
+ "name": "variant",
433
558
  "type": {
434
- "text": "boolean | undefined"
559
+ "text": "'primary' | 'secondary' | 'tertiary'"
435
560
  },
436
- "description": "If true, forces component to invalid state until removed",
437
- "fieldName": "customInvalid"
561
+ "default": "'primary'",
562
+ "description": "If provided, alters the appearance",
563
+ "attribute": "variant",
564
+ "reflects": true
438
565
  },
439
566
  {
440
- "name": "indeterminate",
567
+ "kind": "method",
568
+ "name": "click",
569
+ "description": "Simulates a click on the button."
570
+ }
571
+ ],
572
+ "events": [
573
+ {
574
+ "description": "Fires when the button is clicked",
575
+ "name": "click"
576
+ }
577
+ ],
578
+ "attributes": [
579
+ {
580
+ "name": "destructive",
441
581
  "type": {
442
- "text": "boolean | undefined"
582
+ "text": "boolean"
443
583
  },
444
- "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
445
- "fieldName": "indeterminate"
584
+ "default": "false",
585
+ "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
586
+ "fieldName": "destructive"
446
587
  },
447
588
  {
448
- "name": "label",
589
+ "name": "disabled",
449
590
  "type": {
450
- "text": "string | undefined"
591
+ "text": "boolean"
451
592
  },
452
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
453
- "fieldName": "label"
593
+ "default": "false",
594
+ "description": "If true, removes border",
595
+ "fieldName": "disabled"
454
596
  },
455
597
  {
456
- "name": "name",
598
+ "name": "icon",
457
599
  "type": {
458
- "text": "string | undefined"
600
+ "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\""
459
601
  },
460
- "description": "If defined, adds name to the input-element",
461
- "fieldName": "name"
602
+ "description": "If provided, renders an icon before or after the text",
603
+ "fieldName": "icon"
462
604
  },
463
605
  {
464
- "name": "required-label",
606
+ "name": "iconOnly",
465
607
  "type": {
466
- "text": "string | undefined"
608
+ "text": "boolean"
467
609
  },
468
- "description": "If defined, renders an alternative A11y text for the asterisk",
469
- "fieldName": "requiredLabel"
610
+ "default": "false",
611
+ "description": "If true, removes border",
612
+ "fieldName": "iconOnly"
470
613
  },
471
614
  {
472
- "name": "severity",
615
+ "name": "icon-position",
473
616
  "type": {
474
- "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
617
+ "text": "'left' | 'right' | undefined"
475
618
  },
476
- "description": "If defined, styles checkbox using provided severity",
477
- "fieldName": "severity"
619
+ "default": "'left'",
620
+ "description": "If provided, determines the positioning of the icon in relation to the text",
621
+ "fieldName": "iconPosition"
478
622
  },
479
623
  {
480
- "name": "show-valid",
624
+ "name": "loading",
481
625
  "type": {
482
- "text": "boolean | undefined"
626
+ "text": "boolean"
483
627
  },
484
- "description": "If true, displays valid state after interaction",
485
- "fieldName": "showValid"
628
+ "default": "false",
629
+ "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
630
+ "fieldName": "loading"
631
+ },
632
+ {
633
+ "name": "no-validate",
634
+ "type": {
635
+ "text": "boolean"
636
+ },
637
+ "default": "false",
638
+ "fieldName": "noValidate"
486
639
  },
487
640
  {
488
641
  "name": "size",
489
642
  "type": {
490
- "text": "'sm' | 'md'"
643
+ "text": "'sm' | 'md' | 'lg'"
491
644
  },
492
645
  "default": "'md'",
493
- "description": "Size of the checkbox",
646
+ "description": "If provided, displays an alternative size",
494
647
  "fieldName": "size"
495
648
  },
496
649
  {
497
- "name": "value",
650
+ "name": "type",
498
651
  "type": {
499
- "text": "string"
652
+ "text": "'button' | 'submit' | 'reset'"
500
653
  },
501
- "default": "''",
502
- "description": "The current value of the input field",
503
- "fieldName": "value"
654
+ "default": "'button'",
655
+ "description": "If provided, changes the button type",
656
+ "fieldName": "type"
657
+ },
658
+ {
659
+ "name": "variant",
660
+ "type": {
661
+ "text": "'primary' | 'secondary' | 'tertiary'"
662
+ },
663
+ "default": "'primary'",
664
+ "description": "If provided, alters the appearance",
665
+ "fieldName": "variant"
504
666
  }
505
667
  ],
506
668
  "superclass": {
507
- "name": "FormBase",
508
- "package": "@internal/components/formBase.js"
669
+ "name": "SkfElement",
670
+ "package": "@internal/components/skf-element.js"
509
671
  },
510
- "tagName": "skf-checkbox",
672
+ "tagName": "skf-button",
511
673
  "customElement": true
512
674
  }
513
675
  ],
514
676
  "exports": [
515
677
  {
516
678
  "kind": "js",
517
- "name": "SkfCheckbox",
679
+ "name": "SkfButton",
518
680
  "declaration": {
519
- "name": "SkfCheckbox",
520
- "module": "src/components/checkbox/checkbox.component.ts"
681
+ "name": "SkfButton",
682
+ "module": "src/components/button/button.component.ts"
521
683
  }
522
684
  }
523
685
  ]
524
686
  },
525
687
  {
526
688
  "kind": "javascript-module",
527
- "path": "src/components/collapse/collapse.component.ts",
689
+ "path": "src/components/card/card.component.ts",
528
690
  "declarations": [
529
691
  {
530
692
  "kind": "class",
531
- "description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.",
532
- "name": "SkfCollapse",
693
+ "description": "The `<skf-card>` can be used to group related subjects in a container",
694
+ "name": "SkfCard",
533
695
  "slots": [
534
696
  {
535
- "description": "Main content",
697
+ "description": "The card's main content",
536
698
  "name": ""
537
699
  }
538
700
  ],
539
701
  "members": [
540
702
  {
541
703
  "kind": "field",
542
- "name": "animated",
704
+ "name": "noBorder",
543
705
  "type": {
544
706
  "text": "boolean"
545
707
  },
546
708
  "default": "false",
547
- "description": "If true, will animate the expand/collapse state",
548
- "attribute": "animated",
549
- "reflects": true
709
+ "description": "If true, removes border",
710
+ "attribute": "no-border"
550
711
  },
551
712
  {
552
713
  "kind": "field",
553
- "name": "expanded",
714
+ "name": "noPadding",
554
715
  "type": {
555
716
  "text": "boolean"
556
717
  },
557
718
  "default": "false",
558
- "description": "If true, will set the collapse to be expanded by default",
559
- "attribute": "expanded",
560
- "reflects": true
719
+ "description": "If true, removes padding",
720
+ "attribute": "no-padding"
561
721
  },
562
722
  {
563
723
  "kind": "field",
564
- "name": "heading",
724
+ "name": "stretch",
565
725
  "type": {
566
- "text": "string | undefined"
726
+ "text": "boolean"
567
727
  },
568
- "description": "Heading for the collapse",
569
- "attribute": "heading"
570
- },
728
+ "default": "false",
729
+ "description": "If true, the Card fills the parent element height",
730
+ "attribute": "stretch",
731
+ "reflects": true
732
+ }
733
+ ],
734
+ "attributes": [
571
735
  {
572
- "kind": "field",
573
- "name": "headingAs",
736
+ "name": "no-border",
574
737
  "type": {
575
- "text": "\"h2\" | \"h3\" | \"h4\""
738
+ "text": "boolean"
576
739
  },
577
- "default": "'h2'",
578
- "description": "Defines which heading element will be rendered",
579
- "attribute": "heading-as"
740
+ "default": "false",
741
+ "description": "If true, removes border",
742
+ "fieldName": "noBorder"
580
743
  },
581
744
  {
582
- "kind": "field",
583
- "name": "small",
745
+ "name": "no-padding",
584
746
  "type": {
585
747
  "text": "boolean"
586
748
  },
587
749
  "default": "false",
588
- "description": "If true, renders the small version",
589
- "attribute": "small",
590
- "reflects": true
750
+ "description": "If true, removes padding",
751
+ "fieldName": "noPadding"
591
752
  },
592
753
  {
593
- "kind": "field",
594
- "name": "truncate",
754
+ "name": "stretch",
595
755
  "type": {
596
756
  "text": "boolean"
597
757
  },
598
758
  "default": "false",
599
- "description": "If true, will truncate the heading in collapsed state",
600
- "attribute": "truncate",
601
- "reflects": true
602
- },
603
- {
604
- "kind": "method",
605
- "name": "setClose",
606
- "description": "Class method as alternative to manipulate attribute"
607
- },
608
- {
609
- "kind": "method",
610
- "name": "setOpen",
611
- "description": "Class method as alternative to manipulate attribute"
612
- }
613
- ],
614
- "events": [
615
- {
616
- "type": {
617
- "text": "CustomEvent"
618
- },
619
- "description": "Event emitted when toggled",
620
- "name": "skf-collapse-toggle"
621
- }
622
- ],
623
- "attributes": [
624
- {
625
- "name": "animated",
626
- "type": {
627
- "text": "boolean"
628
- },
629
- "default": "false",
630
- "description": "If true, will animate the expand/collapse state",
631
- "fieldName": "animated"
632
- },
633
- {
634
- "name": "expanded",
635
- "type": {
636
- "text": "boolean"
637
- },
638
- "default": "false",
639
- "description": "If true, will set the collapse to be expanded by default",
640
- "fieldName": "expanded"
641
- },
642
- {
643
- "name": "heading",
644
- "type": {
645
- "text": "string | undefined"
646
- },
647
- "description": "Heading for the collapse",
648
- "fieldName": "heading"
649
- },
650
- {
651
- "name": "heading-as",
652
- "type": {
653
- "text": "\"h2\" | \"h3\" | \"h4\""
654
- },
655
- "default": "'h2'",
656
- "description": "Defines which heading element will be rendered",
657
- "fieldName": "headingAs"
658
- },
659
- {
660
- "name": "small",
661
- "type": {
662
- "text": "boolean"
663
- },
664
- "default": "false",
665
- "description": "If true, renders the small version",
666
- "fieldName": "small"
667
- },
668
- {
669
- "name": "truncate",
670
- "type": {
671
- "text": "boolean"
672
- },
673
- "default": "false",
674
- "description": "If true, will truncate the heading in collapsed state",
675
- "fieldName": "truncate"
759
+ "description": "If true, the Card fills the parent element height",
760
+ "fieldName": "stretch"
676
761
  }
677
762
  ],
678
763
  "superclass": {
679
764
  "name": "SkfElement",
680
765
  "package": "@internal/components/skf-element.js"
681
766
  },
682
- "tagName": "skf-collapse",
767
+ "tagName": "skf-card",
683
768
  "customElement": true
684
769
  }
685
770
  ],
686
771
  "exports": [
687
772
  {
688
773
  "kind": "js",
689
- "name": "SkfCollapse",
774
+ "name": "SkfCard",
690
775
  "declaration": {
691
- "name": "SkfCollapse",
692
- "module": "src/components/collapse/collapse.component.ts"
776
+ "name": "SkfCard",
777
+ "module": "src/components/card/card.component.ts"
693
778
  }
694
779
  }
695
780
  ]
696
781
  },
697
782
  {
698
783
  "kind": "javascript-module",
699
- "path": "src/components/dialog/dialog.component.ts",
784
+ "path": "src/components/checkbox/checkbox.component.ts",
700
785
  "declarations": [
701
786
  {
702
787
  "kind": "class",
703
- "description": "The `<skf-dialog>` is a component that open up a dialog with the content provided",
704
- "name": "SkfDialog",
705
- "cssProperties": [
706
- {
707
- "description": "A custom height for the Dialog. Pass valid CSS **block-size** values",
708
- "name": "--skf-dialog-height"
709
- },
788
+ "description": "The `<skf-checkbox>` component is used to create a checkbox input",
789
+ "name": "SkfCheckbox",
790
+ "slots": [
710
791
  {
711
- "description": "A custom width for the Dialog Pass valid CSS **inline-size** values",
712
- "name": "--skf-dialog-width"
792
+ "description": "The Radios label. Alternatively, you can use the `label` attribute.",
793
+ "name": ""
713
794
  }
714
795
  ],
715
- "slots": [
796
+ "members": [
716
797
  {
717
- "description": "The dialog component's content",
718
- "name": ""
798
+ "kind": "field",
799
+ "name": "debug",
800
+ "type": {
801
+ "text": "boolean | undefined"
802
+ },
803
+ "description": "If defined, outputs helping hints in console",
804
+ "attribute": "debug"
719
805
  },
720
806
  {
721
- "description": "The dialog component's heading",
722
- "name": "heading"
807
+ "kind": "field",
808
+ "name": "checked",
809
+ "type": {
810
+ "text": "boolean | undefined"
811
+ },
812
+ "description": "If true, outputs helping hints in console",
813
+ "attribute": "checked",
814
+ "reflects": true
723
815
  },
724
816
  {
725
- "description": "The dialog component's buttons goes here",
726
- "name": "footer"
727
- }
728
- ],
729
- "members": [
817
+ "kind": "field",
818
+ "name": "customInvalid",
819
+ "type": {
820
+ "text": "boolean | undefined"
821
+ },
822
+ "description": "If true, forces component to invalid state until removed",
823
+ "attribute": "custom-invalid",
824
+ "reflects": true
825
+ },
730
826
  {
731
827
  "kind": "field",
732
- "name": "closeButtonAriaLabel",
828
+ "name": "indeterminate",
829
+ "type": {
830
+ "text": "boolean | undefined"
831
+ },
832
+ "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
833
+ "attribute": "indeterminate",
834
+ "reflects": true
835
+ },
836
+ {
837
+ "kind": "field",
838
+ "name": "label",
733
839
  "type": {
734
840
  "text": "string | undefined"
735
841
  },
736
- "description": "If defined, sets the aria-label for the close button",
737
- "attribute": "close-button-aria-label"
842
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
843
+ "attribute": "label"
738
844
  },
739
845
  {
740
846
  "kind": "field",
741
- "name": "heading",
847
+ "name": "name",
742
848
  "type": {
743
849
  "text": "string | undefined"
744
850
  },
745
- "description": "Title for the modal/dialog",
746
- "attribute": "heading"
851
+ "description": "If defined, adds name to the input-element",
852
+ "attribute": "name"
747
853
  },
748
854
  {
749
855
  "kind": "field",
750
- "name": "fullscreen",
856
+ "name": "requiredLabel",
751
857
  "type": {
752
- "text": "boolean"
858
+ "text": "string | undefined"
753
859
  },
754
- "default": "false",
755
- "description": "If true, makes the dialog stretch edge to edge on screen",
756
- "attribute": "fullscreen"
860
+ "description": "If defined, renders an alternative A11y text for the asterisk",
861
+ "attribute": "required-label"
757
862
  },
758
863
  {
759
864
  "kind": "field",
760
- "name": "noCloseButton",
865
+ "name": "severity",
761
866
  "type": {
762
- "text": "boolean"
867
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
763
868
  },
764
- "default": "false",
765
- "description": "If true, removes the close button",
766
- "attribute": "no-close-button"
869
+ "description": "If defined, styles checkbox using provided severity",
870
+ "attribute": "severity",
871
+ "reflects": true
767
872
  },
768
873
  {
769
874
  "kind": "field",
770
- "name": "noPadding",
875
+ "name": "showValid",
771
876
  "type": {
772
- "text": "boolean"
877
+ "text": "boolean | undefined"
773
878
  },
774
- "default": "false",
775
- "description": "If defined, removes the inner padding",
776
- "attribute": "no-padding"
879
+ "description": "If true, displays valid state after interaction",
880
+ "attribute": "show-valid"
777
881
  },
778
882
  {
779
883
  "kind": "field",
780
- "name": "open",
884
+ "name": "size",
781
885
  "type": {
782
- "text": "boolean | null | undefined"
886
+ "text": "'sm' | 'md'"
783
887
  },
784
- "attribute": "open",
888
+ "default": "'md'",
889
+ "description": "Size of the checkbox",
890
+ "attribute": "size",
785
891
  "reflects": true
786
892
  },
787
893
  {
788
894
  "kind": "field",
789
- "name": "onClose",
895
+ "name": "value",
790
896
  "type": {
791
- "text": "((event: Event) => void) | null | undefined"
897
+ "text": "string"
792
898
  },
793
- "default": "null",
794
- "description": "If provided, will run function on dialog close"
899
+ "default": "''",
900
+ "description": "The current value of the input field",
901
+ "attribute": "value"
795
902
  },
796
903
  {
797
904
  "kind": "method",
798
- "name": "handleOpenChange"
905
+ "name": "handleInvalidChange"
799
906
  },
800
907
  {
801
- "kind": "field",
802
- "name": "showModal",
803
- "description": "Method that opens the dialog in modal state"
908
+ "kind": "method",
909
+ "name": "handleDebugInvalid"
804
910
  },
805
911
  {
806
- "kind": "field",
807
- "name": "close",
808
- "description": "Method that closes the dialog"
912
+ "kind": "method",
913
+ "name": "handleCustomInvalidChange"
809
914
  }
810
915
  ],
811
916
  "events": [
812
917
  {
813
- "description": "Fires when the dialog is opened (after transitioned in)",
814
- "name": "skf-dialog-open"
815
- },
816
- {
817
- "description": "Fires when the dialog is closed (before transitioned out)",
818
- "name": "skf-dialog-close"
819
- },
820
- {
821
- "description": "Fires when the dialog is closed (after transitioned out)",
822
- "name": "close"
918
+ "description": "{object} - When the value of the input changes",
919
+ "name": "change"
823
920
  }
824
921
  ],
825
922
  "attributes": [
826
923
  {
827
- "name": "close-button-aria-label",
828
924
  "type": {
829
- "text": "string | undefined"
925
+ "text": "boolean"
830
926
  },
831
- "description": "If defined, sets the aria-label for the close button",
832
- "fieldName": "closeButtonAriaLabel"
927
+ "description": "If true, sets disabled state",
928
+ "name": "disabled"
833
929
  },
834
930
  {
835
- "name": "heading",
836
931
  "type": {
837
- "text": "string | undefined"
932
+ "text": "boolean"
838
933
  },
839
- "description": "Title for the modal/dialog",
840
- "fieldName": "heading"
934
+ "description": "If true, value is required or must be checked for the form to be submittable",
935
+ "name": "required"
841
936
  },
842
937
  {
843
- "name": "fullscreen",
938
+ "name": "debug",
844
939
  "type": {
845
- "text": "boolean"
940
+ "text": "boolean | undefined"
846
941
  },
847
- "default": "false",
848
- "description": "If true, makes the dialog stretch edge to edge on screen",
849
- "fieldName": "fullscreen"
942
+ "description": "If defined, outputs helping hints in console",
943
+ "fieldName": "debug"
850
944
  },
851
945
  {
852
- "name": "no-close-button",
946
+ "name": "checked",
853
947
  "type": {
854
- "text": "boolean"
948
+ "text": "boolean | undefined"
855
949
  },
856
- "default": "false",
857
- "description": "If true, removes the close button",
858
- "fieldName": "noCloseButton"
950
+ "description": "If true, outputs helping hints in console",
951
+ "fieldName": "checked"
859
952
  },
860
953
  {
861
- "name": "no-padding",
954
+ "name": "custom-invalid",
862
955
  "type": {
863
- "text": "boolean"
956
+ "text": "boolean | undefined"
864
957
  },
865
- "default": "false",
866
- "description": "If defined, removes the inner padding",
867
- "fieldName": "noPadding"
958
+ "description": "If true, forces component to invalid state until removed",
959
+ "fieldName": "customInvalid"
868
960
  },
869
961
  {
870
- "name": "open",
962
+ "name": "indeterminate",
871
963
  "type": {
872
- "text": "boolean | null | undefined"
964
+ "text": "boolean | undefined"
873
965
  },
874
- "fieldName": "open"
966
+ "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
967
+ "fieldName": "indeterminate"
968
+ },
969
+ {
970
+ "name": "label",
971
+ "type": {
972
+ "text": "string | undefined"
973
+ },
974
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
975
+ "fieldName": "label"
976
+ },
977
+ {
978
+ "name": "name",
979
+ "type": {
980
+ "text": "string | undefined"
981
+ },
982
+ "description": "If defined, adds name to the input-element",
983
+ "fieldName": "name"
984
+ },
985
+ {
986
+ "name": "required-label",
987
+ "type": {
988
+ "text": "string | undefined"
989
+ },
990
+ "description": "If defined, renders an alternative A11y text for the asterisk",
991
+ "fieldName": "requiredLabel"
992
+ },
993
+ {
994
+ "name": "severity",
995
+ "type": {
996
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
997
+ },
998
+ "description": "If defined, styles checkbox using provided severity",
999
+ "fieldName": "severity"
1000
+ },
1001
+ {
1002
+ "name": "show-valid",
1003
+ "type": {
1004
+ "text": "boolean | undefined"
1005
+ },
1006
+ "description": "If true, displays valid state after interaction",
1007
+ "fieldName": "showValid"
1008
+ },
1009
+ {
1010
+ "name": "size",
1011
+ "type": {
1012
+ "text": "'sm' | 'md'"
1013
+ },
1014
+ "default": "'md'",
1015
+ "description": "Size of the checkbox",
1016
+ "fieldName": "size"
1017
+ },
1018
+ {
1019
+ "name": "value",
1020
+ "type": {
1021
+ "text": "string"
1022
+ },
1023
+ "default": "''",
1024
+ "description": "The current value of the input field",
1025
+ "fieldName": "value"
875
1026
  }
876
1027
  ],
877
1028
  "superclass": {
878
- "name": "SkfElement",
879
- "package": "@internal/components/skf-element"
1029
+ "name": "FormBase",
1030
+ "package": "@internal/components/formBase.js"
880
1031
  },
881
- "tagName": "skf-dialog",
1032
+ "tagName": "skf-checkbox",
882
1033
  "customElement": true
883
1034
  }
884
1035
  ],
885
1036
  "exports": [
886
1037
  {
887
1038
  "kind": "js",
888
- "name": "SkfDialog",
1039
+ "name": "SkfCheckbox",
889
1040
  "declaration": {
890
- "name": "SkfDialog",
891
- "module": "src/components/dialog/dialog.component.ts"
1041
+ "name": "SkfCheckbox",
1042
+ "module": "src/components/checkbox/checkbox.component.ts"
892
1043
  }
893
1044
  }
894
1045
  ]
895
1046
  },
896
1047
  {
897
1048
  "kind": "javascript-module",
898
- "path": "src/components/alert/alert.component.ts",
1049
+ "path": "src/components/collapse/collapse.component.ts",
899
1050
  "declarations": [
900
1051
  {
901
1052
  "kind": "class",
902
- "description": "The `<skf-alert>` is a type of notification that appears in-line",
903
- "name": "SkfAlert",
1053
+ "description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.",
1054
+ "name": "SkfCollapse",
904
1055
  "slots": [
905
1056
  {
906
- "description": "Alert message. **Notice!** See design principles for approved content",
1057
+ "description": "Main content",
907
1058
  "name": ""
908
- },
909
- {
910
- "description": "Slot for the link",
911
- "name": "link"
912
1059
  }
913
1060
  ],
914
1061
  "members": [
915
1062
  {
916
1063
  "kind": "field",
917
- "name": "closeable",
1064
+ "name": "animated",
918
1065
  "type": {
919
- "text": "boolean | undefined"
1066
+ "text": "boolean"
920
1067
  },
921
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
922
- "attribute": "closeable",
1068
+ "default": "false",
1069
+ "description": "If true, will animate the expand/collapse state",
1070
+ "attribute": "animated",
923
1071
  "reflects": true
924
1072
  },
925
1073
  {
926
1074
  "kind": "field",
927
- "name": "buttonLabel",
1075
+ "name": "expanded",
928
1076
  "type": {
929
- "text": "string"
1077
+ "text": "boolean"
930
1078
  },
931
- "default": "'Close'",
932
- "description": "Close button aria-label",
933
- "attribute": "button-label"
1079
+ "default": "false",
1080
+ "description": "If true, will set the collapse to be expanded by default",
1081
+ "attribute": "expanded",
1082
+ "reflects": true
934
1083
  },
935
1084
  {
936
1085
  "kind": "field",
937
- "name": "icon",
1086
+ "name": "heading",
938
1087
  "type": {
939
- "text": "SkfIcon['name'] | undefined"
1088
+ "text": "string | undefined"
940
1089
  },
941
- "description": "If defined, displays leading icon",
942
- "attribute": "icon"
1090
+ "description": "Heading for the collapse",
1091
+ "attribute": "heading"
943
1092
  },
944
1093
  {
945
1094
  "kind": "field",
946
- "name": "severity",
1095
+ "name": "headingAs",
947
1096
  "type": {
948
- "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
1097
+ "text": "\"h2\" | \"h3\" | \"h4\""
949
1098
  },
950
- "description": "If defined, gives the supplied appearance",
951
- "attribute": "severity",
1099
+ "default": "'h2'",
1100
+ "description": "Defines which heading element will be rendered",
1101
+ "attribute": "heading-as"
1102
+ },
1103
+ {
1104
+ "kind": "field",
1105
+ "name": "small",
1106
+ "type": {
1107
+ "text": "boolean"
1108
+ },
1109
+ "default": "false",
1110
+ "description": "If true, renders the small version",
1111
+ "attribute": "small",
1112
+ "reflects": true
1113
+ },
1114
+ {
1115
+ "kind": "field",
1116
+ "name": "truncate",
1117
+ "type": {
1118
+ "text": "boolean"
1119
+ },
1120
+ "default": "false",
1121
+ "description": "If true, will truncate the heading in collapsed state",
1122
+ "attribute": "truncate",
952
1123
  "reflects": true
1124
+ },
1125
+ {
1126
+ "kind": "method",
1127
+ "name": "setClose",
1128
+ "description": "Class method as alternative to manipulate attribute"
1129
+ },
1130
+ {
1131
+ "kind": "method",
1132
+ "name": "setOpen",
1133
+ "description": "Class method as alternative to manipulate attribute"
953
1134
  }
954
1135
  ],
955
1136
  "events": [
956
1137
  {
957
- "description": "Fires when the close button is clicked",
958
- "name": "skf-alert-close"
1138
+ "type": {
1139
+ "text": "CustomEvent"
1140
+ },
1141
+ "description": "Event emitted when toggled",
1142
+ "name": "skf-collapse-toggle"
959
1143
  }
960
1144
  ],
961
1145
  "attributes": [
962
1146
  {
963
- "name": "closeable",
1147
+ "name": "animated",
964
1148
  "type": {
965
- "text": "boolean | undefined"
1149
+ "text": "boolean"
966
1150
  },
967
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
968
- "fieldName": "closeable"
1151
+ "default": "false",
1152
+ "description": "If true, will animate the expand/collapse state",
1153
+ "fieldName": "animated"
969
1154
  },
970
1155
  {
971
- "name": "button-label",
1156
+ "name": "expanded",
972
1157
  "type": {
973
- "text": "string"
1158
+ "text": "boolean"
974
1159
  },
975
- "default": "'Close'",
976
- "description": "Close button aria-label",
977
- "fieldName": "buttonLabel"
1160
+ "default": "false",
1161
+ "description": "If true, will set the collapse to be expanded by default",
1162
+ "fieldName": "expanded"
978
1163
  },
979
1164
  {
980
- "name": "icon",
1165
+ "name": "heading",
981
1166
  "type": {
982
- "text": "SkfIcon['name'] | undefined"
1167
+ "text": "string | undefined"
983
1168
  },
984
- "description": "If defined, displays leading icon",
985
- "fieldName": "icon"
1169
+ "description": "Heading for the collapse",
1170
+ "fieldName": "heading"
986
1171
  },
987
1172
  {
988
- "name": "severity",
1173
+ "name": "heading-as",
989
1174
  "type": {
990
- "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
1175
+ "text": "\"h2\" | \"h3\" | \"h4\""
991
1176
  },
992
- "description": "If defined, gives the supplied appearance",
993
- "fieldName": "severity"
1177
+ "default": "'h2'",
1178
+ "description": "Defines which heading element will be rendered",
1179
+ "fieldName": "headingAs"
1180
+ },
1181
+ {
1182
+ "name": "small",
1183
+ "type": {
1184
+ "text": "boolean"
1185
+ },
1186
+ "default": "false",
1187
+ "description": "If true, renders the small version",
1188
+ "fieldName": "small"
1189
+ },
1190
+ {
1191
+ "name": "truncate",
1192
+ "type": {
1193
+ "text": "boolean"
1194
+ },
1195
+ "default": "false",
1196
+ "description": "If true, will truncate the heading in collapsed state",
1197
+ "fieldName": "truncate"
994
1198
  }
995
1199
  ],
996
1200
  "superclass": {
997
1201
  "name": "SkfElement",
998
1202
  "package": "@internal/components/skf-element.js"
999
1203
  },
1000
- "tagName": "skf-alert",
1204
+ "tagName": "skf-collapse",
1001
1205
  "customElement": true
1002
1206
  }
1003
1207
  ],
1004
1208
  "exports": [
1005
1209
  {
1006
1210
  "kind": "js",
1007
- "name": "SkfAlert",
1211
+ "name": "SkfCollapse",
1008
1212
  "declaration": {
1009
- "name": "SkfAlert",
1010
- "module": "src/components/alert/alert.component.ts"
1213
+ "name": "SkfCollapse",
1214
+ "module": "src/components/collapse/collapse.component.ts"
1011
1215
  }
1012
1216
  }
1013
1217
  ]
1014
1218
  },
1015
1219
  {
1016
1220
  "kind": "javascript-module",
1017
- "path": "src/components/divider/divider.component.ts",
1221
+ "path": "src/components/dialog/dialog.component.ts",
1018
1222
  "declarations": [
1019
1223
  {
1020
1224
  "kind": "class",
1021
- "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
1022
- "name": "SkfDivider",
1225
+ "description": "The `<skf-dialog>` is a component that open up a dialog with the content provided",
1226
+ "name": "SkfDialog",
1023
1227
  "cssProperties": [
1024
1228
  {
1025
- "description": "The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical",
1026
- "name": "--skf-divider-spacing"
1229
+ "description": "A custom height for the Dialog. Pass valid CSS **block-size** values",
1230
+ "name": "--skf-dialog-height"
1027
1231
  },
1028
1232
  {
1029
- "description": "The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical",
1030
- "name": "--skf-divider-inset"
1233
+ "description": "A custom width for the Dialog Pass valid CSS **inline-size** values",
1234
+ "name": "--skf-dialog-width"
1235
+ }
1236
+ ],
1237
+ "slots": [
1238
+ {
1239
+ "description": "The dialog component's content",
1240
+ "name": ""
1241
+ },
1242
+ {
1243
+ "description": "The dialog component's buttons goes here",
1244
+ "name": "footer"
1031
1245
  }
1032
1246
  ],
1033
1247
  "members": [
1034
1248
  {
1035
1249
  "kind": "field",
1036
- "name": "#internals",
1037
- "privacy": "private",
1250
+ "name": "closeButtonAriaLabel",
1038
1251
  "type": {
1039
- "text": "ElementInternals"
1040
- }
1252
+ "text": "string | undefined"
1253
+ },
1254
+ "description": "If defined, sets the aria-label for the close button",
1255
+ "attribute": "close-button-aria-label"
1256
+ },
1257
+ {
1258
+ "kind": "field",
1259
+ "name": "heading",
1260
+ "type": {
1261
+ "text": "string | undefined"
1262
+ },
1263
+ "description": "Title for the modal/dialog",
1264
+ "attribute": "heading"
1265
+ },
1266
+ {
1267
+ "kind": "field",
1268
+ "name": "fullscreen",
1269
+ "type": {
1270
+ "text": "boolean"
1271
+ },
1272
+ "default": "false",
1273
+ "description": "If true, makes the dialog stretch edge to edge on screen",
1274
+ "attribute": "fullscreen"
1275
+ },
1276
+ {
1277
+ "kind": "field",
1278
+ "name": "noCloseButton",
1279
+ "type": {
1280
+ "text": "boolean"
1281
+ },
1282
+ "default": "false",
1283
+ "description": "If true, removes the close button",
1284
+ "attribute": "no-close-button"
1285
+ },
1286
+ {
1287
+ "kind": "field",
1288
+ "name": "noPadding",
1289
+ "type": {
1290
+ "text": "boolean"
1291
+ },
1292
+ "default": "false",
1293
+ "description": "If defined, removes the inner padding",
1294
+ "attribute": "no-padding"
1295
+ },
1296
+ {
1297
+ "kind": "field",
1298
+ "name": "open",
1299
+ "type": {
1300
+ "text": "boolean | null | undefined"
1301
+ },
1302
+ "attribute": "open",
1303
+ "reflects": true
1304
+ },
1305
+ {
1306
+ "kind": "field",
1307
+ "name": "onClose",
1308
+ "type": {
1309
+ "text": "((event: Event) => void) | null | undefined"
1310
+ },
1311
+ "default": "null",
1312
+ "description": "If provided, will run function on dialog close"
1313
+ },
1314
+ {
1315
+ "kind": "method",
1316
+ "name": "handleOpenChange"
1317
+ },
1318
+ {
1319
+ "kind": "field",
1320
+ "name": "showModal",
1321
+ "description": "Method that opens the dialog in modal state"
1322
+ },
1323
+ {
1324
+ "kind": "field",
1325
+ "name": "close",
1326
+ "description": "Method that closes the dialog"
1327
+ }
1328
+ ],
1329
+ "events": [
1330
+ {
1331
+ "description": "Fires when the dialog is opened (after transitioned in)",
1332
+ "name": "skf-dialog-open"
1333
+ },
1334
+ {
1335
+ "description": "Fires when the dialog is closed (before transitioned out)",
1336
+ "name": "skf-dialog-close"
1337
+ },
1338
+ {
1339
+ "description": "Fires when the dialog is closed (after transitioned out)",
1340
+ "name": "close"
1341
+ }
1342
+ ],
1343
+ "attributes": [
1344
+ {
1345
+ "name": "close-button-aria-label",
1346
+ "type": {
1347
+ "text": "string | undefined"
1348
+ },
1349
+ "description": "If defined, sets the aria-label for the close button",
1350
+ "fieldName": "closeButtonAriaLabel"
1351
+ },
1352
+ {
1353
+ "name": "heading",
1354
+ "type": {
1355
+ "text": "string | undefined"
1356
+ },
1357
+ "description": "Title for the modal/dialog",
1358
+ "fieldName": "heading"
1359
+ },
1360
+ {
1361
+ "name": "fullscreen",
1362
+ "type": {
1363
+ "text": "boolean"
1364
+ },
1365
+ "default": "false",
1366
+ "description": "If true, makes the dialog stretch edge to edge on screen",
1367
+ "fieldName": "fullscreen"
1368
+ },
1369
+ {
1370
+ "name": "no-close-button",
1371
+ "type": {
1372
+ "text": "boolean"
1373
+ },
1374
+ "default": "false",
1375
+ "description": "If true, removes the close button",
1376
+ "fieldName": "noCloseButton"
1377
+ },
1378
+ {
1379
+ "name": "no-padding",
1380
+ "type": {
1381
+ "text": "boolean"
1382
+ },
1383
+ "default": "false",
1384
+ "description": "If defined, removes the inner padding",
1385
+ "fieldName": "noPadding"
1386
+ },
1387
+ {
1388
+ "name": "open",
1389
+ "type": {
1390
+ "text": "boolean | null | undefined"
1391
+ },
1392
+ "fieldName": "open"
1393
+ }
1394
+ ],
1395
+ "superclass": {
1396
+ "name": "SkfElement",
1397
+ "package": "@internal/components/skf-element"
1398
+ },
1399
+ "tagName": "skf-dialog",
1400
+ "customElement": true
1401
+ }
1402
+ ],
1403
+ "exports": [
1404
+ {
1405
+ "kind": "js",
1406
+ "name": "SkfDialog",
1407
+ "declaration": {
1408
+ "name": "SkfDialog",
1409
+ "module": "src/components/dialog/dialog.component.ts"
1410
+ }
1411
+ }
1412
+ ]
1413
+ },
1414
+ {
1415
+ "kind": "javascript-module",
1416
+ "path": "src/components/divider/divider.component.ts",
1417
+ "declarations": [
1418
+ {
1419
+ "kind": "class",
1420
+ "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
1421
+ "name": "SkfDivider",
1422
+ "cssProperties": [
1423
+ {
1424
+ "description": "The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical",
1425
+ "name": "--skf-divider-spacing"
1426
+ },
1427
+ {
1428
+ "description": "The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical",
1429
+ "name": "--skf-divider-inset"
1430
+ }
1431
+ ],
1432
+ "members": [
1433
+ {
1434
+ "kind": "field",
1435
+ "name": "#internals",
1436
+ "privacy": "private",
1437
+ "type": {
1438
+ "text": "ElementInternals"
1439
+ }
1041
1440
  },
1042
1441
  {
1043
1442
  "kind": "field",
@@ -1122,289 +1521,54 @@
1122
1521
  },
1123
1522
  {
1124
1523
  "kind": "javascript-module",
1125
- "path": "src/components/button/button.component.ts",
1524
+ "path": "src/components/heading/heading.component.ts",
1126
1525
  "declarations": [
1127
1526
  {
1128
1527
  "kind": "class",
1129
- "description": "Component to be used in forms or for interactivity",
1130
- "name": "SkfButton",
1528
+ "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.",
1529
+ "name": "SkfHeading",
1131
1530
  "slots": [
1132
1531
  {
1133
- "description": "The Primary content",
1532
+ "description": "The headings content",
1134
1533
  "name": ""
1135
1534
  }
1136
1535
  ],
1137
1536
  "members": [
1138
1537
  {
1139
1538
  "kind": "field",
1140
- "name": "formAssociated",
1141
- "type": {
1142
- "text": "boolean"
1143
- },
1144
- "static": true,
1145
- "default": "true"
1146
- },
1147
- {
1148
- "kind": "field",
1149
- "name": "shadowRootOptions",
1150
- "type": {
1151
- "text": "object"
1152
- },
1153
- "static": true,
1154
- "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
1155
- },
1156
- {
1157
- "kind": "field",
1158
- "name": "destructive",
1539
+ "name": "as",
1159
1540
  "type": {
1160
- "text": "boolean"
1541
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1161
1542
  },
1162
- "default": "false",
1163
- "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
1164
- "attribute": "destructive"
1543
+ "default": "'h1'",
1544
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1545
+ "attribute": "as",
1546
+ "reflects": true
1165
1547
  },
1166
1548
  {
1167
1549
  "kind": "field",
1168
- "name": "disabled",
1550
+ "name": "styledAs",
1169
1551
  "type": {
1170
- "text": "boolean"
1552
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1171
1553
  },
1172
- "default": "false",
1173
- "description": "If true, removes border",
1174
- "attribute": "disabled"
1175
- },
1554
+ "description": "If provided, changes the appearance of the heading",
1555
+ "attribute": "styled-as"
1556
+ }
1557
+ ],
1558
+ "attributes": [
1176
1559
  {
1177
- "kind": "field",
1178
- "name": "icon",
1560
+ "name": "as",
1179
1561
  "type": {
1180
- "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\""
1562
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1181
1563
  },
1182
- "description": "If provided, renders an icon before or after the text",
1183
- "attribute": "icon"
1564
+ "default": "'h1'",
1565
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1566
+ "fieldName": "as"
1184
1567
  },
1185
1568
  {
1186
- "kind": "field",
1187
- "name": "iconPosition",
1569
+ "name": "styled-as",
1188
1570
  "type": {
1189
- "text": "'left' | 'right' | undefined"
1190
- },
1191
- "default": "'left'",
1192
- "description": "If provided, determines the positioning of the icon in relation to the text",
1193
- "attribute": "icon-position"
1194
- },
1195
- {
1196
- "kind": "field",
1197
- "name": "loading",
1198
- "type": {
1199
- "text": "boolean"
1200
- },
1201
- "default": "false",
1202
- "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
1203
- "attribute": "loading"
1204
- },
1205
- {
1206
- "kind": "field",
1207
- "name": "noValidate",
1208
- "type": {
1209
- "text": "boolean"
1210
- },
1211
- "default": "false",
1212
- "attribute": "no-validate"
1213
- },
1214
- {
1215
- "kind": "field",
1216
- "name": "size",
1217
- "type": {
1218
- "text": "'sm' | 'md' | 'lg'"
1219
- },
1220
- "default": "'md'",
1221
- "description": "If provided, displays an alternative size",
1222
- "attribute": "size",
1223
- "reflects": true
1224
- },
1225
- {
1226
- "kind": "field",
1227
- "name": "type",
1228
- "type": {
1229
- "text": "'button' | 'submit' | 'reset'"
1230
- },
1231
- "default": "'button'",
1232
- "description": "If provided, changes the button type",
1233
- "attribute": "type"
1234
- },
1235
- {
1236
- "kind": "field",
1237
- "name": "variant",
1238
- "type": {
1239
- "text": "'primary' | 'secondary'"
1240
- },
1241
- "default": "'primary'",
1242
- "description": "If provided, alters the appearance",
1243
- "attribute": "variant",
1244
- "reflects": true
1245
- },
1246
- {
1247
- "kind": "method",
1248
- "name": "click",
1249
- "description": "Simulates a click on the button."
1250
- }
1251
- ],
1252
- "events": [
1253
- {
1254
- "description": "Fires when the button is clicked",
1255
- "name": "click"
1256
- }
1257
- ],
1258
- "attributes": [
1259
- {
1260
- "name": "destructive",
1261
- "type": {
1262
- "text": "boolean"
1263
- },
1264
- "default": "false",
1265
- "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
1266
- "fieldName": "destructive"
1267
- },
1268
- {
1269
- "name": "disabled",
1270
- "type": {
1271
- "text": "boolean"
1272
- },
1273
- "default": "false",
1274
- "description": "If true, removes border",
1275
- "fieldName": "disabled"
1276
- },
1277
- {
1278
- "name": "icon",
1279
- "type": {
1280
- "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\""
1281
- },
1282
- "description": "If provided, renders an icon before or after the text",
1283
- "fieldName": "icon"
1284
- },
1285
- {
1286
- "name": "icon-position",
1287
- "type": {
1288
- "text": "'left' | 'right' | undefined"
1289
- },
1290
- "default": "'left'",
1291
- "description": "If provided, determines the positioning of the icon in relation to the text",
1292
- "fieldName": "iconPosition"
1293
- },
1294
- {
1295
- "name": "loading",
1296
- "type": {
1297
- "text": "boolean"
1298
- },
1299
- "default": "false",
1300
- "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
1301
- "fieldName": "loading"
1302
- },
1303
- {
1304
- "name": "no-validate",
1305
- "type": {
1306
- "text": "boolean"
1307
- },
1308
- "default": "false",
1309
- "fieldName": "noValidate"
1310
- },
1311
- {
1312
- "name": "size",
1313
- "type": {
1314
- "text": "'sm' | 'md' | 'lg'"
1315
- },
1316
- "default": "'md'",
1317
- "description": "If provided, displays an alternative size",
1318
- "fieldName": "size"
1319
- },
1320
- {
1321
- "name": "type",
1322
- "type": {
1323
- "text": "'button' | 'submit' | 'reset'"
1324
- },
1325
- "default": "'button'",
1326
- "description": "If provided, changes the button type",
1327
- "fieldName": "type"
1328
- },
1329
- {
1330
- "name": "variant",
1331
- "type": {
1332
- "text": "'primary' | 'secondary'"
1333
- },
1334
- "default": "'primary'",
1335
- "description": "If provided, alters the appearance",
1336
- "fieldName": "variant"
1337
- }
1338
- ],
1339
- "superclass": {
1340
- "name": "SkfElement",
1341
- "package": "@internal/components/skf-element.js"
1342
- },
1343
- "tagName": "skf-button",
1344
- "customElement": true
1345
- }
1346
- ],
1347
- "exports": [
1348
- {
1349
- "kind": "js",
1350
- "name": "SkfButton",
1351
- "declaration": {
1352
- "name": "SkfButton",
1353
- "module": "src/components/button/button.component.ts"
1354
- }
1355
- }
1356
- ]
1357
- },
1358
- {
1359
- "kind": "javascript-module",
1360
- "path": "src/components/heading/heading.component.ts",
1361
- "declarations": [
1362
- {
1363
- "kind": "class",
1364
- "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.",
1365
- "name": "SkfHeading",
1366
- "slots": [
1367
- {
1368
- "description": "The headings content",
1369
- "name": ""
1370
- }
1371
- ],
1372
- "members": [
1373
- {
1374
- "kind": "field",
1375
- "name": "as",
1376
- "type": {
1377
- "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1378
- },
1379
- "default": "'h1'",
1380
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1381
- "attribute": "as",
1382
- "reflects": true
1383
- },
1384
- {
1385
- "kind": "field",
1386
- "name": "styledAs",
1387
- "type": {
1388
- "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1389
- },
1390
- "description": "If provided, changes the appearance of the heading",
1391
- "attribute": "styled-as"
1392
- }
1393
- ],
1394
- "attributes": [
1395
- {
1396
- "name": "as",
1397
- "type": {
1398
- "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1399
- },
1400
- "default": "'h1'",
1401
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1402
- "fieldName": "as"
1403
- },
1404
- {
1405
- "name": "styled-as",
1406
- "type": {
1407
- "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1571
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1408
1572
  },
1409
1573
  "description": "If provided, changes the appearance of the heading",
1410
1574
  "fieldName": "styledAs"
@@ -1438,15 +1602,6 @@
1438
1602
  "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
1439
1603
  "name": "SkfIcon",
1440
1604
  "members": [
1441
- {
1442
- "kind": "field",
1443
- "name": "_rootId",
1444
- "type": {
1445
- "text": "string"
1446
- },
1447
- "privacy": "private",
1448
- "default": "'root'"
1449
- },
1450
1605
  {
1451
1606
  "kind": "field",
1452
1607
  "name": "color",
@@ -1486,16 +1641,6 @@
1486
1641
  "description": "Size of the icon",
1487
1642
  "attribute": "size",
1488
1643
  "reflects": true
1489
- },
1490
- {
1491
- "kind": "field",
1492
- "name": "renderDecorativeIcon",
1493
- "privacy": "private"
1494
- },
1495
- {
1496
- "kind": "field",
1497
- "name": "renderInformativeIcon",
1498
- "privacy": "private"
1499
1644
  }
1500
1645
  ],
1501
1646
  "attributes": [
@@ -2066,56 +2211,657 @@
2066
2211
  "fieldName": "validateOn"
2067
2212
  },
2068
2213
  {
2069
- "name": "value",
2214
+ "name": "value",
2215
+ "type": {
2216
+ "text": "string"
2217
+ },
2218
+ "default": "''",
2219
+ "description": "The current value of the input field",
2220
+ "fieldName": "value"
2221
+ }
2222
+ ],
2223
+ "superclass": {
2224
+ "name": "FormBase",
2225
+ "package": "@internal/components/formBase.js"
2226
+ },
2227
+ "tagName": "skf-input",
2228
+ "customElement": true
2229
+ }
2230
+ ],
2231
+ "exports": [
2232
+ {
2233
+ "kind": "js",
2234
+ "name": "SkfInput",
2235
+ "declaration": {
2236
+ "name": "SkfInput",
2237
+ "module": "src/components/input/input.component.ts"
2238
+ }
2239
+ }
2240
+ ]
2241
+ },
2242
+ {
2243
+ "kind": "javascript-module",
2244
+ "path": "src/components/link/link.component.ts",
2245
+ "declarations": [
2246
+ {
2247
+ "kind": "class",
2248
+ "description": "The `<skf-link>` can be used as either a regular link or a link styled semantic button",
2249
+ "name": "SkfLink",
2250
+ "slots": [
2251
+ {
2252
+ "description": "The links' main content",
2253
+ "name": ""
2254
+ }
2255
+ ],
2256
+ "members": [
2257
+ {
2258
+ "kind": "field",
2259
+ "name": "classMap",
2260
+ "type": {
2261
+ "text": "object"
2262
+ },
2263
+ "static": true,
2264
+ "default": "{}"
2265
+ },
2266
+ {
2267
+ "kind": "field",
2268
+ "name": "_onClick",
2269
+ "type": {
2270
+ "text": "(event: Event, route?: string) => void | undefined"
2271
+ },
2272
+ "privacy": "private"
2273
+ },
2274
+ {
2275
+ "kind": "field",
2276
+ "name": "as",
2277
+ "type": {
2278
+ "text": "'button' | 'a'"
2279
+ },
2280
+ "default": "'a'",
2281
+ "description": "Defines the semantic element to render",
2282
+ "attribute": "as",
2283
+ "reflects": true
2284
+ },
2285
+ {
2286
+ "kind": "field",
2287
+ "name": "color",
2288
+ "type": {
2289
+ "text": "'primary' | 'inverse'"
2290
+ },
2291
+ "default": "'primary'",
2292
+ "description": "Defines the text-color",
2293
+ "attribute": "color",
2294
+ "reflects": true
2295
+ },
2296
+ {
2297
+ "kind": "field",
2298
+ "name": "disabled",
2299
+ "type": {
2300
+ "text": "boolean | undefined"
2301
+ },
2302
+ "description": "If true, disables the link",
2303
+ "attribute": "disabled",
2304
+ "reflects": true
2305
+ },
2306
+ {
2307
+ "kind": "field",
2308
+ "name": "download",
2309
+ "type": {
2310
+ "text": "string | undefined"
2311
+ },
2312
+ "description": "If defined, downloads the url",
2313
+ "attribute": "download"
2314
+ },
2315
+ {
2316
+ "kind": "field",
2317
+ "name": "href",
2318
+ "type": {
2319
+ "text": "string | undefined"
2320
+ },
2321
+ "description": "If defined, loads url on click",
2322
+ "attribute": "href"
2323
+ },
2324
+ {
2325
+ "kind": "field",
2326
+ "name": "icon",
2327
+ "type": {
2328
+ "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\""
2329
+ },
2330
+ "description": "If defined, renders an icon before or after the text",
2331
+ "attribute": "icon"
2332
+ },
2333
+ {
2334
+ "kind": "field",
2335
+ "name": "iconPlacement",
2336
+ "type": {
2337
+ "text": "'left' | 'right'"
2338
+ },
2339
+ "default": "'left'",
2340
+ "description": "Defines the position of the icon in relation to the text",
2341
+ "attribute": "icon-placement",
2342
+ "reflects": true
2343
+ },
2344
+ {
2345
+ "kind": "field",
2346
+ "name": "rel",
2347
+ "type": {
2348
+ "text": "string | undefined"
2349
+ },
2350
+ "description": "If defined, describes the relationship between a linked resource and the current document",
2351
+ "attribute": "rel"
2352
+ },
2353
+ {
2354
+ "kind": "field",
2355
+ "name": "route",
2356
+ "type": {
2357
+ "text": "string | undefined"
2358
+ },
2359
+ "description": "If defined, used on conjunction with onClick property, second argument",
2360
+ "attribute": "route",
2361
+ "reflects": true
2362
+ },
2363
+ {
2364
+ "kind": "field",
2365
+ "name": "stretch",
2366
+ "type": {
2367
+ "text": "boolean"
2368
+ },
2369
+ "default": "false",
2370
+ "description": "If true, fills the parents horizontal axis",
2371
+ "attribute": "stretch",
2372
+ "reflects": true
2373
+ },
2374
+ {
2375
+ "kind": "field",
2376
+ "name": "target",
2377
+ "type": {
2378
+ "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2379
+ },
2380
+ "description": "If defined, specifies where to open the linked document",
2381
+ "attribute": "target"
2382
+ },
2383
+ {
2384
+ "kind": "field",
2385
+ "name": "type",
2386
+ "type": {
2387
+ "text": "'button' | 'submit' | 'reset'"
2388
+ },
2389
+ "default": "'button'",
2390
+ "description": "Defines the type of button",
2391
+ "attribute": "type"
2392
+ },
2393
+ {
2394
+ "kind": "field",
2395
+ "name": "onClick",
2396
+ "description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
2397
+ "type": {
2398
+ "text": "function"
2399
+ }
2400
+ }
2401
+ ],
2402
+ "attributes": [
2403
+ {
2404
+ "name": "as",
2405
+ "type": {
2406
+ "text": "'button' | 'a'"
2407
+ },
2408
+ "default": "'a'",
2409
+ "description": "Defines the semantic element to render",
2410
+ "fieldName": "as"
2411
+ },
2412
+ {
2413
+ "name": "color",
2414
+ "type": {
2415
+ "text": "'primary' | 'inverse'"
2416
+ },
2417
+ "default": "'primary'",
2418
+ "description": "Defines the text-color",
2419
+ "fieldName": "color"
2420
+ },
2421
+ {
2422
+ "name": "disabled",
2423
+ "type": {
2424
+ "text": "boolean | undefined"
2425
+ },
2426
+ "description": "If true, disables the link",
2427
+ "fieldName": "disabled"
2428
+ },
2429
+ {
2430
+ "name": "download",
2431
+ "type": {
2432
+ "text": "string | undefined"
2433
+ },
2434
+ "description": "If defined, downloads the url",
2435
+ "fieldName": "download"
2436
+ },
2437
+ {
2438
+ "name": "href",
2439
+ "type": {
2440
+ "text": "string | undefined"
2441
+ },
2442
+ "description": "If defined, loads url on click",
2443
+ "fieldName": "href"
2444
+ },
2445
+ {
2446
+ "name": "icon",
2447
+ "type": {
2448
+ "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\""
2449
+ },
2450
+ "description": "If defined, renders an icon before or after the text",
2451
+ "fieldName": "icon"
2452
+ },
2453
+ {
2454
+ "name": "icon-placement",
2455
+ "type": {
2456
+ "text": "'left' | 'right'"
2457
+ },
2458
+ "default": "'left'",
2459
+ "description": "Defines the position of the icon in relation to the text",
2460
+ "fieldName": "iconPlacement"
2461
+ },
2462
+ {
2463
+ "name": "rel",
2464
+ "type": {
2465
+ "text": "string | undefined"
2466
+ },
2467
+ "description": "If defined, describes the relationship between a linked resource and the current document",
2468
+ "fieldName": "rel"
2469
+ },
2470
+ {
2471
+ "name": "route",
2472
+ "type": {
2473
+ "text": "string | undefined"
2474
+ },
2475
+ "description": "If defined, used on conjunction with onClick property, second argument",
2476
+ "fieldName": "route"
2477
+ },
2478
+ {
2479
+ "name": "stretch",
2480
+ "type": {
2481
+ "text": "boolean"
2482
+ },
2483
+ "default": "false",
2484
+ "description": "If true, fills the parents horizontal axis",
2485
+ "fieldName": "stretch"
2486
+ },
2487
+ {
2488
+ "name": "target",
2489
+ "type": {
2490
+ "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2491
+ },
2492
+ "description": "If defined, specifies where to open the linked document",
2493
+ "fieldName": "target"
2494
+ },
2495
+ {
2496
+ "name": "type",
2497
+ "type": {
2498
+ "text": "'button' | 'submit' | 'reset'"
2499
+ },
2500
+ "default": "'button'",
2501
+ "description": "Defines the type of button",
2502
+ "fieldName": "type"
2503
+ }
2504
+ ],
2505
+ "superclass": {
2506
+ "name": "SkfElement",
2507
+ "package": "@internal/components/skf-element.js"
2508
+ },
2509
+ "tagName": "skf-link",
2510
+ "customElement": true
2511
+ }
2512
+ ],
2513
+ "exports": [
2514
+ {
2515
+ "kind": "js",
2516
+ "name": "SkfLink",
2517
+ "declaration": {
2518
+ "name": "SkfLink",
2519
+ "module": "src/components/link/link.component.ts"
2520
+ }
2521
+ }
2522
+ ]
2523
+ },
2524
+ {
2525
+ "kind": "javascript-module",
2526
+ "path": "src/components/loader/loader.component.ts",
2527
+ "declarations": [
2528
+ {
2529
+ "kind": "class",
2530
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
2531
+ "name": "SkfLoader",
2532
+ "members": [
2533
+ {
2534
+ "kind": "field",
2535
+ "name": "#internals",
2536
+ "privacy": "private",
2537
+ "type": {
2538
+ "text": "ElementInternals"
2539
+ }
2540
+ },
2541
+ {
2542
+ "kind": "field",
2543
+ "name": "ariaLabel",
2544
+ "type": {
2545
+ "text": "string"
2546
+ },
2547
+ "default": "'Loading...'",
2548
+ "description": "Defines the aria-label",
2549
+ "attribute": "aria-label",
2550
+ "reflects": true
2551
+ },
2552
+ {
2553
+ "kind": "field",
2554
+ "name": "invert",
2555
+ "type": {
2556
+ "text": "boolean"
2557
+ },
2558
+ "default": "false",
2559
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
2560
+ "attribute": "invert"
2561
+ },
2562
+ {
2563
+ "kind": "field",
2564
+ "name": "size",
2565
+ "type": {
2566
+ "text": "'md' | 'sm' | undefined"
2567
+ },
2568
+ "default": "'md'",
2569
+ "description": "Defines the size of the loader",
2570
+ "attribute": "size",
2571
+ "reflects": true
2572
+ },
2573
+ {
2574
+ "kind": "field",
2575
+ "name": "role",
2576
+ "type": {
2577
+ "text": "string"
2578
+ },
2579
+ "default": "'progressbar'"
2580
+ },
2581
+ {
2582
+ "kind": "field",
2583
+ "name": "ariaLive",
2584
+ "type": {
2585
+ "text": "string"
2586
+ },
2587
+ "default": "'polite'"
2588
+ }
2589
+ ],
2590
+ "attributes": [
2591
+ {
2592
+ "name": "aria-label",
2593
+ "type": {
2594
+ "text": "string"
2595
+ },
2596
+ "default": "'Loading...'",
2597
+ "description": "Defines the aria-label",
2598
+ "fieldName": "ariaLabel"
2599
+ },
2600
+ {
2601
+ "name": "invert",
2602
+ "type": {
2603
+ "text": "boolean"
2604
+ },
2605
+ "default": "false",
2606
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
2607
+ "fieldName": "invert"
2608
+ },
2609
+ {
2610
+ "name": "size",
2611
+ "type": {
2612
+ "text": "'md' | 'sm' | undefined"
2613
+ },
2614
+ "default": "'md'",
2615
+ "description": "Defines the size of the loader",
2616
+ "fieldName": "size"
2617
+ }
2618
+ ],
2619
+ "superclass": {
2620
+ "name": "SkfElement",
2621
+ "package": "@internal/components/skf-element.js"
2622
+ },
2623
+ "tagName": "skf-loader",
2624
+ "customElement": true
2625
+ }
2626
+ ],
2627
+ "exports": [
2628
+ {
2629
+ "kind": "js",
2630
+ "name": "SkfLoader",
2631
+ "declaration": {
2632
+ "name": "SkfLoader",
2633
+ "module": "src/components/loader/loader.component.ts"
2634
+ }
2635
+ }
2636
+ ]
2637
+ },
2638
+ {
2639
+ "kind": "javascript-module",
2640
+ "path": "src/components/logo/logo.component.ts",
2641
+ "declarations": [
2642
+ {
2643
+ "kind": "class",
2644
+ "description": "The `<skf-logo>` component is used to display the SKF logo.",
2645
+ "name": "SkfLogo",
2646
+ "cssProperties": [
2647
+ {
2648
+ "description": "The height of the logo",
2649
+ "name": "--skf-logo-height"
2650
+ }
2651
+ ],
2652
+ "members": [
2653
+ {
2654
+ "kind": "field",
2655
+ "name": "title",
2656
+ "type": {
2657
+ "text": "string"
2658
+ },
2659
+ "default": "'SKF logotype'",
2660
+ "description": "Defines the title of the logo",
2661
+ "attribute": "title"
2662
+ },
2663
+ {
2664
+ "kind": "field",
2665
+ "name": "color",
2666
+ "type": {
2667
+ "text": "\"primary\" | \"secondary\" | \"inverse\""
2668
+ },
2669
+ "default": "'primary'",
2670
+ "description": "Defines the color of the logo",
2671
+ "attribute": "color"
2672
+ }
2673
+ ],
2674
+ "attributes": [
2675
+ {
2676
+ "name": "title",
2677
+ "type": {
2678
+ "text": "string"
2679
+ },
2680
+ "default": "'SKF logotype'",
2681
+ "description": "Defines the title of the logo",
2682
+ "fieldName": "title"
2683
+ },
2684
+ {
2685
+ "name": "color",
2686
+ "type": {
2687
+ "text": "\"primary\" | \"secondary\" | \"inverse\""
2688
+ },
2689
+ "default": "'primary'",
2690
+ "description": "Defines the color of the logo",
2691
+ "fieldName": "color"
2692
+ }
2693
+ ],
2694
+ "superclass": {
2695
+ "name": "SkfElement",
2696
+ "package": "@internal/components/skf-element.js"
2697
+ },
2698
+ "tagName": "skf-logo",
2699
+ "customElement": true
2700
+ }
2701
+ ],
2702
+ "exports": [
2703
+ {
2704
+ "kind": "js",
2705
+ "name": "SkfLogo",
2706
+ "declaration": {
2707
+ "name": "SkfLogo",
2708
+ "module": "src/components/logo/logo.component.ts"
2709
+ }
2710
+ }
2711
+ ]
2712
+ },
2713
+ {
2714
+ "kind": "javascript-module",
2715
+ "path": "src/components/menu/menu.component.ts",
2716
+ "declarations": [
2717
+ {
2718
+ "kind": "class",
2719
+ "description": "The `<skf-menu>` is a component that displays a list of actions or options.",
2720
+ "name": "SkfMenu",
2721
+ "slots": [
2722
+ {
2723
+ "description": "The menu popover content",
2724
+ "name": ""
2725
+ }
2726
+ ],
2727
+ "members": [
2728
+ {
2729
+ "kind": "method",
2730
+ "name": "addEventListeners",
2731
+ "return": {
2732
+ "type": {
2733
+ "text": "void"
2734
+ }
2735
+ },
2736
+ "parameters": [
2737
+ {
2738
+ "name": "$element",
2739
+ "type": {
2740
+ "text": "HTMLElement | Element"
2741
+ }
2742
+ }
2743
+ ]
2744
+ },
2745
+ {
2746
+ "kind": "method",
2747
+ "name": "removeEventListeners",
2748
+ "return": {
2749
+ "type": {
2750
+ "text": "void"
2751
+ }
2752
+ },
2753
+ "parameters": [
2754
+ {
2755
+ "name": "$element",
2756
+ "type": {
2757
+ "text": "HTMLElement | Element"
2758
+ }
2759
+ }
2760
+ ]
2761
+ },
2762
+ {
2763
+ "kind": "field",
2764
+ "name": "placement",
2765
+ "type": {
2766
+ "text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
2767
+ },
2768
+ "default": "'bottom-start'",
2769
+ "description": "The placement of the menu"
2770
+ },
2771
+ {
2772
+ "type": {
2773
+ "text": "boolean"
2774
+ },
2775
+ "description": "Whether the menu is open",
2776
+ "name": "isOpen",
2777
+ "default": "false",
2778
+ "kind": "field"
2779
+ },
2780
+ {
2070
2781
  "type": {
2071
2782
  "text": "string"
2072
2783
  },
2073
- "default": "''",
2074
- "description": "The current value of the input field",
2075
- "fieldName": "value"
2784
+ "description": "The id of the element the menu will be anchored to",
2785
+ "name": "anchor",
2786
+ "kind": "field"
2787
+ }
2788
+ ],
2789
+ "events": [
2790
+ {
2791
+ "description": "Fired when the menu is opened",
2792
+ "name": "open"
2793
+ },
2794
+ {
2795
+ "description": "Fired when the menu is closed",
2796
+ "name": "close"
2076
2797
  }
2077
2798
  ],
2078
2799
  "superclass": {
2079
- "name": "FormBase",
2080
- "package": "@internal/components/formBase.js"
2800
+ "name": "SkfPopoverBase",
2801
+ "package": "@internal/base-classes/popover/popover.base.js"
2081
2802
  },
2082
- "tagName": "skf-input",
2803
+ "tagName": "skf-menu",
2083
2804
  "customElement": true
2084
2805
  }
2085
2806
  ],
2086
2807
  "exports": [
2087
2808
  {
2088
2809
  "kind": "js",
2089
- "name": "SkfInput",
2810
+ "name": "SkfMenu",
2090
2811
  "declaration": {
2091
- "name": "SkfInput",
2092
- "module": "src/components/input/input.component.ts"
2812
+ "name": "SkfMenu",
2813
+ "module": "src/components/menu/menu.component.ts"
2093
2814
  }
2094
2815
  }
2095
2816
  ]
2096
2817
  },
2097
2818
  {
2098
2819
  "kind": "javascript-module",
2099
- "path": "src/components/link/link.component.ts",
2820
+ "path": "src/components/menu-item/menu-item.component.ts",
2100
2821
  "declarations": [
2101
2822
  {
2102
2823
  "kind": "class",
2103
- "description": "The `<skf-link>` can be used as either a regular link or a link styled semantic button",
2104
- "name": "SkfLink",
2824
+ "description": "The `<skf-menu-item>` is a component that displays a list of actions or options.",
2825
+ "name": "SkfMenuItem",
2105
2826
  "slots": [
2106
2827
  {
2107
- "description": "The links' main content",
2108
- "name": ""
2828
+ "description": "The component's main content",
2829
+ "name": "",
2830
+ "inheritedFrom": {
2831
+ "name": "SkfLink",
2832
+ "module": "src/components/link/link.component.ts"
2833
+ }
2834
+ },
2835
+ {
2836
+ "description": "A named slot of the component",
2837
+ "name": "my-named-slot"
2109
2838
  }
2110
2839
  ],
2111
2840
  "members": [
2841
+ {
2842
+ "kind": "field",
2843
+ "name": "classMap",
2844
+ "type": {
2845
+ "text": "object"
2846
+ },
2847
+ "static": true,
2848
+ "default": "{ 'menu-item': true }",
2849
+ "inheritedFrom": {
2850
+ "name": "SkfLink",
2851
+ "module": "src/components/link/link.component.ts"
2852
+ }
2853
+ },
2112
2854
  {
2113
2855
  "kind": "field",
2114
2856
  "name": "_onClick",
2115
2857
  "type": {
2116
2858
  "text": "(event: Event, route?: string) => void | undefined"
2117
2859
  },
2118
- "privacy": "private"
2860
+ "privacy": "private",
2861
+ "inheritedFrom": {
2862
+ "name": "SkfLink",
2863
+ "module": "src/components/link/link.component.ts"
2864
+ }
2119
2865
  },
2120
2866
  {
2121
2867
  "kind": "field",
@@ -2126,7 +2872,11 @@
2126
2872
  "default": "'a'",
2127
2873
  "description": "Defines the semantic element to render",
2128
2874
  "attribute": "as",
2129
- "reflects": true
2875
+ "reflects": true,
2876
+ "inheritedFrom": {
2877
+ "name": "SkfLink",
2878
+ "module": "src/components/link/link.component.ts"
2879
+ }
2130
2880
  },
2131
2881
  {
2132
2882
  "kind": "field",
@@ -2137,7 +2887,11 @@
2137
2887
  "default": "'primary'",
2138
2888
  "description": "Defines the text-color",
2139
2889
  "attribute": "color",
2140
- "reflects": true
2890
+ "reflects": true,
2891
+ "inheritedFrom": {
2892
+ "name": "SkfLink",
2893
+ "module": "src/components/link/link.component.ts"
2894
+ }
2141
2895
  },
2142
2896
  {
2143
2897
  "kind": "field",
@@ -2147,7 +2901,11 @@
2147
2901
  },
2148
2902
  "description": "If true, disables the link",
2149
2903
  "attribute": "disabled",
2150
- "reflects": true
2904
+ "reflects": true,
2905
+ "inheritedFrom": {
2906
+ "name": "SkfLink",
2907
+ "module": "src/components/link/link.component.ts"
2908
+ }
2151
2909
  },
2152
2910
  {
2153
2911
  "kind": "field",
@@ -2156,7 +2914,11 @@
2156
2914
  "text": "string | undefined"
2157
2915
  },
2158
2916
  "description": "If defined, downloads the url",
2159
- "attribute": "download"
2917
+ "attribute": "download",
2918
+ "inheritedFrom": {
2919
+ "name": "SkfLink",
2920
+ "module": "src/components/link/link.component.ts"
2921
+ }
2160
2922
  },
2161
2923
  {
2162
2924
  "kind": "field",
@@ -2165,7 +2927,11 @@
2165
2927
  "text": "string | undefined"
2166
2928
  },
2167
2929
  "description": "If defined, loads url on click",
2168
- "attribute": "href"
2930
+ "attribute": "href",
2931
+ "inheritedFrom": {
2932
+ "name": "SkfLink",
2933
+ "module": "src/components/link/link.component.ts"
2934
+ }
2169
2935
  },
2170
2936
  {
2171
2937
  "kind": "field",
@@ -2174,7 +2940,11 @@
2174
2940
  "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\""
2175
2941
  },
2176
2942
  "description": "If defined, renders an icon before or after the text",
2177
- "attribute": "icon"
2943
+ "attribute": "icon",
2944
+ "inheritedFrom": {
2945
+ "name": "SkfLink",
2946
+ "module": "src/components/link/link.component.ts"
2947
+ }
2178
2948
  },
2179
2949
  {
2180
2950
  "kind": "field",
@@ -2185,7 +2955,11 @@
2185
2955
  "default": "'left'",
2186
2956
  "description": "Defines the position of the icon in relation to the text",
2187
2957
  "attribute": "icon-placement",
2188
- "reflects": true
2958
+ "reflects": true,
2959
+ "inheritedFrom": {
2960
+ "name": "SkfLink",
2961
+ "module": "src/components/link/link.component.ts"
2962
+ }
2189
2963
  },
2190
2964
  {
2191
2965
  "kind": "field",
@@ -2194,7 +2968,11 @@
2194
2968
  "text": "string | undefined"
2195
2969
  },
2196
2970
  "description": "If defined, describes the relationship between a linked resource and the current document",
2197
- "attribute": "rel"
2971
+ "attribute": "rel",
2972
+ "inheritedFrom": {
2973
+ "name": "SkfLink",
2974
+ "module": "src/components/link/link.component.ts"
2975
+ }
2198
2976
  },
2199
2977
  {
2200
2978
  "kind": "field",
@@ -2204,7 +2982,11 @@
2204
2982
  },
2205
2983
  "description": "If defined, used on conjunction with onClick property, second argument",
2206
2984
  "attribute": "route",
2207
- "reflects": true
2985
+ "reflects": true,
2986
+ "inheritedFrom": {
2987
+ "name": "SkfLink",
2988
+ "module": "src/components/link/link.component.ts"
2989
+ }
2208
2990
  },
2209
2991
  {
2210
2992
  "kind": "field",
@@ -2215,7 +2997,11 @@
2215
2997
  "default": "false",
2216
2998
  "description": "If true, fills the parents horizontal axis",
2217
2999
  "attribute": "stretch",
2218
- "reflects": true
3000
+ "reflects": true,
3001
+ "inheritedFrom": {
3002
+ "name": "SkfLink",
3003
+ "module": "src/components/link/link.component.ts"
3004
+ }
2219
3005
  },
2220
3006
  {
2221
3007
  "kind": "field",
@@ -2224,7 +3010,11 @@
2224
3010
  "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2225
3011
  },
2226
3012
  "description": "If defined, specifies where to open the linked document",
2227
- "attribute": "target"
3013
+ "attribute": "target",
3014
+ "inheritedFrom": {
3015
+ "name": "SkfLink",
3016
+ "module": "src/components/link/link.component.ts"
3017
+ }
2228
3018
  },
2229
3019
  {
2230
3020
  "kind": "field",
@@ -2234,7 +3024,11 @@
2234
3024
  },
2235
3025
  "default": "'button'",
2236
3026
  "description": "Defines the type of button",
2237
- "attribute": "type"
3027
+ "attribute": "type",
3028
+ "inheritedFrom": {
3029
+ "name": "SkfLink",
3030
+ "module": "src/components/link/link.component.ts"
3031
+ }
2238
3032
  },
2239
3033
  {
2240
3034
  "kind": "field",
@@ -2242,9 +3036,52 @@
2242
3036
  "description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
2243
3037
  "type": {
2244
3038
  "text": "function"
3039
+ },
3040
+ "inheritedFrom": {
3041
+ "name": "SkfLink",
3042
+ "module": "src/components/link/link.component.ts"
2245
3043
  }
2246
3044
  }
2247
3045
  ],
3046
+ "events": [
3047
+ {
3048
+ "type": {
3049
+ "text": "CustomEvent"
3050
+ },
3051
+ "description": "Fired when something happens",
3052
+ "name": "my-tag-my-event"
3053
+ },
3054
+ {
3055
+ "description": "Fired when the component is clicked",
3056
+ "name": "click"
3057
+ },
3058
+ {
3059
+ "description": "Fired when the mouse is over the component",
3060
+ "name": "mouseover"
3061
+ },
3062
+ {
3063
+ "description": "Fired when the mouse is out of the component",
3064
+ "name": "mouseout"
3065
+ },
3066
+ {
3067
+ "description": "Fired when the component is focused",
3068
+ "name": "focus"
3069
+ },
3070
+ {
3071
+ "description": "Fired when the component is blurred",
3072
+ "name": "blur"
3073
+ },
3074
+ {
3075
+ "description": "Fired when the component's value changes",
3076
+ "name": "change"
3077
+ }
3078
+ ],
3079
+ "superclass": {
3080
+ "name": "SkfLink",
3081
+ "package": "@components/link/link.component.js"
3082
+ },
3083
+ "tagName": "skf-menu-item",
3084
+ "customElement": true,
2248
3085
  "attributes": [
2249
3086
  {
2250
3087
  "name": "as",
@@ -2253,7 +3090,11 @@
2253
3090
  },
2254
3091
  "default": "'a'",
2255
3092
  "description": "Defines the semantic element to render",
2256
- "fieldName": "as"
3093
+ "fieldName": "as",
3094
+ "inheritedFrom": {
3095
+ "name": "SkfLink",
3096
+ "module": "src/components/link/link.component.ts"
3097
+ }
2257
3098
  },
2258
3099
  {
2259
3100
  "name": "color",
@@ -2262,7 +3103,11 @@
2262
3103
  },
2263
3104
  "default": "'primary'",
2264
3105
  "description": "Defines the text-color",
2265
- "fieldName": "color"
3106
+ "fieldName": "color",
3107
+ "inheritedFrom": {
3108
+ "name": "SkfLink",
3109
+ "module": "src/components/link/link.component.ts"
3110
+ }
2266
3111
  },
2267
3112
  {
2268
3113
  "name": "disabled",
@@ -2270,7 +3115,11 @@
2270
3115
  "text": "boolean | undefined"
2271
3116
  },
2272
3117
  "description": "If true, disables the link",
2273
- "fieldName": "disabled"
3118
+ "fieldName": "disabled",
3119
+ "inheritedFrom": {
3120
+ "name": "SkfLink",
3121
+ "module": "src/components/link/link.component.ts"
3122
+ }
2274
3123
  },
2275
3124
  {
2276
3125
  "name": "download",
@@ -2278,7 +3127,11 @@
2278
3127
  "text": "string | undefined"
2279
3128
  },
2280
3129
  "description": "If defined, downloads the url",
2281
- "fieldName": "download"
3130
+ "fieldName": "download",
3131
+ "inheritedFrom": {
3132
+ "name": "SkfLink",
3133
+ "module": "src/components/link/link.component.ts"
3134
+ }
2282
3135
  },
2283
3136
  {
2284
3137
  "name": "href",
@@ -2286,7 +3139,11 @@
2286
3139
  "text": "string | undefined"
2287
3140
  },
2288
3141
  "description": "If defined, loads url on click",
2289
- "fieldName": "href"
3142
+ "fieldName": "href",
3143
+ "inheritedFrom": {
3144
+ "name": "SkfLink",
3145
+ "module": "src/components/link/link.component.ts"
3146
+ }
2290
3147
  },
2291
3148
  {
2292
3149
  "name": "icon",
@@ -2294,7 +3151,11 @@
2294
3151
  "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\""
2295
3152
  },
2296
3153
  "description": "If defined, renders an icon before or after the text",
2297
- "fieldName": "icon"
3154
+ "fieldName": "icon",
3155
+ "inheritedFrom": {
3156
+ "name": "SkfLink",
3157
+ "module": "src/components/link/link.component.ts"
3158
+ }
2298
3159
  },
2299
3160
  {
2300
3161
  "name": "icon-placement",
@@ -2303,7 +3164,11 @@
2303
3164
  },
2304
3165
  "default": "'left'",
2305
3166
  "description": "Defines the position of the icon in relation to the text",
2306
- "fieldName": "iconPlacement"
3167
+ "fieldName": "iconPlacement",
3168
+ "inheritedFrom": {
3169
+ "name": "SkfLink",
3170
+ "module": "src/components/link/link.component.ts"
3171
+ }
2307
3172
  },
2308
3173
  {
2309
3174
  "name": "rel",
@@ -2311,7 +3176,11 @@
2311
3176
  "text": "string | undefined"
2312
3177
  },
2313
3178
  "description": "If defined, describes the relationship between a linked resource and the current document",
2314
- "fieldName": "rel"
3179
+ "fieldName": "rel",
3180
+ "inheritedFrom": {
3181
+ "name": "SkfLink",
3182
+ "module": "src/components/link/link.component.ts"
3183
+ }
2315
3184
  },
2316
3185
  {
2317
3186
  "name": "route",
@@ -2319,7 +3188,11 @@
2319
3188
  "text": "string | undefined"
2320
3189
  },
2321
3190
  "description": "If defined, used on conjunction with onClick property, second argument",
2322
- "fieldName": "route"
3191
+ "fieldName": "route",
3192
+ "inheritedFrom": {
3193
+ "name": "SkfLink",
3194
+ "module": "src/components/link/link.component.ts"
3195
+ }
2323
3196
  },
2324
3197
  {
2325
3198
  "name": "stretch",
@@ -2328,230 +3201,204 @@
2328
3201
  },
2329
3202
  "default": "false",
2330
3203
  "description": "If true, fills the parents horizontal axis",
2331
- "fieldName": "stretch"
2332
- },
2333
- {
2334
- "name": "target",
2335
- "type": {
2336
- "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2337
- },
2338
- "description": "If defined, specifies where to open the linked document",
2339
- "fieldName": "target"
2340
- },
2341
- {
2342
- "name": "type",
2343
- "type": {
2344
- "text": "'button' | 'submit' | 'reset'"
2345
- },
2346
- "default": "'button'",
2347
- "description": "Defines the type of button",
2348
- "fieldName": "type"
2349
- }
2350
- ],
2351
- "superclass": {
2352
- "name": "SkfElement",
2353
- "package": "@internal/components/skf-element.js"
2354
- },
2355
- "tagName": "skf-link",
2356
- "customElement": true
2357
- }
2358
- ],
2359
- "exports": [
2360
- {
2361
- "kind": "js",
2362
- "name": "SkfLink",
2363
- "declaration": {
2364
- "name": "SkfLink",
2365
- "module": "src/components/link/link.component.ts"
2366
- }
2367
- }
2368
- ]
2369
- },
2370
- {
2371
- "kind": "javascript-module",
2372
- "path": "src/components/loader/loader.component.ts",
2373
- "declarations": [
2374
- {
2375
- "kind": "class",
2376
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
2377
- "name": "SkfLoader",
2378
- "members": [
2379
- {
2380
- "kind": "field",
2381
- "name": "#internals",
2382
- "privacy": "private",
2383
- "type": {
2384
- "text": "ElementInternals"
3204
+ "fieldName": "stretch",
3205
+ "inheritedFrom": {
3206
+ "name": "SkfLink",
3207
+ "module": "src/components/link/link.component.ts"
2385
3208
  }
2386
3209
  },
2387
3210
  {
2388
- "kind": "field",
2389
- "name": "ariaLabel",
2390
- "type": {
2391
- "text": "string"
2392
- },
2393
- "default": "'Loading...'",
2394
- "description": "Defines the aria-label",
2395
- "attribute": "aria-label",
2396
- "reflects": true
2397
- },
2398
- {
2399
- "kind": "field",
2400
- "name": "invert",
2401
- "type": {
2402
- "text": "boolean"
2403
- },
2404
- "default": "false",
2405
- "description": "If true, inverts the color (to be used on colored backgrounds)",
2406
- "attribute": "invert"
2407
- },
2408
- {
2409
- "kind": "field",
2410
- "name": "size",
2411
- "type": {
2412
- "text": "'md' | 'sm' | undefined"
2413
- },
2414
- "default": "'md'",
2415
- "description": "Defines the size of the loader",
2416
- "attribute": "size",
2417
- "reflects": true
2418
- },
2419
- {
2420
- "kind": "field",
2421
- "name": "role",
2422
- "type": {
2423
- "text": "string"
2424
- },
2425
- "default": "'progressbar'"
2426
- },
2427
- {
2428
- "kind": "field",
2429
- "name": "ariaLive",
2430
- "type": {
2431
- "text": "string"
2432
- },
2433
- "default": "'polite'"
2434
- }
2435
- ],
2436
- "attributes": [
2437
- {
2438
- "name": "aria-label",
2439
- "type": {
2440
- "text": "string"
2441
- },
2442
- "default": "'Loading...'",
2443
- "description": "Defines the aria-label",
2444
- "fieldName": "ariaLabel"
2445
- },
2446
- {
2447
- "name": "invert",
3211
+ "name": "target",
2448
3212
  "type": {
2449
- "text": "boolean"
3213
+ "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2450
3214
  },
2451
- "default": "false",
2452
- "description": "If true, inverts the color (to be used on colored backgrounds)",
2453
- "fieldName": "invert"
3215
+ "description": "If defined, specifies where to open the linked document",
3216
+ "fieldName": "target",
3217
+ "inheritedFrom": {
3218
+ "name": "SkfLink",
3219
+ "module": "src/components/link/link.component.ts"
3220
+ }
2454
3221
  },
2455
3222
  {
2456
- "name": "size",
3223
+ "name": "type",
2457
3224
  "type": {
2458
- "text": "'md' | 'sm' | undefined"
3225
+ "text": "'button' | 'submit' | 'reset'"
2459
3226
  },
2460
- "default": "'md'",
2461
- "description": "Defines the size of the loader",
2462
- "fieldName": "size"
3227
+ "default": "'button'",
3228
+ "description": "Defines the type of button",
3229
+ "fieldName": "type",
3230
+ "inheritedFrom": {
3231
+ "name": "SkfLink",
3232
+ "module": "src/components/link/link.component.ts"
3233
+ }
2463
3234
  }
2464
- ],
2465
- "superclass": {
2466
- "name": "SkfElement",
2467
- "package": "@internal/components/skf-element.js"
2468
- },
2469
- "tagName": "skf-loader",
2470
- "customElement": true
3235
+ ]
2471
3236
  }
2472
3237
  ],
2473
3238
  "exports": [
2474
3239
  {
2475
3240
  "kind": "js",
2476
- "name": "SkfLoader",
3241
+ "name": "SkfMenuItem",
2477
3242
  "declaration": {
2478
- "name": "SkfLoader",
2479
- "module": "src/components/loader/loader.component.ts"
3243
+ "name": "SkfMenuItem",
3244
+ "module": "src/components/menu-item/menu-item.component.ts"
2480
3245
  }
2481
3246
  }
2482
3247
  ]
2483
3248
  },
2484
3249
  {
2485
3250
  "kind": "javascript-module",
2486
- "path": "src/components/logo/logo.component.ts",
3251
+ "path": "src/components/popover/popover.component.ts",
2487
3252
  "declarations": [
2488
3253
  {
2489
3254
  "kind": "class",
2490
- "description": "The `<skf-logo>` component is used to display the SKF logo.",
2491
- "name": "SkfLogo",
2492
- "cssProperties": [
3255
+ "description": "The `<skf-popover>` is a general purpose component that displays the slot content.",
3256
+ "name": "SkfPopover",
3257
+ "slots": [
2493
3258
  {
2494
- "description": "The height of the logo",
2495
- "name": "--skf-logo-height"
3259
+ "description": "The popover content",
3260
+ "name": ""
2496
3261
  }
2497
3262
  ],
2498
3263
  "members": [
2499
3264
  {
2500
3265
  "kind": "field",
2501
- "name": "title",
3266
+ "name": "offset",
2502
3267
  "type": {
2503
- "text": "string"
3268
+ "text": "number"
2504
3269
  },
2505
- "default": "'SKF logotype'",
2506
- "description": "Defines the title of the logo",
2507
- "attribute": "title"
3270
+ "default": "8",
3271
+ "description": "If defined, sets a custom offset for the popover",
3272
+ "attribute": "offset"
2508
3273
  },
2509
3274
  {
2510
3275
  "kind": "field",
2511
- "name": "color",
3276
+ "name": "hideArrow",
2512
3277
  "type": {
2513
- "text": "\"primary\" | \"secondary\" | \"inverse\""
3278
+ "text": "boolean"
2514
3279
  },
2515
- "default": "'primary'",
2516
- "description": "Defines the color of the logo",
2517
- "attribute": "color"
3280
+ "default": "false",
3281
+ "description": "If true, hides the arrow",
3282
+ "attribute": "hideArrow"
3283
+ },
3284
+ {
3285
+ "kind": "method",
3286
+ "name": "hideArrowChanged"
3287
+ },
3288
+ {
3289
+ "kind": "method",
3290
+ "name": "addEventListeners",
3291
+ "return": {
3292
+ "type": {
3293
+ "text": "void"
3294
+ }
3295
+ },
3296
+ "parameters": [
3297
+ {
3298
+ "name": "$element",
3299
+ "type": {
3300
+ "text": "HTMLElement | Element"
3301
+ }
3302
+ }
3303
+ ]
3304
+ },
3305
+ {
3306
+ "kind": "method",
3307
+ "name": "removeEventListeners",
3308
+ "return": {
3309
+ "type": {
3310
+ "text": "void"
3311
+ }
3312
+ },
3313
+ "parameters": [
3314
+ {
3315
+ "name": "$element",
3316
+ "type": {
3317
+ "text": "HTMLElement | Element"
3318
+ }
3319
+ }
3320
+ ]
3321
+ },
3322
+ {
3323
+ "kind": "field",
3324
+ "name": "arrow",
3325
+ "type": {
3326
+ "text": "boolean"
3327
+ },
3328
+ "default": "!this.hideArrow"
3329
+ },
3330
+ {
3331
+ "kind": "field",
3332
+ "name": "placement",
3333
+ "type": {
3334
+ "text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
3335
+ },
3336
+ "default": "'bottom-start'",
3337
+ "description": "The placement of the menu"
3338
+ },
3339
+ {
3340
+ "type": {
3341
+ "text": "boolean"
3342
+ },
3343
+ "description": "Whether the menu is open",
3344
+ "name": "isOpen",
3345
+ "default": "false",
3346
+ "kind": "field"
3347
+ },
3348
+ {
3349
+ "type": {
3350
+ "text": "string"
3351
+ },
3352
+ "description": "The id of the element the menu will be anchored to",
3353
+ "name": "anchor",
3354
+ "kind": "field"
3355
+ }
3356
+ ],
3357
+ "events": [
3358
+ {
3359
+ "description": "Fired when the menu is opened",
3360
+ "name": "open"
3361
+ },
3362
+ {
3363
+ "description": "Fired when the menu is closed",
3364
+ "name": "close"
2518
3365
  }
2519
3366
  ],
2520
3367
  "attributes": [
2521
3368
  {
2522
- "name": "title",
3369
+ "name": "offset",
2523
3370
  "type": {
2524
- "text": "string"
3371
+ "text": "number"
2525
3372
  },
2526
- "default": "'SKF logotype'",
2527
- "description": "Defines the title of the logo",
2528
- "fieldName": "title"
3373
+ "default": "8",
3374
+ "description": "If defined, sets a custom offset for the popover",
3375
+ "fieldName": "offset"
2529
3376
  },
2530
3377
  {
2531
- "name": "color",
3378
+ "name": "hideArrow",
2532
3379
  "type": {
2533
- "text": "\"primary\" | \"secondary\" | \"inverse\""
3380
+ "text": "boolean"
2534
3381
  },
2535
- "default": "'primary'",
2536
- "description": "Defines the color of the logo",
2537
- "fieldName": "color"
3382
+ "default": "false",
3383
+ "description": "If true, hides the arrow",
3384
+ "fieldName": "hideArrow"
2538
3385
  }
2539
3386
  ],
2540
3387
  "superclass": {
2541
- "name": "SkfElement",
2542
- "package": "@internal/components/skf-element.js"
3388
+ "name": "SkfPopoverBase",
3389
+ "package": "@internal/base-classes/popover/popover.base.js"
2543
3390
  },
2544
- "tagName": "skf-logo",
3391
+ "tagName": "skf-popover",
2545
3392
  "customElement": true
2546
3393
  }
2547
3394
  ],
2548
3395
  "exports": [
2549
3396
  {
2550
3397
  "kind": "js",
2551
- "name": "SkfLogo",
3398
+ "name": "SkfPopover",
2552
3399
  "declaration": {
2553
- "name": "SkfLogo",
2554
- "module": "src/components/logo/logo.component.ts"
3400
+ "name": "SkfPopover",
3401
+ "module": "src/components/popover/popover.component.ts"
2555
3402
  }
2556
3403
  }
2557
3404
  ]
@@ -3075,6 +3922,10 @@
3075
3922
  "name": "value",
3076
3923
  "description": "Read only, returns the selected value. (if multiple: in a comma separated string)"
3077
3924
  },
3925
+ {
3926
+ "kind": "method",
3927
+ "name": "handleExpandedChange"
3928
+ },
3078
3929
  {
3079
3930
  "kind": "field",
3080
3931
  "name": "_selectedOptions",
@@ -3367,121 +4218,317 @@
3367
4218
  ],
3368
4219
  "attributes": [
3369
4220
  {
3370
- "name": "disabled",
4221
+ "name": "disabled",
4222
+ "type": {
4223
+ "text": "boolean | undefined"
4224
+ },
4225
+ "description": "If true, prevents interaction with the option",
4226
+ "fieldName": "disabled"
4227
+ },
4228
+ {
4229
+ "name": "icon",
4230
+ "type": {
4231
+ "text": "SkfIcon['name'] | undefined"
4232
+ },
4233
+ "description": "If defined, set an icon",
4234
+ "fieldName": "icon"
4235
+ },
4236
+ {
4237
+ "name": "icon-color",
4238
+ "type": {
4239
+ "text": "SeverityFgColor | undefined"
4240
+ },
4241
+ "description": "If defined, sets provided color on the icon",
4242
+ "fieldName": "iconColor"
4243
+ },
4244
+ {
4245
+ "name": "selected",
4246
+ "type": {
4247
+ "text": "boolean | undefined"
4248
+ },
4249
+ "description": "If true, sets the option as selected",
4250
+ "fieldName": "selected"
4251
+ },
4252
+ {
4253
+ "name": "short-label",
4254
+ "type": {
4255
+ "text": "string | undefined"
4256
+ },
4257
+ "description": "If defined, sets a short label",
4258
+ "fieldName": "shortLabel"
4259
+ },
4260
+ {
4261
+ "name": "value",
4262
+ "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
4263
+ "fieldName": "value"
4264
+ }
4265
+ ],
4266
+ "superclass": {
4267
+ "name": "SkfElement",
4268
+ "package": "@internal/components/skf-element.js"
4269
+ },
4270
+ "tagName": "skf-select-option",
4271
+ "customElement": true
4272
+ }
4273
+ ],
4274
+ "exports": [
4275
+ {
4276
+ "kind": "js",
4277
+ "name": "SkfSelectOption",
4278
+ "declaration": {
4279
+ "name": "SkfSelectOption",
4280
+ "module": "src/components/select-option/select-option.component.ts"
4281
+ }
4282
+ }
4283
+ ]
4284
+ },
4285
+ {
4286
+ "kind": "javascript-module",
4287
+ "path": "src/components/select-option-group/select-option-group.component.ts",
4288
+ "declarations": [
4289
+ {
4290
+ "kind": "class",
4291
+ "description": "The `<skf-select-option-group>` is a component that groups select-options",
4292
+ "name": "SkfSelectOptionGroup",
4293
+ "slots": [
4294
+ {
4295
+ "description": "The component's placeholder content",
4296
+ "name": ""
4297
+ }
4298
+ ],
4299
+ "members": [
4300
+ {
4301
+ "kind": "field",
4302
+ "name": "label",
4303
+ "type": {
4304
+ "text": "string"
4305
+ },
4306
+ "default": "'Default label'",
4307
+ "attribute": "label",
4308
+ "reflects": true
4309
+ }
4310
+ ],
4311
+ "attributes": [
4312
+ {
4313
+ "name": "label",
4314
+ "type": {
4315
+ "text": "string"
4316
+ },
4317
+ "default": "'Default label'",
4318
+ "fieldName": "label"
4319
+ }
4320
+ ],
4321
+ "superclass": {
4322
+ "name": "SkfElement",
4323
+ "package": "@internal/components/skf-element"
4324
+ },
4325
+ "tagName": "skf-select-option-group",
4326
+ "customElement": true
4327
+ }
4328
+ ],
4329
+ "exports": [
4330
+ {
4331
+ "kind": "js",
4332
+ "name": "SkfSelectOptionGroup",
4333
+ "declaration": {
4334
+ "name": "SkfSelectOptionGroup",
4335
+ "module": "src/components/select-option-group/select-option-group.component.ts"
4336
+ }
4337
+ }
4338
+ ]
4339
+ },
4340
+ {
4341
+ "kind": "javascript-module",
4342
+ "path": "src/components/stepper/stepper.component.ts",
4343
+ "declarations": [
4344
+ {
4345
+ "kind": "class",
4346
+ "description": "The `<skf-stepper>` is a component that displays a list of actions or options.",
4347
+ "name": "SkfStepper",
4348
+ "slots": [
4349
+ {
4350
+ "description": "One or more `<skf-stepper-item>`",
4351
+ "name": ""
4352
+ }
4353
+ ],
4354
+ "members": [
4355
+ {
4356
+ "kind": "field",
4357
+ "name": "activeIndex",
3371
4358
  "type": {
3372
- "text": "boolean | undefined"
4359
+ "text": "number"
3373
4360
  },
3374
- "description": "If true, prevents interaction with the option",
3375
- "fieldName": "disabled"
4361
+ "default": "-1",
4362
+ "description": "Sets the active item",
4363
+ "attribute": "activeIndex"
3376
4364
  },
3377
4365
  {
3378
- "name": "icon",
4366
+ "kind": "field",
4367
+ "name": "linear",
3379
4368
  "type": {
3380
- "text": "SkfIcon['name'] | undefined"
4369
+ "text": "boolean"
3381
4370
  },
3382
- "description": "If defined, set an icon",
3383
- "fieldName": "icon"
4371
+ "default": "false",
4372
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
4373
+ "attribute": "linear"
3384
4374
  },
3385
4375
  {
3386
- "name": "icon-color",
3387
- "type": {
3388
- "text": "SeverityFgColor | undefined"
3389
- },
3390
- "description": "If defined, sets provided color on the icon",
3391
- "fieldName": "iconColor"
3392
- },
4376
+ "kind": "field",
4377
+ "name": "_handleSelected",
4378
+ "privacy": "private"
4379
+ }
4380
+ ],
4381
+ "events": [
3393
4382
  {
3394
- "name": "selected",
4383
+ "description": "Dispatched when the stepper item is selected",
4384
+ "name": "skf-stepper-item-select"
4385
+ }
4386
+ ],
4387
+ "attributes": [
4388
+ {
4389
+ "name": "activeIndex",
3395
4390
  "type": {
3396
- "text": "boolean | undefined"
4391
+ "text": "number"
3397
4392
  },
3398
- "description": "If true, sets the option as selected",
3399
- "fieldName": "selected"
4393
+ "default": "-1",
4394
+ "description": "Sets the active item",
4395
+ "fieldName": "activeIndex"
3400
4396
  },
3401
4397
  {
3402
- "name": "short-label",
4398
+ "name": "linear",
3403
4399
  "type": {
3404
- "text": "string | undefined"
4400
+ "text": "boolean"
3405
4401
  },
3406
- "description": "If defined, sets a short label",
3407
- "fieldName": "shortLabel"
3408
- },
3409
- {
3410
- "name": "value",
3411
- "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
3412
- "fieldName": "value"
4402
+ "default": "false",
4403
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
4404
+ "fieldName": "linear"
3413
4405
  }
3414
4406
  ],
3415
4407
  "superclass": {
3416
4408
  "name": "SkfElement",
3417
- "package": "@internal/components/skf-element.js"
4409
+ "package": "@internal/components/skf-element"
3418
4410
  },
3419
- "tagName": "skf-select-option",
4411
+ "tagName": "skf-stepper",
3420
4412
  "customElement": true
3421
4413
  }
3422
4414
  ],
3423
4415
  "exports": [
3424
4416
  {
3425
4417
  "kind": "js",
3426
- "name": "SkfSelectOption",
4418
+ "name": "SkfStepper",
3427
4419
  "declaration": {
3428
- "name": "SkfSelectOption",
3429
- "module": "src/components/select-option/select-option.component.ts"
4420
+ "name": "SkfStepper",
4421
+ "module": "src/components/stepper/stepper.component.ts"
3430
4422
  }
3431
4423
  }
3432
4424
  ]
3433
4425
  },
3434
4426
  {
3435
4427
  "kind": "javascript-module",
3436
- "path": "src/components/select-option-group/select-option-group.component.ts",
4428
+ "path": "src/components/stepper-item/stepper-item.component.ts",
3437
4429
  "declarations": [
3438
4430
  {
3439
4431
  "kind": "class",
3440
- "description": "The `<skf-select-option-group>` is a component that groups select-options",
3441
- "name": "SkfSelectOptionGroup",
4432
+ "description": "The `<skf-stepper-item>` is used in conjunction with the `<skf-stepper>` component",
4433
+ "name": "SkfStepperItem",
3442
4434
  "slots": [
3443
4435
  {
3444
- "description": "The component's placeholder content",
4436
+ "description": "Label of the stepper item",
3445
4437
  "name": ""
3446
4438
  }
3447
4439
  ],
3448
4440
  "members": [
3449
4441
  {
3450
4442
  "kind": "field",
3451
- "name": "label",
4443
+ "name": "#muteEvents",
4444
+ "privacy": "private",
3452
4445
  "type": {
3453
- "text": "string"
4446
+ "text": "boolean"
3454
4447
  },
3455
- "default": "'Default label'",
3456
- "attribute": "label",
4448
+ "default": "false"
4449
+ },
4450
+ {
4451
+ "kind": "field",
4452
+ "name": "#triggerActiveIndexUpdate",
4453
+ "privacy": "private",
4454
+ "type": {
4455
+ "text": "boolean"
4456
+ },
4457
+ "default": "false"
4458
+ },
4459
+ {
4460
+ "kind": "field",
4461
+ "name": "state",
4462
+ "type": {
4463
+ "text": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
4464
+ },
4465
+ "description": "If defined, gives the supplied appearance",
4466
+ "attribute": "state",
3457
4467
  "reflects": true
4468
+ },
4469
+ {
4470
+ "kind": "field",
4471
+ "name": "completed",
4472
+ "type": {
4473
+ "text": "boolean"
4474
+ },
4475
+ "default": "false",
4476
+ "description": "If true, item marked as completed",
4477
+ "attribute": "completed"
4478
+ },
4479
+ {
4480
+ "kind": "field",
4481
+ "name": "_setInternalState"
4482
+ },
4483
+ {
4484
+ "kind": "field",
4485
+ "name": "role",
4486
+ "type": {
4487
+ "text": "string"
4488
+ },
4489
+ "default": "'listitem'"
4490
+ }
4491
+ ],
4492
+ "events": [
4493
+ {
4494
+ "description": "Dispatched when the stepper item is selected",
4495
+ "name": "skf-stepper-item-select"
3458
4496
  }
3459
4497
  ],
3460
4498
  "attributes": [
3461
4499
  {
3462
- "name": "label",
4500
+ "name": "state",
3463
4501
  "type": {
3464
- "text": "string"
4502
+ "text": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
3465
4503
  },
3466
- "default": "'Default label'",
3467
- "fieldName": "label"
4504
+ "description": "If defined, gives the supplied appearance",
4505
+ "fieldName": "state"
4506
+ },
4507
+ {
4508
+ "name": "completed",
4509
+ "type": {
4510
+ "text": "boolean"
4511
+ },
4512
+ "default": "false",
4513
+ "description": "If true, item marked as completed",
4514
+ "fieldName": "completed"
3468
4515
  }
3469
4516
  ],
3470
4517
  "superclass": {
3471
4518
  "name": "SkfElement",
3472
4519
  "package": "@internal/components/skf-element"
3473
4520
  },
3474
- "tagName": "skf-select-option-group",
4521
+ "tagName": "skf-stepper-item",
3475
4522
  "customElement": true
3476
4523
  }
3477
4524
  ],
3478
4525
  "exports": [
3479
4526
  {
3480
4527
  "kind": "js",
3481
- "name": "SkfSelectOptionGroup",
4528
+ "name": "SkfStepperItem",
3482
4529
  "declaration": {
3483
- "name": "SkfSelectOptionGroup",
3484
- "module": "src/components/select-option-group/select-option-group.component.ts"
4530
+ "name": "SkfStepperItem",
4531
+ "module": "src/components/stepper-item/stepper-item.component.ts"
3485
4532
  }
3486
4533
  }
3487
4534
  ]
@@ -4542,31 +5589,40 @@
4542
5589
  "members": [
4543
5590
  {
4544
5591
  "kind": "field",
4545
- "name": "closeable",
5592
+ "name": "debug",
4546
5593
  "type": {
4547
5594
  "text": "boolean"
4548
5595
  },
4549
5596
  "default": "false",
4550
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
4551
- "attribute": "closeable"
5597
+ "attribute": "debug"
4552
5598
  },
4553
5599
  {
4554
5600
  "kind": "field",
4555
- "name": "debug",
5601
+ "name": "icon",
4556
5602
  "type": {
4557
- "text": "boolean"
5603
+ "text": "SkfAlert['icon'] | undefined"
5604
+ },
5605
+ "description": "If defined, displays leading icon",
5606
+ "attribute": "icon"
5607
+ },
5608
+ {
5609
+ "kind": "field",
5610
+ "name": "persistent",
5611
+ "type": {
5612
+ "text": "SkfAlert['persistent']"
4558
5613
  },
4559
5614
  "default": "false",
4560
- "attribute": "debug"
5615
+ "description": "If true, renders with an close button and sets aria-role to `status`",
5616
+ "attribute": "persistent"
4561
5617
  },
4562
5618
  {
4563
5619
  "kind": "field",
4564
5620
  "name": "severity",
4565
5621
  "type": {
4566
- "text": "'info' | 'success' | 'warning' | 'error'"
5622
+ "text": "SkfAlert['severity']"
4567
5623
  },
4568
5624
  "default": "'info'",
4569
- "description": "Severity of the toast.",
5625
+ "description": "If defined, gives the supplied appearance",
4570
5626
  "attribute": "severity"
4571
5627
  },
4572
5628
  {
@@ -4591,29 +5647,37 @@
4591
5647
  ],
4592
5648
  "attributes": [
4593
5649
  {
4594
- "name": "closeable",
5650
+ "name": "debug",
4595
5651
  "type": {
4596
5652
  "text": "boolean"
4597
5653
  },
4598
5654
  "default": "false",
4599
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
4600
- "fieldName": "closeable"
5655
+ "fieldName": "debug"
4601
5656
  },
4602
5657
  {
4603
- "name": "debug",
5658
+ "name": "icon",
4604
5659
  "type": {
4605
- "text": "boolean"
5660
+ "text": "SkfAlert['icon'] | undefined"
5661
+ },
5662
+ "description": "If defined, displays leading icon",
5663
+ "fieldName": "icon"
5664
+ },
5665
+ {
5666
+ "name": "persistent",
5667
+ "type": {
5668
+ "text": "SkfAlert['persistent']"
4606
5669
  },
4607
5670
  "default": "false",
4608
- "fieldName": "debug"
5671
+ "description": "If true, renders with an close button and sets aria-role to `status`",
5672
+ "fieldName": "persistent"
4609
5673
  },
4610
5674
  {
4611
5675
  "name": "severity",
4612
5676
  "type": {
4613
- "text": "'info' | 'success' | 'warning' | 'error'"
5677
+ "text": "SkfAlert['severity']"
4614
5678
  },
4615
5679
  "default": "'info'",
4616
- "description": "Severity of the toast.",
5680
+ "description": "If defined, gives the supplied appearance",
4617
5681
  "fieldName": "severity"
4618
5682
  },
4619
5683
  {
@@ -4669,7 +5733,7 @@
4669
5733
  "text": "boolean"
4670
5734
  },
4671
5735
  "privacy": "protected",
4672
- "default": "!!this.closeable"
5736
+ "default": "!!this.persistent"
4673
5737
  },
4674
5738
  {
4675
5739
  "kind": "field",
@@ -4749,20 +5813,6 @@
4749
5813
  "name": "parentAnimationDiv",
4750
5814
  "readonly": true
4751
5815
  },
4752
- {
4753
- "kind": "field",
4754
- "name": "closeable",
4755
- "type": {
4756
- "text": "boolean | undefined"
4757
- },
4758
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
4759
- "attribute": "closeable",
4760
- "reflects": true,
4761
- "inheritedFrom": {
4762
- "name": "SkfAlert",
4763
- "module": "src/components/alert/alert.component.ts"
4764
- }
4765
- },
4766
5816
  {
4767
5817
  "kind": "field",
4768
5818
  "name": "buttonLabel",
@@ -4790,6 +5840,20 @@
4790
5840
  "module": "src/components/alert/alert.component.ts"
4791
5841
  }
4792
5842
  },
5843
+ {
5844
+ "kind": "field",
5845
+ "name": "persistent",
5846
+ "type": {
5847
+ "text": "boolean | undefined"
5848
+ },
5849
+ "description": "If true, renders with an close button and sets aria-role to `status`",
5850
+ "attribute": "persistent",
5851
+ "reflects": true,
5852
+ "inheritedFrom": {
5853
+ "name": "SkfAlert",
5854
+ "module": "src/components/alert/alert.component.ts"
5855
+ }
5856
+ },
4793
5857
  {
4794
5858
  "kind": "field",
4795
5859
  "name": "severity",
@@ -4814,18 +5878,6 @@
4814
5878
  "default": "0",
4815
5879
  "fieldName": "timer"
4816
5880
  },
4817
- {
4818
- "name": "closeable",
4819
- "type": {
4820
- "text": "boolean | undefined"
4821
- },
4822
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
4823
- "fieldName": "closeable",
4824
- "inheritedFrom": {
4825
- "name": "SkfAlert",
4826
- "module": "src/components/alert/alert.component.ts"
4827
- }
4828
- },
4829
5881
  {
4830
5882
  "name": "button-label",
4831
5883
  "type": {
@@ -4851,6 +5903,18 @@
4851
5903
  "module": "src/components/alert/alert.component.ts"
4852
5904
  }
4853
5905
  },
5906
+ {
5907
+ "name": "persistent",
5908
+ "type": {
5909
+ "text": "boolean | undefined"
5910
+ },
5911
+ "description": "If true, renders with an close button and sets aria-role to `status`",
5912
+ "fieldName": "persistent",
5913
+ "inheritedFrom": {
5914
+ "name": "SkfAlert",
5915
+ "module": "src/components/alert/alert.component.ts"
5916
+ }
5917
+ },
4854
5918
  {
4855
5919
  "name": "severity",
4856
5920
  "type": {
@@ -4963,6 +6027,119 @@
4963
6027
  }
4964
6028
  }
4965
6029
  ]
6030
+ },
6031
+ {
6032
+ "kind": "javascript-module",
6033
+ "path": "src/components/tooltip/tooltip.component.ts",
6034
+ "declarations": [
6035
+ {
6036
+ "kind": "class",
6037
+ "description": "The `<skf-tooltip>` is a component that displays a list of actions or options.",
6038
+ "name": "SkfTooltip",
6039
+ "slots": [
6040
+ {
6041
+ "description": "The tooltip popover content",
6042
+ "name": ""
6043
+ }
6044
+ ],
6045
+ "members": [
6046
+ {
6047
+ "kind": "method",
6048
+ "name": "addEventListeners",
6049
+ "return": {
6050
+ "type": {
6051
+ "text": "void"
6052
+ }
6053
+ },
6054
+ "parameters": [
6055
+ {
6056
+ "name": "$element",
6057
+ "type": {
6058
+ "text": "HTMLElement | Element"
6059
+ }
6060
+ }
6061
+ ]
6062
+ },
6063
+ {
6064
+ "kind": "method",
6065
+ "name": "removeEventListeners",
6066
+ "return": {
6067
+ "type": {
6068
+ "text": "void"
6069
+ }
6070
+ },
6071
+ "parameters": [
6072
+ {
6073
+ "name": "$element",
6074
+ "type": {
6075
+ "text": "HTMLElement | Element"
6076
+ }
6077
+ }
6078
+ ]
6079
+ },
6080
+ {
6081
+ "kind": "field",
6082
+ "name": "offset",
6083
+ "type": {
6084
+ "text": "number"
6085
+ },
6086
+ "default": "8"
6087
+ },
6088
+ {
6089
+ "kind": "field",
6090
+ "name": "placement",
6091
+ "type": {
6092
+ "text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
6093
+ },
6094
+ "default": "'top'",
6095
+ "description": "The placement of the dropdown"
6096
+ },
6097
+ {
6098
+ "type": {
6099
+ "text": "boolean"
6100
+ },
6101
+ "description": "Whether the dropdown is open",
6102
+ "name": "isOpen",
6103
+ "default": "false",
6104
+ "kind": "field"
6105
+ },
6106
+ {
6107
+ "type": {
6108
+ "text": "string"
6109
+ },
6110
+ "description": "The id of the element the dropdown will be anchored to",
6111
+ "name": "anchor",
6112
+ "kind": "field"
6113
+ }
6114
+ ],
6115
+ "events": [
6116
+ {
6117
+ "description": "Fired when the dropdown is opened",
6118
+ "name": "open"
6119
+ },
6120
+ {
6121
+ "description": "Fired when the dropdown is closed",
6122
+ "name": "close"
6123
+ }
6124
+ ],
6125
+ "superclass": {
6126
+ "name": "SkfPopoverBase",
6127
+ "package": "@internal/base-classes/popover/popover.base.js"
6128
+ },
6129
+ "tagName": "skf-tooltip",
6130
+ "customElement": true
6131
+ }
6132
+ ],
6133
+ "exports": [
6134
+ {
6135
+ "kind": "js",
6136
+ "name": "SkfTooltip",
6137
+ "declaration": {
6138
+ "name": "SkfTooltip",
6139
+ "module": "src/components/tooltip/tooltip.component.ts"
6140
+ }
6141
+ }
6142
+ ]
4966
6143
  }
4967
6144
  ]
4968
6145
  }