@shortfuse/materialdesignweb 0.8.0 → 0.9.1

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 (405) hide show
  1. package/README.md +50 -198
  2. package/bin/mdw-css.js +1 -1
  3. package/components/Badge.js +15 -5
  4. package/components/Body.js +7 -0
  5. package/components/BottomAppBar.js +7 -10
  6. package/components/BottomSheet.js +472 -0
  7. package/components/Box.js +11 -49
  8. package/components/Button.js +81 -82
  9. package/components/Card.js +74 -62
  10. package/components/Checkbox.js +15 -25
  11. package/components/CheckboxIcon.js +19 -31
  12. package/components/Chip.js +18 -13
  13. package/components/Dialog.js +70 -100
  14. package/components/DialogActions.js +4 -0
  15. package/components/Display.js +64 -0
  16. package/components/Divider.js +5 -0
  17. package/components/Fab.js +94 -17
  18. package/components/FabContainer.js +57 -0
  19. package/components/FilterChip.js +43 -32
  20. package/components/Grid.js +187 -0
  21. package/components/Headline.js +9 -28
  22. package/components/Icon.js +80 -71
  23. package/components/IconButton.js +77 -120
  24. package/components/Input.js +745 -86
  25. package/components/InputChip.js +193 -0
  26. package/components/Label.js +7 -0
  27. package/components/List.js +11 -5
  28. package/components/ListItem.js +92 -23
  29. package/components/ListOption.js +143 -65
  30. package/components/Listbox.js +57 -17
  31. package/components/Menu.js +39 -27
  32. package/components/MenuItem.js +49 -36
  33. package/components/NavBar.js +66 -21
  34. package/components/NavBarItem.js +5 -0
  35. package/components/NavDrawer.js +33 -16
  36. package/components/NavDrawerItem.js +7 -4
  37. package/components/NavItem.js +61 -34
  38. package/components/NavRail.js +32 -21
  39. package/components/NavRailItem.js +10 -2
  40. package/components/Page.js +119 -0
  41. package/components/Pane.js +24 -0
  42. package/components/Popup.js +23 -8
  43. package/components/Progress.js +25 -5
  44. package/components/Radio.js +8 -7
  45. package/components/RadioIcon.js +24 -15
  46. package/components/Ripple.js +25 -7
  47. package/components/Root.js +225 -0
  48. package/components/Scrim.js +95 -0
  49. package/components/Search.js +30 -25
  50. package/components/SegmentedButton.js +53 -40
  51. package/components/SegmentedButtonGroup.js +15 -12
  52. package/components/Select.js +19 -10
  53. package/components/Shape.js +10 -66
  54. package/components/SideSheet.js +337 -0
  55. package/components/Slider.js +93 -36
  56. package/components/Snackbar.js +52 -20
  57. package/components/SnackbarContainer.js +51 -0
  58. package/components/Surface.js +20 -10
  59. package/components/Switch.js +21 -18
  60. package/components/SwitchIcon.js +62 -33
  61. package/components/Tab.js +78 -38
  62. package/components/TabContent.js +33 -12
  63. package/components/TabList.js +95 -34
  64. package/components/TabPanel.js +10 -1
  65. package/components/Table.js +151 -0
  66. package/components/TextArea.js +48 -16
  67. package/components/Title.js +8 -9
  68. package/components/Tooltip.js +51 -22
  69. package/components/TopAppBar.js +71 -78
  70. package/constants/shapes.js +36 -0
  71. package/constants/typography.js +127 -0
  72. package/core/Composition.js +391 -201
  73. package/core/CompositionAdapter.js +35 -18
  74. package/core/CustomElement.js +634 -254
  75. package/core/css.js +117 -12
  76. package/core/customTypes.js +161 -49
  77. package/core/dom.js +18 -11
  78. package/core/jsonMergePatch.js +27 -11
  79. package/core/observe.js +308 -256
  80. package/core/optimizations.js +9 -9
  81. package/core/template.js +14 -57
  82. package/dist/CustomElement.min.js +2 -0
  83. package/dist/CustomElement.min.js.map +7 -0
  84. package/dist/core/CustomElement.min.js +2 -0
  85. package/dist/core/CustomElement.min.js.map +7 -0
  86. package/dist/index.min.js +85 -115
  87. package/dist/index.min.js.map +4 -4
  88. package/dist/meta.json +1 -1
  89. package/dom/HTMLOptionsCollectionProxy.js +108 -0
  90. package/{theming/themableMixinLoader.js → loaders/palette.js} +4 -3
  91. package/loaders/theme.js +12 -0
  92. package/mixins/AriaReflectorMixin.js +64 -15
  93. package/mixins/AriaToolbarMixin.js +6 -0
  94. package/mixins/ControlMixin.js +79 -33
  95. package/mixins/DelegatesFocusMixin.js +62 -0
  96. package/mixins/DensityMixin.js +7 -3
  97. package/mixins/ElevationMixin.js +61 -0
  98. package/mixins/FlexableMixin.js +87 -39
  99. package/mixins/FormAssociatedMixin.js +76 -10
  100. package/mixins/HyperlinkMixin.js +76 -0
  101. package/mixins/InputMixin.js +227 -32
  102. package/mixins/KeyboardNavMixin.js +11 -7
  103. package/mixins/NavigationListenerMixin.js +33 -0
  104. package/mixins/PopupMixin.js +216 -219
  105. package/mixins/RTLObserverMixin.js +2 -0
  106. package/mixins/ResizeObserverMixin.js +18 -4
  107. package/mixins/RippleMixin.js +11 -7
  108. package/mixins/ScrollListenerMixin.js +14 -2
  109. package/mixins/SemiStickyMixin.js +51 -98
  110. package/mixins/ShapeMaskedMixin.js +125 -0
  111. package/mixins/ShapeMixin.js +30 -203
  112. package/mixins/StateMixin.js +74 -34
  113. package/mixins/TextFieldMixin.js +128 -145
  114. package/mixins/ThemableMixin.js +57 -56
  115. package/mixins/TooltipTriggerMixin.js +305 -359
  116. package/mixins/TouchTargetMixin.js +5 -2
  117. package/mixins/TypographyMixin.js +128 -0
  118. package/package.json +125 -81
  119. package/services/rtl.js +10 -0
  120. package/services/svgAlias.js +17 -0
  121. package/{theming/index.js → services/theme.js} +25 -176
  122. package/types/bin/mdw-css.d.ts +3 -0
  123. package/types/bin/mdw-css.d.ts.map +1 -0
  124. package/types/components/Badge.d.ts +39 -0
  125. package/types/components/Badge.d.ts.map +1 -0
  126. package/types/components/Body.d.ts +29 -0
  127. package/types/components/Body.d.ts.map +1 -0
  128. package/types/components/BottomAppBar.d.ts +72 -0
  129. package/types/components/BottomAppBar.d.ts.map +1 -0
  130. package/types/components/BottomSheet.d.ts +135 -0
  131. package/types/components/BottomSheet.d.ts.map +1 -0
  132. package/types/components/Box.d.ts +16 -0
  133. package/types/components/Box.d.ts.map +1 -0
  134. package/types/components/Button.d.ts +245 -0
  135. package/types/components/Button.d.ts.map +1 -0
  136. package/types/components/Card.d.ts +147 -0
  137. package/types/components/Card.d.ts.map +1 -0
  138. package/types/components/Checkbox.d.ts +207 -0
  139. package/types/components/Checkbox.d.ts.map +1 -0
  140. package/types/components/CheckboxIcon.d.ts +44 -0
  141. package/types/components/CheckboxIcon.d.ts.map +1 -0
  142. package/types/components/Chip.d.ts +248 -0
  143. package/types/components/Chip.d.ts.map +1 -0
  144. package/types/components/Dialog.d.ts +103 -0
  145. package/types/components/Dialog.d.ts.map +1 -0
  146. package/types/components/DialogActions.d.ts +4 -0
  147. package/types/components/DialogActions.d.ts.map +1 -0
  148. package/types/components/Display.d.ts +46 -0
  149. package/types/components/Display.d.ts.map +1 -0
  150. package/types/components/Divider.d.ts +10 -0
  151. package/types/components/Divider.d.ts.map +1 -0
  152. package/types/components/Fab.d.ts +273 -0
  153. package/types/components/Fab.d.ts.map +1 -0
  154. package/types/components/FabContainer.d.ts +10 -0
  155. package/types/components/FabContainer.d.ts.map +1 -0
  156. package/types/components/FilterChip.d.ts +256 -0
  157. package/types/components/FilterChip.d.ts.map +1 -0
  158. package/types/components/Grid.d.ts +38 -0
  159. package/types/components/Grid.d.ts.map +1 -0
  160. package/types/components/Headline.d.ts +46 -0
  161. package/types/components/Headline.d.ts.map +1 -0
  162. package/types/components/Icon.d.ts +55 -0
  163. package/types/components/Icon.d.ts.map +1 -0
  164. package/types/components/IconButton.d.ts +284 -0
  165. package/types/components/IconButton.d.ts.map +1 -0
  166. package/types/components/Input.d.ts +2528 -0
  167. package/types/components/Input.d.ts.map +1 -0
  168. package/types/components/InputChip.d.ts +85 -0
  169. package/types/components/InputChip.d.ts.map +1 -0
  170. package/types/components/Label.d.ts +29 -0
  171. package/types/components/Label.d.ts.map +1 -0
  172. package/types/components/List.d.ts +35 -0
  173. package/types/components/List.d.ts.map +1 -0
  174. package/types/components/ListItem.d.ts +124 -0
  175. package/types/components/ListItem.d.ts.map +1 -0
  176. package/types/components/ListOption.d.ts +158 -0
  177. package/types/components/ListOption.d.ts.map +1 -0
  178. package/types/components/Listbox.d.ts +763 -0
  179. package/types/components/Listbox.d.ts.map +1 -0
  180. package/types/components/Menu.d.ts +130 -0
  181. package/types/components/Menu.d.ts.map +1 -0
  182. package/types/components/MenuItem.d.ts +232 -0
  183. package/types/components/MenuItem.d.ts.map +1 -0
  184. package/types/components/NavBar.d.ts +20 -0
  185. package/types/components/NavBar.d.ts.map +1 -0
  186. package/types/components/NavBarItem.d.ts +97 -0
  187. package/types/components/NavBarItem.d.ts.map +1 -0
  188. package/types/components/NavDrawer.d.ts +107 -0
  189. package/types/components/NavDrawer.d.ts.map +1 -0
  190. package/types/components/NavDrawerItem.d.ts +97 -0
  191. package/types/components/NavDrawerItem.d.ts.map +1 -0
  192. package/types/components/NavItem.d.ts +99 -0
  193. package/types/components/NavItem.d.ts.map +1 -0
  194. package/types/components/NavRail.d.ts +108 -0
  195. package/types/components/NavRail.d.ts.map +1 -0
  196. package/types/components/NavRailItem.d.ts +97 -0
  197. package/types/components/NavRailItem.d.ts.map +1 -0
  198. package/types/components/Page.d.ts +25 -0
  199. package/types/components/Page.d.ts.map +1 -0
  200. package/types/components/Pane.d.ts +44 -0
  201. package/types/components/Pane.d.ts.map +1 -0
  202. package/types/components/Popup.d.ts +78 -0
  203. package/types/components/Popup.d.ts.map +1 -0
  204. package/types/components/Progress.d.ts +21 -0
  205. package/types/components/Progress.d.ts.map +1 -0
  206. package/types/components/Radio.d.ts +201 -0
  207. package/types/components/Radio.d.ts.map +1 -0
  208. package/types/components/RadioIcon.d.ts +46 -0
  209. package/types/components/RadioIcon.d.ts.map +1 -0
  210. package/types/components/Ripple.d.ts +35 -0
  211. package/types/components/Ripple.d.ts.map +1 -0
  212. package/types/components/Root.d.ts +68 -0
  213. package/types/components/Root.d.ts.map +1 -0
  214. package/types/components/Scrim.d.ts +6 -0
  215. package/types/components/Scrim.d.ts.map +1 -0
  216. package/types/components/Search.d.ts +516 -0
  217. package/types/components/Search.d.ts.map +1 -0
  218. package/types/components/SegmentedButton.d.ts +252 -0
  219. package/types/components/SegmentedButton.d.ts.map +1 -0
  220. package/types/components/SegmentedButtonGroup.d.ts +43 -0
  221. package/types/components/SegmentedButtonGroup.d.ts.map +1 -0
  222. package/types/components/Select.d.ts +158 -0
  223. package/types/components/Select.d.ts.map +1 -0
  224. package/types/components/Shape.d.ts +10 -0
  225. package/types/components/Shape.d.ts.map +1 -0
  226. package/types/components/SideSheet.d.ts +111 -0
  227. package/types/components/SideSheet.d.ts.map +1 -0
  228. package/types/components/Slider.d.ts +203 -0
  229. package/types/components/Slider.d.ts.map +1 -0
  230. package/types/components/Snackbar.d.ts +73 -0
  231. package/types/components/Snackbar.d.ts.map +1 -0
  232. package/types/components/SnackbarContainer.d.ts +6 -0
  233. package/types/components/SnackbarContainer.d.ts.map +1 -0
  234. package/types/components/Surface.d.ts +45 -0
  235. package/types/components/Surface.d.ts.map +1 -0
  236. package/types/components/Switch.d.ts +187 -0
  237. package/types/components/Switch.d.ts.map +1 -0
  238. package/types/components/SwitchIcon.d.ts +61 -0
  239. package/types/components/SwitchIcon.d.ts.map +1 -0
  240. package/types/components/Tab.d.ts +139 -0
  241. package/types/components/Tab.d.ts.map +1 -0
  242. package/types/components/TabContent.d.ts +124 -0
  243. package/types/components/TabContent.d.ts.map +1 -0
  244. package/types/components/TabList.d.ts +1111 -0
  245. package/types/components/TabList.d.ts.map +1 -0
  246. package/types/components/TabPanel.d.ts +28 -0
  247. package/types/components/TabPanel.d.ts.map +1 -0
  248. package/types/components/Table.d.ts +25 -0
  249. package/types/components/Table.d.ts.map +1 -0
  250. package/types/components/TextArea.d.ts +201 -0
  251. package/types/components/TextArea.d.ts.map +1 -0
  252. package/types/components/Title.d.ts +46 -0
  253. package/types/components/Title.d.ts.map +1 -0
  254. package/types/components/Tooltip.d.ts +49 -0
  255. package/types/components/Tooltip.d.ts.map +1 -0
  256. package/types/components/TopAppBar.d.ts +129 -0
  257. package/types/components/TopAppBar.d.ts.map +1 -0
  258. package/types/constants/colorKeywords.d.ts +2 -0
  259. package/types/constants/colorKeywords.d.ts.map +1 -0
  260. package/types/constants/shapes.d.ts +38 -0
  261. package/types/constants/shapes.d.ts.map +1 -0
  262. package/types/constants/typography.d.ts +212 -0
  263. package/types/constants/typography.d.ts.map +1 -0
  264. package/types/core/Composition.d.ts +260 -0
  265. package/types/core/Composition.d.ts.map +1 -0
  266. package/types/core/CompositionAdapter.d.ts +114 -0
  267. package/types/core/CompositionAdapter.d.ts.map +1 -0
  268. package/types/core/CustomElement.d.ts +304 -0
  269. package/types/core/CustomElement.d.ts.map +1 -0
  270. package/types/core/css.d.ts +44 -0
  271. package/types/core/css.d.ts.map +1 -0
  272. package/types/core/customTypes.d.ts +22 -0
  273. package/types/core/customTypes.d.ts.map +1 -0
  274. package/types/core/dom.d.ts +32 -0
  275. package/types/core/dom.d.ts.map +1 -0
  276. package/types/core/jsonMergePatch.d.ts +31 -0
  277. package/types/core/jsonMergePatch.d.ts.map +1 -0
  278. package/types/core/observe.d.ts +114 -0
  279. package/types/core/observe.d.ts.map +1 -0
  280. package/types/core/optimizations.d.ts +7 -0
  281. package/types/core/optimizations.d.ts.map +1 -0
  282. package/types/core/template.d.ts +47 -0
  283. package/types/core/template.d.ts.map +1 -0
  284. package/types/core/uid.d.ts +6 -0
  285. package/types/core/uid.d.ts.map +1 -0
  286. package/types/dom/HTMLOptionsCollectionProxy.d.ts +18 -0
  287. package/types/dom/HTMLOptionsCollectionProxy.d.ts.map +1 -0
  288. package/types/index.d.ts +88 -0
  289. package/types/index.d.ts.map +1 -0
  290. package/types/loaders/palette.d.ts +2 -0
  291. package/types/loaders/palette.d.ts.map +1 -0
  292. package/types/loaders/theme.d.ts +2 -0
  293. package/types/loaders/theme.d.ts.map +1 -0
  294. package/types/mixins/AriaReflectorMixin.d.ts +31 -0
  295. package/types/mixins/AriaReflectorMixin.d.ts.map +1 -0
  296. package/types/mixins/AriaToolbarMixin.d.ts +34 -0
  297. package/types/mixins/AriaToolbarMixin.d.ts.map +1 -0
  298. package/types/mixins/ControlMixin.d.ts +124 -0
  299. package/types/mixins/ControlMixin.d.ts.map +1 -0
  300. package/types/mixins/DelegatesFocusMixin.d.ts +13 -0
  301. package/types/mixins/DelegatesFocusMixin.d.ts.map +1 -0
  302. package/types/mixins/DensityMixin.d.ts +8 -0
  303. package/types/mixins/DensityMixin.d.ts.map +1 -0
  304. package/types/mixins/ElevationMixin.d.ts +32 -0
  305. package/types/mixins/ElevationMixin.d.ts.map +1 -0
  306. package/types/mixins/FlexableMixin.d.ts +14 -0
  307. package/types/mixins/FlexableMixin.d.ts.map +1 -0
  308. package/types/mixins/FormAssociatedMixin.d.ts +123 -0
  309. package/types/mixins/FormAssociatedMixin.d.ts.map +1 -0
  310. package/types/mixins/HyperlinkMixin.d.ts +25 -0
  311. package/types/mixins/HyperlinkMixin.d.ts.map +1 -0
  312. package/types/mixins/InputMixin.d.ts +173 -0
  313. package/types/mixins/InputMixin.d.ts.map +1 -0
  314. package/types/mixins/KeyboardNavMixin.d.ts +46 -0
  315. package/types/mixins/KeyboardNavMixin.d.ts.map +1 -0
  316. package/types/mixins/NavigationListenerMixin.d.ts +8 -0
  317. package/types/mixins/NavigationListenerMixin.d.ts.map +1 -0
  318. package/types/mixins/PopupMixin.d.ts +98 -0
  319. package/types/mixins/PopupMixin.d.ts.map +1 -0
  320. package/types/mixins/RTLObserverMixin.d.ts +8 -0
  321. package/types/mixins/RTLObserverMixin.d.ts.map +1 -0
  322. package/types/mixins/ResizeObserverMixin.d.ts +13 -0
  323. package/types/mixins/ResizeObserverMixin.d.ts.map +1 -0
  324. package/types/mixins/RippleMixin.d.ts +94 -0
  325. package/types/mixins/RippleMixin.d.ts.map +1 -0
  326. package/types/mixins/ScrollListenerMixin.d.ts +46 -0
  327. package/types/mixins/ScrollListenerMixin.d.ts.map +1 -0
  328. package/types/mixins/SemiStickyMixin.d.ts +50 -0
  329. package/types/mixins/SemiStickyMixin.d.ts.map +1 -0
  330. package/types/mixins/ShapeMaskedMixin.d.ts +12 -0
  331. package/types/mixins/ShapeMaskedMixin.d.ts.map +1 -0
  332. package/types/mixins/ShapeMixin.d.ts +39 -0
  333. package/types/mixins/ShapeMixin.d.ts.map +1 -0
  334. package/types/mixins/StateMixin.d.ts +29 -0
  335. package/types/mixins/StateMixin.d.ts.map +1 -0
  336. package/types/mixins/TextFieldMixin.d.ts +153 -0
  337. package/types/mixins/TextFieldMixin.d.ts.map +1 -0
  338. package/types/mixins/ThemableMixin.d.ts +10 -0
  339. package/types/mixins/ThemableMixin.d.ts.map +1 -0
  340. package/types/mixins/TooltipTriggerMixin.d.ts +114 -0
  341. package/types/mixins/TooltipTriggerMixin.d.ts.map +1 -0
  342. package/types/mixins/TouchTargetMixin.d.ts +6 -0
  343. package/types/mixins/TouchTargetMixin.d.ts.map +1 -0
  344. package/types/mixins/TypographyMixin.d.ts +20 -0
  345. package/types/mixins/TypographyMixin.d.ts.map +1 -0
  346. package/types/services/rtl.d.ts +3 -0
  347. package/types/services/rtl.d.ts.map +1 -0
  348. package/types/services/svgAlias.d.ts +13 -0
  349. package/types/services/svgAlias.d.ts.map +1 -0
  350. package/types/services/theme.d.ts +45 -0
  351. package/types/services/theme.d.ts.map +1 -0
  352. package/types/utils/cli.d.ts +3 -0
  353. package/types/utils/cli.d.ts.map +1 -0
  354. package/types/utils/function.d.ts +3 -0
  355. package/types/utils/function.d.ts.map +1 -0
  356. package/types/utils/jsx-runtime.d.ts +20 -0
  357. package/types/utils/jsx-runtime.d.ts.map +1 -0
  358. package/types/utils/material-color/blend.d.ts +34 -0
  359. package/types/utils/material-color/blend.d.ts.map +1 -0
  360. package/types/utils/material-color/hct/Cam16.d.ts +142 -0
  361. package/types/utils/material-color/hct/Cam16.d.ts.map +1 -0
  362. package/types/utils/material-color/hct/Hct.d.ts +93 -0
  363. package/types/utils/material-color/hct/Hct.d.ts.map +1 -0
  364. package/types/utils/material-color/hct/ViewingConditions.d.ts +69 -0
  365. package/types/utils/material-color/hct/ViewingConditions.d.ts.map +1 -0
  366. package/types/utils/material-color/hct/hctSolver.d.ts +30 -0
  367. package/types/utils/material-color/hct/hctSolver.d.ts.map +1 -0
  368. package/types/utils/material-color/helper.d.ts +8 -0
  369. package/types/utils/material-color/helper.d.ts.map +1 -0
  370. package/types/utils/material-color/palettes/CorePalette.d.ts +75 -0
  371. package/types/utils/material-color/palettes/CorePalette.d.ts.map +1 -0
  372. package/types/utils/material-color/palettes/TonalPalette.d.ts +38 -0
  373. package/types/utils/material-color/palettes/TonalPalette.d.ts.map +1 -0
  374. package/types/utils/material-color/scheme/Scheme.d.ts +264 -0
  375. package/types/utils/material-color/scheme/Scheme.d.ts.map +1 -0
  376. package/types/utils/material-color/utils/color.d.ts +172 -0
  377. package/types/utils/material-color/utils/color.d.ts.map +1 -0
  378. package/types/utils/material-color/utils/math.d.ts +94 -0
  379. package/types/utils/material-color/utils/math.d.ts.map +1 -0
  380. package/types/utils/pixelmatch.d.ts +22 -0
  381. package/types/utils/pixelmatch.d.ts.map +1 -0
  382. package/types/utils/popup.d.ts +106 -0
  383. package/types/utils/popup.d.ts.map +1 -0
  384. package/types/utils/searchParams.d.ts +3 -0
  385. package/types/utils/searchParams.d.ts.map +1 -0
  386. package/types/utils/svg.d.ts +7 -0
  387. package/types/utils/svg.d.ts.map +1 -0
  388. package/utils/jsx-runtime.js +9 -4
  389. package/utils/material-color/scheme/Scheme.js +1 -1
  390. package/utils/pixelmatch.js +363 -0
  391. package/utils/popup.js +86 -10
  392. package/utils/searchParams.js +22 -0
  393. package/components/Button.md +0 -61
  394. package/components/ExtendedFab.js +0 -32
  395. package/components/Layout.js +0 -504
  396. package/components/Nav.js +0 -38
  397. package/core/DomAdapter.js +0 -586
  398. package/core/ICustomElement.d.ts +0 -291
  399. package/core/ICustomElement.js +0 -1
  400. package/core/test.js +0 -126
  401. package/core/typings.d.ts +0 -142
  402. package/core/typings.js +0 -1
  403. package/mixins/SurfaceMixin.js +0 -127
  404. package/theming/loader.js +0 -22
  405. /package/{utils/color_keywords.js → constants/colorKeywords.js} +0 -0
@@ -0,0 +1,2528 @@
1
+ declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
2
+ _resizeObserverEnabled: boolean;
3
+ }, any[]> & import("../core/CustomElement.js").Class<{
4
+ onResizeObserved(entry: ResizeObserverEntry): void;
5
+ observeResize(): void;
6
+ unobserveResize(): void;
7
+ }, any[]> & import("../core/CustomElement.js").Class<{
8
+ disabled: boolean;
9
+ focused: boolean;
10
+ hovered: boolean;
11
+ pressed: boolean;
12
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
13
+ _hovered: boolean;
14
+ _focused: boolean;
15
+ _focusedSynthetic: boolean;
16
+ _keyPressed: boolean;
17
+ _keyReleased: boolean;
18
+ _pointerPressed: boolean;
19
+ stateLayer: boolean;
20
+ }, any[]> & import("../core/CustomElement.js").Class<{
21
+ disabledState: boolean;
22
+ hoveredState: boolean;
23
+ focusedState: boolean;
24
+ pressedState: boolean;
25
+ touchedState: boolean;
26
+ pointedState: boolean;
27
+ }, any[]> & import("../core/CustomElement.js").Class<{
28
+ stateTargetElement: HTMLElement;
29
+ }, any[]> & import("../core/CustomElement.js").Class<{
30
+ color: string;
31
+ ink: string;
32
+ typeStyle: string;
33
+ }, any[]> & import("../core/CustomElement.js").Class<{
34
+ shapeTop: boolean;
35
+ shapeBottom: boolean;
36
+ shapeStart: boolean;
37
+ shapeEnd: boolean;
38
+ shapeStyle: string;
39
+ outlined: boolean;
40
+ }, any[]> & import("../core/CustomElement.js").Class<{
41
+ density: number;
42
+ }, any[]> & import("../core/CustomElement.js").Class<{
43
+ delegatesFocus: boolean;
44
+ }, any[]> & {
45
+ formAssociated: true;
46
+ } & import("../core/CustomElement.js").Class<{
47
+ _ipcListener: EventListener;
48
+ _ipcTarget: EventTarget;
49
+ _files: FileList;
50
+ }, any[]> & import("../core/CustomElement.js").Class<{
51
+ ariaControls: string;
52
+ autocomplete: string;
53
+ name: string;
54
+ readOnly: boolean;
55
+ formNoValidate: boolean;
56
+ defaultChecked: boolean;
57
+ _checkedDirty: boolean;
58
+ _checked: boolean;
59
+ required: boolean;
60
+ type: string;
61
+ _defaultValue: string;
62
+ _value: string;
63
+ _valueDirty: boolean;
64
+ _userInteracted: boolean;
65
+ _invalid: boolean;
66
+ _badInput: boolean;
67
+ _validationMessage: string;
68
+ _formDisabled: boolean;
69
+ _formReset: boolean;
70
+ }, any[]> & import("../core/CustomElement.js").Class<{
71
+ erroredState: boolean;
72
+ defaultValue: string;
73
+ _valueBehavior: "default" | "value" | "default/on" | "filename";
74
+ }, any[]> & import("../core/CustomElement.js").Class<{
75
+ _onSetValue(value: string): void;
76
+ _onSetChecked(checked: boolean): void;
77
+ }, any[]> & import("../core/CustomElement.js").Class<{
78
+ value: string;
79
+ checked: boolean;
80
+ }, any[]> & import("../core/CustomElement.js").Class<{
81
+ form: HTMLFormElement;
82
+ validity: ValidityState;
83
+ validationMessage: string;
84
+ willValidate: boolean;
85
+ labels: NodeList;
86
+ }, any[]> & import("../core/CustomElement.js").Class<{
87
+ disabledState: boolean;
88
+ }, any[]> & import("../core/CustomElement.js").Class<{
89
+ checkValidity(): boolean;
90
+ reportValidity(): boolean;
91
+ setCustomValidity(error: string): void;
92
+ _notifyRadioChange(key: string, value: string): void;
93
+ refreshFormAssociation(): void;
94
+ formAssociatedCallback(form: HTMLFormElement | null): void;
95
+ formIPCEvent(event: CustomEvent<[string, string]>): void;
96
+ formDisabledCallback(disabled: boolean): void;
97
+ formResetCallback(): void;
98
+ formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
99
+ _updateFormAssociatedValue(): void;
100
+ }, any[]> & import("../core/CustomElement.js").Class<{
101
+ ariaLabel: string;
102
+ _slotInnerText: string;
103
+ }, any[]> & import("../core/CustomElement.js").Class<{
104
+ focusableOnDisabled: boolean;
105
+ controlTagName: string;
106
+ controlVoidElement: boolean;
107
+ _slotMutationObserver: any;
108
+ }, any[]> & import("../core/CustomElement.js").Class<{
109
+ _onControlValue(value: string): void;
110
+ onValueChangingContentAttribute(): void;
111
+ focus(options?: FocusOptions): void;
112
+ click(): void;
113
+ }, any[]> & import("../core/CustomElement.js").Class<{
114
+ stateTargetElement: HTMLElement;
115
+ }, any[]> & import("../core/CustomElement.js").Class<{
116
+ checkValidity(): boolean;
117
+ reportValidity(): boolean;
118
+ setCustomValidity(error: string): void;
119
+ }, any[]> & import("../core/CustomElement.js").Class<{
120
+ _computedAriaLabel: string;
121
+ }, any[]> & import("../core/CustomElement.js").Class<{
122
+ _computedAriaLabelledby: never;
123
+ }, any[]> & import("../core/CustomElement.js").Class<{
124
+ stateLayer: boolean;
125
+ }, any[]> & import("../core/CustomElement.js").Class<{
126
+ type: string;
127
+ icon: string;
128
+ iconVariation: string;
129
+ label: string;
130
+ filled: boolean;
131
+ outlined: boolean;
132
+ inputPrefix: string;
133
+ inputSuffix: string;
134
+ trailingIcon: string;
135
+ trailingIconInk: string;
136
+ trailingIconLabel: string;
137
+ supporting: string;
138
+ error: string;
139
+ placeholder: string;
140
+ }, any[]> & import("../core/CustomElement.js").Class<{
141
+ erroredState: boolean;
142
+ }, any[]> & import("../core/CustomElement.js").Class<{
143
+ computePlaceholder: () => string;
144
+ shouldShowSupporting: () => boolean;
145
+ computeSupportingText: () => string;
146
+ populatedState: () => boolean;
147
+ _showLabelText: never;
148
+ }, any[]> & import("../core/CustomElement.js").Class<{
149
+ _shapeShapeTop: never;
150
+ computedIconVariation: () => string;
151
+ }, any[]> & import("../core/CustomElement.js").Class<{
152
+ accept: string;
153
+ alt: string;
154
+ dirName: string;
155
+ _formAction: string;
156
+ formEnctype: string;
157
+ formMethod: string;
158
+ formTarget: string;
159
+ _height: number;
160
+ _indeterminate: boolean;
161
+ max: string;
162
+ maxLength: number;
163
+ min: string;
164
+ minLength: number;
165
+ multiple: boolean;
166
+ pattern: string;
167
+ placeholder: string;
168
+ size: number;
169
+ src: string;
170
+ step: string;
171
+ _width: number;
172
+ }, any[]> & import("../core/CustomElement.js").Class<{
173
+ _useFormImplicitSubmission: boolean;
174
+ }, any[]> & import("../core/CustomElement.js").Class<{
175
+ _input: HTMLInputElement;
176
+ }, any[]> & import("../core/CustomElement.js").Class<{
177
+ indeterminate: boolean;
178
+ }, any[]> & import("../core/CustomElement.js").Class<{
179
+ controlTagName: string;
180
+ }, any[]> & import("../core/CustomElement.js").Class<{
181
+ _onSetChecked(checked: boolean): void;
182
+ _onSetValue(value: string): void;
183
+ }, any[]> & import("../core/CustomElement.js").Class<{
184
+ performImplicitSubmission(event: Event): void;
185
+ _redispatchControlClickEvent(event: Event): boolean;
186
+ _handleInputClick(event: MouseEvent): void;
187
+ }, any[]> & import("../core/CustomElement.js").Class<{
188
+ setRangeText(replacement: string): void;
189
+ setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
190
+ setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
191
+ showPicker(): void;
192
+ stepDown(n?: number): void;
193
+ stepUp(n?: number): void;
194
+ select(): void;
195
+ }, any[]> & import("../core/CustomElement.js").Class<{
196
+ files: FileList;
197
+ selectionDirection: "none" | "forward" | "backward";
198
+ selectionEnd: number;
199
+ selectionStart: number;
200
+ valueAsDate: Date;
201
+ valueAsNumber: number;
202
+ height: number;
203
+ formAction: string;
204
+ width: number;
205
+ }, any[]> & import("../core/CustomElement.js").Class<{
206
+ autocompleteInline: boolean;
207
+ autocompleteList: string;
208
+ autosuggestInline: boolean;
209
+ autoSelect: boolean;
210
+ _expanded: boolean;
211
+ acceptOnEscape: boolean;
212
+ _listbox: CustomElement & {
213
+ delegatesFocus: boolean;
214
+ } & {
215
+ _ariaRole: string;
216
+ } & {
217
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
218
+ } & {
219
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
220
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
221
+ } & {
222
+ kbdNav: string;
223
+ _kbdFocusable: boolean;
224
+ } & {
225
+ kbdNavQuery: string;
226
+ kbdNavFocusableWhenDisabled: boolean;
227
+ ariaOrientationDefault: "horizontal" | "vertical";
228
+ } & {
229
+ kbdNavChildren: NodeListOf<HTMLElement>;
230
+ } & {
231
+ _ariaOrientationIsVertical(): boolean;
232
+ focusCurrentOrFirst(): HTMLElement;
233
+ focusNext(current?: HTMLElement, loop?: boolean, reverse?: boolean): HTMLElement;
234
+ focusPrevious(current?: HTMLElement, loop?: boolean): HTMLElement;
235
+ focus(options?: FocusOptions): void;
236
+ refreshTabIndexes(): void;
237
+ } & {
238
+ disabled: boolean;
239
+ focused: boolean;
240
+ hovered: boolean;
241
+ pressed: boolean;
242
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
243
+ _hovered: boolean;
244
+ _focused: boolean;
245
+ _focusedSynthetic: boolean;
246
+ _keyPressed: boolean;
247
+ _keyReleased: boolean;
248
+ _pointerPressed: boolean;
249
+ stateLayer: boolean;
250
+ } & {
251
+ disabledState: boolean;
252
+ hoveredState: boolean;
253
+ focusedState: boolean;
254
+ pressedState: boolean;
255
+ touchedState: boolean;
256
+ pointedState: boolean;
257
+ } & {
258
+ stateTargetElement: HTMLElement;
259
+ } & {
260
+ _ipcListener: EventListener;
261
+ _ipcTarget: EventTarget;
262
+ _files: FileList;
263
+ } & {
264
+ ariaControls: string;
265
+ autocomplete: string;
266
+ name: string;
267
+ readOnly: boolean;
268
+ formNoValidate: boolean;
269
+ defaultChecked: boolean;
270
+ _checkedDirty: boolean;
271
+ _checked: boolean;
272
+ required: boolean;
273
+ type: string;
274
+ _defaultValue: string;
275
+ _value: string;
276
+ _valueDirty: boolean;
277
+ _userInteracted: boolean;
278
+ _invalid: boolean;
279
+ _badInput: boolean;
280
+ _validationMessage: string;
281
+ _formDisabled: boolean;
282
+ _formReset: boolean;
283
+ } & {
284
+ erroredState: boolean;
285
+ defaultValue: string;
286
+ _valueBehavior: "default" | "value" | "default/on" | "filename";
287
+ } & {
288
+ _onSetValue(value: string): void;
289
+ _onSetChecked(checked: boolean): void;
290
+ } & {
291
+ value: string;
292
+ checked: boolean;
293
+ } & {
294
+ form: HTMLFormElement;
295
+ validity: ValidityState;
296
+ validationMessage: string;
297
+ willValidate: boolean;
298
+ labels: NodeList;
299
+ } & {
300
+ disabledState: boolean;
301
+ } & {
302
+ checkValidity(): boolean;
303
+ reportValidity(): boolean;
304
+ setCustomValidity(error: string): void;
305
+ _notifyRadioChange(key: string, value: string): void;
306
+ refreshFormAssociation(): void;
307
+ formAssociatedCallback(form: HTMLFormElement | null): void;
308
+ formIPCEvent(event: CustomEvent<[string, string]>): void;
309
+ formDisabledCallback(disabled: boolean): void;
310
+ formResetCallback(): void;
311
+ formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
312
+ _updateFormAssociatedValue(): void;
313
+ } & {
314
+ density: number;
315
+ } & {
316
+ block: boolean;
317
+ inline: boolean;
318
+ row: boolean;
319
+ x: string;
320
+ y: string;
321
+ gap: number;
322
+ padding: string;
323
+ } & {
324
+ color: string;
325
+ ink: string;
326
+ typeStyle: string;
327
+ } & {
328
+ _ariaRole: string;
329
+ color: {
330
+ empty: string;
331
+ };
332
+ } & {
333
+ multiple: boolean;
334
+ size: number;
335
+ } & {
336
+ _ariaRole: string;
337
+ _optionsCollection: HTMLCollectionOf<InstanceType<typeof import("./ListOption.js").default>> & HTMLOptionsCollection;
338
+ _selectedOptionsCollection: any;
339
+ _handlingSelectedness: boolean;
340
+ _handleFormReset: boolean;
341
+ } & {
342
+ options: HTMLCollectionOf<CustomElement & {
343
+ delegatesFocus: boolean;
344
+ } & {
345
+ href: string;
346
+ target: string;
347
+ download: string;
348
+ ping: string;
349
+ rel: string;
350
+ hreflang: string;
351
+ referrerPolicy: string;
352
+ } & {
353
+ origin: string;
354
+ protocol: string;
355
+ username: string;
356
+ password: string;
357
+ host: string;
358
+ hostname: string;
359
+ port: string;
360
+ pathname: string;
361
+ search: string;
362
+ hash: string;
363
+ } & object & {
364
+ _ariaRole: string;
365
+ } & {
366
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
367
+ } & {
368
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
369
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
370
+ } & {
371
+ disabled: boolean;
372
+ focused: boolean;
373
+ hovered: boolean;
374
+ pressed: boolean;
375
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
376
+ _hovered: boolean;
377
+ _focused: boolean;
378
+ _focusedSynthetic: boolean;
379
+ _keyPressed: boolean;
380
+ _keyReleased: boolean;
381
+ _pointerPressed: boolean;
382
+ stateLayer: boolean;
383
+ } & {
384
+ disabledState: boolean;
385
+ hoveredState: boolean;
386
+ focusedState: boolean;
387
+ pressedState: boolean;
388
+ touchedState: boolean;
389
+ pointedState: boolean;
390
+ } & {
391
+ stateTargetElement: HTMLElement;
392
+ } & {
393
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
394
+ _rippleAdded: boolean;
395
+ } & {
396
+ _lastRipple: CustomElement & {
397
+ hadRippleHeld: boolean;
398
+ hadRippleReleased: boolean;
399
+ rippleStarted: boolean;
400
+ } & {
401
+ rippleState: string;
402
+ keepAlive: boolean;
403
+ _positionX: number;
404
+ _positionY: number;
405
+ _radius: number;
406
+ holdRipple: boolean;
407
+ } & {
408
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
409
+ styles: {
410
+ minHeight: string;
411
+ minWidth: string;
412
+ boxShadow: string;
413
+ top: string;
414
+ left: string;
415
+ };
416
+ };
417
+ } & {
418
+ updatePosition(x?: number, y?: number, size?: number): void;
419
+ handleRippleComplete(): void;
420
+ };
421
+ } & {
422
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
423
+ } & {
424
+ color: string;
425
+ ink: string;
426
+ typeStyle: string;
427
+ } & {
428
+ _ariaRole: string;
429
+ stateLayer: boolean;
430
+ } & {
431
+ leading: string;
432
+ avatar: string;
433
+ avatarColor: string;
434
+ avatarSrc: string;
435
+ src: string;
436
+ alt: string;
437
+ icon: string;
438
+ iconInk: string;
439
+ iconSrc: string;
440
+ iconVariation: string;
441
+ checkbox: string;
442
+ radio: string;
443
+ selectionColor: string;
444
+ selected: boolean;
445
+ supporting: string;
446
+ trailing: string;
447
+ trailingIcon: string;
448
+ trailingIconInk: string;
449
+ trailingIconSrc: string;
450
+ divider: string;
451
+ video: boolean;
452
+ lines: number;
453
+ _supportingSlotted: boolean;
454
+ } & {
455
+ disabledState: boolean;
456
+ } & {
457
+ isInteractive: () => boolean;
458
+ hasSupporting: () => boolean;
459
+ checkboxClass: () => string;
460
+ radioClass: () => string;
461
+ computedIconVariation: () => string;
462
+ } & {
463
+ _ariaRole: string;
464
+ _index: number;
465
+ _selectedDirty: boolean;
466
+ isInteractive: boolean;
467
+ } & {
468
+ _label: string;
469
+ _text: string;
470
+ defaultSelected: boolean;
471
+ _selected: boolean;
472
+ _value: string;
473
+ _formDisabled: boolean;
474
+ } & {
475
+ selected: boolean;
476
+ disabledState: boolean;
477
+ } & {
478
+ index: number;
479
+ form: HTMLFormElement;
480
+ text: string;
481
+ label: string;
482
+ value: string;
483
+ } & {
484
+ formDisabledCallback(formDisabled: boolean): void;
485
+ focus(options?: FocusOptions): void;
486
+ } & {
487
+ anchorAriaLabelledBy: () => string;
488
+ anchorAriaDescribedBy: () => string;
489
+ computedIconVariation: () => string;
490
+ }> & HTMLOptionsCollection;
491
+ selectedOptions: HTMLCollectionOf<CustomElement & {
492
+ delegatesFocus: boolean;
493
+ } & {
494
+ href: string;
495
+ target: string;
496
+ download: string;
497
+ ping: string;
498
+ rel: string;
499
+ hreflang: string;
500
+ referrerPolicy: string;
501
+ } & {
502
+ origin: string;
503
+ protocol: string;
504
+ username: string;
505
+ password: string;
506
+ host: string;
507
+ hostname: string;
508
+ port: string;
509
+ pathname: string;
510
+ search: string;
511
+ hash: string;
512
+ } & object & {
513
+ _ariaRole: string;
514
+ } & {
515
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
516
+ } & {
517
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
518
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
519
+ } & {
520
+ disabled: boolean;
521
+ focused: boolean;
522
+ hovered: boolean;
523
+ pressed: boolean;
524
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
525
+ _hovered: boolean;
526
+ _focused: boolean;
527
+ _focusedSynthetic: boolean;
528
+ _keyPressed: boolean;
529
+ _keyReleased: boolean;
530
+ _pointerPressed: boolean;
531
+ stateLayer: boolean;
532
+ } & {
533
+ disabledState: boolean;
534
+ hoveredState: boolean;
535
+ focusedState: boolean;
536
+ pressedState: boolean;
537
+ touchedState: boolean;
538
+ pointedState: boolean;
539
+ } & {
540
+ stateTargetElement: HTMLElement;
541
+ } & {
542
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
543
+ _rippleAdded: boolean;
544
+ } & {
545
+ _lastRipple: CustomElement & {
546
+ hadRippleHeld: boolean;
547
+ hadRippleReleased: boolean;
548
+ rippleStarted: boolean;
549
+ } & {
550
+ rippleState: string;
551
+ keepAlive: boolean;
552
+ _positionX: number;
553
+ _positionY: number;
554
+ _radius: number;
555
+ holdRipple: boolean;
556
+ } & {
557
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
558
+ styles: {
559
+ minHeight: string;
560
+ minWidth: string;
561
+ boxShadow: string;
562
+ top: string;
563
+ left: string;
564
+ };
565
+ };
566
+ } & {
567
+ updatePosition(x?: number, y?: number, size?: number): void;
568
+ handleRippleComplete(): void;
569
+ };
570
+ } & {
571
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
572
+ } & {
573
+ color: string;
574
+ ink: string;
575
+ typeStyle: string;
576
+ } & {
577
+ _ariaRole: string;
578
+ stateLayer: boolean;
579
+ } & {
580
+ leading: string;
581
+ avatar: string;
582
+ avatarColor: string;
583
+ avatarSrc: string;
584
+ src: string;
585
+ alt: string;
586
+ icon: string;
587
+ iconInk: string;
588
+ iconSrc: string;
589
+ iconVariation: string;
590
+ checkbox: string;
591
+ radio: string;
592
+ selectionColor: string;
593
+ selected: boolean;
594
+ supporting: string;
595
+ trailing: string;
596
+ trailingIcon: string;
597
+ trailingIconInk: string;
598
+ trailingIconSrc: string;
599
+ divider: string;
600
+ video: boolean;
601
+ lines: number;
602
+ _supportingSlotted: boolean;
603
+ } & {
604
+ disabledState: boolean;
605
+ } & {
606
+ isInteractive: () => boolean;
607
+ hasSupporting: () => boolean;
608
+ checkboxClass: () => string;
609
+ radioClass: () => string;
610
+ computedIconVariation: () => string;
611
+ } & {
612
+ _ariaRole: string;
613
+ _index: number;
614
+ _selectedDirty: boolean;
615
+ isInteractive: boolean;
616
+ } & {
617
+ _label: string;
618
+ _text: string;
619
+ defaultSelected: boolean;
620
+ _selected: boolean;
621
+ _value: string;
622
+ _formDisabled: boolean;
623
+ } & {
624
+ selected: boolean;
625
+ disabledState: boolean;
626
+ } & {
627
+ index: number;
628
+ form: HTMLFormElement;
629
+ text: string;
630
+ label: string;
631
+ value: string;
632
+ } & {
633
+ formDisabledCallback(formDisabled: boolean): void;
634
+ focus(options?: FocusOptions): void;
635
+ } & {
636
+ anchorAriaLabelledBy: () => string;
637
+ anchorAriaDescribedBy: () => string;
638
+ computedIconVariation: () => string;
639
+ }>;
640
+ type: "select-one" | "select-multiple";
641
+ kbdNavQuery: string;
642
+ kbdNavFocusableWhenDisabled: boolean;
643
+ } & {
644
+ length: number;
645
+ selectedIndex: number;
646
+ value: string;
647
+ add: (element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null) => void;
648
+ } & {
649
+ _selectedOptionsGenerator(): Generator<CustomElement & {
650
+ delegatesFocus: boolean;
651
+ } & {
652
+ href: string;
653
+ target: string;
654
+ download: string;
655
+ ping: string;
656
+ rel: string;
657
+ hreflang: string;
658
+ referrerPolicy: string;
659
+ } & {
660
+ origin: string;
661
+ protocol: string;
662
+ username: string;
663
+ password: string;
664
+ host: string;
665
+ hostname: string;
666
+ port: string;
667
+ pathname: string;
668
+ search: string;
669
+ hash: string;
670
+ } & object & {
671
+ _ariaRole: string;
672
+ } & {
673
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
674
+ } & {
675
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
676
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
677
+ } & {
678
+ disabled: boolean;
679
+ focused: boolean;
680
+ hovered: boolean;
681
+ pressed: boolean;
682
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
683
+ _hovered: boolean;
684
+ _focused: boolean;
685
+ _focusedSynthetic: boolean;
686
+ _keyPressed: boolean;
687
+ _keyReleased: boolean;
688
+ _pointerPressed: boolean;
689
+ stateLayer: boolean;
690
+ } & {
691
+ disabledState: boolean;
692
+ hoveredState: boolean;
693
+ focusedState: boolean;
694
+ pressedState: boolean;
695
+ touchedState: boolean;
696
+ pointedState: boolean;
697
+ } & {
698
+ stateTargetElement: HTMLElement;
699
+ } & {
700
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
701
+ _rippleAdded: boolean;
702
+ } & {
703
+ _lastRipple: CustomElement & {
704
+ hadRippleHeld: boolean;
705
+ hadRippleReleased: boolean;
706
+ rippleStarted: boolean;
707
+ } & {
708
+ rippleState: string;
709
+ keepAlive: boolean;
710
+ _positionX: number;
711
+ _positionY: number;
712
+ _radius: number;
713
+ holdRipple: boolean;
714
+ } & {
715
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
716
+ styles: {
717
+ minHeight: string;
718
+ minWidth: string;
719
+ boxShadow: string;
720
+ top: string;
721
+ left: string;
722
+ };
723
+ };
724
+ } & {
725
+ updatePosition(x?: number, y?: number, size?: number): void;
726
+ handleRippleComplete(): void;
727
+ };
728
+ } & {
729
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
730
+ } & {
731
+ color: string;
732
+ ink: string;
733
+ typeStyle: string;
734
+ } & {
735
+ _ariaRole: string;
736
+ stateLayer: boolean;
737
+ } & {
738
+ leading: string;
739
+ avatar: string;
740
+ avatarColor: string;
741
+ avatarSrc: string;
742
+ src: string;
743
+ alt: string;
744
+ icon: string;
745
+ iconInk: string;
746
+ iconSrc: string;
747
+ iconVariation: string;
748
+ checkbox: string;
749
+ radio: string;
750
+ selectionColor: string;
751
+ selected: boolean;
752
+ supporting: string;
753
+ trailing: string;
754
+ trailingIcon: string;
755
+ trailingIconInk: string;
756
+ trailingIconSrc: string;
757
+ divider: string;
758
+ video: boolean;
759
+ lines: number;
760
+ _supportingSlotted: boolean;
761
+ } & {
762
+ disabledState: boolean;
763
+ } & {
764
+ isInteractive: () => boolean;
765
+ hasSupporting: () => boolean;
766
+ checkboxClass: () => string;
767
+ radioClass: () => string;
768
+ computedIconVariation: () => string;
769
+ } & {
770
+ _ariaRole: string;
771
+ _index: number;
772
+ _selectedDirty: boolean;
773
+ isInteractive: boolean;
774
+ } & {
775
+ _label: string;
776
+ _text: string;
777
+ defaultSelected: boolean;
778
+ _selected: boolean;
779
+ _value: string;
780
+ _formDisabled: boolean;
781
+ } & {
782
+ selected: boolean;
783
+ disabledState: boolean;
784
+ } & {
785
+ index: number;
786
+ form: HTMLFormElement;
787
+ text: string;
788
+ label: string;
789
+ value: string;
790
+ } & {
791
+ formDisabledCallback(formDisabled: boolean): void;
792
+ focus(options?: FocusOptions): void;
793
+ } & {
794
+ anchorAriaLabelledBy: () => string;
795
+ anchorAriaDescribedBy: () => string;
796
+ computedIconVariation: () => string;
797
+ } & HTMLOptionElement, void, unknown>;
798
+ [Symbol.iterator](): Generator<CustomElement & {
799
+ delegatesFocus: boolean;
800
+ } & {
801
+ href: string;
802
+ target: string;
803
+ download: string;
804
+ ping: string;
805
+ rel: string;
806
+ hreflang: string;
807
+ referrerPolicy: string;
808
+ } & {
809
+ origin: string;
810
+ protocol: string;
811
+ username: string;
812
+ password: string;
813
+ host: string;
814
+ hostname: string;
815
+ port: string;
816
+ pathname: string;
817
+ search: string;
818
+ hash: string;
819
+ } & object & {
820
+ _ariaRole: string;
821
+ } & {
822
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
823
+ } & {
824
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
825
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
826
+ } & {
827
+ disabled: boolean;
828
+ focused: boolean;
829
+ hovered: boolean;
830
+ pressed: boolean;
831
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
832
+ _hovered: boolean;
833
+ _focused: boolean;
834
+ _focusedSynthetic: boolean;
835
+ _keyPressed: boolean;
836
+ _keyReleased: boolean;
837
+ _pointerPressed: boolean;
838
+ stateLayer: boolean;
839
+ } & {
840
+ disabledState: boolean;
841
+ hoveredState: boolean;
842
+ focusedState: boolean;
843
+ pressedState: boolean;
844
+ touchedState: boolean;
845
+ pointedState: boolean;
846
+ } & {
847
+ stateTargetElement: HTMLElement;
848
+ } & {
849
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
850
+ _rippleAdded: boolean;
851
+ } & {
852
+ _lastRipple: CustomElement & {
853
+ hadRippleHeld: boolean;
854
+ hadRippleReleased: boolean;
855
+ rippleStarted: boolean;
856
+ } & {
857
+ rippleState: string;
858
+ keepAlive: boolean;
859
+ _positionX: number;
860
+ _positionY: number;
861
+ _radius: number;
862
+ holdRipple: boolean;
863
+ } & {
864
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
865
+ styles: {
866
+ minHeight: string;
867
+ minWidth: string;
868
+ boxShadow: string;
869
+ top: string;
870
+ left: string;
871
+ };
872
+ };
873
+ } & {
874
+ updatePosition(x?: number, y?: number, size?: number): void;
875
+ handleRippleComplete(): void;
876
+ };
877
+ } & {
878
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
879
+ } & {
880
+ color: string;
881
+ ink: string;
882
+ typeStyle: string;
883
+ } & {
884
+ _ariaRole: string;
885
+ stateLayer: boolean;
886
+ } & {
887
+ leading: string;
888
+ avatar: string;
889
+ avatarColor: string;
890
+ avatarSrc: string;
891
+ src: string;
892
+ alt: string;
893
+ icon: string;
894
+ iconInk: string;
895
+ iconSrc: string;
896
+ iconVariation: string;
897
+ checkbox: string;
898
+ radio: string;
899
+ selectionColor: string;
900
+ selected: boolean;
901
+ supporting: string;
902
+ trailing: string;
903
+ trailingIcon: string;
904
+ trailingIconInk: string;
905
+ trailingIconSrc: string;
906
+ divider: string;
907
+ video: boolean;
908
+ lines: number;
909
+ _supportingSlotted: boolean;
910
+ } & {
911
+ disabledState: boolean;
912
+ } & {
913
+ isInteractive: () => boolean;
914
+ hasSupporting: () => boolean;
915
+ checkboxClass: () => string;
916
+ radioClass: () => string;
917
+ computedIconVariation: () => string;
918
+ } & {
919
+ _ariaRole: string;
920
+ _index: number;
921
+ _selectedDirty: boolean;
922
+ isInteractive: boolean;
923
+ } & {
924
+ _label: string;
925
+ _text: string;
926
+ defaultSelected: boolean;
927
+ _selected: boolean;
928
+ _value: string;
929
+ _formDisabled: boolean;
930
+ } & {
931
+ selected: boolean;
932
+ disabledState: boolean;
933
+ } & {
934
+ index: number;
935
+ form: HTMLFormElement;
936
+ text: string;
937
+ label: string;
938
+ value: string;
939
+ } & {
940
+ formDisabledCallback(formDisabled: boolean): void;
941
+ focus(options?: FocusOptions): void;
942
+ } & {
943
+ anchorAriaLabelledBy: () => string;
944
+ anchorAriaDescribedBy: () => string;
945
+ computedIconVariation: () => string;
946
+ } & HTMLOptionElement, void, unknown>;
947
+ focus(): void;
948
+ item(index: number): InstanceType<typeof import("./ListOption.js").default> | null;
949
+ namedItem(name: string): InstanceType<typeof import("./ListOption.js").default> | null;
950
+ onListboxClick(event: Event): void;
951
+ };
952
+ _focusedValue: string;
953
+ _focusedPosInSet: number;
954
+ _listboxSize: number;
955
+ _draftInput: string;
956
+ _hasSuggestion: boolean;
957
+ _listboxValue: string;
958
+ _lastComputedListboxValue: string;
959
+ _values: any[];
960
+ _chipSelected: boolean;
961
+ }, any[]> & import("../core/CustomElement.js").Class<{
962
+ _hasListbox: boolean;
963
+ _isSelect: boolean;
964
+ }, any[]> & import("../core/CustomElement.js").Class<{
965
+ listbox: CustomElement & {
966
+ delegatesFocus: boolean;
967
+ } & {
968
+ _ariaRole: string;
969
+ } & {
970
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
971
+ } & {
972
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
973
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
974
+ } & {
975
+ kbdNav: string;
976
+ _kbdFocusable: boolean;
977
+ } & {
978
+ kbdNavQuery: string;
979
+ kbdNavFocusableWhenDisabled: boolean;
980
+ ariaOrientationDefault: "horizontal" | "vertical";
981
+ } & {
982
+ kbdNavChildren: NodeListOf<HTMLElement>;
983
+ } & {
984
+ _ariaOrientationIsVertical(): boolean;
985
+ focusCurrentOrFirst(): HTMLElement;
986
+ focusNext(current?: HTMLElement, loop?: boolean, reverse?: boolean): HTMLElement;
987
+ focusPrevious(current?: HTMLElement, loop?: boolean): HTMLElement;
988
+ focus(options?: FocusOptions): void;
989
+ refreshTabIndexes(): void;
990
+ } & {
991
+ disabled: boolean;
992
+ focused: boolean;
993
+ hovered: boolean;
994
+ pressed: boolean;
995
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
996
+ _hovered: boolean;
997
+ _focused: boolean;
998
+ _focusedSynthetic: boolean;
999
+ _keyPressed: boolean;
1000
+ _keyReleased: boolean;
1001
+ _pointerPressed: boolean;
1002
+ stateLayer: boolean;
1003
+ } & {
1004
+ disabledState: boolean;
1005
+ hoveredState: boolean;
1006
+ focusedState: boolean;
1007
+ pressedState: boolean;
1008
+ touchedState: boolean;
1009
+ pointedState: boolean;
1010
+ } & {
1011
+ stateTargetElement: HTMLElement;
1012
+ } & {
1013
+ _ipcListener: EventListener;
1014
+ _ipcTarget: EventTarget;
1015
+ _files: FileList;
1016
+ } & {
1017
+ ariaControls: string;
1018
+ autocomplete: string;
1019
+ name: string;
1020
+ readOnly: boolean;
1021
+ formNoValidate: boolean;
1022
+ defaultChecked: boolean;
1023
+ _checkedDirty: boolean;
1024
+ _checked: boolean;
1025
+ required: boolean;
1026
+ type: string;
1027
+ _defaultValue: string;
1028
+ _value: string;
1029
+ _valueDirty: boolean;
1030
+ _userInteracted: boolean;
1031
+ _invalid: boolean;
1032
+ _badInput: boolean;
1033
+ _validationMessage: string;
1034
+ _formDisabled: boolean;
1035
+ _formReset: boolean;
1036
+ } & {
1037
+ erroredState: boolean;
1038
+ defaultValue: string;
1039
+ _valueBehavior: "default" | "value" | "default/on" | "filename";
1040
+ } & {
1041
+ _onSetValue(value: string): void;
1042
+ _onSetChecked(checked: boolean): void;
1043
+ } & {
1044
+ value: string;
1045
+ checked: boolean;
1046
+ } & {
1047
+ form: HTMLFormElement;
1048
+ validity: ValidityState;
1049
+ validationMessage: string;
1050
+ willValidate: boolean;
1051
+ labels: NodeList;
1052
+ } & {
1053
+ disabledState: boolean;
1054
+ } & {
1055
+ checkValidity(): boolean;
1056
+ reportValidity(): boolean;
1057
+ setCustomValidity(error: string): void;
1058
+ _notifyRadioChange(key: string, value: string): void;
1059
+ refreshFormAssociation(): void;
1060
+ formAssociatedCallback(form: HTMLFormElement | null): void;
1061
+ formIPCEvent(event: CustomEvent<[string, string]>): void;
1062
+ formDisabledCallback(disabled: boolean): void;
1063
+ formResetCallback(): void;
1064
+ formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
1065
+ _updateFormAssociatedValue(): void;
1066
+ } & {
1067
+ density: number;
1068
+ } & {
1069
+ block: boolean;
1070
+ inline: boolean;
1071
+ row: boolean;
1072
+ x: string;
1073
+ y: string;
1074
+ gap: number;
1075
+ padding: string;
1076
+ } & {
1077
+ color: string;
1078
+ ink: string;
1079
+ typeStyle: string;
1080
+ } & {
1081
+ _ariaRole: string;
1082
+ color: {
1083
+ empty: string;
1084
+ };
1085
+ } & {
1086
+ multiple: boolean;
1087
+ size: number;
1088
+ } & {
1089
+ _ariaRole: string;
1090
+ _optionsCollection: HTMLCollectionOf<InstanceType<typeof import("./ListOption.js").default>> & HTMLOptionsCollection;
1091
+ _selectedOptionsCollection: any;
1092
+ _handlingSelectedness: boolean;
1093
+ _handleFormReset: boolean;
1094
+ } & {
1095
+ options: HTMLCollectionOf<CustomElement & {
1096
+ delegatesFocus: boolean;
1097
+ } & {
1098
+ href: string;
1099
+ target: string;
1100
+ download: string;
1101
+ ping: string;
1102
+ rel: string;
1103
+ hreflang: string;
1104
+ referrerPolicy: string;
1105
+ } & {
1106
+ origin: string;
1107
+ protocol: string;
1108
+ username: string;
1109
+ password: string;
1110
+ host: string;
1111
+ hostname: string;
1112
+ port: string;
1113
+ pathname: string;
1114
+ search: string;
1115
+ hash: string;
1116
+ } & object & {
1117
+ _ariaRole: string;
1118
+ } & {
1119
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1120
+ } & {
1121
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1122
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1123
+ } & {
1124
+ disabled: boolean;
1125
+ focused: boolean;
1126
+ hovered: boolean;
1127
+ pressed: boolean;
1128
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1129
+ _hovered: boolean;
1130
+ _focused: boolean;
1131
+ _focusedSynthetic: boolean;
1132
+ _keyPressed: boolean;
1133
+ _keyReleased: boolean;
1134
+ _pointerPressed: boolean;
1135
+ stateLayer: boolean;
1136
+ } & {
1137
+ disabledState: boolean;
1138
+ hoveredState: boolean;
1139
+ focusedState: boolean;
1140
+ pressedState: boolean;
1141
+ touchedState: boolean;
1142
+ pointedState: boolean;
1143
+ } & {
1144
+ stateTargetElement: HTMLElement;
1145
+ } & {
1146
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1147
+ _rippleAdded: boolean;
1148
+ } & {
1149
+ _lastRipple: CustomElement & {
1150
+ hadRippleHeld: boolean;
1151
+ hadRippleReleased: boolean;
1152
+ rippleStarted: boolean;
1153
+ } & {
1154
+ rippleState: string;
1155
+ keepAlive: boolean;
1156
+ _positionX: number;
1157
+ _positionY: number;
1158
+ _radius: number;
1159
+ holdRipple: boolean;
1160
+ } & {
1161
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1162
+ styles: {
1163
+ minHeight: string;
1164
+ minWidth: string;
1165
+ boxShadow: string;
1166
+ top: string;
1167
+ left: string;
1168
+ };
1169
+ };
1170
+ } & {
1171
+ updatePosition(x?: number, y?: number, size?: number): void;
1172
+ handleRippleComplete(): void;
1173
+ };
1174
+ } & {
1175
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1176
+ } & {
1177
+ color: string;
1178
+ ink: string;
1179
+ typeStyle: string;
1180
+ } & {
1181
+ _ariaRole: string;
1182
+ stateLayer: boolean;
1183
+ } & {
1184
+ leading: string;
1185
+ avatar: string;
1186
+ avatarColor: string;
1187
+ avatarSrc: string;
1188
+ src: string;
1189
+ alt: string;
1190
+ icon: string;
1191
+ iconInk: string;
1192
+ iconSrc: string;
1193
+ iconVariation: string;
1194
+ checkbox: string;
1195
+ radio: string;
1196
+ selectionColor: string;
1197
+ selected: boolean;
1198
+ supporting: string;
1199
+ trailing: string;
1200
+ trailingIcon: string;
1201
+ trailingIconInk: string;
1202
+ trailingIconSrc: string;
1203
+ divider: string;
1204
+ video: boolean;
1205
+ lines: number;
1206
+ _supportingSlotted: boolean;
1207
+ } & {
1208
+ disabledState: boolean;
1209
+ } & {
1210
+ isInteractive: () => boolean;
1211
+ hasSupporting: () => boolean;
1212
+ checkboxClass: () => string;
1213
+ radioClass: () => string;
1214
+ computedIconVariation: () => string;
1215
+ } & {
1216
+ _ariaRole: string;
1217
+ _index: number;
1218
+ _selectedDirty: boolean;
1219
+ isInteractive: boolean;
1220
+ } & {
1221
+ _label: string;
1222
+ _text: string;
1223
+ defaultSelected: boolean;
1224
+ _selected: boolean;
1225
+ _value: string;
1226
+ _formDisabled: boolean;
1227
+ } & {
1228
+ selected: boolean;
1229
+ disabledState: boolean;
1230
+ } & {
1231
+ index: number;
1232
+ form: HTMLFormElement;
1233
+ text: string;
1234
+ label: string;
1235
+ value: string;
1236
+ } & {
1237
+ formDisabledCallback(formDisabled: boolean): void;
1238
+ focus(options?: FocusOptions): void;
1239
+ } & {
1240
+ anchorAriaLabelledBy: () => string;
1241
+ anchorAriaDescribedBy: () => string;
1242
+ computedIconVariation: () => string;
1243
+ }> & HTMLOptionsCollection;
1244
+ selectedOptions: HTMLCollectionOf<CustomElement & {
1245
+ delegatesFocus: boolean;
1246
+ } & {
1247
+ href: string;
1248
+ target: string;
1249
+ download: string;
1250
+ ping: string;
1251
+ rel: string;
1252
+ hreflang: string;
1253
+ referrerPolicy: string;
1254
+ } & {
1255
+ origin: string;
1256
+ protocol: string;
1257
+ username: string;
1258
+ password: string;
1259
+ host: string;
1260
+ hostname: string;
1261
+ port: string;
1262
+ pathname: string;
1263
+ search: string;
1264
+ hash: string;
1265
+ } & object & {
1266
+ _ariaRole: string;
1267
+ } & {
1268
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1269
+ } & {
1270
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1271
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1272
+ } & {
1273
+ disabled: boolean;
1274
+ focused: boolean;
1275
+ hovered: boolean;
1276
+ pressed: boolean;
1277
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1278
+ _hovered: boolean;
1279
+ _focused: boolean;
1280
+ _focusedSynthetic: boolean;
1281
+ _keyPressed: boolean;
1282
+ _keyReleased: boolean;
1283
+ _pointerPressed: boolean;
1284
+ stateLayer: boolean;
1285
+ } & {
1286
+ disabledState: boolean;
1287
+ hoveredState: boolean;
1288
+ focusedState: boolean;
1289
+ pressedState: boolean;
1290
+ touchedState: boolean;
1291
+ pointedState: boolean;
1292
+ } & {
1293
+ stateTargetElement: HTMLElement;
1294
+ } & {
1295
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1296
+ _rippleAdded: boolean;
1297
+ } & {
1298
+ _lastRipple: CustomElement & {
1299
+ hadRippleHeld: boolean;
1300
+ hadRippleReleased: boolean;
1301
+ rippleStarted: boolean;
1302
+ } & {
1303
+ rippleState: string;
1304
+ keepAlive: boolean;
1305
+ _positionX: number;
1306
+ _positionY: number;
1307
+ _radius: number;
1308
+ holdRipple: boolean;
1309
+ } & {
1310
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1311
+ styles: {
1312
+ minHeight: string;
1313
+ minWidth: string;
1314
+ boxShadow: string;
1315
+ top: string;
1316
+ left: string;
1317
+ };
1318
+ };
1319
+ } & {
1320
+ updatePosition(x?: number, y?: number, size?: number): void;
1321
+ handleRippleComplete(): void;
1322
+ };
1323
+ } & {
1324
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1325
+ } & {
1326
+ color: string;
1327
+ ink: string;
1328
+ typeStyle: string;
1329
+ } & {
1330
+ _ariaRole: string;
1331
+ stateLayer: boolean;
1332
+ } & {
1333
+ leading: string;
1334
+ avatar: string;
1335
+ avatarColor: string;
1336
+ avatarSrc: string;
1337
+ src: string;
1338
+ alt: string;
1339
+ icon: string;
1340
+ iconInk: string;
1341
+ iconSrc: string;
1342
+ iconVariation: string;
1343
+ checkbox: string;
1344
+ radio: string;
1345
+ selectionColor: string;
1346
+ selected: boolean;
1347
+ supporting: string;
1348
+ trailing: string;
1349
+ trailingIcon: string;
1350
+ trailingIconInk: string;
1351
+ trailingIconSrc: string;
1352
+ divider: string;
1353
+ video: boolean;
1354
+ lines: number;
1355
+ _supportingSlotted: boolean;
1356
+ } & {
1357
+ disabledState: boolean;
1358
+ } & {
1359
+ isInteractive: () => boolean;
1360
+ hasSupporting: () => boolean;
1361
+ checkboxClass: () => string;
1362
+ radioClass: () => string;
1363
+ computedIconVariation: () => string;
1364
+ } & {
1365
+ _ariaRole: string;
1366
+ _index: number;
1367
+ _selectedDirty: boolean;
1368
+ isInteractive: boolean;
1369
+ } & {
1370
+ _label: string;
1371
+ _text: string;
1372
+ defaultSelected: boolean;
1373
+ _selected: boolean;
1374
+ _value: string;
1375
+ _formDisabled: boolean;
1376
+ } & {
1377
+ selected: boolean;
1378
+ disabledState: boolean;
1379
+ } & {
1380
+ index: number;
1381
+ form: HTMLFormElement;
1382
+ text: string;
1383
+ label: string;
1384
+ value: string;
1385
+ } & {
1386
+ formDisabledCallback(formDisabled: boolean): void;
1387
+ focus(options?: FocusOptions): void;
1388
+ } & {
1389
+ anchorAriaLabelledBy: () => string;
1390
+ anchorAriaDescribedBy: () => string;
1391
+ computedIconVariation: () => string;
1392
+ }>;
1393
+ type: "select-one" | "select-multiple";
1394
+ kbdNavQuery: string;
1395
+ kbdNavFocusableWhenDisabled: boolean;
1396
+ } & {
1397
+ length: number;
1398
+ selectedIndex: number;
1399
+ value: string;
1400
+ add: (element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null) => void;
1401
+ } & {
1402
+ _selectedOptionsGenerator(): Generator<CustomElement & {
1403
+ delegatesFocus: boolean;
1404
+ } & {
1405
+ href: string;
1406
+ target: string;
1407
+ download: string;
1408
+ ping: string;
1409
+ rel: string;
1410
+ hreflang: string;
1411
+ referrerPolicy: string;
1412
+ } & {
1413
+ origin: string;
1414
+ protocol: string;
1415
+ username: string;
1416
+ password: string;
1417
+ host: string;
1418
+ hostname: string;
1419
+ port: string;
1420
+ pathname: string;
1421
+ search: string;
1422
+ hash: string;
1423
+ } & object & {
1424
+ _ariaRole: string;
1425
+ } & {
1426
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1427
+ } & {
1428
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1429
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1430
+ } & {
1431
+ disabled: boolean;
1432
+ focused: boolean;
1433
+ hovered: boolean;
1434
+ pressed: boolean;
1435
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1436
+ _hovered: boolean;
1437
+ _focused: boolean;
1438
+ _focusedSynthetic: boolean;
1439
+ _keyPressed: boolean;
1440
+ _keyReleased: boolean;
1441
+ _pointerPressed: boolean;
1442
+ stateLayer: boolean;
1443
+ } & {
1444
+ disabledState: boolean;
1445
+ hoveredState: boolean;
1446
+ focusedState: boolean;
1447
+ pressedState: boolean;
1448
+ touchedState: boolean;
1449
+ pointedState: boolean;
1450
+ } & {
1451
+ stateTargetElement: HTMLElement;
1452
+ } & {
1453
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1454
+ _rippleAdded: boolean;
1455
+ } & {
1456
+ _lastRipple: CustomElement & {
1457
+ hadRippleHeld: boolean;
1458
+ hadRippleReleased: boolean;
1459
+ rippleStarted: boolean;
1460
+ } & {
1461
+ rippleState: string;
1462
+ keepAlive: boolean;
1463
+ _positionX: number;
1464
+ _positionY: number;
1465
+ _radius: number;
1466
+ holdRipple: boolean;
1467
+ } & {
1468
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1469
+ styles: {
1470
+ minHeight: string;
1471
+ minWidth: string;
1472
+ boxShadow: string;
1473
+ top: string;
1474
+ left: string;
1475
+ };
1476
+ };
1477
+ } & {
1478
+ updatePosition(x?: number, y?: number, size?: number): void;
1479
+ handleRippleComplete(): void;
1480
+ };
1481
+ } & {
1482
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1483
+ } & {
1484
+ color: string;
1485
+ ink: string;
1486
+ typeStyle: string;
1487
+ } & {
1488
+ _ariaRole: string;
1489
+ stateLayer: boolean;
1490
+ } & {
1491
+ leading: string;
1492
+ avatar: string;
1493
+ avatarColor: string;
1494
+ avatarSrc: string;
1495
+ src: string;
1496
+ alt: string;
1497
+ icon: string;
1498
+ iconInk: string;
1499
+ iconSrc: string;
1500
+ iconVariation: string;
1501
+ checkbox: string;
1502
+ radio: string;
1503
+ selectionColor: string;
1504
+ selected: boolean;
1505
+ supporting: string;
1506
+ trailing: string;
1507
+ trailingIcon: string;
1508
+ trailingIconInk: string;
1509
+ trailingIconSrc: string;
1510
+ divider: string;
1511
+ video: boolean;
1512
+ lines: number;
1513
+ _supportingSlotted: boolean;
1514
+ } & {
1515
+ disabledState: boolean;
1516
+ } & {
1517
+ isInteractive: () => boolean;
1518
+ hasSupporting: () => boolean;
1519
+ checkboxClass: () => string;
1520
+ radioClass: () => string;
1521
+ computedIconVariation: () => string;
1522
+ } & {
1523
+ _ariaRole: string;
1524
+ _index: number;
1525
+ _selectedDirty: boolean;
1526
+ isInteractive: boolean;
1527
+ } & {
1528
+ _label: string;
1529
+ _text: string;
1530
+ defaultSelected: boolean;
1531
+ _selected: boolean;
1532
+ _value: string;
1533
+ _formDisabled: boolean;
1534
+ } & {
1535
+ selected: boolean;
1536
+ disabledState: boolean;
1537
+ } & {
1538
+ index: number;
1539
+ form: HTMLFormElement;
1540
+ text: string;
1541
+ label: string;
1542
+ value: string;
1543
+ } & {
1544
+ formDisabledCallback(formDisabled: boolean): void;
1545
+ focus(options?: FocusOptions): void;
1546
+ } & {
1547
+ anchorAriaLabelledBy: () => string;
1548
+ anchorAriaDescribedBy: () => string;
1549
+ computedIconVariation: () => string;
1550
+ } & HTMLOptionElement, void, unknown>;
1551
+ [Symbol.iterator](): Generator<CustomElement & {
1552
+ delegatesFocus: boolean;
1553
+ } & {
1554
+ href: string;
1555
+ target: string;
1556
+ download: string;
1557
+ ping: string;
1558
+ rel: string;
1559
+ hreflang: string;
1560
+ referrerPolicy: string;
1561
+ } & {
1562
+ origin: string;
1563
+ protocol: string;
1564
+ username: string;
1565
+ password: string;
1566
+ host: string;
1567
+ hostname: string;
1568
+ port: string;
1569
+ pathname: string;
1570
+ search: string;
1571
+ hash: string;
1572
+ } & object & {
1573
+ _ariaRole: string;
1574
+ } & {
1575
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1576
+ } & {
1577
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1578
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1579
+ } & {
1580
+ disabled: boolean;
1581
+ focused: boolean;
1582
+ hovered: boolean;
1583
+ pressed: boolean;
1584
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1585
+ _hovered: boolean;
1586
+ _focused: boolean;
1587
+ _focusedSynthetic: boolean;
1588
+ _keyPressed: boolean;
1589
+ _keyReleased: boolean;
1590
+ _pointerPressed: boolean;
1591
+ stateLayer: boolean;
1592
+ } & {
1593
+ disabledState: boolean;
1594
+ hoveredState: boolean;
1595
+ focusedState: boolean;
1596
+ pressedState: boolean;
1597
+ touchedState: boolean;
1598
+ pointedState: boolean;
1599
+ } & {
1600
+ stateTargetElement: HTMLElement;
1601
+ } & {
1602
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1603
+ _rippleAdded: boolean;
1604
+ } & {
1605
+ _lastRipple: CustomElement & {
1606
+ hadRippleHeld: boolean;
1607
+ hadRippleReleased: boolean;
1608
+ rippleStarted: boolean;
1609
+ } & {
1610
+ rippleState: string;
1611
+ keepAlive: boolean;
1612
+ _positionX: number;
1613
+ _positionY: number;
1614
+ _radius: number;
1615
+ holdRipple: boolean;
1616
+ } & {
1617
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1618
+ styles: {
1619
+ minHeight: string;
1620
+ minWidth: string;
1621
+ boxShadow: string;
1622
+ top: string;
1623
+ left: string;
1624
+ };
1625
+ };
1626
+ } & {
1627
+ updatePosition(x?: number, y?: number, size?: number): void;
1628
+ handleRippleComplete(): void;
1629
+ };
1630
+ } & {
1631
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1632
+ } & {
1633
+ color: string;
1634
+ ink: string;
1635
+ typeStyle: string;
1636
+ } & {
1637
+ _ariaRole: string;
1638
+ stateLayer: boolean;
1639
+ } & {
1640
+ leading: string;
1641
+ avatar: string;
1642
+ avatarColor: string;
1643
+ avatarSrc: string;
1644
+ src: string;
1645
+ alt: string;
1646
+ icon: string;
1647
+ iconInk: string;
1648
+ iconSrc: string;
1649
+ iconVariation: string;
1650
+ checkbox: string;
1651
+ radio: string;
1652
+ selectionColor: string;
1653
+ selected: boolean;
1654
+ supporting: string;
1655
+ trailing: string;
1656
+ trailingIcon: string;
1657
+ trailingIconInk: string;
1658
+ trailingIconSrc: string;
1659
+ divider: string;
1660
+ video: boolean;
1661
+ lines: number;
1662
+ _supportingSlotted: boolean;
1663
+ } & {
1664
+ disabledState: boolean;
1665
+ } & {
1666
+ isInteractive: () => boolean;
1667
+ hasSupporting: () => boolean;
1668
+ checkboxClass: () => string;
1669
+ radioClass: () => string;
1670
+ computedIconVariation: () => string;
1671
+ } & {
1672
+ _ariaRole: string;
1673
+ _index: number;
1674
+ _selectedDirty: boolean;
1675
+ isInteractive: boolean;
1676
+ } & {
1677
+ _label: string;
1678
+ _text: string;
1679
+ defaultSelected: boolean;
1680
+ _selected: boolean;
1681
+ _value: string;
1682
+ _formDisabled: boolean;
1683
+ } & {
1684
+ selected: boolean;
1685
+ disabledState: boolean;
1686
+ } & {
1687
+ index: number;
1688
+ form: HTMLFormElement;
1689
+ text: string;
1690
+ label: string;
1691
+ value: string;
1692
+ } & {
1693
+ formDisabledCallback(formDisabled: boolean): void;
1694
+ focus(options?: FocusOptions): void;
1695
+ } & {
1696
+ anchorAriaLabelledBy: () => string;
1697
+ anchorAriaDescribedBy: () => string;
1698
+ computedIconVariation: () => string;
1699
+ } & HTMLOptionElement, void, unknown>;
1700
+ focus(): void;
1701
+ item(index: number): InstanceType<typeof import("./ListOption.js").default> | null;
1702
+ namedItem(name: string): InstanceType<typeof import("./ListOption.js").default> | null;
1703
+ onListboxClick(event: Event): void;
1704
+ };
1705
+ }, any[]> & import("../core/CustomElement.js").Class<{
1706
+ /** @type {EventListener} */
1707
+ _onListboxChangeListener: EventListener;
1708
+ /** @type {EventListener} */
1709
+ _onListboxClickListener: EventListener;
1710
+ /** @type {EventListener} */
1711
+ _onPopupFocusoutListener: EventListener;
1712
+ _suggestionText: string;
1713
+ _suggestionValue: string;
1714
+ /** @type {Pick<HTMLOptionElement, 'label'|'value'|'selected'>} */
1715
+ _suggestionOption: Pick<HTMLOptionElement, "label" | "value" | "selected">;
1716
+ }, any[]> & import("../core/CustomElement.js").Class<{
1717
+ stateTargetElement: HTMLElement;
1718
+ }, any[]> & import("../core/CustomElement.js").Class<{
1719
+ onResizeObserved(): void;
1720
+ /**
1721
+ * Listbox should close if clicking own selection
1722
+ * @param {Event} event
1723
+ */
1724
+ onListboxClick(event: Event): void;
1725
+ /**
1726
+ * @param {Event} event
1727
+ */
1728
+ onListboxChange(event: Event): void;
1729
+ /** @param {FocusEvent} Event */
1730
+ onPopupFocusout({ relatedTarget }: FocusEvent): void;
1731
+ applyAutocompleteList(): void;
1732
+ showListbox(): void;
1733
+ closeListbox(): void;
1734
+ toggleListbox(): void;
1735
+ /**
1736
+ * @param {Pick<HTMLOptionElement, 'label'|'value'|'selected'>} option
1737
+ * @return {void}
1738
+ */
1739
+ suggestOption(option: Pick<HTMLOptionElement, "label" | "value" | "selected">): void;
1740
+ acceptSuggestion(emitChange?: boolean): void;
1741
+ /**
1742
+ * @param {Object} options
1743
+ * @param {boolean} [options.first] first option
1744
+ * @param {boolean} [options.last] first option
1745
+ * @param {boolean} [options.next] next fosuable option
1746
+ * @param {boolean} [options.previous] previous focusable option
1747
+ * @param {string} [options.startsWith] option label starsWith
1748
+ * @param {string} [options.value] matches option value
1749
+ * @param {string} [options.label] matches option label
1750
+ */
1751
+ changeSuggestion({ first, last, next, previous, startsWith, value, label }: {
1752
+ first?: boolean;
1753
+ last?: boolean;
1754
+ next?: boolean;
1755
+ previous?: boolean;
1756
+ startsWith?: string;
1757
+ value?: string;
1758
+ label?: string;
1759
+ }): void;
1760
+ resetSuggestion(): void;
1761
+ refreshMultiple(): void;
1762
+ populateInputFromListbox(): void;
1763
+ /** @param {CloseEvent & {currentTarget: HTMLElement}} event */
1764
+ onChipClose({ currentTarget }: CloseEvent & {
1765
+ currentTarget: HTMLElement;
1766
+ }): void;
1767
+ }, any[]> & import("../core/CustomElement.js").Class<{
1768
+ showTrailingIcon: () => string;
1769
+ computedTrailingIcon: () => string;
1770
+ controlTypeAttrValue: () => string;
1771
+ controlReadonlyAttrValue: () => boolean;
1772
+ controlIsSelect: () => boolean;
1773
+ ariaExpandedAttrValue: () => string;
1774
+ ariaControlsAttrValue: () => string;
1775
+ ariaAutocompleteAttrValue: () => "inline" | "both";
1776
+ ariaActiveDescendantAttrValue: () => "" | "aria-active";
1777
+ controlRoleAttrValue: () => string;
1778
+ populatedState: () => boolean;
1779
+ }, any[]> & import("../core/CustomElement.js").Class<{
1780
+ _onSetValue(value: string): void;
1781
+ _onControlValue(value: string): void;
1782
+ }, any[]>;
1783
+ export default _default;
1784
+ export type Listbox = typeof CustomElement & import("../core/CustomElement.js").Class<{
1785
+ delegatesFocus: boolean;
1786
+ }, any[]> & import("../core/CustomElement.js").Class<{
1787
+ _ariaRole: string;
1788
+ }, any[]> & import("../core/CustomElement.js").Class<{
1789
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1790
+ }, any[]> & import("../core/CustomElement.js").Class<{
1791
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1792
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1793
+ }, any[]> & import("../core/CustomElement.js").Class<{
1794
+ kbdNav: string;
1795
+ _kbdFocusable: boolean;
1796
+ }, any[]> & import("../core/CustomElement.js").Class<{
1797
+ kbdNavQuery: string;
1798
+ kbdNavFocusableWhenDisabled: boolean;
1799
+ ariaOrientationDefault: "horizontal" | "vertical";
1800
+ }, any[]> & import("../core/CustomElement.js").Class<{
1801
+ kbdNavChildren: NodeListOf<HTMLElement>;
1802
+ }, any[]> & import("../core/CustomElement.js").Class<{
1803
+ _ariaOrientationIsVertical(): boolean;
1804
+ focusCurrentOrFirst(): HTMLElement;
1805
+ focusNext(current?: HTMLElement, loop?: boolean, reverse?: boolean): HTMLElement;
1806
+ focusPrevious(current?: HTMLElement, loop?: boolean): HTMLElement;
1807
+ focus(options?: FocusOptions): void;
1808
+ refreshTabIndexes(): void;
1809
+ }, any[]> & import("../core/CustomElement.js").Class<{
1810
+ disabled: boolean;
1811
+ focused: boolean;
1812
+ hovered: boolean;
1813
+ pressed: boolean;
1814
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1815
+ _hovered: boolean;
1816
+ _focused: boolean;
1817
+ _focusedSynthetic: boolean;
1818
+ _keyPressed: boolean;
1819
+ _keyReleased: boolean;
1820
+ _pointerPressed: boolean;
1821
+ stateLayer: boolean;
1822
+ }, any[]> & import("../core/CustomElement.js").Class<{
1823
+ disabledState: boolean;
1824
+ hoveredState: boolean;
1825
+ focusedState: boolean;
1826
+ pressedState: boolean;
1827
+ touchedState: boolean;
1828
+ pointedState: boolean;
1829
+ }, any[]> & import("../core/CustomElement.js").Class<{
1830
+ stateTargetElement: HTMLElement;
1831
+ }, any[]> & {
1832
+ formAssociated: true;
1833
+ } & import("../core/CustomElement.js").Class<{
1834
+ _ipcListener: EventListener;
1835
+ _ipcTarget: EventTarget;
1836
+ _files: FileList;
1837
+ }, any[]> & import("../core/CustomElement.js").Class<{
1838
+ ariaControls: string;
1839
+ autocomplete: string;
1840
+ name: string;
1841
+ readOnly: boolean;
1842
+ formNoValidate: boolean;
1843
+ defaultChecked: boolean;
1844
+ _checkedDirty: boolean;
1845
+ _checked: boolean;
1846
+ required: boolean;
1847
+ type: string;
1848
+ _defaultValue: string;
1849
+ _value: string;
1850
+ _valueDirty: boolean;
1851
+ _userInteracted: boolean;
1852
+ _invalid: boolean;
1853
+ _badInput: boolean;
1854
+ _validationMessage: string;
1855
+ _formDisabled: boolean;
1856
+ _formReset: boolean;
1857
+ }, any[]> & import("../core/CustomElement.js").Class<{
1858
+ erroredState: boolean;
1859
+ defaultValue: string;
1860
+ _valueBehavior: "default" | "value" | "default/on" | "filename";
1861
+ }, any[]> & import("../core/CustomElement.js").Class<{
1862
+ _onSetValue(value: string): void;
1863
+ _onSetChecked(checked: boolean): void;
1864
+ }, any[]> & import("../core/CustomElement.js").Class<{
1865
+ value: string;
1866
+ checked: boolean;
1867
+ }, any[]> & import("../core/CustomElement.js").Class<{
1868
+ form: HTMLFormElement;
1869
+ validity: ValidityState;
1870
+ validationMessage: string;
1871
+ willValidate: boolean;
1872
+ labels: NodeList;
1873
+ }, any[]> & import("../core/CustomElement.js").Class<{
1874
+ disabledState: boolean;
1875
+ }, any[]> & import("../core/CustomElement.js").Class<{
1876
+ checkValidity(): boolean;
1877
+ reportValidity(): boolean;
1878
+ setCustomValidity(error: string): void;
1879
+ _notifyRadioChange(key: string, value: string): void;
1880
+ refreshFormAssociation(): void;
1881
+ formAssociatedCallback(form: HTMLFormElement | null): void;
1882
+ formIPCEvent(event: CustomEvent<[string, string]>): void;
1883
+ formDisabledCallback(disabled: boolean): void;
1884
+ formResetCallback(): void;
1885
+ formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
1886
+ _updateFormAssociatedValue(): void;
1887
+ }, any[]> & import("../core/CustomElement.js").Class<{
1888
+ density: number;
1889
+ }, any[]> & import("../core/CustomElement.js").Class<{
1890
+ block: boolean;
1891
+ inline: boolean;
1892
+ row: boolean;
1893
+ x: string;
1894
+ y: string;
1895
+ gap: number;
1896
+ padding: string;
1897
+ }, any[]> & import("../core/CustomElement.js").Class<{
1898
+ color: string;
1899
+ ink: string;
1900
+ typeStyle: string;
1901
+ }, any[]> & import("../core/CustomElement.js").Class<{
1902
+ _ariaRole: string;
1903
+ color: {
1904
+ empty: string;
1905
+ };
1906
+ }, any[]> & import("../core/CustomElement.js").Class<{
1907
+ multiple: boolean;
1908
+ size: number;
1909
+ }, any[]> & import("../core/CustomElement.js").Class<{
1910
+ _ariaRole: string;
1911
+ _optionsCollection: HTMLCollectionOf<InstanceType<typeof import("./ListOption.js").default>> & HTMLOptionsCollection;
1912
+ _selectedOptionsCollection: any;
1913
+ _handlingSelectedness: boolean;
1914
+ _handleFormReset: boolean;
1915
+ }, any[]> & import("../core/CustomElement.js").Class<{
1916
+ options: HTMLCollectionOf<CustomElement & {
1917
+ delegatesFocus: boolean;
1918
+ } & {
1919
+ href: string;
1920
+ target: string;
1921
+ download: string;
1922
+ ping: string;
1923
+ rel: string;
1924
+ hreflang: string;
1925
+ referrerPolicy: string;
1926
+ } & {
1927
+ origin: string;
1928
+ protocol: string;
1929
+ username: string;
1930
+ password: string;
1931
+ host: string;
1932
+ hostname: string;
1933
+ port: string;
1934
+ pathname: string;
1935
+ search: string;
1936
+ hash: string;
1937
+ } & object & {
1938
+ _ariaRole: string;
1939
+ } & {
1940
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
1941
+ } & {
1942
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
1943
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
1944
+ } & {
1945
+ disabled: boolean;
1946
+ focused: boolean;
1947
+ hovered: boolean;
1948
+ pressed: boolean;
1949
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1950
+ _hovered: boolean;
1951
+ _focused: boolean;
1952
+ _focusedSynthetic: boolean;
1953
+ _keyPressed: boolean;
1954
+ _keyReleased: boolean;
1955
+ _pointerPressed: boolean;
1956
+ stateLayer: boolean;
1957
+ } & {
1958
+ disabledState: boolean;
1959
+ hoveredState: boolean;
1960
+ focusedState: boolean;
1961
+ pressedState: boolean;
1962
+ touchedState: boolean;
1963
+ pointedState: boolean;
1964
+ } & {
1965
+ stateTargetElement: HTMLElement;
1966
+ } & {
1967
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1968
+ _rippleAdded: boolean;
1969
+ } & {
1970
+ _lastRipple: CustomElement & {
1971
+ hadRippleHeld: boolean;
1972
+ hadRippleReleased: boolean;
1973
+ rippleStarted: boolean;
1974
+ } & {
1975
+ rippleState: string;
1976
+ keepAlive: boolean;
1977
+ _positionX: number;
1978
+ _positionY: number;
1979
+ _radius: number;
1980
+ holdRipple: boolean;
1981
+ } & {
1982
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1983
+ styles: {
1984
+ minHeight: string;
1985
+ minWidth: string;
1986
+ boxShadow: string;
1987
+ top: string;
1988
+ left: string;
1989
+ };
1990
+ };
1991
+ } & {
1992
+ updatePosition(x?: number, y?: number, size?: number): void;
1993
+ handleRippleComplete(): void;
1994
+ };
1995
+ } & {
1996
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1997
+ } & {
1998
+ color: string;
1999
+ ink: string;
2000
+ typeStyle: string;
2001
+ } & {
2002
+ _ariaRole: string;
2003
+ stateLayer: boolean;
2004
+ } & {
2005
+ leading: string;
2006
+ avatar: string;
2007
+ avatarColor: string;
2008
+ avatarSrc: string;
2009
+ src: string;
2010
+ alt: string;
2011
+ icon: string;
2012
+ iconInk: string;
2013
+ iconSrc: string;
2014
+ iconVariation: string;
2015
+ checkbox: string;
2016
+ radio: string;
2017
+ selectionColor: string;
2018
+ selected: boolean;
2019
+ supporting: string;
2020
+ trailing: string;
2021
+ trailingIcon: string;
2022
+ trailingIconInk: string;
2023
+ trailingIconSrc: string;
2024
+ divider: string;
2025
+ video: boolean;
2026
+ lines: number;
2027
+ _supportingSlotted: boolean;
2028
+ } & {
2029
+ disabledState: boolean;
2030
+ } & {
2031
+ isInteractive: () => boolean;
2032
+ hasSupporting: () => boolean;
2033
+ checkboxClass: () => string;
2034
+ radioClass: () => string;
2035
+ computedIconVariation: () => string;
2036
+ } & {
2037
+ _ariaRole: string;
2038
+ _index: number;
2039
+ _selectedDirty: boolean;
2040
+ isInteractive: boolean;
2041
+ } & {
2042
+ _label: string;
2043
+ _text: string;
2044
+ defaultSelected: boolean;
2045
+ _selected: boolean;
2046
+ _value: string;
2047
+ _formDisabled: boolean;
2048
+ } & {
2049
+ selected: boolean;
2050
+ disabledState: boolean;
2051
+ } & {
2052
+ index: number;
2053
+ form: HTMLFormElement;
2054
+ text: string;
2055
+ label: string;
2056
+ value: string;
2057
+ } & {
2058
+ formDisabledCallback(formDisabled: boolean): void;
2059
+ focus(options?: FocusOptions): void;
2060
+ } & {
2061
+ anchorAriaLabelledBy: () => string;
2062
+ anchorAriaDescribedBy: () => string;
2063
+ computedIconVariation: () => string;
2064
+ }> & HTMLOptionsCollection;
2065
+ selectedOptions: HTMLCollectionOf<CustomElement & {
2066
+ delegatesFocus: boolean;
2067
+ } & {
2068
+ href: string;
2069
+ target: string;
2070
+ download: string;
2071
+ ping: string;
2072
+ rel: string;
2073
+ hreflang: string;
2074
+ referrerPolicy: string;
2075
+ } & {
2076
+ origin: string;
2077
+ protocol: string;
2078
+ username: string;
2079
+ password: string;
2080
+ host: string;
2081
+ hostname: string;
2082
+ port: string;
2083
+ pathname: string;
2084
+ search: string;
2085
+ hash: string;
2086
+ } & object & {
2087
+ _ariaRole: string;
2088
+ } & {
2089
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
2090
+ } & {
2091
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
2092
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
2093
+ } & {
2094
+ disabled: boolean;
2095
+ focused: boolean;
2096
+ hovered: boolean;
2097
+ pressed: boolean;
2098
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
2099
+ _hovered: boolean;
2100
+ _focused: boolean;
2101
+ _focusedSynthetic: boolean;
2102
+ _keyPressed: boolean;
2103
+ _keyReleased: boolean;
2104
+ _pointerPressed: boolean;
2105
+ stateLayer: boolean;
2106
+ } & {
2107
+ disabledState: boolean;
2108
+ hoveredState: boolean;
2109
+ focusedState: boolean;
2110
+ pressedState: boolean;
2111
+ touchedState: boolean;
2112
+ pointedState: boolean;
2113
+ } & {
2114
+ stateTargetElement: HTMLElement;
2115
+ } & {
2116
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
2117
+ _rippleAdded: boolean;
2118
+ } & {
2119
+ _lastRipple: CustomElement & {
2120
+ hadRippleHeld: boolean;
2121
+ hadRippleReleased: boolean;
2122
+ rippleStarted: boolean;
2123
+ } & {
2124
+ rippleState: string;
2125
+ keepAlive: boolean;
2126
+ _positionX: number;
2127
+ _positionY: number;
2128
+ _radius: number;
2129
+ holdRipple: boolean;
2130
+ } & {
2131
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
2132
+ styles: {
2133
+ minHeight: string;
2134
+ minWidth: string;
2135
+ boxShadow: string;
2136
+ top: string;
2137
+ left: string;
2138
+ };
2139
+ };
2140
+ } & {
2141
+ updatePosition(x?: number, y?: number, size?: number): void;
2142
+ handleRippleComplete(): void;
2143
+ };
2144
+ } & {
2145
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
2146
+ } & {
2147
+ color: string;
2148
+ ink: string;
2149
+ typeStyle: string;
2150
+ } & {
2151
+ _ariaRole: string;
2152
+ stateLayer: boolean;
2153
+ } & {
2154
+ leading: string;
2155
+ avatar: string;
2156
+ avatarColor: string;
2157
+ avatarSrc: string;
2158
+ src: string;
2159
+ alt: string;
2160
+ icon: string;
2161
+ iconInk: string;
2162
+ iconSrc: string;
2163
+ iconVariation: string;
2164
+ checkbox: string;
2165
+ radio: string;
2166
+ selectionColor: string;
2167
+ selected: boolean;
2168
+ supporting: string;
2169
+ trailing: string;
2170
+ trailingIcon: string;
2171
+ trailingIconInk: string;
2172
+ trailingIconSrc: string;
2173
+ divider: string;
2174
+ video: boolean;
2175
+ lines: number;
2176
+ _supportingSlotted: boolean;
2177
+ } & {
2178
+ disabledState: boolean;
2179
+ } & {
2180
+ isInteractive: () => boolean;
2181
+ hasSupporting: () => boolean;
2182
+ checkboxClass: () => string;
2183
+ radioClass: () => string;
2184
+ computedIconVariation: () => string;
2185
+ } & {
2186
+ _ariaRole: string;
2187
+ _index: number;
2188
+ _selectedDirty: boolean;
2189
+ isInteractive: boolean;
2190
+ } & {
2191
+ _label: string;
2192
+ _text: string;
2193
+ defaultSelected: boolean;
2194
+ _selected: boolean;
2195
+ _value: string;
2196
+ _formDisabled: boolean;
2197
+ } & {
2198
+ selected: boolean;
2199
+ disabledState: boolean;
2200
+ } & {
2201
+ index: number;
2202
+ form: HTMLFormElement;
2203
+ text: string;
2204
+ label: string;
2205
+ value: string;
2206
+ } & {
2207
+ formDisabledCallback(formDisabled: boolean): void;
2208
+ focus(options?: FocusOptions): void;
2209
+ } & {
2210
+ anchorAriaLabelledBy: () => string;
2211
+ anchorAriaDescribedBy: () => string;
2212
+ computedIconVariation: () => string;
2213
+ }>;
2214
+ type: "select-one" | "select-multiple";
2215
+ kbdNavQuery: string;
2216
+ kbdNavFocusableWhenDisabled: boolean;
2217
+ }, any[]> & import("../core/CustomElement.js").Class<{
2218
+ length: number;
2219
+ selectedIndex: number;
2220
+ value: string;
2221
+ add: (element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null) => void;
2222
+ }, any[]> & import("../core/CustomElement.js").Class<{
2223
+ _selectedOptionsGenerator(): Generator<CustomElement & {
2224
+ delegatesFocus: boolean;
2225
+ } & {
2226
+ href: string;
2227
+ target: string;
2228
+ download: string;
2229
+ ping: string;
2230
+ rel: string;
2231
+ hreflang: string;
2232
+ referrerPolicy: string;
2233
+ } & {
2234
+ origin: string;
2235
+ protocol: string;
2236
+ username: string;
2237
+ password: string;
2238
+ host: string;
2239
+ hostname: string;
2240
+ port: string;
2241
+ pathname: string;
2242
+ search: string;
2243
+ hash: string;
2244
+ } & object & {
2245
+ _ariaRole: string;
2246
+ } & {
2247
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
2248
+ } & {
2249
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
2250
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
2251
+ } & {
2252
+ disabled: boolean;
2253
+ focused: boolean;
2254
+ hovered: boolean;
2255
+ pressed: boolean;
2256
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
2257
+ _hovered: boolean;
2258
+ _focused: boolean;
2259
+ _focusedSynthetic: boolean;
2260
+ _keyPressed: boolean;
2261
+ _keyReleased: boolean;
2262
+ _pointerPressed: boolean;
2263
+ stateLayer: boolean;
2264
+ } & {
2265
+ disabledState: boolean;
2266
+ hoveredState: boolean;
2267
+ focusedState: boolean;
2268
+ pressedState: boolean;
2269
+ touchedState: boolean;
2270
+ pointedState: boolean;
2271
+ } & {
2272
+ stateTargetElement: HTMLElement;
2273
+ } & {
2274
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
2275
+ _rippleAdded: boolean;
2276
+ } & {
2277
+ _lastRipple: CustomElement & {
2278
+ hadRippleHeld: boolean;
2279
+ hadRippleReleased: boolean;
2280
+ rippleStarted: boolean;
2281
+ } & {
2282
+ rippleState: string;
2283
+ keepAlive: boolean;
2284
+ _positionX: number;
2285
+ _positionY: number;
2286
+ _radius: number;
2287
+ holdRipple: boolean;
2288
+ } & {
2289
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
2290
+ styles: {
2291
+ minHeight: string;
2292
+ minWidth: string;
2293
+ boxShadow: string;
2294
+ top: string;
2295
+ left: string;
2296
+ };
2297
+ };
2298
+ } & {
2299
+ updatePosition(x?: number, y?: number, size?: number): void;
2300
+ handleRippleComplete(): void;
2301
+ };
2302
+ } & {
2303
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
2304
+ } & {
2305
+ color: string;
2306
+ ink: string;
2307
+ typeStyle: string;
2308
+ } & {
2309
+ _ariaRole: string;
2310
+ stateLayer: boolean;
2311
+ } & {
2312
+ leading: string;
2313
+ avatar: string;
2314
+ avatarColor: string;
2315
+ avatarSrc: string;
2316
+ src: string;
2317
+ alt: string;
2318
+ icon: string;
2319
+ iconInk: string;
2320
+ iconSrc: string;
2321
+ iconVariation: string;
2322
+ checkbox: string;
2323
+ radio: string;
2324
+ selectionColor: string;
2325
+ selected: boolean;
2326
+ supporting: string;
2327
+ trailing: string;
2328
+ trailingIcon: string;
2329
+ trailingIconInk: string;
2330
+ trailingIconSrc: string;
2331
+ divider: string;
2332
+ video: boolean;
2333
+ lines: number;
2334
+ _supportingSlotted: boolean;
2335
+ } & {
2336
+ disabledState: boolean;
2337
+ } & {
2338
+ isInteractive: () => boolean;
2339
+ hasSupporting: () => boolean;
2340
+ checkboxClass: () => string;
2341
+ radioClass: () => string;
2342
+ computedIconVariation: () => string;
2343
+ } & {
2344
+ _ariaRole: string;
2345
+ _index: number;
2346
+ _selectedDirty: boolean;
2347
+ isInteractive: boolean;
2348
+ } & {
2349
+ _label: string;
2350
+ _text: string;
2351
+ defaultSelected: boolean;
2352
+ _selected: boolean;
2353
+ _value: string;
2354
+ _formDisabled: boolean;
2355
+ } & {
2356
+ selected: boolean;
2357
+ disabledState: boolean;
2358
+ } & {
2359
+ index: number;
2360
+ form: HTMLFormElement;
2361
+ text: string;
2362
+ label: string;
2363
+ value: string;
2364
+ } & {
2365
+ formDisabledCallback(formDisabled: boolean): void;
2366
+ focus(options?: FocusOptions): void;
2367
+ } & {
2368
+ anchorAriaLabelledBy: () => string;
2369
+ anchorAriaDescribedBy: () => string;
2370
+ computedIconVariation: () => string;
2371
+ } & HTMLOptionElement, void, unknown>;
2372
+ [Symbol.iterator](): Generator<CustomElement & {
2373
+ delegatesFocus: boolean;
2374
+ } & {
2375
+ href: string;
2376
+ target: string;
2377
+ download: string;
2378
+ ping: string;
2379
+ rel: string;
2380
+ hreflang: string;
2381
+ referrerPolicy: string;
2382
+ } & {
2383
+ origin: string;
2384
+ protocol: string;
2385
+ username: string;
2386
+ password: string;
2387
+ host: string;
2388
+ hostname: string;
2389
+ port: string;
2390
+ pathname: string;
2391
+ search: string;
2392
+ hash: string;
2393
+ } & object & {
2394
+ _ariaRole: string;
2395
+ } & {
2396
+ _onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
2397
+ } & {
2398
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
2399
+ updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
2400
+ } & {
2401
+ disabled: boolean;
2402
+ focused: boolean;
2403
+ hovered: boolean;
2404
+ pressed: boolean;
2405
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
2406
+ _hovered: boolean;
2407
+ _focused: boolean;
2408
+ _focusedSynthetic: boolean;
2409
+ _keyPressed: boolean;
2410
+ _keyReleased: boolean;
2411
+ _pointerPressed: boolean;
2412
+ stateLayer: boolean;
2413
+ } & {
2414
+ disabledState: boolean;
2415
+ hoveredState: boolean;
2416
+ focusedState: boolean;
2417
+ pressedState: boolean;
2418
+ touchedState: boolean;
2419
+ pointedState: boolean;
2420
+ } & {
2421
+ stateTargetElement: HTMLElement;
2422
+ } & {
2423
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
2424
+ _rippleAdded: boolean;
2425
+ } & {
2426
+ _lastRipple: CustomElement & {
2427
+ hadRippleHeld: boolean;
2428
+ hadRippleReleased: boolean;
2429
+ rippleStarted: boolean;
2430
+ } & {
2431
+ rippleState: string;
2432
+ keepAlive: boolean;
2433
+ _positionX: number;
2434
+ _positionY: number;
2435
+ _radius: number;
2436
+ holdRipple: boolean;
2437
+ } & {
2438
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
2439
+ styles: {
2440
+ minHeight: string;
2441
+ minWidth: string;
2442
+ boxShadow: string;
2443
+ top: string;
2444
+ left: string;
2445
+ };
2446
+ };
2447
+ } & {
2448
+ updatePosition(x?: number, y?: number, size?: number): void;
2449
+ handleRippleComplete(): void;
2450
+ };
2451
+ } & {
2452
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
2453
+ } & {
2454
+ color: string;
2455
+ ink: string;
2456
+ typeStyle: string;
2457
+ } & {
2458
+ _ariaRole: string;
2459
+ stateLayer: boolean;
2460
+ } & {
2461
+ leading: string;
2462
+ avatar: string;
2463
+ avatarColor: string;
2464
+ avatarSrc: string;
2465
+ src: string;
2466
+ alt: string;
2467
+ icon: string;
2468
+ iconInk: string;
2469
+ iconSrc: string;
2470
+ iconVariation: string;
2471
+ checkbox: string;
2472
+ radio: string;
2473
+ selectionColor: string;
2474
+ selected: boolean;
2475
+ supporting: string;
2476
+ trailing: string;
2477
+ trailingIcon: string;
2478
+ trailingIconInk: string;
2479
+ trailingIconSrc: string;
2480
+ divider: string;
2481
+ video: boolean;
2482
+ lines: number;
2483
+ _supportingSlotted: boolean;
2484
+ } & {
2485
+ disabledState: boolean;
2486
+ } & {
2487
+ isInteractive: () => boolean;
2488
+ hasSupporting: () => boolean;
2489
+ checkboxClass: () => string;
2490
+ radioClass: () => string;
2491
+ computedIconVariation: () => string;
2492
+ } & {
2493
+ _ariaRole: string;
2494
+ _index: number;
2495
+ _selectedDirty: boolean;
2496
+ isInteractive: boolean;
2497
+ } & {
2498
+ _label: string;
2499
+ _text: string;
2500
+ defaultSelected: boolean;
2501
+ _selected: boolean;
2502
+ _value: string;
2503
+ _formDisabled: boolean;
2504
+ } & {
2505
+ selected: boolean;
2506
+ disabledState: boolean;
2507
+ } & {
2508
+ index: number;
2509
+ form: HTMLFormElement;
2510
+ text: string;
2511
+ label: string;
2512
+ value: string;
2513
+ } & {
2514
+ formDisabledCallback(formDisabled: boolean): void;
2515
+ focus(options?: FocusOptions): void;
2516
+ } & {
2517
+ anchorAriaLabelledBy: () => string;
2518
+ anchorAriaDescribedBy: () => string;
2519
+ computedIconVariation: () => string;
2520
+ } & HTMLOptionElement, void, unknown>;
2521
+ focus(): void;
2522
+ item(index: number): InstanceType<typeof import("./ListOption.js").default> | null;
2523
+ namedItem(name: string): InstanceType<typeof import("./ListOption.js").default> | null;
2524
+ onListboxClick(event: Event): void;
2525
+ }, any[]>;
2526
+ export type RippleMixin = typeof import("../mixins/RippleMixin.js").default;
2527
+ import CustomElement from '../core/CustomElement.js';
2528
+ //# sourceMappingURL=Input.d.ts.map