@shortfuse/materialdesignweb 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (394) hide show
  1. package/README.md +32 -24
  2. package/bin/mdw-css.js +1 -1
  3. package/components/Badge.js +12 -5
  4. package/components/Body.js +3 -0
  5. package/components/BottomAppBar.js +1 -8
  6. package/components/BottomSheet.js +424 -0
  7. package/components/Box.js +11 -49
  8. package/components/Button.js +61 -82
  9. package/components/Card.js +56 -61
  10. package/components/Checkbox.js +7 -25
  11. package/components/CheckboxIcon.js +10 -28
  12. package/components/Chip.js +13 -11
  13. package/components/Dialog.js +49 -98
  14. package/components/Display.js +55 -0
  15. package/components/Fab.js +83 -17
  16. package/components/FabContainer.js +48 -0
  17. package/components/FilterChip.js +34 -32
  18. package/components/Grid.js +176 -0
  19. package/components/Headline.js +5 -28
  20. package/components/Icon.js +54 -69
  21. package/components/IconButton.js +71 -120
  22. package/components/Input.js +669 -83
  23. package/components/InputChip.js +161 -0
  24. package/components/Label.js +3 -0
  25. package/components/List.js +1 -5
  26. package/components/ListItem.js +39 -23
  27. package/components/ListOption.js +79 -62
  28. package/components/Listbox.js +19 -10
  29. package/components/Menu.js +8 -18
  30. package/components/MenuItem.js +25 -26
  31. package/components/NavBar.js +53 -19
  32. package/components/NavDrawer.js +15 -15
  33. package/components/NavDrawerItem.js +2 -4
  34. package/components/NavItem.js +40 -33
  35. package/components/NavRail.js +23 -21
  36. package/components/NavRailItem.js +5 -2
  37. package/components/Page.js +105 -0
  38. package/components/Pane.js +18 -0
  39. package/components/Popup.js +17 -8
  40. package/components/Radio.js +2 -5
  41. package/components/RadioIcon.js +10 -14
  42. package/components/Ripple.js +11 -7
  43. package/components/Root.js +209 -0
  44. package/components/Scrim.js +87 -0
  45. package/components/Search.js +12 -20
  46. package/components/SegmentedButton.js +33 -36
  47. package/components/SegmentedButtonGroup.js +9 -3
  48. package/components/Select.js +6 -7
  49. package/components/Shape.js +5 -65
  50. package/components/SideSheet.js +308 -0
  51. package/components/Slider.js +71 -34
  52. package/components/Snackbar.js +22 -16
  53. package/components/SnackbarContainer.js +42 -0
  54. package/components/Surface.js +15 -10
  55. package/components/Switch.js +3 -16
  56. package/components/SwitchIcon.js +40 -32
  57. package/components/Tab.js +57 -38
  58. package/components/TabContent.js +1 -0
  59. package/components/TabList.js +60 -32
  60. package/components/TabPanel.js +1 -1
  61. package/components/Table.js +116 -0
  62. package/components/TextArea.js +16 -15
  63. package/components/Title.js +4 -9
  64. package/components/Tooltip.js +43 -21
  65. package/components/TopAppBar.js +56 -78
  66. package/constants/shapes.js +36 -0
  67. package/constants/typography.js +127 -0
  68. package/core/Composition.js +354 -192
  69. package/core/CompositionAdapter.js +11 -12
  70. package/core/CustomElement.js +588 -236
  71. package/core/css.js +117 -12
  72. package/core/customTypes.js +120 -25
  73. package/core/dom.js +17 -11
  74. package/core/jsonMergePatch.js +12 -10
  75. package/core/observe.js +298 -253
  76. package/core/optimizations.js +9 -9
  77. package/core/template.js +14 -57
  78. package/dist/index.min.js +85 -115
  79. package/dist/index.min.js.map +4 -4
  80. package/dist/meta.json +1 -1
  81. package/dom/HTMLOptionsCollectionProxy.js +106 -0
  82. package/{theming/themableMixinLoader.js → loaders/palette.js} +4 -3
  83. package/loaders/theme.js +12 -0
  84. package/mixins/AriaReflectorMixin.js +53 -13
  85. package/mixins/AriaToolbarMixin.js +3 -0
  86. package/mixins/ControlMixin.js +76 -33
  87. package/mixins/DelegatesFocusMixin.js +54 -0
  88. package/mixins/DensityMixin.js +2 -2
  89. package/mixins/ElevationMixin.js +62 -0
  90. package/mixins/FlexableMixin.js +66 -37
  91. package/mixins/FormAssociatedMixin.js +60 -8
  92. package/mixins/HyperlinkMixin.js +66 -0
  93. package/mixins/InputMixin.js +205 -32
  94. package/mixins/KeyboardNavMixin.js +8 -6
  95. package/mixins/NavigationListenerMixin.js +33 -0
  96. package/mixins/PopupMixin.js +176 -208
  97. package/mixins/ResizeObserverMixin.js +16 -4
  98. package/mixins/RippleMixin.js +8 -6
  99. package/mixins/ScrollListenerMixin.js +1 -1
  100. package/mixins/SemiStickyMixin.js +44 -98
  101. package/mixins/ShapeMaskedMixin.js +117 -0
  102. package/mixins/ShapeMixin.js +22 -204
  103. package/mixins/StateMixin.js +70 -34
  104. package/mixins/TextFieldMixin.js +107 -143
  105. package/mixins/ThemableMixin.js +44 -56
  106. package/mixins/TooltipTriggerMixin.js +291 -359
  107. package/mixins/TouchTargetMixin.js +1 -1
  108. package/mixins/TypographyMixin.js +121 -0
  109. package/package.json +110 -74
  110. package/services/rtl.js +10 -0
  111. package/services/svgAlias.js +17 -0
  112. package/{theming/index.js → services/theme.js} +24 -174
  113. package/types/bin/mdw-css.d.ts +3 -0
  114. package/types/bin/mdw-css.d.ts.map +1 -0
  115. package/types/components/Badge.d.ts +39 -0
  116. package/types/components/Badge.d.ts.map +1 -0
  117. package/types/components/Body.d.ts +29 -0
  118. package/types/components/Body.d.ts.map +1 -0
  119. package/types/components/BottomAppBar.d.ts +73 -0
  120. package/types/components/BottomAppBar.d.ts.map +1 -0
  121. package/types/components/BottomSheet.d.ts +109 -0
  122. package/types/components/BottomSheet.d.ts.map +1 -0
  123. package/types/components/Box.d.ts +16 -0
  124. package/types/components/Box.d.ts.map +1 -0
  125. package/types/components/Button.d.ts +714 -0
  126. package/types/components/Button.d.ts.map +1 -0
  127. package/types/components/Card.d.ts +412 -0
  128. package/types/components/Card.d.ts.map +1 -0
  129. package/types/components/Checkbox.d.ts +205 -0
  130. package/types/components/Checkbox.d.ts.map +1 -0
  131. package/types/components/CheckboxIcon.d.ts +44 -0
  132. package/types/components/CheckboxIcon.d.ts.map +1 -0
  133. package/types/components/Chip.d.ts +1425 -0
  134. package/types/components/Chip.d.ts.map +1 -0
  135. package/types/components/Dialog.d.ts +286 -0
  136. package/types/components/Dialog.d.ts.map +1 -0
  137. package/types/components/DialogActions.d.ts +4 -0
  138. package/types/components/DialogActions.d.ts.map +1 -0
  139. package/types/components/Display.d.ts +45 -0
  140. package/types/components/Display.d.ts.map +1 -0
  141. package/types/components/Divider.d.ts +10 -0
  142. package/types/components/Divider.d.ts.map +1 -0
  143. package/types/components/Fab.d.ts +741 -0
  144. package/types/components/Fab.d.ts.map +1 -0
  145. package/types/components/FabContainer.d.ts +10 -0
  146. package/types/components/FabContainer.d.ts.map +1 -0
  147. package/types/components/FilterChip.d.ts +4283 -0
  148. package/types/components/FilterChip.d.ts.map +1 -0
  149. package/types/components/Grid.d.ts +37 -0
  150. package/types/components/Grid.d.ts.map +1 -0
  151. package/types/components/Headline.d.ts +47 -0
  152. package/types/components/Headline.d.ts.map +1 -0
  153. package/types/components/Icon.d.ts +103 -0
  154. package/types/components/Icon.d.ts.map +1 -0
  155. package/types/components/IconButton.d.ts +1486 -0
  156. package/types/components/IconButton.d.ts.map +1 -0
  157. package/types/components/Input.d.ts +51288 -0
  158. package/types/components/Input.d.ts.map +1 -0
  159. package/types/components/InputChip.d.ts +243 -0
  160. package/types/components/InputChip.d.ts.map +1 -0
  161. package/types/components/Label.d.ts +29 -0
  162. package/types/components/Label.d.ts.map +1 -0
  163. package/types/components/List.d.ts +31 -0
  164. package/types/components/List.d.ts.map +1 -0
  165. package/types/components/ListItem.d.ts +349 -0
  166. package/types/components/ListItem.d.ts.map +1 -0
  167. package/types/components/ListOption.d.ts +1493 -0
  168. package/types/components/ListOption.d.ts.map +1 -0
  169. package/types/components/Listbox.d.ts +12012 -0
  170. package/types/components/Listbox.d.ts.map +1 -0
  171. package/types/components/Menu.d.ts +119 -0
  172. package/types/components/Menu.d.ts.map +1 -0
  173. package/types/components/MenuItem.d.ts +3109 -0
  174. package/types/components/MenuItem.d.ts.map +1 -0
  175. package/types/components/NavBar.d.ts +18 -0
  176. package/types/components/NavBar.d.ts.map +1 -0
  177. package/types/components/NavBarItem.d.ts +186 -0
  178. package/types/components/NavBarItem.d.ts.map +1 -0
  179. package/types/components/NavDrawer.d.ts +108 -0
  180. package/types/components/NavDrawer.d.ts.map +1 -0
  181. package/types/components/NavDrawerItem.d.ts +186 -0
  182. package/types/components/NavDrawerItem.d.ts.map +1 -0
  183. package/types/components/NavItem.d.ts +190 -0
  184. package/types/components/NavItem.d.ts.map +1 -0
  185. package/types/components/NavRail.d.ts +109 -0
  186. package/types/components/NavRail.d.ts.map +1 -0
  187. package/types/components/NavRailItem.d.ts +186 -0
  188. package/types/components/NavRailItem.d.ts.map +1 -0
  189. package/types/components/Page.d.ts +24 -0
  190. package/types/components/Page.d.ts.map +1 -0
  191. package/types/components/Pane.d.ts +44 -0
  192. package/types/components/Pane.d.ts.map +1 -0
  193. package/types/components/Popup.d.ts +76 -0
  194. package/types/components/Popup.d.ts.map +1 -0
  195. package/types/components/Progress.d.ts +19 -0
  196. package/types/components/Progress.d.ts.map +1 -0
  197. package/types/components/Radio.d.ts +199 -0
  198. package/types/components/Radio.d.ts.map +1 -0
  199. package/types/components/RadioIcon.d.ts +46 -0
  200. package/types/components/RadioIcon.d.ts.map +1 -0
  201. package/types/components/Ripple.d.ts +34 -0
  202. package/types/components/Ripple.d.ts.map +1 -0
  203. package/types/components/Root.d.ts +68 -0
  204. package/types/components/Root.d.ts.map +1 -0
  205. package/types/components/Scrim.d.ts +6 -0
  206. package/types/components/Scrim.d.ts.map +1 -0
  207. package/types/components/Search.d.ts +16 -0
  208. package/types/components/Search.d.ts.map +1 -0
  209. package/types/components/SegmentedButton.d.ts +718 -0
  210. package/types/components/SegmentedButton.d.ts.map +1 -0
  211. package/types/components/SegmentedButtonGroup.d.ts +44 -0
  212. package/types/components/SegmentedButtonGroup.d.ts.map +1 -0
  213. package/types/components/Select.d.ts +1361 -0
  214. package/types/components/Select.d.ts.map +1 -0
  215. package/types/components/Shape.d.ts +10 -0
  216. package/types/components/Shape.d.ts.map +1 -0
  217. package/types/components/SideSheet.d.ts +106 -0
  218. package/types/components/SideSheet.d.ts.map +1 -0
  219. package/types/components/Slider.d.ts +382 -0
  220. package/types/components/Slider.d.ts.map +1 -0
  221. package/types/components/Snackbar.d.ts +65 -0
  222. package/types/components/Snackbar.d.ts.map +1 -0
  223. package/types/components/SnackbarContainer.d.ts +6 -0
  224. package/types/components/SnackbarContainer.d.ts.map +1 -0
  225. package/types/components/Surface.d.ts +45 -0
  226. package/types/components/Surface.d.ts.map +1 -0
  227. package/types/components/Switch.d.ts +183 -0
  228. package/types/components/Switch.d.ts.map +1 -0
  229. package/types/components/SwitchIcon.d.ts +169 -0
  230. package/types/components/SwitchIcon.d.ts.map +1 -0
  231. package/types/components/Tab.d.ts +879 -0
  232. package/types/components/Tab.d.ts.map +1 -0
  233. package/types/components/TabContent.d.ts +122 -0
  234. package/types/components/TabContent.d.ts.map +1 -0
  235. package/types/components/TabList.d.ts +6266 -0
  236. package/types/components/TabList.d.ts.map +1 -0
  237. package/types/components/TabPanel.d.ts +28 -0
  238. package/types/components/TabPanel.d.ts.map +1 -0
  239. package/types/components/Table.d.ts +2 -0
  240. package/types/components/Table.d.ts.map +1 -0
  241. package/types/components/TextArea.d.ts +1394 -0
  242. package/types/components/TextArea.d.ts.map +1 -0
  243. package/types/components/Title.d.ts +47 -0
  244. package/types/components/Title.d.ts.map +1 -0
  245. package/types/components/Tooltip.d.ts +49 -0
  246. package/types/components/Tooltip.d.ts.map +1 -0
  247. package/types/components/TopAppBar.d.ts +130 -0
  248. package/types/components/TopAppBar.d.ts.map +1 -0
  249. package/types/constants/colorKeywords.d.ts +2 -0
  250. package/types/constants/colorKeywords.d.ts.map +1 -0
  251. package/types/constants/shapes.d.ts +38 -0
  252. package/types/constants/shapes.d.ts.map +1 -0
  253. package/types/constants/typography.d.ts +212 -0
  254. package/types/constants/typography.d.ts.map +1 -0
  255. package/types/core/Composition.d.ts +252 -0
  256. package/types/core/Composition.d.ts.map +1 -0
  257. package/types/core/CompositionAdapter.d.ts +92 -0
  258. package/types/core/CompositionAdapter.d.ts.map +1 -0
  259. package/types/core/CustomElement.d.ts +302 -0
  260. package/types/core/CustomElement.d.ts.map +1 -0
  261. package/types/core/css.d.ts +44 -0
  262. package/types/core/css.d.ts.map +1 -0
  263. package/types/core/customTypes.d.ts +26 -0
  264. package/types/core/customTypes.d.ts.map +1 -0
  265. package/types/core/dom.d.ts +32 -0
  266. package/types/core/dom.d.ts.map +1 -0
  267. package/types/core/jsonMergePatch.d.ts +31 -0
  268. package/types/core/jsonMergePatch.d.ts.map +1 -0
  269. package/types/core/observe.d.ts +113 -0
  270. package/types/core/observe.d.ts.map +1 -0
  271. package/types/core/optimizations.d.ts +7 -0
  272. package/types/core/optimizations.d.ts.map +1 -0
  273. package/types/core/template.d.ts +47 -0
  274. package/types/core/template.d.ts.map +1 -0
  275. package/types/core/uid.d.ts +6 -0
  276. package/types/core/uid.d.ts.map +1 -0
  277. package/types/dom/HTMLOptionsCollectionProxy.d.ts +18 -0
  278. package/types/dom/HTMLOptionsCollectionProxy.d.ts.map +1 -0
  279. package/types/index.d.ts +88 -0
  280. package/types/index.d.ts.map +1 -0
  281. package/types/loaders/palette.d.ts +2 -0
  282. package/types/loaders/palette.d.ts.map +1 -0
  283. package/types/loaders/theme.d.ts +2 -0
  284. package/types/loaders/theme.d.ts.map +1 -0
  285. package/types/mixins/AriaReflectorMixin.d.ts +23 -0
  286. package/types/mixins/AriaReflectorMixin.d.ts.map +1 -0
  287. package/types/mixins/AriaToolbarMixin.d.ts +32 -0
  288. package/types/mixins/AriaToolbarMixin.d.ts.map +1 -0
  289. package/types/mixins/ControlMixin.d.ts +124 -0
  290. package/types/mixins/ControlMixin.d.ts.map +1 -0
  291. package/types/mixins/DelegatesFocusMixin.d.ts +5 -0
  292. package/types/mixins/DelegatesFocusMixin.d.ts.map +1 -0
  293. package/types/mixins/DensityMixin.d.ts +5 -0
  294. package/types/mixins/DensityMixin.d.ts.map +1 -0
  295. package/types/mixins/ElevationMixin.d.ts +33 -0
  296. package/types/mixins/ElevationMixin.d.ts.map +1 -0
  297. package/types/mixins/FlexableMixin.d.ts +13 -0
  298. package/types/mixins/FlexableMixin.d.ts.map +1 -0
  299. package/types/mixins/FormAssociatedMixin.d.ts +122 -0
  300. package/types/mixins/FormAssociatedMixin.d.ts.map +1 -0
  301. package/types/mixins/HyperlinkMixin.d.ts +22 -0
  302. package/types/mixins/HyperlinkMixin.d.ts.map +1 -0
  303. package/types/mixins/InputMixin.d.ts +179 -0
  304. package/types/mixins/InputMixin.d.ts.map +1 -0
  305. package/types/mixins/KeyboardNavMixin.d.ts +47 -0
  306. package/types/mixins/KeyboardNavMixin.d.ts.map +1 -0
  307. package/types/mixins/NavigationListenerMixin.d.ts +8 -0
  308. package/types/mixins/NavigationListenerMixin.d.ts.map +1 -0
  309. package/types/mixins/PopupMixin.d.ts +82 -0
  310. package/types/mixins/PopupMixin.d.ts.map +1 -0
  311. package/types/mixins/RTLObserverMixin.d.ts +7 -0
  312. package/types/mixins/RTLObserverMixin.d.ts.map +1 -0
  313. package/types/mixins/ResizeObserverMixin.d.ts +12 -0
  314. package/types/mixins/ResizeObserverMixin.d.ts.map +1 -0
  315. package/types/mixins/RippleMixin.d.ts +92 -0
  316. package/types/mixins/RippleMixin.d.ts.map +1 -0
  317. package/types/mixins/ScrollListenerMixin.d.ts +41 -0
  318. package/types/mixins/ScrollListenerMixin.d.ts.map +1 -0
  319. package/types/mixins/SemiStickyMixin.d.ts +50 -0
  320. package/types/mixins/SemiStickyMixin.d.ts.map +1 -0
  321. package/types/mixins/ShapeMaskedMixin.d.ts +9 -0
  322. package/types/mixins/ShapeMaskedMixin.d.ts.map +1 -0
  323. package/types/mixins/ShapeMixin.d.ts +38 -0
  324. package/types/mixins/ShapeMixin.d.ts.map +1 -0
  325. package/types/mixins/StateMixin.d.ts +27 -0
  326. package/types/mixins/StateMixin.d.ts.map +1 -0
  327. package/types/mixins/TextFieldMixin.d.ts +1354 -0
  328. package/types/mixins/TextFieldMixin.d.ts.map +1 -0
  329. package/types/mixins/ThemableMixin.d.ts +9 -0
  330. package/types/mixins/ThemableMixin.d.ts.map +1 -0
  331. package/types/mixins/TooltipTriggerMixin.d.ts +106 -0
  332. package/types/mixins/TooltipTriggerMixin.d.ts.map +1 -0
  333. package/types/mixins/TouchTargetMixin.d.ts +3 -0
  334. package/types/mixins/TouchTargetMixin.d.ts.map +1 -0
  335. package/types/mixins/TypographyMixin.d.ts +17 -0
  336. package/types/mixins/TypographyMixin.d.ts.map +1 -0
  337. package/types/services/rtl.d.ts +3 -0
  338. package/types/services/rtl.d.ts.map +1 -0
  339. package/types/services/svgAlias.d.ts +13 -0
  340. package/types/services/svgAlias.d.ts.map +1 -0
  341. package/types/services/theme.d.ts +45 -0
  342. package/types/services/theme.d.ts.map +1 -0
  343. package/types/utils/cli.d.ts +3 -0
  344. package/types/utils/cli.d.ts.map +1 -0
  345. package/types/utils/function.d.ts +3 -0
  346. package/types/utils/function.d.ts.map +1 -0
  347. package/types/utils/jsx-runtime.d.ts +20 -0
  348. package/types/utils/jsx-runtime.d.ts.map +1 -0
  349. package/types/utils/material-color/blend.d.ts +34 -0
  350. package/types/utils/material-color/blend.d.ts.map +1 -0
  351. package/types/utils/material-color/hct/Cam16.d.ts +142 -0
  352. package/types/utils/material-color/hct/Cam16.d.ts.map +1 -0
  353. package/types/utils/material-color/hct/Hct.d.ts +93 -0
  354. package/types/utils/material-color/hct/Hct.d.ts.map +1 -0
  355. package/types/utils/material-color/hct/ViewingConditions.d.ts +69 -0
  356. package/types/utils/material-color/hct/ViewingConditions.d.ts.map +1 -0
  357. package/types/utils/material-color/hct/hctSolver.d.ts +30 -0
  358. package/types/utils/material-color/hct/hctSolver.d.ts.map +1 -0
  359. package/types/utils/material-color/helper.d.ts +8 -0
  360. package/types/utils/material-color/helper.d.ts.map +1 -0
  361. package/types/utils/material-color/palettes/CorePalette.d.ts +75 -0
  362. package/types/utils/material-color/palettes/CorePalette.d.ts.map +1 -0
  363. package/types/utils/material-color/palettes/TonalPalette.d.ts +38 -0
  364. package/types/utils/material-color/palettes/TonalPalette.d.ts.map +1 -0
  365. package/types/utils/material-color/scheme/Scheme.d.ts +264 -0
  366. package/types/utils/material-color/scheme/Scheme.d.ts.map +1 -0
  367. package/types/utils/material-color/utils/color.d.ts +172 -0
  368. package/types/utils/material-color/utils/color.d.ts.map +1 -0
  369. package/types/utils/material-color/utils/math.d.ts +94 -0
  370. package/types/utils/material-color/utils/math.d.ts.map +1 -0
  371. package/types/utils/pixelmatch.d.ts +22 -0
  372. package/types/utils/pixelmatch.d.ts.map +1 -0
  373. package/types/utils/popup.d.ts +106 -0
  374. package/types/utils/popup.d.ts.map +1 -0
  375. package/types/utils/searchParams.d.ts +3 -0
  376. package/types/utils/searchParams.d.ts.map +1 -0
  377. package/types/utils/svg.d.ts +7 -0
  378. package/types/utils/svg.d.ts.map +1 -0
  379. package/utils/material-color/scheme/Scheme.js +1 -1
  380. package/utils/pixelmatch.js +360 -0
  381. package/utils/popup.js +86 -10
  382. package/utils/searchParams.js +19 -0
  383. package/components/ExtendedFab.js +0 -32
  384. package/components/Layout.js +0 -504
  385. package/components/Nav.js +0 -38
  386. package/core/DomAdapter.js +0 -586
  387. package/core/ICustomElement.d.ts +0 -291
  388. package/core/ICustomElement.js +0 -1
  389. package/core/test.js +0 -126
  390. package/core/typings.d.ts +0 -142
  391. package/core/typings.js +0 -1
  392. package/mixins/SurfaceMixin.js +0 -127
  393. package/theming/loader.js +0 -22
  394. /package/{utils/color_keywords.js → constants/colorKeywords.js} +0 -0
@@ -0,0 +1,1493 @@
1
+ declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
2
+ delegatesFocus: boolean;
3
+ }, any[]> & import("../core/CustomElement.js").Class<{
4
+ href: string;
5
+ target: string;
6
+ download: string;
7
+ ping: string;
8
+ rel: string;
9
+ hreflang: string;
10
+ referrerPolicy: string;
11
+ }, any[]> & import("../core/CustomElement.js").Class<{
12
+ origin: string;
13
+ protocol: string;
14
+ username: string;
15
+ password: string;
16
+ host: string;
17
+ hostname: string;
18
+ port: string;
19
+ pathname: string;
20
+ search: string;
21
+ hash: string;
22
+ }, any[]> & import("../core/CustomElement.js").Class<object, any[]> & import("../core/CustomElement.js").Class<{
23
+ _ariaRole: string;
24
+ }, any[]> & import("../core/CustomElement.js").Class<{
25
+ onConnectAriaValues: Map<string, string>;
26
+ hasFiredConnected: boolean;
27
+ }, any[]> & import("../core/CustomElement.js").Class<{
28
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
29
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
30
+ }, any[]> & import("../core/CustomElement.js").Class<{
31
+ disabled: boolean;
32
+ focused: boolean;
33
+ hovered: boolean;
34
+ pressed: boolean;
35
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
36
+ _hovered: boolean;
37
+ _focused: boolean;
38
+ _focusedSynthetic: boolean;
39
+ _keyPressed: boolean;
40
+ _keyReleased: boolean;
41
+ _pointerPressed: boolean;
42
+ stateLayer: boolean;
43
+ }, any[]> & import("../core/CustomElement.js").Class<{
44
+ disabledState: boolean;
45
+ hoveredState: boolean;
46
+ focusedState: boolean;
47
+ pressedState: boolean;
48
+ touchedState: boolean;
49
+ pointedState: boolean;
50
+ }, any[]> & import("../core/CustomElement.js").Class<{
51
+ stateTargetElement: HTMLElement;
52
+ }, any[]> & import("../core/CustomElement.js").Class<{
53
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
54
+ _rippleAdded: boolean;
55
+ }, any[]> & import("../core/CustomElement.js").Class<{
56
+ _lastRipple: import("../index.js").CustomElement & {
57
+ hadRippleHeld: boolean;
58
+ hadRippleReleased: boolean;
59
+ rippleStarted: boolean;
60
+ } & {
61
+ rippleState: string;
62
+ keepAlive: boolean;
63
+ _positionX: number;
64
+ _positionY: number;
65
+ _radius: number;
66
+ holdRipple: boolean;
67
+ } & {
68
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
69
+ styles: {
70
+ minHeight: string;
71
+ minWidth: string;
72
+ boxShadow: string;
73
+ top: string;
74
+ left: string;
75
+ };
76
+ };
77
+ } & {
78
+ updatePosition(x?: number, y?: number, size?: number): void;
79
+ handleRippleComplete(): void;
80
+ };
81
+ }, any[]> & import("../core/CustomElement.js").Class<{
82
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
83
+ }, any[]> & import("../core/CustomElement.js").Class<{
84
+ color: string;
85
+ ink: string;
86
+ typeStyle: string;
87
+ }, any[]> & import("../core/CustomElement.js").Class<{
88
+ _ariaRole: string;
89
+ stateLayer: boolean;
90
+ }, any[]> & import("../core/CustomElement.js").Class<{
91
+ leading: string;
92
+ avatar: string;
93
+ avatarColor: string;
94
+ avatarSrc: string;
95
+ src: string;
96
+ alt: string;
97
+ icon: string;
98
+ iconInk: string;
99
+ iconSrc: string;
100
+ iconVariation: string;
101
+ checkbox: string;
102
+ radio: string;
103
+ selectionColor: string;
104
+ selected: boolean;
105
+ supporting: string;
106
+ trailing: string;
107
+ trailingIcon: string;
108
+ trailingIconInk: string;
109
+ trailingIconSrc: string;
110
+ divider: string;
111
+ video: boolean;
112
+ lines: number;
113
+ _supportingSlotted: boolean;
114
+ }, any[]> & import("../core/CustomElement.js").Class<{
115
+ disabledState: boolean;
116
+ }, any[]> & import("../core/CustomElement.js").Class<{
117
+ isInteractive: () => ReturnType<({ href }: import("../index.js").CustomElement & {
118
+ href: string;
119
+ target: string;
120
+ download: string;
121
+ ping: string;
122
+ rel: string;
123
+ hreflang: string;
124
+ referrerPolicy: string;
125
+ } & {
126
+ origin: string;
127
+ protocol: string;
128
+ username: string;
129
+ password: string;
130
+ host: string;
131
+ hostname: string;
132
+ port: string;
133
+ pathname: string;
134
+ search: string;
135
+ hash: string;
136
+ } & object & {
137
+ _ariaRole: string;
138
+ } & {
139
+ onConnectAriaValues: Map<string, string>;
140
+ hasFiredConnected: boolean;
141
+ } & {
142
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
143
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
144
+ } & {
145
+ disabled: boolean;
146
+ focused: boolean;
147
+ hovered: boolean;
148
+ pressed: boolean;
149
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
150
+ _hovered: boolean;
151
+ _focused: boolean;
152
+ _focusedSynthetic: boolean;
153
+ _keyPressed: boolean;
154
+ _keyReleased: boolean;
155
+ _pointerPressed: boolean;
156
+ stateLayer: boolean;
157
+ } & {
158
+ disabledState: boolean;
159
+ hoveredState: boolean;
160
+ focusedState: boolean;
161
+ pressedState: boolean;
162
+ touchedState: boolean;
163
+ pointedState: boolean;
164
+ } & {
165
+ stateTargetElement: HTMLElement;
166
+ } & {
167
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
168
+ _rippleAdded: boolean;
169
+ } & {
170
+ _lastRipple: import("../index.js").CustomElement & {
171
+ hadRippleHeld: boolean;
172
+ hadRippleReleased: boolean;
173
+ rippleStarted: boolean;
174
+ } & {
175
+ rippleState: string;
176
+ keepAlive: boolean;
177
+ _positionX: number;
178
+ _positionY: number;
179
+ _radius: number;
180
+ holdRipple: boolean;
181
+ } & {
182
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
183
+ styles: {
184
+ minHeight: string;
185
+ minWidth: string;
186
+ boxShadow: string;
187
+ top: string;
188
+ left: string;
189
+ };
190
+ };
191
+ } & {
192
+ updatePosition(x?: number, y?: number, size?: number): void;
193
+ handleRippleComplete(): void;
194
+ };
195
+ } & {
196
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
197
+ } & {
198
+ color: string;
199
+ ink: string;
200
+ typeStyle: string;
201
+ } & {
202
+ _ariaRole: string;
203
+ stateLayer: boolean;
204
+ } & {
205
+ leading: string;
206
+ avatar: string;
207
+ avatarColor: string;
208
+ avatarSrc: string;
209
+ src: string;
210
+ alt: string;
211
+ icon: string;
212
+ iconInk: string;
213
+ iconSrc: string;
214
+ iconVariation: string;
215
+ checkbox: string;
216
+ radio: string;
217
+ selectionColor: string;
218
+ selected: boolean;
219
+ supporting: string;
220
+ trailing: string;
221
+ trailingIcon: string;
222
+ trailingIconInk: string;
223
+ trailingIconSrc: string;
224
+ divider: string;
225
+ video: boolean;
226
+ lines: number;
227
+ _supportingSlotted: boolean;
228
+ } & {
229
+ disabledState: boolean;
230
+ }) => boolean>;
231
+ hasSupporting: () => ReturnType<() => boolean>;
232
+ checkboxClass: () => ReturnType<() => string>;
233
+ radioClass: () => ReturnType<() => string>;
234
+ computedIconVariation: () => ReturnType<({ iconVariation }: import("../index.js").CustomElement & {
235
+ href: string;
236
+ target: string;
237
+ download: string;
238
+ ping: string;
239
+ rel: string;
240
+ hreflang: string;
241
+ referrerPolicy: string;
242
+ } & {
243
+ origin: string;
244
+ protocol: string;
245
+ username: string;
246
+ password: string;
247
+ host: string;
248
+ hostname: string;
249
+ port: string;
250
+ pathname: string;
251
+ search: string;
252
+ hash: string;
253
+ } & object & {
254
+ _ariaRole: string;
255
+ } & {
256
+ onConnectAriaValues: Map<string, string>;
257
+ hasFiredConnected: boolean;
258
+ } & {
259
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
260
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
261
+ } & {
262
+ disabled: boolean;
263
+ focused: boolean;
264
+ hovered: boolean;
265
+ pressed: boolean;
266
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
267
+ _hovered: boolean;
268
+ _focused: boolean;
269
+ _focusedSynthetic: boolean;
270
+ _keyPressed: boolean;
271
+ _keyReleased: boolean;
272
+ _pointerPressed: boolean;
273
+ stateLayer: boolean;
274
+ } & {
275
+ disabledState: boolean;
276
+ hoveredState: boolean;
277
+ focusedState: boolean;
278
+ pressedState: boolean;
279
+ touchedState: boolean;
280
+ pointedState: boolean;
281
+ } & {
282
+ stateTargetElement: HTMLElement;
283
+ } & {
284
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
285
+ _rippleAdded: boolean;
286
+ } & {
287
+ _lastRipple: import("../index.js").CustomElement & {
288
+ hadRippleHeld: boolean;
289
+ hadRippleReleased: boolean;
290
+ rippleStarted: boolean;
291
+ } & {
292
+ rippleState: string;
293
+ keepAlive: boolean;
294
+ _positionX: number;
295
+ _positionY: number;
296
+ _radius: number;
297
+ holdRipple: boolean;
298
+ } & {
299
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
300
+ styles: {
301
+ minHeight: string;
302
+ minWidth: string;
303
+ boxShadow: string;
304
+ top: string;
305
+ left: string;
306
+ };
307
+ };
308
+ } & {
309
+ updatePosition(x?: number, y?: number, size?: number): void;
310
+ handleRippleComplete(): void;
311
+ };
312
+ } & {
313
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
314
+ } & {
315
+ color: string;
316
+ ink: string;
317
+ typeStyle: string;
318
+ } & {
319
+ _ariaRole: string;
320
+ stateLayer: boolean;
321
+ } & {
322
+ leading: string;
323
+ avatar: string;
324
+ avatarColor: string;
325
+ avatarSrc: string;
326
+ src: string;
327
+ alt: string;
328
+ icon: string;
329
+ iconInk: string;
330
+ iconSrc: string;
331
+ iconVariation: string;
332
+ checkbox: string;
333
+ radio: string;
334
+ selectionColor: string;
335
+ selected: boolean;
336
+ supporting: string;
337
+ trailing: string;
338
+ trailingIcon: string;
339
+ trailingIconInk: string;
340
+ trailingIconSrc: string;
341
+ divider: string;
342
+ video: boolean;
343
+ lines: number;
344
+ _supportingSlotted: boolean;
345
+ } & {
346
+ disabledState: boolean;
347
+ }) => string>;
348
+ }, any[]> & {
349
+ formAssociated: true;
350
+ } & import("../core/CustomElement.js").Class<{
351
+ _ariaRole: string;
352
+ _index: number;
353
+ _selectedDirty: boolean;
354
+ isInteractive: boolean;
355
+ }, any[]> & import("../core/CustomElement.js").Class<{
356
+ _label: string;
357
+ defaultSelected: boolean;
358
+ _selected: boolean;
359
+ _value: string;
360
+ _formDisabled: boolean;
361
+ }, any[]> & import("../core/CustomElement.js").Class<{
362
+ selected: boolean;
363
+ disabledState: boolean;
364
+ }, any[]> & import("../core/CustomElement.js").Class<{
365
+ index: number;
366
+ form: HTMLFormElement;
367
+ label: string;
368
+ value: string;
369
+ }, any[]> & import("../core/CustomElement.js").Class<{
370
+ /** @param {boolean} formDisabled */
371
+ formDisabledCallback(formDisabled: boolean): void;
372
+ /** @type {HTMLElement['focus']} */
373
+ focus(options?: FocusOptions): void;
374
+ }, any[]> & import("../core/CustomElement.js").Class<{
375
+ anchorAriaLabelledBy: () => ReturnType<({ _label }: import("../index.js").CustomElement & {
376
+ delegatesFocus: boolean;
377
+ } & {
378
+ href: string;
379
+ target: string;
380
+ download: string;
381
+ ping: string;
382
+ rel: string;
383
+ hreflang: string;
384
+ referrerPolicy: string;
385
+ } & {
386
+ origin: string;
387
+ protocol: string;
388
+ username: string;
389
+ password: string;
390
+ host: string;
391
+ hostname: string;
392
+ port: string;
393
+ pathname: string;
394
+ search: string;
395
+ hash: string;
396
+ } & object & {
397
+ _ariaRole: string;
398
+ } & {
399
+ onConnectAriaValues: Map<string, string>;
400
+ hasFiredConnected: boolean;
401
+ } & {
402
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
403
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
404
+ } & {
405
+ disabled: boolean;
406
+ focused: boolean;
407
+ hovered: boolean;
408
+ pressed: boolean;
409
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
410
+ _hovered: boolean;
411
+ _focused: boolean;
412
+ _focusedSynthetic: boolean;
413
+ _keyPressed: boolean;
414
+ _keyReleased: boolean;
415
+ _pointerPressed: boolean;
416
+ stateLayer: boolean;
417
+ } & {
418
+ disabledState: boolean;
419
+ hoveredState: boolean;
420
+ focusedState: boolean;
421
+ pressedState: boolean;
422
+ touchedState: boolean;
423
+ pointedState: boolean;
424
+ } & {
425
+ stateTargetElement: HTMLElement;
426
+ } & {
427
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
428
+ _rippleAdded: boolean;
429
+ } & {
430
+ _lastRipple: import("../index.js").CustomElement & {
431
+ hadRippleHeld: boolean;
432
+ hadRippleReleased: boolean;
433
+ rippleStarted: boolean;
434
+ } & {
435
+ rippleState: string;
436
+ keepAlive: boolean;
437
+ _positionX: number;
438
+ _positionY: number;
439
+ _radius: number;
440
+ holdRipple: boolean;
441
+ } & {
442
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
443
+ styles: {
444
+ minHeight: string;
445
+ minWidth: string;
446
+ boxShadow: string;
447
+ top: string;
448
+ left: string;
449
+ };
450
+ };
451
+ } & {
452
+ updatePosition(x?: number, y?: number, size?: number): void;
453
+ handleRippleComplete(): void;
454
+ };
455
+ } & {
456
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
457
+ } & {
458
+ color: string;
459
+ ink: string;
460
+ typeStyle: string;
461
+ } & {
462
+ _ariaRole: string;
463
+ stateLayer: boolean;
464
+ } & {
465
+ leading: string;
466
+ avatar: string;
467
+ avatarColor: string;
468
+ avatarSrc: string;
469
+ src: string;
470
+ alt: string;
471
+ icon: string;
472
+ iconInk: string;
473
+ iconSrc: string;
474
+ iconVariation: string;
475
+ checkbox: string;
476
+ radio: string;
477
+ selectionColor: string;
478
+ selected: boolean;
479
+ supporting: string;
480
+ trailing: string;
481
+ trailingIcon: string;
482
+ trailingIconInk: string;
483
+ trailingIconSrc: string;
484
+ divider: string;
485
+ video: boolean;
486
+ lines: number;
487
+ _supportingSlotted: boolean;
488
+ } & {
489
+ disabledState: boolean;
490
+ } & {
491
+ isInteractive: () => ReturnType<({ href }: import("../index.js").CustomElement & {
492
+ href: string;
493
+ target: string;
494
+ download: string;
495
+ ping: string;
496
+ rel: string;
497
+ hreflang: string;
498
+ referrerPolicy: string;
499
+ } & {
500
+ origin: string;
501
+ protocol: string;
502
+ username: string;
503
+ password: string;
504
+ host: string;
505
+ hostname: string;
506
+ port: string;
507
+ pathname: string;
508
+ search: string;
509
+ hash: string;
510
+ } & object & {
511
+ _ariaRole: string;
512
+ } & {
513
+ onConnectAriaValues: Map<string, string>;
514
+ hasFiredConnected: boolean;
515
+ } & {
516
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
517
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
518
+ } & {
519
+ disabled: boolean;
520
+ focused: boolean;
521
+ hovered: boolean;
522
+ pressed: boolean;
523
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
524
+ _hovered: boolean;
525
+ _focused: boolean;
526
+ _focusedSynthetic: boolean;
527
+ _keyPressed: boolean;
528
+ _keyReleased: boolean;
529
+ _pointerPressed: boolean;
530
+ stateLayer: boolean;
531
+ } & {
532
+ disabledState: boolean;
533
+ hoveredState: boolean;
534
+ focusedState: boolean;
535
+ pressedState: boolean;
536
+ touchedState: boolean;
537
+ pointedState: boolean;
538
+ } & {
539
+ stateTargetElement: HTMLElement;
540
+ } & {
541
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
542
+ _rippleAdded: boolean;
543
+ } & {
544
+ _lastRipple: import("../index.js").CustomElement & {
545
+ hadRippleHeld: boolean;
546
+ hadRippleReleased: boolean;
547
+ rippleStarted: boolean;
548
+ } & {
549
+ rippleState: string;
550
+ keepAlive: boolean;
551
+ _positionX: number;
552
+ _positionY: number;
553
+ _radius: number;
554
+ holdRipple: boolean;
555
+ } & {
556
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
557
+ styles: {
558
+ minHeight: string;
559
+ minWidth: string;
560
+ boxShadow: string;
561
+ top: string;
562
+ left: string;
563
+ };
564
+ };
565
+ } & {
566
+ updatePosition(x?: number, y?: number, size?: number): void;
567
+ handleRippleComplete(): void;
568
+ };
569
+ } & {
570
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
571
+ } & {
572
+ color: string;
573
+ ink: string;
574
+ typeStyle: string;
575
+ } & {
576
+ _ariaRole: string;
577
+ stateLayer: boolean;
578
+ } & {
579
+ leading: string;
580
+ avatar: string;
581
+ avatarColor: string;
582
+ avatarSrc: string;
583
+ src: string;
584
+ alt: string;
585
+ icon: string;
586
+ iconInk: string;
587
+ iconSrc: string;
588
+ iconVariation: string;
589
+ checkbox: string;
590
+ radio: string;
591
+ selectionColor: string;
592
+ selected: boolean;
593
+ supporting: string;
594
+ trailing: string;
595
+ trailingIcon: string;
596
+ trailingIconInk: string;
597
+ trailingIconSrc: string;
598
+ divider: string;
599
+ video: boolean;
600
+ lines: number;
601
+ _supportingSlotted: boolean;
602
+ } & {
603
+ disabledState: boolean;
604
+ }) => boolean>;
605
+ hasSupporting: () => ReturnType<() => boolean>;
606
+ checkboxClass: () => ReturnType<() => string>;
607
+ radioClass: () => ReturnType<() => string>;
608
+ computedIconVariation: () => ReturnType<({ iconVariation }: import("../index.js").CustomElement & {
609
+ href: string;
610
+ target: string;
611
+ download: string;
612
+ ping: string;
613
+ rel: string;
614
+ hreflang: string;
615
+ referrerPolicy: string;
616
+ } & {
617
+ origin: string;
618
+ protocol: string;
619
+ username: string;
620
+ password: string;
621
+ host: string;
622
+ hostname: string;
623
+ port: string;
624
+ pathname: string;
625
+ search: string;
626
+ hash: string;
627
+ } & object & {
628
+ _ariaRole: string;
629
+ } & {
630
+ onConnectAriaValues: Map<string, string>;
631
+ hasFiredConnected: boolean;
632
+ } & {
633
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
634
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
635
+ } & {
636
+ disabled: boolean;
637
+ focused: boolean;
638
+ hovered: boolean;
639
+ pressed: boolean;
640
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
641
+ _hovered: boolean;
642
+ _focused: boolean;
643
+ _focusedSynthetic: boolean;
644
+ _keyPressed: boolean;
645
+ _keyReleased: boolean;
646
+ _pointerPressed: boolean;
647
+ stateLayer: boolean;
648
+ } & {
649
+ disabledState: boolean;
650
+ hoveredState: boolean;
651
+ focusedState: boolean;
652
+ pressedState: boolean;
653
+ touchedState: boolean;
654
+ pointedState: boolean;
655
+ } & {
656
+ stateTargetElement: HTMLElement;
657
+ } & {
658
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
659
+ _rippleAdded: boolean;
660
+ } & {
661
+ _lastRipple: import("../index.js").CustomElement & {
662
+ hadRippleHeld: boolean;
663
+ hadRippleReleased: boolean;
664
+ rippleStarted: boolean;
665
+ } & {
666
+ rippleState: string;
667
+ keepAlive: boolean;
668
+ _positionX: number;
669
+ _positionY: number;
670
+ _radius: number;
671
+ holdRipple: boolean;
672
+ } & {
673
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
674
+ styles: {
675
+ minHeight: string;
676
+ minWidth: string;
677
+ boxShadow: string;
678
+ top: string;
679
+ left: string;
680
+ };
681
+ };
682
+ } & {
683
+ updatePosition(x?: number, y?: number, size?: number): void;
684
+ handleRippleComplete(): void;
685
+ };
686
+ } & {
687
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
688
+ } & {
689
+ color: string;
690
+ ink: string;
691
+ typeStyle: string;
692
+ } & {
693
+ _ariaRole: string;
694
+ stateLayer: boolean;
695
+ } & {
696
+ leading: string;
697
+ avatar: string;
698
+ avatarColor: string;
699
+ avatarSrc: string;
700
+ src: string;
701
+ alt: string;
702
+ icon: string;
703
+ iconInk: string;
704
+ iconSrc: string;
705
+ iconVariation: string;
706
+ checkbox: string;
707
+ radio: string;
708
+ selectionColor: string;
709
+ selected: boolean;
710
+ supporting: string;
711
+ trailing: string;
712
+ trailingIcon: string;
713
+ trailingIconInk: string;
714
+ trailingIconSrc: string;
715
+ divider: string;
716
+ video: boolean;
717
+ lines: number;
718
+ _supportingSlotted: boolean;
719
+ } & {
720
+ disabledState: boolean;
721
+ }) => string>;
722
+ } & {
723
+ _ariaRole: string;
724
+ _index: number;
725
+ _selectedDirty: boolean;
726
+ isInteractive: boolean;
727
+ } & {
728
+ _label: string;
729
+ defaultSelected: boolean;
730
+ _selected: boolean;
731
+ _value: string;
732
+ _formDisabled: boolean;
733
+ } & {
734
+ selected: boolean;
735
+ disabledState: boolean;
736
+ } & {
737
+ index: number;
738
+ form: HTMLFormElement;
739
+ label: string;
740
+ value: string;
741
+ } & {
742
+ /** @param {boolean} formDisabled */
743
+ formDisabledCallback(formDisabled: boolean): void;
744
+ /** @type {HTMLElement['focus']} */
745
+ focus(options?: FocusOptions): void;
746
+ }) => string>;
747
+ anchorAriaDescribedBy: () => ReturnType<({ _label }: import("../index.js").CustomElement & {
748
+ delegatesFocus: boolean;
749
+ } & {
750
+ href: string;
751
+ target: string;
752
+ download: string;
753
+ ping: string;
754
+ rel: string;
755
+ hreflang: string;
756
+ referrerPolicy: string;
757
+ } & {
758
+ origin: string;
759
+ protocol: string;
760
+ username: string;
761
+ password: string;
762
+ host: string;
763
+ hostname: string;
764
+ port: string;
765
+ pathname: string;
766
+ search: string;
767
+ hash: string;
768
+ } & object & {
769
+ _ariaRole: string;
770
+ } & {
771
+ onConnectAriaValues: Map<string, string>;
772
+ hasFiredConnected: boolean;
773
+ } & {
774
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
775
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
776
+ } & {
777
+ disabled: boolean;
778
+ focused: boolean;
779
+ hovered: boolean;
780
+ pressed: boolean;
781
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
782
+ _hovered: boolean;
783
+ _focused: boolean;
784
+ _focusedSynthetic: boolean;
785
+ _keyPressed: boolean;
786
+ _keyReleased: boolean;
787
+ _pointerPressed: boolean;
788
+ stateLayer: boolean;
789
+ } & {
790
+ disabledState: boolean;
791
+ hoveredState: boolean;
792
+ focusedState: boolean;
793
+ pressedState: boolean;
794
+ touchedState: boolean;
795
+ pointedState: boolean;
796
+ } & {
797
+ stateTargetElement: HTMLElement;
798
+ } & {
799
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
800
+ _rippleAdded: boolean;
801
+ } & {
802
+ _lastRipple: import("../index.js").CustomElement & {
803
+ hadRippleHeld: boolean;
804
+ hadRippleReleased: boolean;
805
+ rippleStarted: boolean;
806
+ } & {
807
+ rippleState: string;
808
+ keepAlive: boolean;
809
+ _positionX: number;
810
+ _positionY: number;
811
+ _radius: number;
812
+ holdRipple: boolean;
813
+ } & {
814
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
815
+ styles: {
816
+ minHeight: string;
817
+ minWidth: string;
818
+ boxShadow: string;
819
+ top: string;
820
+ left: string;
821
+ };
822
+ };
823
+ } & {
824
+ updatePosition(x?: number, y?: number, size?: number): void;
825
+ handleRippleComplete(): void;
826
+ };
827
+ } & {
828
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
829
+ } & {
830
+ color: string;
831
+ ink: string;
832
+ typeStyle: string;
833
+ } & {
834
+ _ariaRole: string;
835
+ stateLayer: boolean;
836
+ } & {
837
+ leading: string;
838
+ avatar: string;
839
+ avatarColor: string;
840
+ avatarSrc: string;
841
+ src: string;
842
+ alt: string;
843
+ icon: string;
844
+ iconInk: string;
845
+ iconSrc: string;
846
+ iconVariation: string;
847
+ checkbox: string;
848
+ radio: string;
849
+ selectionColor: string;
850
+ selected: boolean;
851
+ supporting: string;
852
+ trailing: string;
853
+ trailingIcon: string;
854
+ trailingIconInk: string;
855
+ trailingIconSrc: string;
856
+ divider: string;
857
+ video: boolean;
858
+ lines: number;
859
+ _supportingSlotted: boolean;
860
+ } & {
861
+ disabledState: boolean;
862
+ } & {
863
+ isInteractive: () => ReturnType<({ href }: import("../index.js").CustomElement & {
864
+ href: string;
865
+ target: string;
866
+ download: string;
867
+ ping: string;
868
+ rel: string;
869
+ hreflang: string;
870
+ referrerPolicy: string;
871
+ } & {
872
+ origin: string;
873
+ protocol: string;
874
+ username: string;
875
+ password: string;
876
+ host: string;
877
+ hostname: string;
878
+ port: string;
879
+ pathname: string;
880
+ search: string;
881
+ hash: string;
882
+ } & object & {
883
+ _ariaRole: string;
884
+ } & {
885
+ onConnectAriaValues: Map<string, string>;
886
+ hasFiredConnected: boolean;
887
+ } & {
888
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
889
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
890
+ } & {
891
+ disabled: boolean;
892
+ focused: boolean;
893
+ hovered: boolean;
894
+ pressed: boolean;
895
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
896
+ _hovered: boolean;
897
+ _focused: boolean;
898
+ _focusedSynthetic: boolean;
899
+ _keyPressed: boolean;
900
+ _keyReleased: boolean;
901
+ _pointerPressed: boolean;
902
+ stateLayer: boolean;
903
+ } & {
904
+ disabledState: boolean;
905
+ hoveredState: boolean;
906
+ focusedState: boolean;
907
+ pressedState: boolean;
908
+ touchedState: boolean;
909
+ pointedState: boolean;
910
+ } & {
911
+ stateTargetElement: HTMLElement;
912
+ } & {
913
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
914
+ _rippleAdded: boolean;
915
+ } & {
916
+ _lastRipple: import("../index.js").CustomElement & {
917
+ hadRippleHeld: boolean;
918
+ hadRippleReleased: boolean;
919
+ rippleStarted: boolean;
920
+ } & {
921
+ rippleState: string;
922
+ keepAlive: boolean;
923
+ _positionX: number;
924
+ _positionY: number;
925
+ _radius: number;
926
+ holdRipple: boolean;
927
+ } & {
928
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
929
+ styles: {
930
+ minHeight: string;
931
+ minWidth: string;
932
+ boxShadow: string;
933
+ top: string;
934
+ left: string;
935
+ };
936
+ };
937
+ } & {
938
+ updatePosition(x?: number, y?: number, size?: number): void;
939
+ handleRippleComplete(): void;
940
+ };
941
+ } & {
942
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
943
+ } & {
944
+ color: string;
945
+ ink: string;
946
+ typeStyle: string;
947
+ } & {
948
+ _ariaRole: string;
949
+ stateLayer: boolean;
950
+ } & {
951
+ leading: string;
952
+ avatar: string;
953
+ avatarColor: string;
954
+ avatarSrc: string;
955
+ src: string;
956
+ alt: string;
957
+ icon: string;
958
+ iconInk: string;
959
+ iconSrc: string;
960
+ iconVariation: string;
961
+ checkbox: string;
962
+ radio: string;
963
+ selectionColor: string;
964
+ selected: boolean;
965
+ supporting: string;
966
+ trailing: string;
967
+ trailingIcon: string;
968
+ trailingIconInk: string;
969
+ trailingIconSrc: string;
970
+ divider: string;
971
+ video: boolean;
972
+ lines: number;
973
+ _supportingSlotted: boolean;
974
+ } & {
975
+ disabledState: boolean;
976
+ }) => boolean>;
977
+ hasSupporting: () => ReturnType<() => boolean>;
978
+ checkboxClass: () => ReturnType<() => string>;
979
+ radioClass: () => ReturnType<() => string>;
980
+ computedIconVariation: () => ReturnType<({ iconVariation }: import("../index.js").CustomElement & {
981
+ href: string;
982
+ target: string;
983
+ download: string;
984
+ ping: string;
985
+ rel: string;
986
+ hreflang: string;
987
+ referrerPolicy: string;
988
+ } & {
989
+ origin: string;
990
+ protocol: string;
991
+ username: string;
992
+ password: string;
993
+ host: string;
994
+ hostname: string;
995
+ port: string;
996
+ pathname: string;
997
+ search: string;
998
+ hash: string;
999
+ } & object & {
1000
+ _ariaRole: string;
1001
+ } & {
1002
+ onConnectAriaValues: Map<string, string>;
1003
+ hasFiredConnected: boolean;
1004
+ } & {
1005
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
1006
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
1007
+ } & {
1008
+ disabled: boolean;
1009
+ focused: boolean;
1010
+ hovered: boolean;
1011
+ pressed: boolean;
1012
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1013
+ _hovered: boolean;
1014
+ _focused: boolean;
1015
+ _focusedSynthetic: boolean;
1016
+ _keyPressed: boolean;
1017
+ _keyReleased: boolean;
1018
+ _pointerPressed: boolean;
1019
+ stateLayer: boolean;
1020
+ } & {
1021
+ disabledState: boolean;
1022
+ hoveredState: boolean;
1023
+ focusedState: boolean;
1024
+ pressedState: boolean;
1025
+ touchedState: boolean;
1026
+ pointedState: boolean;
1027
+ } & {
1028
+ stateTargetElement: HTMLElement;
1029
+ } & {
1030
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1031
+ _rippleAdded: boolean;
1032
+ } & {
1033
+ _lastRipple: import("../index.js").CustomElement & {
1034
+ hadRippleHeld: boolean;
1035
+ hadRippleReleased: boolean;
1036
+ rippleStarted: boolean;
1037
+ } & {
1038
+ rippleState: string;
1039
+ keepAlive: boolean;
1040
+ _positionX: number;
1041
+ _positionY: number;
1042
+ _radius: number;
1043
+ holdRipple: boolean;
1044
+ } & {
1045
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1046
+ styles: {
1047
+ minHeight: string;
1048
+ minWidth: string;
1049
+ boxShadow: string;
1050
+ top: string;
1051
+ left: string;
1052
+ };
1053
+ };
1054
+ } & {
1055
+ updatePosition(x?: number, y?: number, size?: number): void;
1056
+ handleRippleComplete(): void;
1057
+ };
1058
+ } & {
1059
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1060
+ } & {
1061
+ color: string;
1062
+ ink: string;
1063
+ typeStyle: string;
1064
+ } & {
1065
+ _ariaRole: string;
1066
+ stateLayer: boolean;
1067
+ } & {
1068
+ leading: string;
1069
+ avatar: string;
1070
+ avatarColor: string;
1071
+ avatarSrc: string;
1072
+ src: string;
1073
+ alt: string;
1074
+ icon: string;
1075
+ iconInk: string;
1076
+ iconSrc: string;
1077
+ iconVariation: string;
1078
+ checkbox: string;
1079
+ radio: string;
1080
+ selectionColor: string;
1081
+ selected: boolean;
1082
+ supporting: string;
1083
+ trailing: string;
1084
+ trailingIcon: string;
1085
+ trailingIconInk: string;
1086
+ trailingIconSrc: string;
1087
+ divider: string;
1088
+ video: boolean;
1089
+ lines: number;
1090
+ _supportingSlotted: boolean;
1091
+ } & {
1092
+ disabledState: boolean;
1093
+ }) => string>;
1094
+ } & {
1095
+ _ariaRole: string;
1096
+ _index: number;
1097
+ _selectedDirty: boolean;
1098
+ isInteractive: boolean;
1099
+ } & {
1100
+ _label: string;
1101
+ defaultSelected: boolean;
1102
+ _selected: boolean;
1103
+ _value: string;
1104
+ _formDisabled: boolean;
1105
+ } & {
1106
+ selected: boolean;
1107
+ disabledState: boolean;
1108
+ } & {
1109
+ index: number;
1110
+ form: HTMLFormElement;
1111
+ label: string;
1112
+ value: string;
1113
+ } & {
1114
+ /** @param {boolean} formDisabled */
1115
+ formDisabledCallback(formDisabled: boolean): void;
1116
+ /** @type {HTMLElement['focus']} */
1117
+ focus(options?: FocusOptions): void;
1118
+ }) => string>;
1119
+ computedIconVariation: () => ReturnType<({ iconVariation, selected }: import("../index.js").CustomElement & {
1120
+ delegatesFocus: boolean;
1121
+ } & {
1122
+ href: string;
1123
+ target: string;
1124
+ download: string;
1125
+ ping: string;
1126
+ rel: string;
1127
+ hreflang: string;
1128
+ referrerPolicy: string;
1129
+ } & {
1130
+ origin: string;
1131
+ protocol: string;
1132
+ username: string;
1133
+ password: string;
1134
+ host: string;
1135
+ hostname: string;
1136
+ port: string;
1137
+ pathname: string;
1138
+ search: string;
1139
+ hash: string;
1140
+ } & object & {
1141
+ _ariaRole: string;
1142
+ } & {
1143
+ onConnectAriaValues: Map<string, string>;
1144
+ hasFiredConnected: boolean;
1145
+ } & {
1146
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
1147
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
1148
+ } & {
1149
+ disabled: boolean;
1150
+ focused: boolean;
1151
+ hovered: boolean;
1152
+ pressed: boolean;
1153
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1154
+ _hovered: boolean;
1155
+ _focused: boolean;
1156
+ _focusedSynthetic: boolean;
1157
+ _keyPressed: boolean;
1158
+ _keyReleased: boolean;
1159
+ _pointerPressed: boolean;
1160
+ stateLayer: boolean;
1161
+ } & {
1162
+ disabledState: boolean;
1163
+ hoveredState: boolean;
1164
+ focusedState: boolean;
1165
+ pressedState: boolean;
1166
+ touchedState: boolean;
1167
+ pointedState: boolean;
1168
+ } & {
1169
+ stateTargetElement: HTMLElement;
1170
+ } & {
1171
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1172
+ _rippleAdded: boolean;
1173
+ } & {
1174
+ _lastRipple: import("../index.js").CustomElement & {
1175
+ hadRippleHeld: boolean;
1176
+ hadRippleReleased: boolean;
1177
+ rippleStarted: boolean;
1178
+ } & {
1179
+ rippleState: string;
1180
+ keepAlive: boolean;
1181
+ _positionX: number;
1182
+ _positionY: number;
1183
+ _radius: number;
1184
+ holdRipple: boolean;
1185
+ } & {
1186
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1187
+ styles: {
1188
+ minHeight: string;
1189
+ minWidth: string;
1190
+ boxShadow: string;
1191
+ top: string;
1192
+ left: string;
1193
+ };
1194
+ };
1195
+ } & {
1196
+ updatePosition(x?: number, y?: number, size?: number): void;
1197
+ handleRippleComplete(): void;
1198
+ };
1199
+ } & {
1200
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1201
+ } & {
1202
+ color: string;
1203
+ ink: string;
1204
+ typeStyle: string;
1205
+ } & {
1206
+ _ariaRole: string;
1207
+ stateLayer: boolean;
1208
+ } & {
1209
+ leading: string;
1210
+ avatar: string;
1211
+ avatarColor: string;
1212
+ avatarSrc: string;
1213
+ src: string;
1214
+ alt: string;
1215
+ icon: string;
1216
+ iconInk: string;
1217
+ iconSrc: string;
1218
+ iconVariation: string;
1219
+ checkbox: string;
1220
+ radio: string;
1221
+ selectionColor: string;
1222
+ selected: boolean;
1223
+ supporting: string;
1224
+ trailing: string;
1225
+ trailingIcon: string;
1226
+ trailingIconInk: string;
1227
+ trailingIconSrc: string;
1228
+ divider: string;
1229
+ video: boolean;
1230
+ lines: number;
1231
+ _supportingSlotted: boolean;
1232
+ } & {
1233
+ disabledState: boolean;
1234
+ } & {
1235
+ isInteractive: () => ReturnType<({ href }: import("../index.js").CustomElement & {
1236
+ href: string;
1237
+ target: string;
1238
+ download: string;
1239
+ ping: string;
1240
+ rel: string;
1241
+ hreflang: string;
1242
+ referrerPolicy: string;
1243
+ } & {
1244
+ origin: string;
1245
+ protocol: string;
1246
+ username: string;
1247
+ password: string;
1248
+ host: string;
1249
+ hostname: string;
1250
+ port: string;
1251
+ pathname: string;
1252
+ search: string;
1253
+ hash: string;
1254
+ } & object & {
1255
+ _ariaRole: string;
1256
+ } & {
1257
+ onConnectAriaValues: Map<string, string>;
1258
+ hasFiredConnected: boolean;
1259
+ } & {
1260
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
1261
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
1262
+ } & {
1263
+ disabled: boolean;
1264
+ focused: boolean;
1265
+ hovered: boolean;
1266
+ pressed: boolean;
1267
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1268
+ _hovered: boolean;
1269
+ _focused: boolean;
1270
+ _focusedSynthetic: boolean;
1271
+ _keyPressed: boolean;
1272
+ _keyReleased: boolean;
1273
+ _pointerPressed: boolean;
1274
+ stateLayer: boolean;
1275
+ } & {
1276
+ disabledState: boolean;
1277
+ hoveredState: boolean;
1278
+ focusedState: boolean;
1279
+ pressedState: boolean;
1280
+ touchedState: boolean;
1281
+ pointedState: boolean;
1282
+ } & {
1283
+ stateTargetElement: HTMLElement;
1284
+ } & {
1285
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1286
+ _rippleAdded: boolean;
1287
+ } & {
1288
+ _lastRipple: import("../index.js").CustomElement & {
1289
+ hadRippleHeld: boolean;
1290
+ hadRippleReleased: boolean;
1291
+ rippleStarted: boolean;
1292
+ } & {
1293
+ rippleState: string;
1294
+ keepAlive: boolean;
1295
+ _positionX: number;
1296
+ _positionY: number;
1297
+ _radius: number;
1298
+ holdRipple: boolean;
1299
+ } & {
1300
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1301
+ styles: {
1302
+ minHeight: string;
1303
+ minWidth: string;
1304
+ boxShadow: string;
1305
+ top: string;
1306
+ left: string;
1307
+ };
1308
+ };
1309
+ } & {
1310
+ updatePosition(x?: number, y?: number, size?: number): void;
1311
+ handleRippleComplete(): void;
1312
+ };
1313
+ } & {
1314
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1315
+ } & {
1316
+ color: string;
1317
+ ink: string;
1318
+ typeStyle: string;
1319
+ } & {
1320
+ _ariaRole: string;
1321
+ stateLayer: boolean;
1322
+ } & {
1323
+ leading: string;
1324
+ avatar: string;
1325
+ avatarColor: string;
1326
+ avatarSrc: string;
1327
+ src: string;
1328
+ alt: string;
1329
+ icon: string;
1330
+ iconInk: string;
1331
+ iconSrc: string;
1332
+ iconVariation: string;
1333
+ checkbox: string;
1334
+ radio: string;
1335
+ selectionColor: string;
1336
+ selected: boolean;
1337
+ supporting: string;
1338
+ trailing: string;
1339
+ trailingIcon: string;
1340
+ trailingIconInk: string;
1341
+ trailingIconSrc: string;
1342
+ divider: string;
1343
+ video: boolean;
1344
+ lines: number;
1345
+ _supportingSlotted: boolean;
1346
+ } & {
1347
+ disabledState: boolean;
1348
+ }) => boolean>;
1349
+ hasSupporting: () => ReturnType<() => boolean>;
1350
+ checkboxClass: () => ReturnType<() => string>;
1351
+ radioClass: () => ReturnType<() => string>;
1352
+ computedIconVariation: () => ReturnType<({ iconVariation }: import("../index.js").CustomElement & {
1353
+ href: string;
1354
+ target: string;
1355
+ download: string;
1356
+ ping: string;
1357
+ rel: string;
1358
+ hreflang: string;
1359
+ referrerPolicy: string;
1360
+ } & {
1361
+ origin: string;
1362
+ protocol: string;
1363
+ username: string;
1364
+ password: string;
1365
+ host: string;
1366
+ hostname: string;
1367
+ port: string;
1368
+ pathname: string;
1369
+ search: string;
1370
+ hash: string;
1371
+ } & object & {
1372
+ _ariaRole: string;
1373
+ } & {
1374
+ onConnectAriaValues: Map<string, string>;
1375
+ hasFiredConnected: boolean;
1376
+ } & {
1377
+ readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
1378
+ updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
1379
+ } & {
1380
+ disabled: boolean;
1381
+ focused: boolean;
1382
+ hovered: boolean;
1383
+ pressed: boolean;
1384
+ _lastInteraction: "key" | "mouse" | "touch" | "pen";
1385
+ _hovered: boolean;
1386
+ _focused: boolean;
1387
+ _focusedSynthetic: boolean;
1388
+ _keyPressed: boolean;
1389
+ _keyReleased: boolean;
1390
+ _pointerPressed: boolean;
1391
+ stateLayer: boolean;
1392
+ } & {
1393
+ disabledState: boolean;
1394
+ hoveredState: boolean;
1395
+ focusedState: boolean;
1396
+ pressedState: boolean;
1397
+ touchedState: boolean;
1398
+ pointedState: boolean;
1399
+ } & {
1400
+ stateTargetElement: HTMLElement;
1401
+ } & {
1402
+ _lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
1403
+ _rippleAdded: boolean;
1404
+ } & {
1405
+ _lastRipple: import("../index.js").CustomElement & {
1406
+ hadRippleHeld: boolean;
1407
+ hadRippleReleased: boolean;
1408
+ rippleStarted: boolean;
1409
+ } & {
1410
+ rippleState: string;
1411
+ keepAlive: boolean;
1412
+ _positionX: number;
1413
+ _positionY: number;
1414
+ _radius: number;
1415
+ holdRipple: boolean;
1416
+ } & {
1417
+ _positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
1418
+ styles: {
1419
+ minHeight: string;
1420
+ minWidth: string;
1421
+ boxShadow: string;
1422
+ top: string;
1423
+ left: string;
1424
+ };
1425
+ };
1426
+ } & {
1427
+ updatePosition(x?: number, y?: number, size?: number): void;
1428
+ handleRippleComplete(): void;
1429
+ };
1430
+ } & {
1431
+ addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
1432
+ } & {
1433
+ color: string;
1434
+ ink: string;
1435
+ typeStyle: string;
1436
+ } & {
1437
+ _ariaRole: string;
1438
+ stateLayer: boolean;
1439
+ } & {
1440
+ leading: string;
1441
+ avatar: string;
1442
+ avatarColor: string;
1443
+ avatarSrc: string;
1444
+ src: string;
1445
+ alt: string;
1446
+ icon: string;
1447
+ iconInk: string;
1448
+ iconSrc: string;
1449
+ iconVariation: string;
1450
+ checkbox: string;
1451
+ radio: string;
1452
+ selectionColor: string;
1453
+ selected: boolean;
1454
+ supporting: string;
1455
+ trailing: string;
1456
+ trailingIcon: string;
1457
+ trailingIconInk: string;
1458
+ trailingIconSrc: string;
1459
+ divider: string;
1460
+ video: boolean;
1461
+ lines: number;
1462
+ _supportingSlotted: boolean;
1463
+ } & {
1464
+ disabledState: boolean;
1465
+ }) => string>;
1466
+ } & {
1467
+ _ariaRole: string;
1468
+ _index: number;
1469
+ _selectedDirty: boolean;
1470
+ isInteractive: boolean;
1471
+ } & {
1472
+ _label: string;
1473
+ defaultSelected: boolean;
1474
+ _selected: boolean;
1475
+ _value: string;
1476
+ _formDisabled: boolean;
1477
+ } & {
1478
+ selected: boolean;
1479
+ disabledState: boolean;
1480
+ } & {
1481
+ index: number;
1482
+ form: HTMLFormElement;
1483
+ label: string;
1484
+ value: string;
1485
+ } & {
1486
+ /** @param {boolean} formDisabled */
1487
+ formDisabledCallback(formDisabled: boolean): void;
1488
+ /** @type {HTMLElement['focus']} */
1489
+ focus(options?: FocusOptions): void;
1490
+ }) => string>;
1491
+ }, any[]>;
1492
+ export default _default;
1493
+ //# sourceMappingURL=ListOption.d.ts.map