@tylertech/forge 3.10.5 → 3.12.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 (257) hide show
  1. package/custom-elements.json +594 -226
  2. package/dist/app-bar/forge-app-bar.css +13 -5
  3. package/dist/button/forge-button.css +14 -6
  4. package/dist/checkbox/forge-checkbox.css +23 -17
  5. package/dist/chips/forge-chips.css +12 -4
  6. package/dist/field/forge-field.css +7 -5
  7. package/dist/floating-action-button/forge-floating-action-button.css +12 -6
  8. package/dist/forge.css +6 -1
  9. package/dist/icon-button/forge-icon-button.css +12 -4
  10. package/dist/lib.js +22 -22
  11. package/dist/lib.js.map +4 -4
  12. package/dist/list/forge-list.css +59 -3
  13. package/dist/radio/forge-radio.css +22 -12
  14. package/dist/skip-link/forge-skip-link.css +38 -32
  15. package/dist/state-layer/forge-state-layer.css +2 -0
  16. package/dist/switch/forge-switch.css +9 -5
  17. package/dist/table/forge-table.css +6 -1
  18. package/dist/vscode.html-custom-data.json +104 -79
  19. package/esm/accordion/accordion.d.ts +2 -0
  20. package/esm/accordion/accordion.js +2 -0
  21. package/esm/app-bar/app-bar/app-bar-adapter.js +2 -2
  22. package/esm/app-bar/app-bar/app-bar.d.ts +1 -1
  23. package/esm/app-bar/app-bar/app-bar.js +1 -1
  24. package/esm/app-bar/help-button/app-bar-help-button.d.ts +1 -1
  25. package/esm/app-bar/help-button/app-bar-help-button.js +1 -1
  26. package/esm/app-bar/menu-button/app-bar-menu-button.d.ts +1 -1
  27. package/esm/app-bar/menu-button/app-bar-menu-button.js +1 -1
  28. package/esm/app-bar/notification-button/app-bar-notification-button.d.ts +2 -0
  29. package/esm/app-bar/notification-button/app-bar-notification-button.js +2 -0
  30. package/esm/app-bar/profile-button/app-bar-profile-button-adapter.d.ts +2 -1
  31. package/esm/app-bar/profile-button/app-bar-profile-button-adapter.js +2 -0
  32. package/esm/app-bar/profile-button/app-bar-profile-button.d.ts +2 -0
  33. package/esm/app-bar/profile-button/app-bar-profile-button.js +2 -0
  34. package/esm/app-bar/search/app-bar-search.d.ts +2 -0
  35. package/esm/app-bar/search/app-bar-search.js +2 -0
  36. package/esm/autocomplete/autocomplete-core.js +16 -3
  37. package/esm/autocomplete/autocomplete.d.ts +2 -0
  38. package/esm/autocomplete/autocomplete.js +2 -0
  39. package/esm/avatar/avatar.d.ts +1 -1
  40. package/esm/avatar/avatar.js +1 -1
  41. package/esm/backdrop/backdrop.d.ts +2 -0
  42. package/esm/backdrop/backdrop.js +2 -0
  43. package/esm/badge/badge.d.ts +2 -0
  44. package/esm/badge/badge.js +2 -0
  45. package/esm/banner/banner.d.ts +1 -1
  46. package/esm/banner/banner.js +1 -1
  47. package/esm/button/base/base-button-adapter.js +2 -2
  48. package/esm/button/button.d.ts +1 -6
  49. package/esm/button/button.js +1 -6
  50. package/esm/button-area/button-area-adapter.js +2 -2
  51. package/esm/button-area/button-area.d.ts +1 -4
  52. package/esm/button-area/button-area.js +1 -4
  53. package/esm/button-toggle/button-toggle/button-toggle-adapter.js +2 -2
  54. package/esm/button-toggle/button-toggle/button-toggle.d.ts +2 -0
  55. package/esm/button-toggle/button-toggle/button-toggle.js +2 -0
  56. package/esm/button-toggle/button-toggle-group/button-toggle-group.d.ts +1 -1
  57. package/esm/button-toggle/button-toggle-group/button-toggle-group.js +1 -1
  58. package/esm/calendar/calendar-menu/calendar-menu.js +1 -1
  59. package/esm/calendar/calendar.d.ts +2 -0
  60. package/esm/calendar/calendar.js +3 -1
  61. package/esm/card/card.d.ts +2 -0
  62. package/esm/card/card.js +2 -0
  63. package/esm/chip-field/chip-field.d.ts +2 -0
  64. package/esm/chip-field/chip-field.js +2 -0
  65. package/esm/chips/chip/chip-adapter.d.ts +3 -0
  66. package/esm/chips/chip/chip-adapter.js +14 -4
  67. package/esm/chips/chip/chip-constants.d.ts +2 -0
  68. package/esm/chips/chip/chip-constants.js +2 -1
  69. package/esm/chips/chip/chip-core.d.ts +4 -0
  70. package/esm/chips/chip/chip-core.js +9 -0
  71. package/esm/chips/chip/chip.d.ts +6 -0
  72. package/esm/chips/chip/chip.js +10 -0
  73. package/esm/chips/chip-set/chip-set.d.ts +1 -1
  74. package/esm/chips/chip-set/chip-set.js +1 -1
  75. package/esm/circular-progress/circular-progress.d.ts +1 -2
  76. package/esm/circular-progress/circular-progress.js +1 -2
  77. package/esm/color-picker/color-picker.d.ts +2 -0
  78. package/esm/color-picker/color-picker.js +3 -1
  79. package/esm/core/utils/a11y-utils.js +17 -0
  80. package/esm/core/utils/utils.js +8 -2
  81. package/esm/date-picker/date-picker.d.ts +2 -0
  82. package/esm/date-picker/date-picker.js +2 -0
  83. package/esm/date-range-picker/date-range-picker.d.ts +2 -0
  84. package/esm/date-range-picker/date-range-picker.js +2 -0
  85. package/esm/deprecated/button/deprecated-button.js +3 -3
  86. package/esm/deprecated/icon-button/deprecated-icon-button.js +2 -2
  87. package/esm/dialog/dialog.d.ts +1 -1
  88. package/esm/dialog/dialog.js +1 -1
  89. package/esm/divider/divider.d.ts +1 -1
  90. package/esm/divider/divider.js +1 -1
  91. package/esm/drawer/base/base-drawer-adapter.d.ts +2 -0
  92. package/esm/drawer/base/base-drawer-adapter.js +3 -0
  93. package/esm/drawer/base/base-drawer-core.js +3 -0
  94. package/esm/drawer/drawer/drawer.d.ts +2 -0
  95. package/esm/drawer/drawer/drawer.js +3 -1
  96. package/esm/drawer/mini-drawer/mini-drawer.d.ts +2 -0
  97. package/esm/drawer/mini-drawer/mini-drawer.js +3 -1
  98. package/esm/drawer/modal-drawer/modal-drawer.d.ts +2 -0
  99. package/esm/drawer/modal-drawer/modal-drawer.js +3 -1
  100. package/esm/expansion-panel/expansion-panel.d.ts +1 -1
  101. package/esm/expansion-panel/expansion-panel.js +1 -1
  102. package/esm/field/field-adapter.js +2 -2
  103. package/esm/field/field-core.d.ts +3 -3
  104. package/esm/field/field.d.ts +1 -2
  105. package/esm/field/field.js +1 -2
  106. package/esm/file-picker/file-picker.d.ts +2 -3
  107. package/esm/file-picker/file-picker.js +2 -3
  108. package/esm/floating-action-button/floating-action-button.d.ts +1 -1
  109. package/esm/floating-action-button/floating-action-button.js +1 -1
  110. package/esm/focus-indicator/focus-indicator-constants.d.ts +1 -11
  111. package/esm/focus-indicator/focus-indicator-constants.js +2 -17
  112. package/esm/focus-indicator/focus-indicator.d.ts +53 -26
  113. package/esm/focus-indicator/focus-indicator.js +139 -62
  114. package/esm/focus-indicator/index.d.ts +0 -2
  115. package/esm/focus-indicator/index.js +0 -2
  116. package/esm/icon/icon.d.ts +1 -1
  117. package/esm/icon/icon.js +1 -1
  118. package/esm/icon-button/icon-button.d.ts +2 -0
  119. package/esm/icon-button/icon-button.js +2 -0
  120. package/esm/inline-message/inline-message.d.ts +1 -1
  121. package/esm/inline-message/inline-message.js +1 -1
  122. package/esm/keyboard-shortcut/keyboard-shortcut.d.ts +2 -0
  123. package/esm/keyboard-shortcut/keyboard-shortcut.js +2 -0
  124. package/esm/label/label.d.ts +1 -1
  125. package/esm/label/label.js +1 -1
  126. package/esm/label-value/label-value.d.ts +1 -1
  127. package/esm/label-value/label-value.js +1 -1
  128. package/esm/linear-progress/linear-progress.d.ts +1 -2
  129. package/esm/linear-progress/linear-progress.js +1 -2
  130. package/esm/list/list/list.d.ts +1 -1
  131. package/esm/list/list/list.js +2 -2
  132. package/esm/list/list-item/list-item-constants.js +1 -1
  133. package/esm/list/list-item/list-item-core.d.ts +2 -0
  134. package/esm/list/list-item/list-item-core.js +29 -6
  135. package/esm/list/list-item/list-item.d.ts +1 -0
  136. package/esm/list/list-item/list-item.js +2 -1
  137. package/esm/list-dropdown/list-dropdown-constants.d.ts +11 -1
  138. package/esm/list-dropdown/list-dropdown-constants.js +6 -1
  139. package/esm/list-dropdown/list-dropdown-utils.d.ts +3 -1
  140. package/esm/list-dropdown/list-dropdown-utils.js +69 -21
  141. package/esm/menu/menu-adapter.d.ts +2 -0
  142. package/esm/menu/menu-adapter.js +12 -8
  143. package/esm/menu/menu-constants.d.ts +1 -0
  144. package/esm/menu/menu-constants.js +3 -2
  145. package/esm/menu/menu-core.d.ts +5 -0
  146. package/esm/menu/menu-core.js +41 -2
  147. package/esm/menu/menu.d.ts +17 -0
  148. package/esm/menu/menu.js +15 -1
  149. package/esm/open-icon/open-icon.d.ts +2 -1
  150. package/esm/open-icon/open-icon.js +2 -1
  151. package/esm/overlay/overlay.d.ts +1 -2
  152. package/esm/overlay/overlay.js +1 -2
  153. package/esm/page-state/page-state.d.ts +2 -1
  154. package/esm/page-state/page-state.js +2 -1
  155. package/esm/paginator/paginator-core.d.ts +16 -0
  156. package/esm/paginator/paginator-core.js +29 -9
  157. package/esm/paginator/paginator.d.ts +38 -0
  158. package/esm/paginator/paginator.js +46 -0
  159. package/esm/popover/popover-adapter.js +1 -1
  160. package/esm/popover/popover-constants.d.ts +4 -0
  161. package/esm/popover/popover-constants.js +4 -2
  162. package/esm/popover/popover-core.d.ts +5 -1
  163. package/esm/popover/popover-core.js +13 -0
  164. package/esm/popover/popover.d.ts +6 -2
  165. package/esm/popover/popover.js +10 -2
  166. package/esm/profile-card/profile-card.d.ts +3 -0
  167. package/esm/profile-card/profile-card.js +3 -0
  168. package/esm/radio/radio/radio.d.ts +1 -2
  169. package/esm/radio/radio/radio.js +1 -2
  170. package/esm/scaffold/scaffold.d.ts +1 -1
  171. package/esm/scaffold/scaffold.js +1 -1
  172. package/esm/select/core/base-select-constants.d.ts +4 -0
  173. package/esm/select/core/base-select-core.d.ts +22 -2
  174. package/esm/select/core/base-select-core.js +217 -40
  175. package/esm/select/option/option.d.ts +2 -0
  176. package/esm/select/option/option.js +2 -0
  177. package/esm/select/option-group/option-group.d.ts +2 -0
  178. package/esm/select/option-group/option-group.js +2 -0
  179. package/esm/select/select/select-constants.d.ts +5 -0
  180. package/esm/select/select/select-constants.js +5 -2
  181. package/esm/select/select/select.d.ts +14 -2
  182. package/esm/select/select/select.js +23 -2
  183. package/esm/select/select-dropdown/select-dropdown.d.ts +2 -0
  184. package/esm/select/select-dropdown/select-dropdown.js +2 -0
  185. package/esm/skeleton/skeleton.d.ts +1 -1
  186. package/esm/skeleton/skeleton.js +1 -1
  187. package/esm/skip-link/skip-link.d.ts +1 -1
  188. package/esm/skip-link/skip-link.js +1 -1
  189. package/esm/slider/slider.d.ts +1 -1
  190. package/esm/slider/slider.js +1 -1
  191. package/esm/split-button/split-button.d.ts +1 -1
  192. package/esm/split-button/split-button.js +2 -2
  193. package/esm/split-view/split-view/split-view.d.ts +2 -0
  194. package/esm/split-view/split-view/split-view.js +2 -0
  195. package/esm/split-view/split-view-panel/split-view-panel.d.ts +2 -0
  196. package/esm/split-view/split-view-panel/split-view-panel.js +3 -1
  197. package/esm/stack/stack.d.ts +1 -8
  198. package/esm/stack/stack.js +1 -8
  199. package/esm/state-layer/state-layer.d.ts +1 -1
  200. package/esm/state-layer/state-layer.js +2 -2
  201. package/esm/stepper/step/step.d.ts +2 -0
  202. package/esm/stepper/step/step.js +3 -1
  203. package/esm/stepper/stepper/stepper.d.ts +2 -0
  204. package/esm/stepper/stepper/stepper.js +2 -0
  205. package/esm/table/table-adapter.d.ts +4 -4
  206. package/esm/table/table-adapter.js +4 -4
  207. package/esm/table/table-core.js +2 -2
  208. package/esm/table/table-utils.d.ts +2 -2
  209. package/esm/table/table-utils.js +25 -18
  210. package/esm/table/table.d.ts +3 -1
  211. package/esm/table/table.js +4 -1
  212. package/esm/tabs/tab/tab-adapter.js +2 -2
  213. package/esm/tabs/tab/tab.d.ts +2 -0
  214. package/esm/tabs/tab/tab.js +2 -0
  215. package/esm/tabs/tab-bar/tab-bar.d.ts +1 -1
  216. package/esm/tabs/tab-bar/tab-bar.js +1 -1
  217. package/esm/text-field/text-field-adapter.d.ts +6 -4
  218. package/esm/text-field/text-field-adapter.js +11 -4
  219. package/esm/text-field/text-field-core.d.ts +4 -0
  220. package/esm/text-field/text-field-core.js +13 -2
  221. package/esm/text-field/text-field.d.ts +1 -1
  222. package/esm/text-field/text-field.js +1 -1
  223. package/esm/time-picker/time-picker-adapter.js +1 -0
  224. package/esm/time-picker/time-picker-core.js +3 -3
  225. package/esm/time-picker/time-picker.d.ts +2 -0
  226. package/esm/time-picker/time-picker.js +2 -0
  227. package/esm/toast/toast-adapter.d.ts +20 -0
  228. package/esm/toast/toast-adapter.js +30 -0
  229. package/esm/toast/toast-core.d.ts +17 -0
  230. package/esm/toast/toast-core.js +66 -0
  231. package/esm/toast/toast.d.ts +9 -2
  232. package/esm/toast/toast.js +10 -1
  233. package/esm/toolbar/toolbar.d.ts +1 -3
  234. package/esm/toolbar/toolbar.js +1 -3
  235. package/esm/tooltip/tooltip-adapter.d.ts +6 -0
  236. package/esm/tooltip/tooltip-adapter.js +9 -0
  237. package/esm/tooltip/tooltip-constants.d.ts +1 -0
  238. package/esm/tooltip/tooltip-constants.js +2 -1
  239. package/esm/tooltip/tooltip-core.d.ts +20 -0
  240. package/esm/tooltip/tooltip-core.js +96 -2
  241. package/esm/tooltip/tooltip.d.ts +1 -1
  242. package/esm/tooltip/tooltip.js +2 -2
  243. package/esm/view-switcher/view/view.d.ts +2 -0
  244. package/esm/view-switcher/view/view.js +2 -0
  245. package/esm/view-switcher/view-switcher.d.ts +2 -0
  246. package/esm/view-switcher/view-switcher.js +2 -0
  247. package/package.json +4 -4
  248. package/sass/focus-indicator/focus-indicator.scss +1 -1
  249. package/sass/icon-button/forge-icon-button.scss +3 -3
  250. package/sass/list/forge-list.scss +6 -6
  251. package/sass/state-layer/_core.scss +2 -0
  252. package/sass/table/_core.scss +13 -1
  253. package/sass/tooltip/_core.scss +0 -2
  254. package/esm/focus-indicator/focus-indicator-adapter.d.ts +0 -29
  255. package/esm/focus-indicator/focus-indicator-adapter.js +0 -37
  256. package/esm/focus-indicator/focus-indicator-core.d.ts +0 -48
  257. package/esm/focus-indicator/focus-indicator-core.js +0 -129
@@ -47,6 +47,7 @@
47
47
  },
48
48
  "tagName": "forge-accordion",
49
49
  "customElement": true,
50
+ "summary": "Accordions wrap a collection of expansion panels to ensure that only one panel is expanded at a time.",
50
51
  "dependencies": [
51
52
  {
52
53
  "name": "forge-expansion-panel",
@@ -773,7 +774,8 @@
773
774
  "module": "/src/lib/list-dropdown/list-dropdown-aware"
774
775
  },
775
776
  "tagName": "forge-autocomplete",
776
- "customElement": true
777
+ "customElement": true,
778
+ "summary": "Autocomplete components provide real-time typeahead suggestions as users type in a text field. Use autocompletes to help users quickly find and select from a list of options, improving form usability and data accuracy."
777
779
  }
778
780
  ],
779
781
  "exports": [
@@ -947,7 +949,7 @@
947
949
  },
948
950
  "tagName": "forge-avatar",
949
951
  "customElement": true,
950
- "summary": "Avatars represent an entity via text or image.",
952
+ "summary": "Avatars represent an entity via text or image. Use avatars to visually represent users, objects, or identifiers in your application.",
951
953
  "cssClasses": [
952
954
  {
953
955
  "name": "forge-avatar",
@@ -1164,7 +1166,8 @@
1164
1166
  "module": "/src/lib/core/base/base-component"
1165
1167
  },
1166
1168
  "tagName": "forge-backdrop",
1167
- "customElement": true
1169
+ "customElement": true,
1170
+ "summary": "Backdrops provide a semi-transparent overlay behind modal content like dialogs and drawers. These are building blocks for creating modal experiences, not intended to be used directly."
1168
1171
  }
1169
1172
  ],
1170
1173
  "exports": [
@@ -1302,6 +1305,7 @@
1302
1305
  },
1303
1306
  "tagName": "forge-badge",
1304
1307
  "customElement": true,
1308
+ "summary": "Badges display small amounts of non-interactive information like counts, status indicators, or notifications.",
1305
1309
  "states": [
1306
1310
  {
1307
1311
  "name": "dot",
@@ -1496,7 +1500,7 @@
1496
1500
  },
1497
1501
  "tagName": "forge-banner",
1498
1502
  "customElement": true,
1499
- "summary": "Banners are used to inform users of important information, such as errors, warnings, or success messages.",
1503
+ "summary": "Banners are used to inform users of important information, such as errors, warnings, or success messages. Use banners for non-critical messages that require user attention but do not interrupt workflow.",
1500
1504
  "cssClasses": [
1501
1505
  {
1502
1506
  "name": "forge-banner",
@@ -2335,7 +2339,7 @@
2335
2339
  },
2336
2340
  "tagName": "forge-button",
2337
2341
  "customElement": true,
2338
- "summary": "Buttons represent actions that a user can take.",
2342
+ "summary": "Buttons are used when a user needs to take an action. They can be used to trigger an action, navigate to a new location, and can be styled with a variety of themes and variants.",
2339
2343
  "dependencies": [
2340
2344
  {
2341
2345
  "name": "forge-icon",
@@ -2494,7 +2498,7 @@
2494
2498
  },
2495
2499
  "tagName": "forge-button-area",
2496
2500
  "customElement": true,
2497
- "summary": "Button areas are used to create a clickable area that group related information and actions about a single subject."
2501
+ "summary": "Button areas are used to create clickable areas that group related information and actions about a single subject. The button area component wraps any arbitrary content with a `<button>` element to enable accessible, clickable interfaces including nested controls and other complex content."
2498
2502
  }
2499
2503
  ],
2500
2504
  "exports": [
@@ -3276,7 +3280,8 @@
3276
3280
  "module": "/src/lib/core/base/base-component"
3277
3281
  },
3278
3282
  "tagName": "forge-calendar",
3279
- "customElement": true
3283
+ "customElement": true,
3284
+ "summary": "A flexible calendar component for date selection with support for single dates, ranges, multiple selections, and extensive customization options."
3280
3285
  }
3281
3286
  ],
3282
3287
  "exports": [
@@ -3398,6 +3403,7 @@
3398
3403
  },
3399
3404
  "tagName": "forge-card",
3400
3405
  "customElement": true,
3406
+ "summary": "Cards group related content and actions together in a single container.",
3401
3407
  "states": [
3402
3408
  {
3403
3409
  "name": "raised",
@@ -4692,6 +4698,7 @@
4692
4698
  },
4693
4699
  "tagName": "forge-chip-field",
4694
4700
  "customElement": true,
4701
+ "summary": "A specialized input field component that allows users to create and manage a collection of chips representing text values or selections. Use a chip field when you want to allow users to input multiple discrete items, such as tags, categories, or selections from a predefined list. Prefer alternatives such as a select or autocomplete when dealing with a large number of options or when single selection is sufficient.",
4695
4702
  "slots": [
4696
4703
  {
4697
4704
  "description": "The default/unnamed slot for the field's input.",
@@ -4999,7 +5006,7 @@
4999
5006
  },
5000
5007
  "tagName": "forge-circular-progress",
5001
5008
  "customElement": true,
5002
- "summary": "Circular progress indicators display progress by animating along a circular track in a clockwise direction.",
5009
+ "summary": "Circular progress indicators display progress by animating along a circular track in a clockwise direction. They can be used to represent both determinate and indeterminate progress.",
5003
5010
  "globalConfigProperties": [
5004
5011
  {
5005
5012
  "name": "track",
@@ -5711,7 +5718,8 @@
5711
5718
  "module": "/src/lib/core/base/base-component"
5712
5719
  },
5713
5720
  "tagName": "forge-color-picker",
5714
- "customElement": true
5721
+ "customElement": true,
5722
+ "summary": "An interactive color selection component with support for multiple color formats (hex, RGB, HSV) and optional opacity control. Intended to be used either inline, or within a popover or dialog for selecting colors."
5715
5723
  }
5716
5724
  ],
5717
5725
  "exports": [
@@ -6321,7 +6329,8 @@
6321
6329
  "module": "/src/lib/date-picker/base/base-date-picker"
6322
6330
  },
6323
6331
  "tagName": "forge-date-picker",
6324
- "customElement": true
6332
+ "customElement": true,
6333
+ "summary": "A date input component with an integrated calendar popup for selecting single dates."
6325
6334
  }
6326
6335
  ],
6327
6336
  "exports": [
@@ -6749,6 +6758,7 @@
6749
6758
  },
6750
6759
  "tagName": "forge-date-range-picker",
6751
6760
  "customElement": true,
6761
+ "summary": "A date input component with integrated calendar popup for selecting date ranges with separate \"from\" and \"to\" date values.",
6752
6762
  "attributes": [
6753
6763
  {
6754
6764
  "type": {
@@ -7585,7 +7595,7 @@
7585
7595
  },
7586
7596
  "tagName": "forge-dialog",
7587
7597
  "customElement": true,
7588
- "summary": "Dialogs are temporary UI elements that are used to display information, ask for input, or confirm actions.",
7598
+ "summary": "Dialogs are temporary UI elements that are used to display information, ask for input, or confirm actions. Dialogs can be modal or non-modal.",
7589
7599
  "dependencies": [
7590
7600
  {
7591
7601
  "name": "forge-backdrop",
@@ -7789,7 +7799,7 @@
7789
7799
  },
7790
7800
  "tagName": "forge-divider",
7791
7801
  "customElement": true,
7792
- "summary": "Divider is used to separate elements.",
7802
+ "summary": "Dividers are used to separate elements with a thin line, either vertically or horizontally.",
7793
7803
  "cssClasses": [
7794
7804
  {
7795
7805
  "name": "forge-divider",
@@ -7847,7 +7857,7 @@
7847
7857
  "name": ""
7848
7858
  },
7849
7859
  {
7850
- "description": "The header of the panel.",
7860
+ "description": "The header of the panel. This is deprecated, prefer using the trigger property instead, or manually associating a button with the panel.",
7851
7861
  "name": "header"
7852
7862
  }
7853
7863
  ],
@@ -8630,7 +8640,6 @@
8630
8640
  },
8631
8641
  "tagName": "forge-field",
8632
8642
  "customElement": true,
8633
- "summary": "The Forge Field component is a basic component that handles the layout and theming of\nform elements that can include a label, various states, and a border around an input area.",
8634
8643
  "globalConfigProperties": [
8635
8644
  {
8636
8645
  "name": "labelPosition",
@@ -8949,7 +8958,7 @@
8949
8958
  },
8950
8959
  "tagName": "forge-file-picker",
8951
8960
  "customElement": true,
8952
- "summary": "The file-picker component allows for a user to upload files of their own to the system. The component provides a slot for a\nbutton, as well as drag-and-drop functionality to launch the system file chooser dialog. There are visual queues to let the\nuser know when files they are dragging can be dropped, as well as events that are relayed to the developer to handle files\nthat are legal and/or illegal based on the parameters set on the component.\n\nThe expectation of this component is that it will be used as a familiar element on the page that will let users upload files,\nwhile providing that visual and functional consistency."
8961
+ "summary": "The file picker component allows for a user to upload files of their own to the system. The component provides a slot for a\nbutton, as well as drag-and-drop functionality to launch the system file chooser dialog. There are visual cues to let the\nuser know when files they are dragging can be dropped, as well as events that are relayed to the developer to handle files\nthat are legal and/or illegal based on the parameters set on the component.\n\nThe expectation of this component is that it will be used as a familiar element on the page that will let users upload files,\nwhile providing that visual and functional consistency."
8953
8962
  }
8954
8963
  ],
8955
8964
  "exports": [
@@ -9388,7 +9397,7 @@
9388
9397
  },
9389
9398
  "tagName": "forge-fab",
9390
9399
  "customElement": true,
9391
- "summary": "Floating action buttons are used to represent the most important action on a page.",
9400
+ "summary": "Floating action buttons are used to represent the most important action on a page. They are typically used in mobile applications, and are positioned above other content in a way that draws attention to them.",
9392
9401
  "dependencies": [
9393
9402
  {
9394
9403
  "name": "forge-focus-indicator",
@@ -9442,6 +9451,14 @@
9442
9451
  "kind": "javascript-module",
9443
9452
  "path": "src/lib/focus-indicator/focus-indicator.ts",
9444
9453
  "declarations": [
9454
+ {
9455
+ "kind": "variable",
9456
+ "name": "FOCUS_INDICATOR_TAG_NAME",
9457
+ "type": {
9458
+ "text": "keyof HTMLElementTagNameMap"
9459
+ },
9460
+ "default": "'forge-focus-indicator'"
9461
+ },
9445
9462
  {
9446
9463
  "kind": "class",
9447
9464
  "description": "",
@@ -9518,20 +9535,23 @@
9518
9535
  {
9519
9536
  "kind": "field",
9520
9537
  "name": "targetElement",
9521
- "type": {
9522
- "text": "HTMLElement"
9523
- },
9524
9538
  "privacy": "public",
9525
- "description": "The element to attach the focus indicator to."
9539
+ "description": "The element to attach the focus indicator to.",
9540
+ "default": "undefined",
9541
+ "type": {
9542
+ "text": "HTMLElement | undefined"
9543
+ }
9526
9544
  },
9527
9545
  {
9528
9546
  "kind": "field",
9529
9547
  "name": "target",
9530
9548
  "type": {
9531
- "text": "string"
9549
+ "text": "string | null"
9532
9550
  },
9533
9551
  "privacy": "public",
9534
- "description": "The id of the element to attach the focus indicator to."
9552
+ "default": "null",
9553
+ "description": "The id of the element to attach the focus indicator to.",
9554
+ "attribute": "target"
9535
9555
  },
9536
9556
  {
9537
9557
  "kind": "field",
@@ -9540,8 +9560,9 @@
9540
9560
  "text": "boolean"
9541
9561
  },
9542
9562
  "privacy": "public",
9563
+ "default": "false",
9543
9564
  "description": "Controls whether the indicator is active.",
9544
- "default": "false"
9565
+ "attribute": "active"
9545
9566
  },
9546
9567
  {
9547
9568
  "kind": "field",
@@ -9550,8 +9571,9 @@
9550
9571
  "text": "boolean"
9551
9572
  },
9552
9573
  "privacy": "public",
9574
+ "default": "false",
9553
9575
  "description": "Controls whether the indicator renders inward.",
9554
- "default": "false"
9576
+ "attribute": "inward"
9555
9577
  },
9556
9578
  {
9557
9579
  "kind": "field",
@@ -9560,8 +9582,9 @@
9560
9582
  "text": "boolean"
9561
9583
  },
9562
9584
  "privacy": "public",
9585
+ "default": "false",
9563
9586
  "description": "Controls whether the indicator renders circular.",
9564
- "default": "false"
9587
+ "attribute": "circular"
9565
9588
  },
9566
9589
  {
9567
9590
  "kind": "field",
@@ -9570,8 +9593,9 @@
9570
9593
  "text": "boolean"
9571
9594
  },
9572
9595
  "privacy": "public",
9596
+ "default": "false",
9573
9597
  "description": "Controls whether the indicator renders when the target element matches `:focus` instead of `:focus-visible`.",
9574
- "default": "false"
9598
+ "attribute": "allow-focus"
9575
9599
  },
9576
9600
  {
9577
9601
  "kind": "field",
@@ -9580,66 +9604,160 @@
9580
9604
  "text": "FocusIndicatorFocusMode"
9581
9605
  },
9582
9606
  "privacy": "public",
9583
- "description": "The focus mode to use.",
9584
- "default": "\"focusin\""
9607
+ "default": "'focusin'",
9608
+ "description": "The focus mode to use. Valid values are `focusin` (default) and `focus`.",
9609
+ "attribute": "focus-mode"
9610
+ },
9611
+ {
9612
+ "kind": "field",
9613
+ "name": "#targetElement",
9614
+ "privacy": "private",
9615
+ "type": {
9616
+ "text": "HTMLElement | undefined"
9617
+ }
9618
+ },
9619
+ {
9620
+ "kind": "field",
9621
+ "name": "#internals",
9622
+ "privacy": "private",
9623
+ "type": {
9624
+ "text": "ElementInternals"
9625
+ }
9626
+ },
9627
+ {
9628
+ "kind": "method",
9629
+ "name": "#detachTargetListeners",
9630
+ "privacy": "private",
9631
+ "return": {
9632
+ "type": {
9633
+ "text": "void"
9634
+ }
9635
+ }
9636
+ },
9637
+ {
9638
+ "kind": "method",
9639
+ "name": "#attachTargetListeners",
9640
+ "privacy": "private",
9641
+ "return": {
9642
+ "type": {
9643
+ "text": "void"
9644
+ }
9645
+ }
9646
+ },
9647
+ {
9648
+ "kind": "field",
9649
+ "name": "#handleTargetInteraction",
9650
+ "privacy": "private"
9651
+ },
9652
+ {
9653
+ "kind": "method",
9654
+ "name": "#isActive",
9655
+ "privacy": "private",
9656
+ "return": {
9657
+ "type": {
9658
+ "text": "boolean"
9659
+ }
9660
+ },
9661
+ "parameters": [
9662
+ {
9663
+ "name": "selector",
9664
+ "type": {
9665
+ "text": "string"
9666
+ }
9667
+ },
9668
+ {
9669
+ "name": "el",
9670
+ "optional": true,
9671
+ "type": {
9672
+ "text": "HTMLElement | null"
9673
+ }
9674
+ }
9675
+ ]
9676
+ },
9677
+ {
9678
+ "kind": "method",
9679
+ "name": "#handleTargetChange",
9680
+ "privacy": "private",
9681
+ "return": {
9682
+ "type": {
9683
+ "text": "void"
9684
+ }
9685
+ }
9686
+ },
9687
+ {
9688
+ "kind": "method",
9689
+ "name": "#handleActiveChange",
9690
+ "privacy": "private",
9691
+ "return": {
9692
+ "type": {
9693
+ "text": "void"
9694
+ }
9695
+ }
9585
9696
  }
9586
9697
  ],
9587
9698
  "attributes": [
9588
9699
  {
9700
+ "name": "target",
9589
9701
  "type": {
9590
- "text": "string"
9702
+ "text": "string | null"
9591
9703
  },
9704
+ "default": "null",
9592
9705
  "description": "The id of the element to attach the focus indicator to.",
9593
- "name": "target"
9706
+ "fieldName": "target"
9594
9707
  },
9595
9708
  {
9709
+ "name": "active",
9596
9710
  "type": {
9597
9711
  "text": "boolean"
9598
9712
  },
9713
+ "default": "false",
9599
9714
  "description": "Controls whether the indicator is active.",
9600
- "name": "active",
9601
- "default": "false"
9715
+ "fieldName": "active"
9602
9716
  },
9603
9717
  {
9718
+ "name": "inward",
9604
9719
  "type": {
9605
9720
  "text": "boolean"
9606
9721
  },
9722
+ "default": "false",
9607
9723
  "description": "Controls whether the indicator renders inward.",
9608
- "name": "inward",
9609
- "default": "false"
9724
+ "fieldName": "inward"
9610
9725
  },
9611
9726
  {
9727
+ "name": "circular",
9612
9728
  "type": {
9613
9729
  "text": "boolean"
9614
9730
  },
9731
+ "default": "false",
9615
9732
  "description": "Controls whether the indicator renders circular.",
9616
- "name": "circular",
9617
- "default": "false"
9733
+ "fieldName": "circular"
9618
9734
  },
9619
9735
  {
9736
+ "name": "allow-focus",
9620
9737
  "type": {
9621
9738
  "text": "boolean"
9622
9739
  },
9740
+ "default": "false",
9623
9741
  "description": "Controls whether the indicator renders when the target element matches `:focus` instead of `:focus-visible`.",
9624
- "name": "allow-focus",
9625
- "default": "false"
9742
+ "fieldName": "allowFocus"
9626
9743
  },
9627
9744
  {
9745
+ "name": "focus-mode",
9628
9746
  "type": {
9629
9747
  "text": "FocusIndicatorFocusMode"
9630
9748
  },
9631
- "description": "The focus mode to use.",
9632
- "name": "focus-mode",
9633
- "default": "\"focusin\""
9749
+ "default": "'focusin'",
9750
+ "description": "The focus mode to use. Valid values are `focusin` (default) and `focus`.",
9751
+ "fieldName": "focusMode"
9634
9752
  }
9635
9753
  ],
9636
9754
  "superclass": {
9637
- "name": "BaseComponent",
9638
- "module": "/src/lib/core/base/base-component"
9755
+ "name": "BaseLitElement",
9756
+ "module": "/src/lib/core/base/base-lit-element"
9639
9757
  },
9640
9758
  "tagName": "forge-focus-indicator",
9641
9759
  "customElement": true,
9642
- "summary": "Renders a focus indicator when an attached element matches `:focus-visible`.",
9760
+ "summary": "Focus indicators show a \"focus ring\" around an attached element that matches `:focus-visible`. These are building block components used by other components to show focus state, and are not typically used directly.",
9643
9761
  "cssClasses": [
9644
9762
  {
9645
9763
  "name": "forge-focus-indicator",
@@ -9661,6 +9779,14 @@
9661
9779
  }
9662
9780
  ],
9663
9781
  "exports": [
9782
+ {
9783
+ "kind": "js",
9784
+ "name": "FOCUS_INDICATOR_TAG_NAME",
9785
+ "declaration": {
9786
+ "name": "FOCUS_INDICATOR_TAG_NAME",
9787
+ "module": "src/lib/focus-indicator/focus-indicator.ts"
9788
+ }
9789
+ },
9664
9790
  {
9665
9791
  "kind": "js",
9666
9792
  "name": "FocusIndicatorComponent",
@@ -10181,7 +10307,7 @@
10181
10307
  },
10182
10308
  "tagName": "forge-icon",
10183
10309
  "customElement": true,
10184
- "summary": "Icons are used to represent information visually",
10310
+ "summary": "Icons are used to represent information visually. The icon component is a wrapper around SVG icons that are registered in the icon registry.",
10185
10311
  "cssClasses": [
10186
10312
  {
10187
10313
  "name": "forge-icon",
@@ -10668,6 +10794,7 @@
10668
10794
  },
10669
10795
  "tagName": "forge-icon-button",
10670
10796
  "customElement": true,
10797
+ "summary": "Icon buttons are buttons that contain **only** an icon, and are used to represent actions or commands. Always provide an accessible label when using icon buttons.",
10671
10798
  "globalConfigProperties": [
10672
10799
  {
10673
10800
  "name": "variant",
@@ -10917,7 +11044,7 @@
10917
11044
  },
10918
11045
  "tagName": "forge-inline-message",
10919
11046
  "customElement": true,
10920
- "summary": "Inline messages are used to provide feedback to the user about a specific action or state.",
11047
+ "summary": "Inline messages are used to provide feedback to the user about a specific action or state. Use inline messages to communicate information such as errors, warnings, or success messages in a way that is contextual to the content on the page.",
10921
11048
  "cssClasses": [
10922
11049
  {
10923
11050
  "name": "forge-inline-message",
@@ -11152,7 +11279,8 @@
11152
11279
  "module": "/src/lib/core/base/base-component"
11153
11280
  },
11154
11281
  "tagName": "forge-keyboard-shortcut",
11155
- "customElement": true
11282
+ "customElement": true,
11283
+ "summary": "A utility component that listens for keyboard shortcut combinations and triggers callbacks or events when the specified key bindings are activated."
11156
11284
  }
11157
11285
  ],
11158
11286
  "exports": [
@@ -11330,7 +11458,7 @@
11330
11458
  },
11331
11459
  "tagName": "forge-label",
11332
11460
  "customElement": true,
11333
- "summary": "The Forge Label component is used to associate a text label with a compatible Forge component.",
11461
+ "summary": "The Label component is used to associate a text label with a compatible Forge component.",
11334
11462
  "cssClasses": [
11335
11463
  {
11336
11464
  "name": "forge-label",
@@ -11546,7 +11674,7 @@
11546
11674
  },
11547
11675
  "tagName": "forge-label-value",
11548
11676
  "customElement": true,
11549
- "summary": "Label-value pairs are used to display a label and a value in a compact format.",
11677
+ "summary": "Label values are used to display a label and value pair in a compact format with the proper typography and spacing styles applied.",
11550
11678
  "cssClasses": [
11551
11679
  {
11552
11680
  "name": "forge-label-value",
@@ -11738,7 +11866,7 @@
11738
11866
  },
11739
11867
  "tagName": "forge-linear-progress",
11740
11868
  "customElement": true,
11741
- "summary": "Linear progress indicators display progress by animating along a linear track in a horizontal direction."
11869
+ "summary": "Linear progress indicators display progress by animating along a linear track in a horizontal direction. They can be used to show determinate or indeterminate progress."
11742
11870
  }
11743
11871
  ],
11744
11872
  "exports": [
@@ -12494,6 +12622,17 @@
12494
12622
  "description": "Gets the currently active popup element when the dropdown is open.",
12495
12623
  "readonly": true
12496
12624
  },
12625
+ {
12626
+ "kind": "field",
12627
+ "name": "popupTarget",
12628
+ "type": {
12629
+ "text": "string | null"
12630
+ },
12631
+ "privacy": "public",
12632
+ "description": "Gets/sets the ID of the element to use as the popup anchor for positioning.\nWhen null or empty, the target element (button) is used for both interaction and positioning.\nThis is useful for cases like forge-list-item > button where the menu should be\nattached to the button for listeners but positioned relative to the list item.",
12633
+ "default": "null",
12634
+ "attribute": "popup-target"
12635
+ },
12497
12636
  {
12498
12637
  "kind": "method",
12499
12638
  "name": "propagateKeyEvent",
@@ -12728,6 +12867,36 @@
12728
12867
  }
12729
12868
  }
12730
12869
  ],
12870
+ "events": [
12871
+ {
12872
+ "type": {
12873
+ "text": "CustomEvent<IMenuSelectEventData>"
12874
+ },
12875
+ "description": "Dispatches when a menu option is selected.",
12876
+ "name": "forge-menu-select"
12877
+ },
12878
+ {
12879
+ "type": {
12880
+ "text": "CustomEvent<void>"
12881
+ },
12882
+ "description": "Dispatches when the menu is opened.",
12883
+ "name": "forge-menu-open"
12884
+ },
12885
+ {
12886
+ "type": {
12887
+ "text": "CustomEvent<void>"
12888
+ },
12889
+ "description": "Dispatches when the menu is closed.",
12890
+ "name": "forge-menu-close"
12891
+ },
12892
+ {
12893
+ "type": {
12894
+ "text": "CustomEvent<IMenuActiveChangeEventData>"
12895
+ },
12896
+ "description": "Dispatches when the active menu option changes.",
12897
+ "name": "forge-menu-active-change"
12898
+ }
12899
+ ],
12731
12900
  "attributes": [
12732
12901
  {
12733
12902
  "name": "open",
@@ -12799,6 +12968,15 @@
12799
12968
  "default": "\"click\"",
12800
12969
  "fieldName": "mode"
12801
12970
  },
12971
+ {
12972
+ "name": "popup-target",
12973
+ "type": {
12974
+ "text": "string | null"
12975
+ },
12976
+ "description": "Gets/sets the ID of the element to use as the popup anchor for positioning.\nWhen null or empty, the target element (button) is used for both interaction and positioning.\nThis is useful for cases like forge-list-item > button where the menu should be\nattached to the button for listeners but positioned relative to the list item.",
12977
+ "default": "null",
12978
+ "fieldName": "popupTarget"
12979
+ },
12802
12980
  {
12803
12981
  "name": "popup-classes",
12804
12982
  "type": {
@@ -12959,6 +13137,7 @@
12959
13137
  },
12960
13138
  "tagName": "forge-menu",
12961
13139
  "customElement": true,
13140
+ "summary": "Menus display a list of options or actions that users can select from a dropdown. Menus wrap button or list item elements to provide the trigger for displaying the menu options.",
12962
13141
  "dependencies": [
12963
13142
  {
12964
13143
  "name": "forge-popover",
@@ -13133,7 +13312,7 @@
13133
13312
  },
13134
13313
  "tagName": "forge-open-icon",
13135
13314
  "customElement": true,
13136
- "summary": "Open icons are used to indicate whether a section is open or closed."
13315
+ "summary": "Open icons are icons used to indicate whether a section is open or closed. They provide an animated transition between the two states to enhance the user experience."
13137
13316
  }
13138
13317
  ],
13139
13318
  "exports": [
@@ -13552,7 +13731,7 @@
13552
13731
  },
13553
13732
  "tagName": "forge-overlay",
13554
13733
  "customElement": true,
13555
- "summary": "Overlays are used to render content in an element that rendered above all content on the page,\nand positioned around a specified anchor element.",
13734
+ "summary": "Overlays are used to show content in an element that is rendered above all other content on the page, and positioned around a specified anchor element. This is a low-level building block component that does not provide any visual styles, but is used within other components such as popovers, and tooltips.",
13556
13735
  "globalConfigProperties": [
13557
13736
  {
13558
13737
  "name": "placement",
@@ -13704,6 +13883,7 @@
13704
13883
  },
13705
13884
  "tagName": "forge-page-state",
13706
13885
  "customElement": true,
13886
+ "summary": "Page states display full-height messages for empty states, errors, or other general information. They can be used as full page content, or within smaller containers and will adapt accordingly.",
13707
13887
  "cssClasses": [
13708
13888
  {
13709
13889
  "name": "forge-page-state",
@@ -13916,6 +14096,94 @@
13916
14096
  }
13917
14097
  ],
13918
14098
  "description": "Sets focus to the first focusable element within the paginator."
14099
+ },
14100
+ {
14101
+ "kind": "method",
14102
+ "name": "goToFirstPage",
14103
+ "privacy": "public",
14104
+ "return": {
14105
+ "type": {
14106
+ "text": "void"
14107
+ }
14108
+ },
14109
+ "description": "Navigates to the first page."
14110
+ },
14111
+ {
14112
+ "kind": "method",
14113
+ "name": "goToPreviousPage",
14114
+ "privacy": "public",
14115
+ "return": {
14116
+ "type": {
14117
+ "text": "void"
14118
+ }
14119
+ },
14120
+ "description": "Navigates to the previous page."
14121
+ },
14122
+ {
14123
+ "kind": "method",
14124
+ "name": "goToNextPage",
14125
+ "privacy": "public",
14126
+ "return": {
14127
+ "type": {
14128
+ "text": "void"
14129
+ }
14130
+ },
14131
+ "description": "Navigates to the next page."
14132
+ },
14133
+ {
14134
+ "kind": "method",
14135
+ "name": "goToLastPage",
14136
+ "privacy": "public",
14137
+ "return": {
14138
+ "type": {
14139
+ "text": "void"
14140
+ }
14141
+ },
14142
+ "description": "Navigates to the last page."
14143
+ },
14144
+ {
14145
+ "kind": "method",
14146
+ "name": "canGoToFirstPage",
14147
+ "privacy": "public",
14148
+ "return": {
14149
+ "type": {
14150
+ "text": ""
14151
+ }
14152
+ },
14153
+ "description": "Checks if navigation to the first page is possible."
14154
+ },
14155
+ {
14156
+ "kind": "method",
14157
+ "name": "canGoToPreviousPage",
14158
+ "privacy": "public",
14159
+ "return": {
14160
+ "type": {
14161
+ "text": ""
14162
+ }
14163
+ },
14164
+ "description": "Checks if navigation to the previous page is possible."
14165
+ },
14166
+ {
14167
+ "kind": "method",
14168
+ "name": "canGoToNextPage",
14169
+ "privacy": "public",
14170
+ "return": {
14171
+ "type": {
14172
+ "text": ""
14173
+ }
14174
+ },
14175
+ "description": "Checks if navigation to the next page is possible."
14176
+ },
14177
+ {
14178
+ "kind": "method",
14179
+ "name": "canGoToLastPage",
14180
+ "privacy": "public",
14181
+ "return": {
14182
+ "type": {
14183
+ "text": ""
14184
+ }
14185
+ },
14186
+ "description": "Checks if navigation to the last page is possible."
13919
14187
  }
13920
14188
  ],
13921
14189
  "events": [
@@ -14024,7 +14292,8 @@
14024
14292
  "module": "/src/lib/core/base/base-component"
14025
14293
  },
14026
14294
  "tagName": "forge-paginator",
14027
- "customElement": true
14295
+ "customElement": true,
14296
+ "summary": "Paginators provide navigation controls for dividing content across multiple pages. Typically used alongside data tables or lists."
14028
14297
  }
14029
14298
  ],
14030
14299
  "exports": [
@@ -14299,6 +14568,16 @@
14299
14568
  "description": "Enforces that this popover should be the only one open with the same unique value.",
14300
14569
  "default": "null"
14301
14570
  },
14571
+ {
14572
+ "kind": "field",
14573
+ "name": "anchorAccessibility",
14574
+ "type": {
14575
+ "text": "PopoverAnchorAccessibility"
14576
+ },
14577
+ "privacy": "public",
14578
+ "description": "Controls whether the popover manages accessibility attributes on the anchor element.",
14579
+ "default": "\"auto\""
14580
+ },
14302
14581
  {
14303
14582
  "kind": "method",
14304
14583
  "name": "hideAsync",
@@ -14634,6 +14913,14 @@
14634
14913
  "name": "distinct",
14635
14914
  "default": "null"
14636
14915
  },
14916
+ {
14917
+ "type": {
14918
+ "text": "string"
14919
+ },
14920
+ "description": "Controls whether the popover manages accessibility attributes on the anchor element.",
14921
+ "name": "anchor-accessibility",
14922
+ "default": "\"auto\""
14923
+ },
14637
14924
  {
14638
14925
  "type": {
14639
14926
  "text": "string | null"
@@ -14782,7 +15069,7 @@
14782
15069
  },
14783
15070
  "tagName": "forge-popover",
14784
15071
  "customElement": true,
14785
- "summary": "Popovers are used to render content in an element that is above all other content on the page.",
15072
+ "summary": "Popovers are used to show content in an element that is rendered above all other content on the page. Use popovers to display additional information or actions related to a specific element. Popovers are typically triggered by user interaction, such as clicking a button or hovering over an element.",
14786
15073
  "dependencies": [
14787
15074
  {
14788
15075
  "name": "forge-overlay",
@@ -14958,7 +15245,8 @@
14958
15245
  "module": "/src/lib/core/base/base-component"
14959
15246
  },
14960
15247
  "tagName": "forge-profile-card",
14961
- "customElement": true
15248
+ "customElement": true,
15249
+ "summary": "Profile cards display user information and actions in a structured card format. This component is deprecated prefer using the `<forge-user-profile>` component from the extended library instead."
14962
15250
  }
14963
15251
  ],
14964
15252
  "exports": [
@@ -15078,7 +15366,7 @@
15078
15366
  },
15079
15367
  "tagName": "forge-scaffold",
15080
15368
  "customElement": true,
15081
- "summary": "A scaffold provides a generic layout structure for your content using common named areas.",
15369
+ "summary": "The scaffold provides a generic layout structure for your content using common named areas. Use scaffolds for full page layouts or smaller sections within other elements where you want positioned content areas and scrollable body content.",
15082
15370
  "cssClasses": [
15083
15371
  {
15084
15372
  "name": "forge-scaffold",
@@ -15267,7 +15555,7 @@
15267
15555
  },
15268
15556
  "tagName": "forge-skeleton",
15269
15557
  "customElement": true,
15270
- "summary": "Skeleton is used to provide a placeholder for content that is loading.",
15558
+ "summary": "Skeletons are used to provide a placeholder for content that is loading. They have various styles to represent different types of content.",
15271
15559
  "cssClasses": [
15272
15560
  {
15273
15561
  "name": "forge-skeleton",
@@ -15604,7 +15892,7 @@
15604
15892
  },
15605
15893
  "tagName": "forge-skip-link",
15606
15894
  "customElement": true,
15607
- "summary": "The Forge Skip Link component is used to provide a way for users to skip repetitive content and navigate directly to a section of the page.",
15895
+ "summary": "The Forge Skip Link component is used to provide an accessible way for users to skip repetitive content and navigate directly to a section of the page. This is used for screen reader and keyboard users to improve the overall accessibility of web applications.",
15608
15896
  "dependencies": [
15609
15897
  {
15610
15898
  "name": "forge-focus-indicator",
@@ -16176,7 +16464,7 @@
16176
16464
  },
16177
16465
  "tagName": "forge-slider",
16178
16466
  "customElement": true,
16179
- "summary": "Sliders allow users to make selections from a range of values.",
16467
+ "summary": "Sliders allow users to make selections from a range of values. You can use sliders for selecting values from either a continuous or discrete range, and they can also be used for selecting a single value or a range of values.",
16180
16468
  "dependencies": [
16181
16469
  {
16182
16470
  "name": "forge-focus-indicator",
@@ -16332,7 +16620,7 @@
16332
16620
  },
16333
16621
  "tagName": "forge-split-button",
16334
16622
  "customElement": true,
16335
- "summary": "Split buttons are used for splitting an action into two parts.",
16623
+ "summary": "Split buttons are used for splitting an action into two parts, typically a primary action and a secondary action that opens a menu or performs an alternative action. Split buttons expect child Forge buttons as their content.",
16336
16624
  "dependencies": [
16337
16625
  {
16338
16626
  "name": "forge-button",
@@ -16524,7 +16812,7 @@
16524
16812
  },
16525
16813
  "tagName": "forge-stack",
16526
16814
  "customElement": true,
16527
- "summary": "The stack is a utility component that helps manage spacing and alignment of immediate children along a vertical or horizontal axis.",
16815
+ "summary": "The stack is a utility component that helps manage spacing and alignment of immediate children along a vertical or horizontal axis. Use stacks sparingly to avoid unnecessary DOM complexity, and prefer CSS flexbox or grid for more complex layouts.",
16528
16816
  "cssClasses": [
16529
16817
  {
16530
16818
  "name": "forge-stack",
@@ -16706,7 +16994,7 @@
16706
16994
  },
16707
16995
  "tagName": "forge-state-layer",
16708
16996
  "customElement": true,
16709
- "summary": "State layers show the interaction status of an element.",
16997
+ "summary": "State layers show the interaction status of an element. These layers are semi-transparent overlays that indicate hover, focus, press, and drag states. State layers are building blocks for components and should generally not be used directly, but part of other components that have interactive states.",
16710
16998
  "cssClasses": [
16711
16999
  {
16712
17000
  "name": "forge-state-layer",
@@ -17961,7 +18249,7 @@
17961
18249
  },
17962
18250
  "privacy": "public",
17963
18251
  "description": "Controls the visibility of the select column.",
17964
- "default": "true",
18252
+ "default": "false",
17965
18253
  "attribute": "select"
17966
18254
  },
17967
18255
  {
@@ -18233,7 +18521,7 @@
18233
18521
  "text": "boolean"
18234
18522
  },
18235
18523
  "description": "Controls the visibility of the select column.",
18236
- "default": "true",
18524
+ "default": "false",
18237
18525
  "fieldName": "select"
18238
18526
  },
18239
18527
  {
@@ -18375,6 +18663,7 @@
18375
18663
  },
18376
18664
  "tagName": "forge-table",
18377
18665
  "customElement": true,
18666
+ "summary": "Tables are used to display sets of data. They organize information into rows and columns, making it easier to read, compare, and analyze. The Forge table provides a configuration-based approach to building data tables with means for sorting, filtering, selecting, and customizing the display of tabular data.",
18378
18667
  "dependencies": [
18379
18668
  {
18380
18669
  "name": "forge-expansion-panel",
@@ -19065,7 +19354,7 @@
19065
19354
  },
19066
19355
  "tagName": "forge-text-field",
19067
19356
  "customElement": true,
19068
- "summary": "The Forge Text Field component wraps and styles an input or textarea element.",
19357
+ "summary": "The Forge Text Field component is an input field used to capture user text input. It requires a child `<input>` or `<textarea>` element to function properly, and an optional `<label>` element can be used to provide a label for the `<input>`.",
19069
19358
  "dependencies": [
19070
19359
  {
19071
19360
  "name": "forge-field",
@@ -19934,7 +20223,8 @@
19934
20223
  "module": "/src/lib/core/base/base-component"
19935
20224
  },
19936
20225
  "tagName": "forge-time-picker",
19937
- "customElement": true
20226
+ "customElement": true,
20227
+ "summary": "A time input component with integrated dropdown for selecting time values with support for various formats, masking, and validation options."
19938
20228
  }
19939
20229
  ],
19940
20230
  "exports": [
@@ -20227,7 +20517,7 @@
20227
20517
  },
20228
20518
  "tagName": "forge-toast",
20229
20519
  "customElement": true,
20230
- "summary": "Toasts are non-modal notifications that appear in response to user interactions.",
20520
+ "summary": "Toasts are non-modal notifications that appear in response to user interactions. Use toasts to provide brief messages about app processes at the bottom or top of the screen. They automatically disappear after a timeout, but can also include an action button and a dismiss button.",
20231
20521
  "dependencies": [
20232
20522
  {
20233
20523
  "name": "forge-overlay",
@@ -20460,7 +20750,7 @@
20460
20750
  },
20461
20751
  "tagName": "forge-toolbar",
20462
20752
  "customElement": true,
20463
- "summary": "Toolbars allow you to place titles and actions within a container and align them to the start, center, or end of the toolbar.\nThis component is useful as headers and footers within pages, dialogs, sections... etc. to ensure consistent layout and alignment.",
20753
+ "summary": "Toolbars allow you to place titles and actions within a container and align them to the start, center, or end of the toolbar. This component is useful as headers and footers within pages, dialogs, sections... etc. to ensure consistent layout and alignment.",
20464
20754
  "cssClasses": [
20465
20755
  {
20466
20756
  "name": "forge-toolbar",
@@ -20859,7 +21149,7 @@
20859
21149
  },
20860
21150
  "tagName": "forge-tooltip",
20861
21151
  "customElement": true,
20862
- "summary": "Tooltips display information related to an element when the user hovers over an element.",
21152
+ "summary": "Tooltips display information related to an element when the user focuses or hovers over an anchor element. Use tooltips to provide additional context or information about elements that may not be immediately apparent.",
20863
21153
  "dependencies": [
20864
21154
  {
20865
21155
  "name": "forge-overlay",
@@ -21033,6 +21323,7 @@
21033
21323
  },
21034
21324
  "tagName": "forge-view-switcher",
21035
21325
  "customElement": true,
21326
+ "summary": "A container component that manages switching between multiple child `<forge-view>` elements with configurable animations and programmatic navigation controls.",
21036
21327
  "dependencies": [
21037
21328
  {
21038
21329
  "name": "forge-view",
@@ -21265,6 +21556,7 @@
21265
21556
  },
21266
21557
  "tagName": "forge-app-bar",
21267
21558
  "customElement": true,
21559
+ "summary": "App bars are headers used to display branding, navigation, and actions at the top of an application. They typically contain a logo, title, and various action items.",
21268
21560
  "cssClasses": [
21269
21561
  {
21270
21562
  "name": "forge-app-bar",
@@ -21392,7 +21684,8 @@
21392
21684
  "module": "/src/lib/core/base/base-component"
21393
21685
  },
21394
21686
  "tagName": "forge-app-bar-help-button",
21395
- "customElement": true
21687
+ "customElement": true,
21688
+ "summary": "A help button component with a predefined help icon that displays a dropdown menu when clicked, designed for use in an app bar's end slot."
21396
21689
  }
21397
21690
  ],
21398
21691
  "exports": [
@@ -21487,7 +21780,8 @@
21487
21780
  "module": "/src/lib/core/base/base-component"
21488
21781
  },
21489
21782
  "tagName": "forge-app-bar-menu-button",
21490
- "customElement": true
21783
+ "customElement": true,
21784
+ "summary": "A menu toggle button component with a predefined hamburger menu icon, typically used in an app bar's start slot to open navigation menus."
21491
21785
  }
21492
21786
  ],
21493
21787
  "exports": [
@@ -21622,7 +21916,8 @@
21622
21916
  "module": "/src/lib/core/base/base-component"
21623
21917
  },
21624
21918
  "tagName": "forge-app-bar-notification-button",
21625
- "customElement": true
21919
+ "customElement": true,
21920
+ "summary": "A notification button component with a predefined notification bell icon that can display a badge with count or dot indicator, designed for use in app bars."
21626
21921
  }
21627
21922
  ],
21628
21923
  "exports": [
@@ -21890,7 +22185,8 @@
21890
22185
  "module": "/src/lib/core/base/base-component"
21891
22186
  },
21892
22187
  "tagName": "forge-app-bar-profile-button",
21893
- "customElement": true
22188
+ "customElement": true,
22189
+ "summary": "A user profile button component that displays an avatar and opens a profile card popup with user information and action buttons when clicked."
21894
22190
  }
21895
22191
  ],
21896
22192
  "exports": [
@@ -22070,7 +22366,8 @@
22070
22366
  "module": "/src/lib/core/base/base-component"
22071
22367
  },
22072
22368
  "tagName": "forge-app-bar-search",
22073
- "customElement": true
22369
+ "customElement": true,
22370
+ "summary": "A search input component with integrated search icon and styling optimized for use within app bars, supporting keyboard interaction and customizable actions."
22074
22371
  }
22075
22372
  ],
22076
22373
  "exports": [
@@ -22543,7 +22840,8 @@
22543
22840
  "module": "/src/lib/core/base/base-component"
22544
22841
  },
22545
22842
  "tagName": "forge-button-toggle",
22546
- "customElement": true
22843
+ "customElement": true,
22844
+ "summary": "Button toggles allow users to select from a group of choices with single or multiple selection."
22547
22845
  }
22548
22846
  ],
22549
22847
  "exports": [
@@ -23001,7 +23299,8 @@
23001
23299
  "module": "/src/lib/core/base/base-component"
23002
23300
  },
23003
23301
  "tagName": "forge-button-toggle-group",
23004
- "customElement": true
23302
+ "customElement": true,
23303
+ "summary": "Button toggle groups allow users to select one or more options from a set of button toggles."
23005
23304
  }
23006
23305
  ],
23007
23306
  "exports": [
@@ -23598,6 +23897,15 @@
23598
23897
  },
23599
23898
  "privacy": "public",
23600
23899
  "description": "The rel of the chip."
23900
+ },
23901
+ {
23902
+ "kind": "field",
23903
+ "name": "removeButtonLabel",
23904
+ "type": {
23905
+ "text": "string"
23906
+ },
23907
+ "privacy": "public",
23908
+ "description": "The custom aria-label for the remove button."
23601
23909
  }
23602
23910
  ],
23603
23911
  "events": [
@@ -23693,6 +24001,13 @@
23693
24001
  },
23694
24002
  "description": "The rel of the chip.",
23695
24003
  "name": "rel"
24004
+ },
24005
+ {
24006
+ "type": {
24007
+ "text": "string"
24008
+ },
24009
+ "description": "The custom aria-label for the remove button.",
24010
+ "name": "remove-button-label"
23696
24011
  }
23697
24012
  ],
23698
24013
  "superclass": {
@@ -23701,6 +24016,7 @@
23701
24016
  },
23702
24017
  "tagName": "forge-chip",
23703
24018
  "customElement": true,
24019
+ "summary": "A compact, interactive element that represents an entity, action, or attribute with support for selection, removal, and various styling options.",
23704
24020
  "cssClasses": [
23705
24021
  {
23706
24022
  "name": "forge-chip",
@@ -23972,7 +24288,7 @@
23972
24288
  },
23973
24289
  "tagName": "forge-chip-set",
23974
24290
  "customElement": true,
23975
- "summary": "Chips sets are used to group multiple chips together and orchestrate their behavior.",
24291
+ "summary": "Chip sets are used to group multiple chips together and orchestrate their behavior.",
23976
24292
  "cssFilePath": {
23977
24293
  "name": "chips/forge-chips.css",
23978
24294
  "description": ""
@@ -24424,7 +24740,7 @@
24424
24740
  "text": "IFocusIndicatorComponent"
24425
24741
  },
24426
24742
  "privacy": "private",
24427
- "default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
24743
+ "default": "getShadowElement(this, FOCUS_INDICATOR_TAG_NAME)"
24428
24744
  },
24429
24745
  {
24430
24746
  "kind": "field",
@@ -24671,7 +24987,7 @@
24671
24987
  "text": "IFocusIndicatorComponent"
24672
24988
  },
24673
24989
  "privacy": "private",
24674
- "default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
24990
+ "default": "getShadowElement(this, FOCUS_INDICATOR_TAG_NAME)"
24675
24991
  },
24676
24992
  {
24677
24993
  "kind": "field",
@@ -25083,6 +25399,7 @@
25083
25399
  },
25084
25400
  "tagName": "forge-drawer",
25085
25401
  "customElement": true,
25402
+ "summary": "A persistent side navigation drawer component that provides the ability to dismiss and open the drawer with smooth animations. Use for navigation or to display additional content alongside the main application content.",
25086
25403
  "cssClasses": [
25087
25404
  {
25088
25405
  "name": "forge-drawer",
@@ -25356,6 +25673,7 @@
25356
25673
  },
25357
25674
  "tagName": "forge-mini-drawer",
25358
25675
  "customElement": true,
25676
+ "summary": "A compact navigation drawer component that displays as a narrow rail and optionally expands on hover to show full content.",
25359
25677
  "events": [
25360
25678
  {
25361
25679
  "type": {
@@ -25528,6 +25846,7 @@
25528
25846
  },
25529
25847
  "tagName": "forge-modal-drawer",
25530
25848
  "customElement": true,
25849
+ "summary": "A modal navigation drawer component that slides in from the side with a backdrop overlay, typically used for temporary navigation panels. Prefer to use the dialog component with the preset options for sidesheet styles drawers.",
25531
25850
  "dependencies": [
25532
25851
  {
25533
25852
  "name": "forge-backdrop",
@@ -27044,7 +27363,7 @@
27044
27363
  },
27045
27364
  "tagName": "forge-list",
27046
27365
  "customElement": true,
27047
- "summary": "Lists are vertical groupings of related content.",
27366
+ "summary": "Lists are vertically oriented groups of related content that allow users to select or view one or more items from a set.",
27048
27367
  "cssClasses": [
27049
27368
  {
27050
27369
  "name": "forge-list",
@@ -27260,6 +27579,10 @@
27260
27579
  {
27261
27580
  "description": "The end element.",
27262
27581
  "name": "end"
27582
+ },
27583
+ {
27584
+ "description": "Additional content that appears below the main list item interactive area.",
27585
+ "name": "additional-content"
27263
27586
  }
27264
27587
  ],
27265
27588
  "members": [
@@ -29262,7 +29585,7 @@
29262
29585
  },
29263
29586
  "tagName": "forge-radio",
29264
29587
  "customElement": true,
29265
- "summary": "The Forge Radio component is used to create a form input where only one out of a set of\nvalues should be selected.",
29588
+ "summary": "The Forge Radio component is used to create a form input where only one out of a set of values should be selected.",
29266
29589
  "cssClasses": [
29267
29590
  {
29268
29591
  "name": "forge-radio",
@@ -29644,7 +29967,8 @@
29644
29967
  "module": "/src/lib/core/base/base-component"
29645
29968
  },
29646
29969
  "tagName": "forge-option",
29647
- "customElement": true
29970
+ "customElement": true,
29971
+ "summary": "Options represent individual selectable items within `<forge-select>` components."
29648
29972
  }
29649
29973
  ],
29650
29974
  "exports": [
@@ -29746,7 +30070,8 @@
29746
30070
  "module": "/src/lib/core/base/base-component"
29747
30071
  },
29748
30072
  "tagName": "forge-option-group",
29749
- "customElement": true
30073
+ "customElement": true,
30074
+ "summary": "Groups related options together with an optional label within select components."
29750
30075
  }
29751
30076
  ],
29752
30077
  "exports": [
@@ -30049,6 +30374,24 @@
30049
30374
  "module": "src/lib/core/mixins/form/with-form-associated.ts"
30050
30375
  }
30051
30376
  },
30377
+ {
30378
+ "kind": "field",
30379
+ "name": "showSelectAll",
30380
+ "type": {
30381
+ "text": "boolean"
30382
+ },
30383
+ "privacy": "public",
30384
+ "description": "Gets/sets whether to show the select all option when in multiple mode."
30385
+ },
30386
+ {
30387
+ "kind": "field",
30388
+ "name": "selectAllLabel",
30389
+ "type": {
30390
+ "text": "string"
30391
+ },
30392
+ "privacy": "public",
30393
+ "description": "Gets/sets the label for the select all option."
30394
+ },
30052
30395
  {
30053
30396
  "kind": "field",
30054
30397
  "name": "floatLabel",
@@ -30527,6 +30870,13 @@
30527
30870
  },
30528
30871
  "description": "Dispatched when the user selects a value.",
30529
30872
  "name": "change"
30873
+ },
30874
+ {
30875
+ "type": {
30876
+ "text": "CustomEvent<SelectSelectAllEventData>"
30877
+ },
30878
+ "description": "Dispatched when the select all option is toggled.",
30879
+ "name": "forge-select-all"
30530
30880
  }
30531
30881
  ],
30532
30882
  "attributes": [
@@ -30544,6 +30894,20 @@
30544
30894
  "description": "Controls the placeholder text.",
30545
30895
  "name": "placeholder"
30546
30896
  },
30897
+ {
30898
+ "type": {
30899
+ "text": "boolean"
30900
+ },
30901
+ "description": "Gets/sets whether to show the select all option when in multiple mode.",
30902
+ "name": "show-select-all"
30903
+ },
30904
+ {
30905
+ "type": {
30906
+ "text": "string"
30907
+ },
30908
+ "description": "Gets/sets the label for the select all option.",
30909
+ "name": "select-all-label"
30910
+ },
30547
30911
  {
30548
30912
  "type": {
30549
30913
  "text": "any"
@@ -30856,6 +31220,7 @@
30856
31220
  },
30857
31221
  "tagName": "forge-select",
30858
31222
  "customElement": true,
31223
+ "summary": "Select components are comboboxes that present a list of options to users for single or multi-selection.",
30859
31224
  "dependencies": [
30860
31225
  {
30861
31226
  "name": "forge-field",
@@ -31346,6 +31711,7 @@
31346
31711
  },
31347
31712
  "tagName": "forge-select-dropdown",
31348
31713
  "customElement": true,
31714
+ "summary": "A dropdown variant of the select component that renders options in a popover.",
31349
31715
  "attributes": [
31350
31716
  {
31351
31717
  "name": "value",
@@ -31741,7 +32107,8 @@
31741
32107
  "module": "/src/lib/core/base/base-component"
31742
32108
  },
31743
32109
  "tagName": "forge-split-view",
31744
- "customElement": true
32110
+ "customElement": true,
32111
+ "summary": "Split views create resizable panels that allow users to adjust the space between content areas."
31745
32112
  }
31746
32113
  ],
31747
32114
  "exports": [
@@ -32079,6 +32446,7 @@
32079
32446
  },
32080
32447
  "tagName": "forge-split-view-panel",
32081
32448
  "customElement": true,
32449
+ "summary": "Individual panels within split views that can be resized and collapsed.",
32082
32450
  "dependencies": [
32083
32451
  {
32084
32452
  "name": "forge-icon",
@@ -32477,7 +32845,8 @@
32477
32845
  "module": "/src/lib/core/base/base-component"
32478
32846
  },
32479
32847
  "tagName": "forge-step",
32480
- "customElement": true
32848
+ "customElement": true,
32849
+ "summary": "Individual steps within a stepper component that represent progress in a multi-step process."
32481
32850
  }
32482
32851
  ],
32483
32852
  "exports": [
@@ -32682,6 +33051,7 @@
32682
33051
  },
32683
33052
  "tagName": "forge-stepper",
32684
33053
  "customElement": true,
33054
+ "summary": "Steppers guide users through multi-step processes by breaking them into logical steps.",
32685
33055
  "dependencies": [
32686
33056
  {
32687
33057
  "name": "forge-step",
@@ -33024,6 +33394,7 @@
33024
33394
  },
33025
33395
  "tagName": "forge-tab",
33026
33396
  "customElement": true,
33397
+ "summary": "Tab components represent a single tab inside a tab bar.",
33027
33398
  "dependencies": [
33028
33399
  {
33029
33400
  "name": "forge-focus-indicator",
@@ -33267,7 +33638,7 @@
33267
33638
  },
33268
33639
  "tagName": "forge-tab-bar",
33269
33640
  "customElement": true,
33270
- "summary": "Tabs organize content across different screens and views.",
33641
+ "summary": "Tab bars organize a set of tabs, holding selection state and enabling navigation between different views or sections of content.",
33271
33642
  "dependencies": [
33272
33643
  {
33273
33644
  "name": "forge-tab",
@@ -33308,7 +33679,8 @@
33308
33679
  "module": "/src/lib/core/base/base-component"
33309
33680
  },
33310
33681
  "tagName": "forge-view",
33311
- "customElement": true
33682
+ "customElement": true,
33683
+ "summary": "Represents a single view content area within a view-switcher for organizing and displaying content sections."
33312
33684
  }
33313
33685
  ],
33314
33686
  "exports": [
@@ -33371,7 +33743,7 @@
33371
33743
  },
33372
33744
  "AccordionComponent": {
33373
33745
  "path": "src/lib/accordion/accordion.ts",
33374
- "lineNumber": 25
33746
+ "lineNumber": 27
33375
33747
  },
33376
33748
  "IAutocompleteAdapter": {
33377
33749
  "path": "src/lib/autocomplete/autocomplete-adapter.ts",
@@ -33459,7 +33831,7 @@
33459
33831
  },
33460
33832
  "AutocompleteComponent": {
33461
33833
  "path": "src/lib/autocomplete/autocomplete.ts",
33462
- "lineNumber": 71
33834
+ "lineNumber": 73
33463
33835
  },
33464
33836
  "IAvatarComponent": {
33465
33837
  "path": "src/lib/avatar/avatar.ts",
@@ -33475,7 +33847,7 @@
33475
33847
  },
33476
33848
  "BackdropComponent": {
33477
33849
  "path": "src/lib/backdrop/backdrop.ts",
33478
- "lineNumber": 42
33850
+ "lineNumber": 44
33479
33851
  },
33480
33852
  "BadgeComponentDelegateProps": {
33481
33853
  "path": "src/lib/badge/badge-component-delegate.ts",
@@ -33503,7 +33875,7 @@
33503
33875
  },
33504
33876
  "BadgeComponent": {
33505
33877
  "path": "src/lib/badge/badge.ts",
33506
- "lineNumber": 50
33878
+ "lineNumber": 52
33507
33879
  },
33508
33880
  "IBannerAdapter": {
33509
33881
  "path": "src/lib/banner/banner-adapter.ts",
@@ -33619,7 +33991,7 @@
33619
33991
  },
33620
33992
  "ButtonComponent": {
33621
33993
  "path": "src/lib/button/button.ts",
33622
- "lineNumber": 158
33994
+ "lineNumber": 153
33623
33995
  },
33624
33996
  "IButtonAreaAdapter": {
33625
33997
  "path": "src/lib/button-area/button-area-adapter.ts",
@@ -33643,7 +34015,7 @@
33643
34015
  },
33644
34016
  "ButtonAreaComponent": {
33645
34017
  "path": "src/lib/button-area/button-area.ts",
33646
- "lineNumber": 47
34018
+ "lineNumber": 44
33647
34019
  },
33648
34020
  "ICalendarAdapter": {
33649
34021
  "path": "src/lib/calendar/calendar-adapter.ts",
@@ -33779,7 +34151,7 @@
33779
34151
  },
33780
34152
  "CalendarComponent": {
33781
34153
  "path": "src/lib/calendar/calendar.ts",
33782
- "lineNumber": 148
34154
+ "lineNumber": 150
33783
34155
  },
33784
34156
  "ICardComponent": {
33785
34157
  "path": "src/lib/card/card.ts",
@@ -33787,7 +34159,7 @@
33787
34159
  },
33788
34160
  "CardComponent": {
33789
34161
  "path": "src/lib/card/card.ts",
33790
- "lineNumber": 46
34162
+ "lineNumber": 48
33791
34163
  },
33792
34164
  "ICheckboxAdapter": {
33793
34165
  "path": "src/lib/checkbox/checkbox-adapter.ts",
@@ -33887,7 +34259,7 @@
33887
34259
  },
33888
34260
  "ChipFieldComponent": {
33889
34261
  "path": "src/lib/chip-field/chip-field.ts",
33890
- "lineNumber": 41
34262
+ "lineNumber": 43
33891
34263
  },
33892
34264
  "ICircularProgressAdapter": {
33893
34265
  "path": "src/lib/circular-progress/circular-progress-adapter.ts",
@@ -33915,7 +34287,7 @@
33915
34287
  },
33916
34288
  "CircularProgressComponent": {
33917
34289
  "path": "src/lib/circular-progress/circular-progress.ts",
33918
- "lineNumber": 63
34290
+ "lineNumber": 62
33919
34291
  },
33920
34292
  "IColorPickerAdapter": {
33921
34293
  "path": "src/lib/color-picker/color-picker-adapter.ts",
@@ -33975,7 +34347,7 @@
33975
34347
  },
33976
34348
  "ColorPickerComponent": {
33977
34349
  "path": "src/lib/color-picker/color-picker.ts",
33978
- "lineNumber": 48
34350
+ "lineNumber": 50
33979
34351
  },
33980
34352
  "IDatePickerAdapter": {
33981
34353
  "path": "src/lib/date-picker/date-picker-adapter.ts",
@@ -34015,7 +34387,7 @@
34015
34387
  },
34016
34388
  "DatePickerComponent": {
34017
34389
  "path": "src/lib/date-picker/date-picker.ts",
34018
- "lineNumber": 41
34390
+ "lineNumber": 43
34019
34391
  },
34020
34392
  "IDateRangePickerAdapter": {
34021
34393
  "path": "src/lib/date-range-picker/date-range-picker-adapter.ts",
@@ -34067,7 +34439,7 @@
34067
34439
  },
34068
34440
  "DateRangePickerComponent": {
34069
34441
  "path": "src/lib/date-range-picker/date-range-picker.ts",
34070
- "lineNumber": 67
34442
+ "lineNumber": 69
34071
34443
  },
34072
34444
  "IDialogAdapter": {
34073
34445
  "path": "src/lib/dialog/dialog-adapter.ts",
@@ -34207,7 +34579,7 @@
34207
34579
  },
34208
34580
  "FieldComponent": {
34209
34581
  "path": "src/lib/field/field.ts",
34210
- "lineNumber": 183
34582
+ "lineNumber": 182
34211
34583
  },
34212
34584
  "IFilePickerAdapter": {
34213
34585
  "path": "src/lib/file-picker/file-picker-adapter.ts",
@@ -34251,7 +34623,7 @@
34251
34623
  },
34252
34624
  "FilePickerComponent": {
34253
34625
  "path": "src/lib/file-picker/file-picker.ts",
34254
- "lineNumber": 82
34626
+ "lineNumber": 81
34255
34627
  },
34256
34628
  "IFloatingActionButtonAdapter": {
34257
34629
  "path": "src/lib/floating-action-button/floating-action-button-adapter.ts",
@@ -34301,33 +34673,17 @@
34301
34673
  "path": "src/lib/floating-action-button/floating-action-button.ts",
34302
34674
  "lineNumber": 90
34303
34675
  },
34304
- "IFocusIndicatorAdapter": {
34305
- "path": "src/lib/focus-indicator/focus-indicator-adapter.ts",
34306
- "lineNumber": 4
34307
- },
34308
- "FocusIndicatorAdapter": {
34309
- "path": "src/lib/focus-indicator/focus-indicator-adapter.ts",
34310
- "lineNumber": 15
34311
- },
34312
34676
  "FocusIndicatorFocusMode": {
34313
34677
  "path": "src/lib/focus-indicator/focus-indicator-constants.ts",
34314
- "lineNumber": 28
34315
- },
34316
- "IFocusIndicatorCore": {
34317
- "path": "src/lib/focus-indicator/focus-indicator-core.ts",
34318
- "lineNumber": 4
34319
- },
34320
- "FocusIndicatorCore": {
34321
- "path": "src/lib/focus-indicator/focus-indicator-core.ts",
34322
- "lineNumber": 16
34678
+ "lineNumber": 10
34323
34679
  },
34324
34680
  "IFocusIndicatorComponent": {
34325
34681
  "path": "src/lib/focus-indicator/focus-indicator.ts",
34326
- "lineNumber": 10
34682
+ "lineNumber": 11
34327
34683
  },
34328
34684
  "FocusIndicatorComponent": {
34329
34685
  "path": "src/lib/focus-indicator/focus-indicator.ts",
34330
- "lineNumber": 69
34686
+ "lineNumber": 57
34331
34687
  },
34332
34688
  "IIconAdapter": {
34333
34689
  "path": "src/lib/icon/icon-adapter.ts",
@@ -34451,7 +34807,7 @@
34451
34807
  },
34452
34808
  "IconButtonComponent": {
34453
34809
  "path": "src/lib/icon-button/icon-button.ts",
34454
- "lineNumber": 115
34810
+ "lineNumber": 117
34455
34811
  },
34456
34812
  "LegacyInlineMessageThemes": {
34457
34813
  "path": "src/lib/inline-message/inline-message-constants.ts",
@@ -34499,7 +34855,7 @@
34499
34855
  },
34500
34856
  "KeyboardShortcutComponent": {
34501
34857
  "path": "src/lib/keyboard-shortcut/keyboard-shortcut.ts",
34502
- "lineNumber": 36
34858
+ "lineNumber": 38
34503
34859
  },
34504
34860
  "ILabelAdapter": {
34505
34861
  "path": "src/lib/label/label-adapter.ts",
@@ -34575,7 +34931,7 @@
34575
34931
  },
34576
34932
  "LinearProgressComponent": {
34577
34933
  "path": "src/lib/linear-progress/linear-progress.ts",
34578
- "lineNumber": 59
34934
+ "lineNumber": 58
34579
34935
  },
34580
34936
  "ICascadingListDropdownAwareCore": {
34581
34937
  "path": "src/lib/list-dropdown/cascading-list-dropdown-aware-core.ts",
@@ -34615,67 +34971,71 @@
34615
34971
  },
34616
34972
  "ListDropdownOptionBuilder": {
34617
34973
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34618
- "lineNumber": 38
34974
+ "lineNumber": 45
34619
34975
  },
34620
34976
  "ListDropdownHeaderBuilder": {
34621
34977
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34622
- "lineNumber": 39
34978
+ "lineNumber": 46
34623
34979
  },
34624
34980
  "ListDropdownFooterBuilder": {
34625
34981
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34626
- "lineNumber": 40
34982
+ "lineNumber": 47
34627
34983
  },
34628
34984
  "ListDropdownOptionGroupBuilder": {
34629
34985
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34630
- "lineNumber": 41
34986
+ "lineNumber": 48
34631
34987
  },
34632
34988
  "ListDropdownTransformCallback": {
34633
34989
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34634
- "lineNumber": 42
34990
+ "lineNumber": 49
34635
34991
  },
34636
34992
  "ListDropdownIconType": {
34637
34993
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34638
- "lineNumber": 43
34994
+ "lineNumber": 50
34639
34995
  },
34640
34996
  "IBaseListDropdownOption": {
34641
34997
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34642
- "lineNumber": 45
34998
+ "lineNumber": 52
34643
34999
  },
34644
35000
  "IListDropdownOption": {
34645
35001
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34646
- "lineNumber": 65
35002
+ "lineNumber": 72
34647
35003
  },
34648
35004
  "IListDropdownOptionGroup": {
34649
35005
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34650
- "lineNumber": 70
35006
+ "lineNumber": 77
34651
35007
  },
34652
35008
  "IListDropdownSelectEventData": {
34653
35009
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34654
- "lineNumber": 77
35010
+ "lineNumber": 84
34655
35011
  },
34656
35012
  "IListDropdownConfig": {
34657
35013
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34658
- "lineNumber": 81
35014
+ "lineNumber": 88
34659
35015
  },
34660
35016
  "IListDropdownCascadingElementFactoryConfig": {
34661
35017
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34662
- "lineNumber": 122
35018
+ "lineNumber": 132
34663
35019
  },
34664
35020
  "IListDropdownOpenConfig": {
34665
35021
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34666
- "lineNumber": 135
35022
+ "lineNumber": 145
34667
35023
  },
34668
35024
  "ListDropdownType": {
34669
35025
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34670
- "lineNumber": 137
35026
+ "lineNumber": 147
34671
35027
  },
34672
35028
  "ListDropdownAsyncStyle": {
34673
35029
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34674
- "lineNumber": 143
35030
+ "lineNumber": 153
34675
35031
  },
34676
35032
  "ListDropdownTooltipConfig": {
34677
35033
  "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
34678
- "lineNumber": 148
35034
+ "lineNumber": 158
35035
+ },
35036
+ "ListDropdownTooltipVisibilityMode": {
35037
+ "path": "src/lib/list-dropdown/list-dropdown-constants.ts",
35038
+ "lineNumber": 169
34679
35039
  },
34680
35040
  "IListDropdownCore": {
34681
35041
  "path": "src/lib/list-dropdown/list-dropdown-core.ts",
@@ -34687,7 +35047,7 @@
34687
35047
  },
34688
35048
  "ListDropdownOptionType": {
34689
35049
  "path": "src/lib/list-dropdown/list-dropdown-utils.ts",
34690
- "lineNumber": 21
35050
+ "lineNumber": 23
34691
35051
  },
34692
35052
  "IListDropdown": {
34693
35053
  "path": "src/lib/list-dropdown/list-dropdown.ts",
@@ -34703,35 +35063,35 @@
34703
35063
  },
34704
35064
  "MenuAdapter": {
34705
35065
  "path": "src/lib/menu/menu-adapter.ts",
34706
- "lineNumber": 43
35066
+ "lineNumber": 44
34707
35067
  },
34708
35068
  "IMenuSelectEventData": {
34709
35069
  "path": "src/lib/menu/menu-constants.ts",
34710
- "lineNumber": 52
35070
+ "lineNumber": 53
34711
35071
  },
34712
35072
  "IMenuActiveChangeEventData": {
34713
35073
  "path": "src/lib/menu/menu-constants.ts",
34714
- "lineNumber": 58
35074
+ "lineNumber": 59
34715
35075
  },
34716
35076
  "IMenuOption": {
34717
35077
  "path": "src/lib/menu/menu-constants.ts",
34718
- "lineNumber": 62
35078
+ "lineNumber": 63
34719
35079
  },
34720
35080
  "IMenuOptionGroup": {
34721
35081
  "path": "src/lib/menu/menu-constants.ts",
34722
- "lineNumber": 67
35082
+ "lineNumber": 68
34723
35083
  },
34724
35084
  "MenuOptionBuilder": {
34725
35085
  "path": "src/lib/menu/menu-constants.ts",
34726
- "lineNumber": 69
35086
+ "lineNumber": 70
34727
35087
  },
34728
35088
  "MenuOptionFactory": {
34729
35089
  "path": "src/lib/menu/menu-constants.ts",
34730
- "lineNumber": 70
35090
+ "lineNumber": 71
34731
35091
  },
34732
35092
  "MenuMode": {
34733
35093
  "path": "src/lib/menu/menu-constants.ts",
34734
- "lineNumber": 71
35094
+ "lineNumber": 72
34735
35095
  },
34736
35096
  "IMenuCore": {
34737
35097
  "path": "src/lib/menu/menu-core.ts",
@@ -34739,7 +35099,7 @@
34739
35099
  },
34740
35100
  "MenuCore": {
34741
35101
  "path": "src/lib/menu/menu-core.ts",
34742
- "lineNumber": 45
35102
+ "lineNumber": 46
34743
35103
  },
34744
35104
  "IMenuComponent": {
34745
35105
  "path": "src/lib/menu/menu.ts",
@@ -34747,7 +35107,7 @@
34747
35107
  },
34748
35108
  "MenuComponent": {
34749
35109
  "path": "src/lib/menu/menu.ts",
34750
- "lineNumber": 63
35110
+ "lineNumber": 71
34751
35111
  },
34752
35112
  "OpenIconOrientation": {
34753
35113
  "path": "src/lib/open-icon/open-icon-constants.ts",
@@ -34763,7 +35123,7 @@
34763
35123
  },
34764
35124
  "OpenIconComponent": {
34765
35125
  "path": "src/lib/open-icon/open-icon.ts",
34766
- "lineNumber": 50
35126
+ "lineNumber": 51
34767
35127
  },
34768
35128
  "IOverlayAdapter": {
34769
35129
  "path": "src/lib/overlay/overlay-adapter.ts",
@@ -34827,7 +35187,7 @@
34827
35187
  },
34828
35188
  "OverlayComponent": {
34829
35189
  "path": "src/lib/overlay/overlay.ts",
34830
- "lineNumber": 92
35190
+ "lineNumber": 91
34831
35191
  },
34832
35192
  "IPageStateComponent": {
34833
35193
  "path": "src/lib/page-state/page-state.ts",
@@ -34835,7 +35195,7 @@
34835
35195
  },
34836
35196
  "PageStateComponent": {
34837
35197
  "path": "src/lib/page-state/page-state.ts",
34838
- "lineNumber": 51
35198
+ "lineNumber": 52
34839
35199
  },
34840
35200
  "PaginatorFieldIdentifier": {
34841
35201
  "path": "src/lib/paginator/paginator-adapter.ts",
@@ -34867,7 +35227,7 @@
34867
35227
  },
34868
35228
  "PaginatorCore": {
34869
35229
  "path": "src/lib/paginator/paginator-core.ts",
34870
- "lineNumber": 21
35230
+ "lineNumber": 29
34871
35231
  },
34872
35232
  "IPaginatorComponent": {
34873
35233
  "path": "src/lib/paginator/paginator.ts",
@@ -34875,7 +35235,7 @@
34875
35235
  },
34876
35236
  "PaginatorComponent": {
34877
35237
  "path": "src/lib/paginator/paginator.ts",
34878
- "lineNumber": 52
35238
+ "lineNumber": 62
34879
35239
  },
34880
35240
  "IPopoverAdapter": {
34881
35241
  "path": "src/lib/popover/popover-adapter.ts",
@@ -34887,43 +35247,47 @@
34887
35247
  },
34888
35248
  "PopoverAnimationType": {
34889
35249
  "path": "src/lib/popover/popover-constants.ts",
34890
- "lineNumber": 63
35250
+ "lineNumber": 65
34891
35251
  },
34892
35252
  "PopoverTriggerType": {
34893
35253
  "path": "src/lib/popover/popover-constants.ts",
34894
- "lineNumber": 64
35254
+ "lineNumber": 66
34895
35255
  },
34896
35256
  "PopoverDismissReason": {
34897
35257
  "path": "src/lib/popover/popover-constants.ts",
34898
- "lineNumber": 65
35258
+ "lineNumber": 67
34899
35259
  },
34900
35260
  "PopoverPreset": {
34901
35261
  "path": "src/lib/popover/popover-constants.ts",
34902
- "lineNumber": 66
35262
+ "lineNumber": 68
35263
+ },
35264
+ "PopoverAnchorAccessibility": {
35265
+ "path": "src/lib/popover/popover-constants.ts",
35266
+ "lineNumber": 69
34903
35267
  },
34904
35268
  "IPopoverToggleEventData": {
34905
35269
  "path": "src/lib/popover/popover-constants.ts",
34906
- "lineNumber": 68
35270
+ "lineNumber": 71
34907
35271
  },
34908
35272
  "IPopoverCore": {
34909
35273
  "path": "src/lib/popover/popover-core.ts",
34910
- "lineNumber": 18
35274
+ "lineNumber": 19
34911
35275
  },
34912
35276
  "PopoverCore": {
34913
35277
  "path": "src/lib/popover/popover-core.ts",
34914
- "lineNumber": 32
35278
+ "lineNumber": 34
34915
35279
  },
34916
35280
  "IPopoverProperties": {
34917
35281
  "path": "src/lib/popover/popover.ts",
34918
- "lineNumber": 13
35282
+ "lineNumber": 20
34919
35283
  },
34920
35284
  "IPopoverComponent": {
34921
35285
  "path": "src/lib/popover/popover.ts",
34922
- "lineNumber": 25
35286
+ "lineNumber": 33
34923
35287
  },
34924
35288
  "PopoverComponent": {
34925
35289
  "path": "src/lib/popover/popover.ts",
34926
- "lineNumber": 123
35290
+ "lineNumber": 133
34927
35291
  },
34928
35292
  "IProfileCardAdapter": {
34929
35293
  "path": "src/lib/profile-card/profile-card-adapter.ts",
@@ -34947,7 +35311,7 @@
34947
35311
  },
34948
35312
  "ProfileCardComponent": {
34949
35313
  "path": "src/lib/profile-card/profile-card.ts",
34950
- "lineNumber": 41
35314
+ "lineNumber": 44
34951
35315
  },
34952
35316
  "IScaffoldComponent": {
34953
35317
  "path": "src/lib/scaffold/scaffold.ts",
@@ -35111,7 +35475,7 @@
35111
35475
  },
35112
35476
  "StackComponent": {
35113
35477
  "path": "src/lib/stack/stack.ts",
35114
- "lineNumber": 59
35478
+ "lineNumber": 52
35115
35479
  },
35116
35480
  "IStateLayerAdapter": {
35117
35481
  "path": "src/lib/state-layer/state-layer-adapter.ts",
@@ -35203,7 +35567,7 @@
35203
35567
  },
35204
35568
  "TableAdapter": {
35205
35569
  "path": "src/lib/table/table-adapter.ts",
35206
- "lineNumber": 68
35570
+ "lineNumber": 70
35207
35571
  },
35208
35572
  "ITableCore": {
35209
35573
  "path": "src/lib/table/table-core.ts",
@@ -35227,11 +35591,11 @@
35227
35591
  },
35228
35592
  "ITableComponent": {
35229
35593
  "path": "src/lib/table/table.ts",
35230
- "lineNumber": 30
35594
+ "lineNumber": 31
35231
35595
  },
35232
35596
  "TableComponent": {
35233
35597
  "path": "src/lib/table/table.ts",
35234
- "lineNumber": 110
35598
+ "lineNumber": 113
35235
35599
  },
35236
35600
  "TableViewTemplate": {
35237
35601
  "path": "src/lib/table/types.ts",
@@ -35375,7 +35739,7 @@
35375
35739
  },
35376
35740
  "TextFieldAdapter": {
35377
35741
  "path": "src/lib/text-field/text-field-adapter.ts",
35378
- "lineNumber": 25
35742
+ "lineNumber": 26
35379
35743
  },
35380
35744
  "TextFieldComponentDelegateProps": {
35381
35745
  "path": "src/lib/text-field/text-field-component-delegate.ts",
@@ -35491,7 +35855,7 @@
35491
35855
  },
35492
35856
  "TimePickerComponent": {
35493
35857
  "path": "src/lib/time-picker/time-picker.ts",
35494
- "lineNumber": 68
35858
+ "lineNumber": 70
35495
35859
  },
35496
35860
  "IToastAdapter": {
35497
35861
  "path": "src/lib/toast/toast-adapter.ts",
@@ -35499,7 +35863,7 @@
35499
35863
  },
35500
35864
  "ToastAdapter": {
35501
35865
  "path": "src/lib/toast/toast-adapter.ts",
35502
- "lineNumber": 20
35866
+ "lineNumber": 30
35503
35867
  },
35504
35868
  "ToastPlacement": {
35505
35869
  "path": "src/lib/toast/toast-constants.ts",
@@ -35511,27 +35875,27 @@
35511
35875
  },
35512
35876
  "IToastCore": {
35513
35877
  "path": "src/lib/toast/toast-core.ts",
35514
- "lineNumber": 4
35878
+ "lineNumber": 5
35515
35879
  },
35516
35880
  "ToastCore": {
35517
35881
  "path": "src/lib/toast/toast-core.ts",
35518
- "lineNumber": 14
35882
+ "lineNumber": 15
35519
35883
  },
35520
35884
  "IToastProperties": {
35521
35885
  "path": "src/lib/toast/toast.ts",
35522
- "lineNumber": 19
35886
+ "lineNumber": 20
35523
35887
  },
35524
35888
  "IToastPresentConfiguration": {
35525
35889
  "path": "src/lib/toast/toast.ts",
35526
- "lineNumber": 29
35890
+ "lineNumber": 30
35527
35891
  },
35528
35892
  "IToastComponent": {
35529
35893
  "path": "src/lib/toast/toast.ts",
35530
- "lineNumber": 37
35894
+ "lineNumber": 38
35531
35895
  },
35532
35896
  "ToastComponent": {
35533
35897
  "path": "src/lib/toast/toast.ts",
35534
- "lineNumber": 110
35898
+ "lineNumber": 111
35535
35899
  },
35536
35900
  "IToolbarComponent": {
35537
35901
  "path": "src/lib/toolbar/toolbar.ts",
@@ -35539,7 +35903,7 @@
35539
35903
  },
35540
35904
  "ToolbarComponent": {
35541
35905
  "path": "src/lib/toolbar/toolbar.ts",
35542
- "lineNumber": 72
35906
+ "lineNumber": 70
35543
35907
  },
35544
35908
  "ITooltipAdapter": {
35545
35909
  "path": "src/lib/tooltip/tooltip-adapter.ts",
@@ -35547,19 +35911,19 @@
35547
35911
  },
35548
35912
  "TooltipAdapter": {
35549
35913
  "path": "src/lib/tooltip/tooltip-adapter.ts",
35550
- "lineNumber": 25
35914
+ "lineNumber": 28
35551
35915
  },
35552
35916
  "TooltipType": {
35553
35917
  "path": "src/lib/tooltip/tooltip-constants.ts",
35554
- "lineNumber": 55
35918
+ "lineNumber": 56
35555
35919
  },
35556
35920
  "TooltipPlacement": {
35557
35921
  "path": "src/lib/tooltip/tooltip-constants.ts",
35558
- "lineNumber": 56
35922
+ "lineNumber": 57
35559
35923
  },
35560
35924
  "TooltipTriggerType": {
35561
35925
  "path": "src/lib/tooltip/tooltip-constants.ts",
35562
- "lineNumber": 57
35926
+ "lineNumber": 58
35563
35927
  },
35564
35928
  "ITooltipCore": {
35565
35929
  "path": "src/lib/tooltip/tooltip-core.ts",
@@ -35615,7 +35979,7 @@
35615
35979
  },
35616
35980
  "ViewSwitcherComponent": {
35617
35981
  "path": "src/lib/view-switcher/view-switcher.ts",
35618
- "lineNumber": 36
35982
+ "lineNumber": 38
35619
35983
  },
35620
35984
  "IAppBarAdapter": {
35621
35985
  "path": "src/lib/app-bar/app-bar/app-bar-adapter.ts",
@@ -35707,15 +36071,15 @@
35707
36071
  },
35708
36072
  "AppBarNotificationButtonComponent": {
35709
36073
  "path": "src/lib/app-bar/notification-button/app-bar-notification-button.ts",
35710
- "lineNumber": 44
36074
+ "lineNumber": 46
35711
36075
  },
35712
36076
  "IAppBarProfileButtonAdapter": {
35713
36077
  "path": "src/lib/app-bar/profile-button/app-bar-profile-button-adapter.ts",
35714
- "lineNumber": 12
36078
+ "lineNumber": 13
35715
36079
  },
35716
36080
  "AppBarProfileButtonAdapter": {
35717
36081
  "path": "src/lib/app-bar/profile-button/app-bar-profile-button-adapter.ts",
35718
- "lineNumber": 35
36082
+ "lineNumber": 36
35719
36083
  },
35720
36084
  "IAppBarProfileCardConfig": {
35721
36085
  "path": "src/lib/app-bar/profile-button/app-bar-profile-button-constants.ts",
@@ -35739,7 +36103,7 @@
35739
36103
  },
35740
36104
  "AppBarProfileButtonComponent": {
35741
36105
  "path": "src/lib/app-bar/profile-button/app-bar-profile-button.ts",
35742
- "lineNumber": 70
36106
+ "lineNumber": 72
35743
36107
  },
35744
36108
  "IAppBarSearchAdapter": {
35745
36109
  "path": "src/lib/app-bar/search/app-bar-search-adapter.ts",
@@ -35767,7 +36131,7 @@
35767
36131
  },
35768
36132
  "AppBarSearchComponent": {
35769
36133
  "path": "src/lib/app-bar/search/app-bar-search.ts",
35770
- "lineNumber": 66
36134
+ "lineNumber": 68
35771
36135
  },
35772
36136
  "IBaseButtonAdapter": {
35773
36137
  "path": "src/lib/button/base/base-button-adapter.ts",
@@ -35807,11 +36171,11 @@
35807
36171
  },
35808
36172
  "IButtonToggleAdapter": {
35809
36173
  "path": "src/lib/button-toggle/button-toggle/button-toggle-adapter.ts",
35810
- "lineNumber": 10
36174
+ "lineNumber": 9
35811
36175
  },
35812
36176
  "ButtonToggleAdapter": {
35813
36177
  "path": "src/lib/button-toggle/button-toggle/button-toggle-adapter.ts",
35814
- "lineNumber": 17
36178
+ "lineNumber": 16
35815
36179
  },
35816
36180
  "IButtonToggleSelectEventData": {
35817
36181
  "path": "src/lib/button-toggle/button-toggle/button-toggle-constants.ts",
@@ -35831,7 +36195,7 @@
35831
36195
  },
35832
36196
  "ButtonToggleComponent": {
35833
36197
  "path": "src/lib/button-toggle/button-toggle/button-toggle.ts",
35834
- "lineNumber": 82
36198
+ "lineNumber": 84
35835
36199
  },
35836
36200
  "IButtonToggleGroupAdapter": {
35837
36201
  "path": "src/lib/button-toggle/button-toggle-group/button-toggle-group-adapter.ts",
@@ -35931,31 +36295,31 @@
35931
36295
  },
35932
36296
  "ChipAdapter": {
35933
36297
  "path": "src/lib/chips/chip/chip-adapter.ts",
35934
- "lineNumber": 35
36298
+ "lineNumber": 36
35935
36299
  },
35936
36300
  "ChipTheme": {
35937
36301
  "path": "src/lib/chips/chip/chip-constants.ts",
35938
- "lineNumber": 48
36302
+ "lineNumber": 49
35939
36303
  },
35940
36304
  "ChipType": {
35941
36305
  "path": "src/lib/chips/chip/chip-constants.ts",
35942
- "lineNumber": 49
36306
+ "lineNumber": 50
35943
36307
  },
35944
36308
  "IChipSelectEventData": {
35945
36309
  "path": "src/lib/chips/chip/chip-constants.ts",
35946
- "lineNumber": 51
36310
+ "lineNumber": 52
35947
36311
  },
35948
36312
  "IChipDeleteEventData": {
35949
36313
  "path": "src/lib/chips/chip/chip-constants.ts",
35950
- "lineNumber": 56
36314
+ "lineNumber": 57
35951
36315
  },
35952
36316
  "IChipState": {
35953
36317
  "path": "src/lib/chips/chip/chip-constants.ts",
35954
- "lineNumber": 60
36318
+ "lineNumber": 61
35955
36319
  },
35956
36320
  "IChipNavigateEventData": {
35957
36321
  "path": "src/lib/chips/chip/chip-constants.ts",
35958
- "lineNumber": 66
36322
+ "lineNumber": 67
35959
36323
  },
35960
36324
  "IChipCore": {
35961
36325
  "path": "src/lib/chips/chip/chip-core.ts",
@@ -35963,7 +36327,7 @@
35963
36327
  },
35964
36328
  "ChipCore": {
35965
36329
  "path": "src/lib/chips/chip/chip-core.ts",
35966
- "lineNumber": 21
36330
+ "lineNumber": 22
35967
36331
  },
35968
36332
  "IChipComponent": {
35969
36333
  "path": "src/lib/chips/chip/chip.ts",
@@ -35971,7 +36335,7 @@
35971
36335
  },
35972
36336
  "ChipComponent": {
35973
36337
  "path": "src/lib/chips/chip/chip.ts",
35974
- "lineNumber": 135
36338
+ "lineNumber": 140
35975
36339
  },
35976
36340
  "IChipSetComponent": {
35977
36341
  "path": "src/lib/chips/chip-set/chip-set.ts",
@@ -36131,19 +36495,19 @@
36131
36495
  },
36132
36496
  "ARIARole": {
36133
36497
  "path": "src/lib/core/utils/a11y-utils.ts",
36134
- "lineNumber": 134
36498
+ "lineNumber": 151
36135
36499
  },
36136
36500
  "ARIAMixinStrict": {
36137
36501
  "path": "src/lib/core/utils/a11y-utils.ts",
36138
- "lineNumber": 250
36502
+ "lineNumber": 267
36139
36503
  },
36140
36504
  "ARIAPropertyToAttribute": {
36141
36505
  "path": "src/lib/core/utils/a11y-utils.ts",
36142
- "lineNumber": 295
36506
+ "lineNumber": 312
36143
36507
  },
36144
36508
  "DefaultAriaOptions": {
36145
36509
  "path": "src/lib/core/utils/a11y-utils.ts",
36146
- "lineNumber": 327
36510
+ "lineNumber": 344
36147
36511
  },
36148
36512
  "SupportedDateFormats": {
36149
36513
  "path": "src/lib/core/utils/date-utils.ts",
@@ -36355,7 +36719,7 @@
36355
36719
  },
36356
36720
  "BaseDrawerAdapter": {
36357
36721
  "path": "src/lib/drawer/base/base-drawer-adapter.ts",
36358
- "lineNumber": 16
36722
+ "lineNumber": 17
36359
36723
  },
36360
36724
  "DrawerDirection": {
36361
36725
  "path": "src/lib/drawer/base/base-drawer-constants.ts",
@@ -36383,7 +36747,7 @@
36383
36747
  },
36384
36748
  "DrawerComponent": {
36385
36749
  "path": "src/lib/drawer/drawer/drawer.ts",
36386
- "lineNumber": 45
36750
+ "lineNumber": 47
36387
36751
  },
36388
36752
  "IMiniDrawerComponent": {
36389
36753
  "path": "src/lib/drawer/mini-drawer/mini-drawer.ts",
@@ -36391,7 +36755,7 @@
36391
36755
  },
36392
36756
  "MiniDrawerComponent": {
36393
36757
  "path": "src/lib/drawer/mini-drawer/mini-drawer.ts",
36394
- "lineNumber": 50
36758
+ "lineNumber": 52
36395
36759
  },
36396
36760
  "IModalDrawerAdapter": {
36397
36761
  "path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
@@ -36415,7 +36779,7 @@
36415
36779
  },
36416
36780
  "ModalDrawerComponent": {
36417
36781
  "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
36418
- "lineNumber": 46
36782
+ "lineNumber": 48
36419
36783
  },
36420
36784
  "IBaseFieldAdapter": {
36421
36785
  "path": "src/lib/field/base/base-field-adapter.ts",
@@ -36551,7 +36915,7 @@
36551
36915
  },
36552
36916
  "ListItemComponent": {
36553
36917
  "path": "src/lib/list/list-item/list-item.ts",
36554
- "lineNumber": 123
36918
+ "lineNumber": 124
36555
36919
  },
36556
36920
  "MeterDirection": {
36557
36921
  "path": "src/lib/meter/meter/meter.ts",
@@ -36679,7 +37043,7 @@
36679
37043
  },
36680
37044
  "RadioComponent": {
36681
37045
  "path": "src/lib/radio/radio/radio.ts",
36682
- "lineNumber": 84
37046
+ "lineNumber": 83
36683
37047
  },
36684
37048
  "IRadioGroupAdapter": {
36685
37049
  "path": "src/lib/radio/radio-group/radio-group-adapter.ts",
@@ -36737,13 +37101,17 @@
36737
37101
  "path": "src/lib/select/core/base-select-constants.ts",
36738
37102
  "lineNumber": 9
36739
37103
  },
37104
+ "SelectSelectAllEventData": {
37105
+ "path": "src/lib/select/core/base-select-constants.ts",
37106
+ "lineNumber": 37
37107
+ },
36740
37108
  "IBaseSelectCore": {
36741
37109
  "path": "src/lib/select/core/base-select-core.ts",
36742
- "lineNumber": 16
37110
+ "lineNumber": 21
36743
37111
  },
36744
37112
  "BaseSelectCore": {
36745
37113
  "path": "src/lib/select/core/base-select-core.ts",
36746
- "lineNumber": 34
37114
+ "lineNumber": 40
36747
37115
  },
36748
37116
  "IBaseSelectComponent": {
36749
37117
  "path": "src/lib/select/core/base-select.ts",
@@ -36779,7 +37147,7 @@
36779
37147
  },
36780
37148
  "OptionComponent": {
36781
37149
  "path": "src/lib/select/option/option.ts",
36782
- "lineNumber": 20
37150
+ "lineNumber": 22
36783
37151
  },
36784
37152
  "IOptionGroupComponent": {
36785
37153
  "path": "src/lib/select/option-group/option-group.ts",
@@ -36787,7 +37155,7 @@
36787
37155
  },
36788
37156
  "OptionGroupComponent": {
36789
37157
  "path": "src/lib/select/option-group/option-group.ts",
36790
- "lineNumber": 20
37158
+ "lineNumber": 22
36791
37159
  },
36792
37160
  "OptionListenerDestructor": {
36793
37161
  "path": "src/lib/select/select/select-adapter.ts",
@@ -36811,11 +37179,11 @@
36811
37179
  },
36812
37180
  "ISelectComponent": {
36813
37181
  "path": "src/lib/select/select/select.ts",
36814
- "lineNumber": 30
37182
+ "lineNumber": 31
36815
37183
  },
36816
37184
  "SelectComponent": {
36817
37185
  "path": "src/lib/select/select/select.ts",
36818
- "lineNumber": 182
37186
+ "lineNumber": 193
36819
37187
  },
36820
37188
  "ISelectDropdownAdapter": {
36821
37189
  "path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
@@ -36839,7 +37207,7 @@
36839
37207
  },
36840
37208
  "SelectDropdownComponent": {
36841
37209
  "path": "src/lib/select/select-dropdown/select-dropdown.ts",
36842
- "lineNumber": 39
37210
+ "lineNumber": 41
36843
37211
  },
36844
37212
  "ISplitViewBase": {
36845
37213
  "path": "src/lib/split-view/core/split-view-base.ts",
@@ -36875,7 +37243,7 @@
36875
37243
  },
36876
37244
  "SplitViewComponent": {
36877
37245
  "path": "src/lib/split-view/split-view/split-view.ts",
36878
- "lineNumber": 30
37246
+ "lineNumber": 32
36879
37247
  },
36880
37248
  "ISplitViewPanelAdapter": {
36881
37249
  "path": "src/lib/split-view/split-view-panel/split-view-panel-adapter.ts",
@@ -36927,7 +37295,7 @@
36927
37295
  },
36928
37296
  "SplitViewPanelComponent": {
36929
37297
  "path": "src/lib/split-view/split-view-panel/split-view-panel.ts",
36930
- "lineNumber": 87
37298
+ "lineNumber": 89
36931
37299
  },
36932
37300
  "StepperUtils": {
36933
37301
  "path": "src/lib/stepper/core/stepper-utils.ts",
@@ -36959,7 +37327,7 @@
36959
37327
  },
36960
37328
  "StepComponent": {
36961
37329
  "path": "src/lib/stepper/step/step.ts",
36962
- "lineNumber": 110
37330
+ "lineNumber": 112
36963
37331
  },
36964
37332
  "IStepperAdapter": {
36965
37333
  "path": "src/lib/stepper/stepper/stepper-adapter.ts",
@@ -36999,7 +37367,7 @@
36999
37367
  },
37000
37368
  "StepperComponent": {
37001
37369
  "path": "src/lib/stepper/stepper/stepper.ts",
37002
- "lineNumber": 39
37370
+ "lineNumber": 41
37003
37371
  },
37004
37372
  "ITabAdapter": {
37005
37373
  "path": "src/lib/tabs/tab/tab-adapter.ts",
@@ -37023,7 +37391,7 @@
37023
37391
  },
37024
37392
  "TabComponent": {
37025
37393
  "path": "src/lib/tabs/tab/tab.ts",
37026
- "lineNumber": 105
37394
+ "lineNumber": 107
37027
37395
  },
37028
37396
  "ITabBarAdapter": {
37029
37397
  "path": "src/lib/tabs/tab-bar/tab-bar-adapter.ts",
@@ -37067,7 +37435,7 @@
37067
37435
  },
37068
37436
  "ViewComponent": {
37069
37437
  "path": "src/lib/view-switcher/view/view.ts",
37070
- "lineNumber": 20
37438
+ "lineNumber": 22
37071
37439
  },
37072
37440
  "IWithFocusable": {
37073
37441
  "path": "src/lib/core/mixins/focus/with-focusable.ts",