@fluentui/web-components 2.5.11 → 3.0.0-alpha.2

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 (513) hide show
  1. package/.eslintrc.json +62 -0
  2. package/CHANGELOG.json +64 -36
  3. package/CHANGELOG.md +14 -20
  4. package/build/{clean.js → clean.cjs} +0 -0
  5. package/dist/dts/badge/badge.d.ts +49 -0
  6. package/dist/dts/badge/badge.definition.d.ts +11 -0
  7. package/dist/dts/badge/badge.options.d.ts +73 -0
  8. package/dist/dts/badge/badge.stories.d.ts +10 -12
  9. package/dist/dts/badge/badge.styles.d.ts +4 -3
  10. package/dist/dts/badge/badge.template.d.ts +9 -0
  11. package/dist/{esm/color/recipe.js → dts/badge/define.d.ts} +0 -0
  12. package/dist/dts/badge/index.d.ts +5 -29
  13. package/dist/dts/counter-badge/counter-badge.d.ts +90 -0
  14. package/dist/dts/counter-badge/counter-badge.definition.d.ts +11 -0
  15. package/dist/dts/counter-badge/counter-badge.options.d.ts +69 -0
  16. package/dist/dts/counter-badge/counter-badge.stories.d.ts +14 -0
  17. package/dist/dts/counter-badge/counter-badge.styles.d.ts +4 -0
  18. package/dist/dts/counter-badge/counter-badge.template.d.ts +7 -0
  19. package/dist/dts/counter-badge/define.d.ts +1 -0
  20. package/dist/dts/counter-badge/index.d.ts +5 -0
  21. package/dist/dts/fluent-design-system.d.ts +5 -9
  22. package/dist/dts/index-rollup.d.ts +1 -8
  23. package/dist/dts/index.d.ts +5 -49
  24. package/dist/dts/progress-bar/define.d.ts +1 -0
  25. package/dist/dts/progress-bar/index.d.ts +5 -0
  26. package/dist/dts/progress-bar/progress-bar.d.ts +30 -0
  27. package/dist/dts/progress-bar/progress-bar.definition.d.ts +10 -0
  28. package/dist/dts/progress-bar/progress-bar.options.d.ts +41 -0
  29. package/dist/dts/progress-bar/progress-bar.stories.d.ts +9 -0
  30. package/dist/dts/progress-bar/progress-bar.styles.d.ts +4 -0
  31. package/dist/dts/progress-bar/progress-bar.template.d.ts +3 -0
  32. package/dist/dts/styles/index.d.ts +1 -5
  33. package/dist/dts/styles/partials/badge.partials.d.ts +28 -0
  34. package/dist/dts/styles/partials/index.d.ts +1 -0
  35. package/dist/dts/text/define.d.ts +1 -0
  36. package/dist/dts/text/index.d.ts +5 -0
  37. package/dist/dts/text/text.d.ts +91 -0
  38. package/dist/dts/text/text.definition.d.ts +10 -0
  39. package/dist/dts/text/text.options.d.ts +67 -0
  40. package/dist/dts/text/text.stories.d.ts +8 -0
  41. package/dist/dts/text/text.styles.d.ts +4 -0
  42. package/dist/dts/text/text.template.d.ts +6 -0
  43. package/dist/dts/theme/design-tokens.d.ts +379 -0
  44. package/dist/dts/theme/index.d.ts +2 -0
  45. package/dist/dts/theme/set-theme.d.ts +6 -0
  46. package/dist/dts/{anchored-region/anchored-region.stories.d.ts → theme/theme.stories.d.ts} +1 -2
  47. package/dist/esm/badge/badge.definition.js +18 -0
  48. package/dist/esm/badge/badge.js +42 -0
  49. package/dist/esm/badge/badge.options.js +45 -0
  50. package/dist/esm/badge/badge.stories.js +101 -20
  51. package/dist/esm/badge/badge.styles.js +25 -36
  52. package/dist/esm/badge/badge.template.js +14 -0
  53. package/dist/esm/badge/define.js +3 -0
  54. package/dist/esm/badge/index.js +5 -45
  55. package/dist/esm/counter-badge/counter-badge.definition.js +18 -0
  56. package/dist/esm/counter-badge/counter-badge.js +89 -0
  57. package/dist/esm/counter-badge/counter-badge.options.js +42 -0
  58. package/dist/esm/counter-badge/counter-badge.stories.js +102 -0
  59. package/dist/esm/counter-badge/counter-badge.styles.js +30 -0
  60. package/dist/esm/counter-badge/counter-badge.template.js +12 -0
  61. package/dist/esm/counter-badge/define.js +3 -0
  62. package/dist/esm/counter-badge/index.js +5 -0
  63. package/dist/esm/fluent-design-system.js +5 -11
  64. package/dist/esm/index-rollup.js +1 -12
  65. package/dist/esm/index.js +5 -49
  66. package/dist/esm/progress-bar/define.js +3 -0
  67. package/dist/esm/progress-bar/index.js +5 -0
  68. package/dist/esm/progress-bar/progress-bar.definition.js +17 -0
  69. package/dist/esm/progress-bar/progress-bar.js +18 -0
  70. package/dist/esm/progress-bar/progress-bar.options.js +25 -0
  71. package/dist/esm/progress-bar/progress-bar.stories.js +60 -0
  72. package/dist/esm/progress-bar/progress-bar.styles.js +155 -0
  73. package/dist/esm/progress-bar/progress-bar.template.js +5 -0
  74. package/dist/esm/styles/index.js +1 -5
  75. package/dist/esm/styles/partials/badge.partials.js +272 -0
  76. package/dist/esm/styles/partials/index.js +1 -0
  77. package/dist/esm/text/define.js +3 -0
  78. package/dist/esm/text/index.js +5 -0
  79. package/dist/esm/text/text.definition.js +17 -0
  80. package/dist/esm/text/text.js +91 -0
  81. package/dist/esm/text/text.options.js +45 -0
  82. package/dist/esm/text/text.stories.js +111 -0
  83. package/dist/esm/text/text.styles.js +104 -0
  84. package/dist/esm/text/text.template.js +5 -0
  85. package/dist/esm/theme/design-tokens.js +381 -0
  86. package/dist/esm/theme/index.js +2 -0
  87. package/dist/esm/theme/set-theme.js +11 -0
  88. package/dist/esm/theme/theme.stories.js +21 -0
  89. package/dist/fluent-web-components.api.json +6683 -12477
  90. package/dist/tsdoc-metadata.json +1 -1
  91. package/dist/web-components.d.ts +895 -2490
  92. package/dist/web-components.js +5181 -20475
  93. package/dist/web-components.min.js +269 -239
  94. package/docs/api-report.md +783 -1074
  95. package/package.json +53 -17
  96. package/public/theme-switch.ts +13 -0
  97. package/rollup.config.js +5 -0
  98. package/dist/dts/_docs/design-system/color-explorer/app.d.ts +0 -25
  99. package/dist/dts/_docs/design-system/color-explorer/colors.d.ts +0 -13
  100. package/dist/dts/_docs/design-system/color-explorer/component-types.d.ts +0 -6
  101. package/dist/dts/_docs/design-system/color-explorer/components/color-block.d.ts +0 -10
  102. package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.d.ts +0 -190
  103. package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.d.ts +0 -15
  104. package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.d.ts +0 -3
  105. package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.template.d.ts +0 -8
  106. package/dist/dts/_docs/design-system/color-explorer/components/color-picker/index.d.ts +0 -9
  107. package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.d.ts +0 -8
  108. package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.d.ts +0 -1
  109. package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.template.d.ts +0 -2
  110. package/dist/dts/_docs/design-system/color-explorer/components/control-pane/index.d.ts +0 -6
  111. package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.d.ts +0 -5
  112. package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.styles.d.ts +0 -1
  113. package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.template.d.ts +0 -2
  114. package/dist/dts/_docs/design-system/color-explorer/components/gradient/index.d.ts +0 -6
  115. package/dist/dts/_docs/design-system/color-explorer/components/layer-background/index.d.ts +0 -21
  116. package/dist/dts/_docs/design-system/color-explorer/components/sample-app/index.d.ts +0 -6
  117. package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.d.ts +0 -3
  118. package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.d.ts +0 -1
  119. package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.template.d.ts +0 -1
  120. package/dist/dts/_docs/design-system/color-explorer/components/sample-page/index.d.ts +0 -6
  121. package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.d.ts +0 -3
  122. package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.d.ts +0 -1
  123. package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.template.d.ts +0 -1
  124. package/dist/dts/_docs/design-system/color-explorer/components/swatch.d.ts +0 -30
  125. package/dist/dts/_docs/design-system/color-explorer/custom-elements.d.ts +0 -7
  126. package/dist/dts/_docs/design-system/color-explorer/index.d.ts +0 -2
  127. package/dist/dts/accordion/accordion-item/accordion-item.styles.d.ts +0 -3
  128. package/dist/dts/accordion/accordion-item/index.d.ts +0 -17
  129. package/dist/dts/accordion/accordion.stories.d.ts +0 -15
  130. package/dist/dts/accordion/accordion.styles.d.ts +0 -3
  131. package/dist/dts/accordion/index.d.ts +0 -22
  132. package/dist/dts/anchor/anchor.stories.d.ts +0 -14
  133. package/dist/dts/anchor/anchor.styles.d.ts +0 -3
  134. package/dist/dts/anchor/index.d.ts +0 -49
  135. package/dist/dts/anchored-region/anchored-region.styles.d.ts +0 -3
  136. package/dist/dts/anchored-region/index.d.ts +0 -21
  137. package/dist/dts/breadcrumb/breadcrumb.stories.d.ts +0 -15
  138. package/dist/dts/breadcrumb/breadcrumb.styles.d.ts +0 -3
  139. package/dist/dts/breadcrumb/index.d.ts +0 -21
  140. package/dist/dts/breadcrumb-item/breadcrumb-item.stories.d.ts +0 -15
  141. package/dist/dts/breadcrumb-item/breadcrumb-item.styles.d.ts +0 -3
  142. package/dist/dts/breadcrumb-item/index.d.ts +0 -21
  143. package/dist/dts/button/button.stories.d.ts +0 -21
  144. package/dist/dts/button/button.styles.d.ts +0 -3
  145. package/dist/dts/button/index.d.ts +0 -48
  146. package/dist/dts/calendar/calendar.stories.d.ts +0 -86
  147. package/dist/dts/calendar/calendar.styles.d.ts +0 -7
  148. package/dist/dts/calendar/index.d.ts +0 -18
  149. package/dist/dts/card/card.stories.d.ts +0 -15
  150. package/dist/dts/card/card.styles.d.ts +0 -3
  151. package/dist/dts/card/index.d.ts +0 -46
  152. package/dist/dts/checkbox/checkbox.stories.d.ts +0 -28
  153. package/dist/dts/checkbox/checkbox.styles.d.ts +0 -3
  154. package/dist/dts/checkbox/index.d.ts +0 -16
  155. package/dist/dts/color/palette.d.ts +0 -73
  156. package/dist/dts/color/recipe.d.ts +0 -20
  157. package/dist/dts/color/recipes/contrast-and-delta-swatch-set.d.ts +0 -11
  158. package/dist/dts/color/recipes/contrast-swatch.d.ts +0 -12
  159. package/dist/dts/color/recipes/delta-swatch-set.d.ts +0 -36
  160. package/dist/dts/color/recipes/delta-swatch.d.ts +0 -12
  161. package/dist/dts/color/recipes/focus-stroke.d.ts +0 -10
  162. package/dist/dts/color/recipes/foreground-on-accent.d.ts +0 -11
  163. package/dist/dts/color/recipes/gradient-shadow-stroke.d.ts +0 -7
  164. package/dist/dts/color/recipes/gradient-swatch.d.ts +0 -36
  165. package/dist/dts/color/recipes/neutral-layer-1.d.ts +0 -10
  166. package/dist/dts/color/recipes/neutral-layer-2.d.ts +0 -6
  167. package/dist/dts/color/recipes/neutral-layer-3.d.ts +0 -6
  168. package/dist/dts/color/recipes/neutral-layer-4.d.ts +0 -6
  169. package/dist/dts/color/recipes/neutral-layer-floating.d.ts +0 -6
  170. package/dist/dts/color/recipes/underline-stroke.d.ts +0 -7
  171. package/dist/dts/color/swatch.d.ts +0 -31
  172. package/dist/dts/color/utilities/base-layer-luminance.d.ts +0 -11
  173. package/dist/dts/color/utilities/binary-search.d.ts +0 -4
  174. package/dist/dts/color/utilities/color-constants.d.ts +0 -14
  175. package/dist/dts/color/utilities/direction-by-is-dark.d.ts +0 -5
  176. package/dist/dts/color/utilities/is-dark.d.ts +0 -9
  177. package/dist/dts/color/utilities/relative-luminance.d.ts +0 -13
  178. package/dist/dts/combobox/combobox.stories.d.ts +0 -36
  179. package/dist/dts/combobox/combobox.styles.d.ts +0 -3
  180. package/dist/dts/combobox/index.d.ts +0 -43
  181. package/dist/dts/component-definitions.d.ts +0 -43
  182. package/dist/dts/custom-elements.d.ts +0 -103
  183. package/dist/dts/data-grid/data-grid-cell.styles.d.ts +0 -3
  184. package/dist/dts/data-grid/data-grid-row.styles.d.ts +0 -3
  185. package/dist/dts/data-grid/data-grid.stories.d.ts +0 -15
  186. package/dist/dts/data-grid/data-grid.styles.d.ts +0 -3
  187. package/dist/dts/data-grid/index.d.ts +0 -45
  188. package/dist/dts/design-system-provider/index.d.ts +0 -582
  189. package/dist/dts/design-tokens.d.ts +0 -519
  190. package/dist/dts/dialog/dialog.stories.d.ts +0 -25
  191. package/dist/dts/dialog/dialog.styles.d.ts +0 -3
  192. package/dist/dts/dialog/index.d.ts +0 -21
  193. package/dist/dts/divider/divider.stories.d.ts +0 -6
  194. package/dist/dts/divider/divider.styles.d.ts +0 -3
  195. package/dist/dts/divider/index.d.ts +0 -21
  196. package/dist/dts/flipper/flipper.stories.d.ts +0 -17
  197. package/dist/dts/flipper/flipper.styles.d.ts +0 -3
  198. package/dist/dts/flipper/index.d.ts +0 -21
  199. package/dist/dts/horizontal-scroll/horizontal-scroll.stories.d.ts +0 -15
  200. package/dist/dts/horizontal-scroll/horizontal-scroll.styles.d.ts +0 -12
  201. package/dist/dts/horizontal-scroll/index.d.ts +0 -25
  202. package/dist/dts/listbox/index.d.ts +0 -19
  203. package/dist/dts/listbox/listbox.stories.d.ts +0 -6
  204. package/dist/dts/listbox/listbox.styles.d.ts +0 -3
  205. package/dist/dts/listbox-option/index.d.ts +0 -17
  206. package/dist/dts/listbox-option/listbox-option.stories.d.ts +0 -23
  207. package/dist/dts/listbox-option/listbox-option.styles.d.ts +0 -3
  208. package/dist/dts/menu/index.d.ts +0 -26
  209. package/dist/dts/menu/menu.stories.d.ts +0 -6
  210. package/dist/dts/menu/menu.styles.d.ts +0 -3
  211. package/dist/dts/menu-item/index.d.ts +0 -21
  212. package/dist/dts/menu-item/menu-item.stories.d.ts +0 -18
  213. package/dist/dts/menu-item/menu-item.styles.d.ts +0 -3
  214. package/dist/dts/number-field/index.d.ts +0 -41
  215. package/dist/dts/number-field/number-field.stories.d.ts +0 -71
  216. package/dist/dts/number-field/number-field.styles.d.ts +0 -3
  217. package/dist/dts/progress/index.d.ts +0 -2
  218. package/dist/dts/progress/progress/index.d.ts +0 -22
  219. package/dist/dts/progress/progress/progress.stories.d.ts +0 -15
  220. package/dist/dts/progress/progress/progress.styles.d.ts +0 -3
  221. package/dist/dts/progress/progress-ring/index.d.ts +0 -22
  222. package/dist/dts/progress/progress-ring/progress-ring.stories.d.ts +0 -15
  223. package/dist/dts/progress/progress-ring/progress-ring.styles.d.ts +0 -3
  224. package/dist/dts/radio/index.d.ts +0 -21
  225. package/dist/dts/radio/radio.stories.d.ts +0 -23
  226. package/dist/dts/radio/radio.styles.d.ts +0 -3
  227. package/dist/dts/radio-group/index.d.ts +0 -21
  228. package/dist/dts/radio-group/radio-group.stories.d.ts +0 -18
  229. package/dist/dts/radio-group/radio-group.styles.d.ts +0 -3
  230. package/dist/dts/search/index.d.ts +0 -38
  231. package/dist/dts/search/search.stories.d.ts +0 -75
  232. package/dist/dts/search/search.styles.d.ts +0 -3
  233. package/dist/dts/search/search.template.d.ts +0 -6
  234. package/dist/dts/select/index.d.ts +0 -44
  235. package/dist/dts/select/select.stories.d.ts +0 -28
  236. package/dist/dts/select/select.styles.d.ts +0 -13
  237. package/dist/dts/skeleton/index.d.ts +0 -21
  238. package/dist/dts/skeleton/skeleton.stories.d.ts +0 -20
  239. package/dist/dts/skeleton/skeleton.styles.d.ts +0 -3
  240. package/dist/dts/slider/index.d.ts +0 -21
  241. package/dist/dts/slider/slider.stories.d.ts +0 -14
  242. package/dist/dts/slider/slider.styles.d.ts +0 -3
  243. package/dist/dts/slider-label/index.d.ts +0 -21
  244. package/dist/dts/slider-label/slider-label.stories.d.ts +0 -23
  245. package/dist/dts/slider-label/slider-label.styles.d.ts +0 -3
  246. package/dist/dts/styles/direction.d.ts +0 -34
  247. package/dist/dts/styles/elevation.d.ts +0 -64
  248. package/dist/dts/styles/focus.d.ts +0 -13
  249. package/dist/dts/styles/patterns/button.styles.d.ts +0 -31
  250. package/dist/dts/styles/patterns/index.d.ts +0 -3
  251. package/dist/dts/styles/patterns/input.styles.d.ts +0 -30
  252. package/dist/dts/styles/patterns/type-ramp.d.ts +0 -18
  253. package/dist/dts/styles/size.d.ts +0 -7
  254. package/dist/dts/switch/index.d.ts +0 -21
  255. package/dist/dts/switch/switch.stories.d.ts +0 -18
  256. package/dist/dts/switch/switch.styles.d.ts +0 -3
  257. package/dist/dts/tabs/index.d.ts +0 -23
  258. package/dist/dts/tabs/tab/index.d.ts +0 -21
  259. package/dist/dts/tabs/tab/tab.styles.d.ts +0 -3
  260. package/dist/dts/tabs/tab-panel/index.d.ts +0 -21
  261. package/dist/dts/tabs/tab-panel/tab-panel.styles.d.ts +0 -3
  262. package/dist/dts/tabs/tabs.stories.d.ts +0 -19
  263. package/dist/dts/tabs/tabs.styles.d.ts +0 -3
  264. package/dist/dts/text-area/index.d.ts +0 -45
  265. package/dist/dts/text-area/text-area.stories.d.ts +0 -41
  266. package/dist/dts/text-area/text-area.styles.d.ts +0 -3
  267. package/dist/dts/text-field/index.d.ts +0 -45
  268. package/dist/dts/text-field/text-field.stories.d.ts +0 -81
  269. package/dist/dts/text-field/text-field.styles.d.ts +0 -3
  270. package/dist/dts/toolbar/index.d.ts +0 -17
  271. package/dist/dts/toolbar/toolbar.stories.d.ts +0 -9
  272. package/dist/dts/toolbar/toolbar.styles.d.ts +0 -3
  273. package/dist/dts/tooltip/index.d.ts +0 -21
  274. package/dist/dts/tooltip/tooltip.stories.d.ts +0 -14
  275. package/dist/dts/tooltip/tooltip.styles.d.ts +0 -3
  276. package/dist/dts/tree-item/index.d.ts +0 -22
  277. package/dist/dts/tree-item/tree-item.stories.d.ts +0 -18
  278. package/dist/dts/tree-item/tree-item.styles.d.ts +0 -4
  279. package/dist/dts/tree-view/index.d.ts +0 -22
  280. package/dist/dts/tree-view/tree-view.stories.d.ts +0 -13
  281. package/dist/dts/tree-view/tree-view.styles.d.ts +0 -3
  282. package/dist/dts/utilities/behaviors.d.ts +0 -12
  283. package/dist/dts/utilities/type-ramp.d.ts +0 -12
  284. package/dist/esm/_docs/design-system/color-explorer/app.js +0 -247
  285. package/dist/esm/_docs/design-system/color-explorer/colors.js +0 -24
  286. package/dist/esm/_docs/design-system/color-explorer/component-types.js +0 -7
  287. package/dist/esm/_docs/design-system/color-explorer/components/color-block.js +0 -408
  288. package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.js +0 -16
  289. package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.js +0 -297
  290. package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.js +0 -124
  291. package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.template.js +0 -130
  292. package/dist/esm/_docs/design-system/color-explorer/components/color-picker/index.js +0 -15
  293. package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.js +0 -24
  294. package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.js +0 -19
  295. package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.template.js +0 -52
  296. package/dist/esm/_docs/design-system/color-explorer/components/control-pane/index.js +0 -18
  297. package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.js +0 -11
  298. package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.styles.js +0 -31
  299. package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.template.js +0 -21
  300. package/dist/esm/_docs/design-system/color-explorer/components/gradient/index.js +0 -18
  301. package/dist/esm/_docs/design-system/color-explorer/components/layer-background/index.js +0 -70
  302. package/dist/esm/_docs/design-system/color-explorer/components/sample-app/index.js +0 -18
  303. package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.js +0 -3
  304. package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.js +0 -166
  305. package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.template.js +0 -97
  306. package/dist/esm/_docs/design-system/color-explorer/components/sample-page/index.js +0 -18
  307. package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.js +0 -3
  308. package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.js +0 -130
  309. package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.template.js +0 -82
  310. package/dist/esm/_docs/design-system/color-explorer/components/swatch.js +0 -163
  311. package/dist/esm/_docs/design-system/color-explorer/custom-elements.js +0 -3
  312. package/dist/esm/_docs/design-system/color-explorer/index.js +0 -14
  313. package/dist/esm/accordion/accordion-item/accordion-item.styles.js +0 -154
  314. package/dist/esm/accordion/accordion-item/accordion-item.vscode.definition.json +0 -67
  315. package/dist/esm/accordion/accordion-item/index.js +0 -32
  316. package/dist/esm/accordion/accordion.stories.js +0 -66
  317. package/dist/esm/accordion/accordion.styles.js +0 -13
  318. package/dist/esm/accordion/accordion.vscode.definition.json +0 -35
  319. package/dist/esm/accordion/index.js +0 -27
  320. package/dist/esm/anchor/anchor.stories.js +0 -34
  321. package/dist/esm/anchor/anchor.styles.js +0 -5
  322. package/dist/esm/anchor/anchor.vscode.definition.json +0 -138
  323. package/dist/esm/anchor/index.js +0 -67
  324. package/dist/esm/anchored-region/anchored-region.stories.js +0 -133
  325. package/dist/esm/anchored-region/anchored-region.styles.js +0 -7
  326. package/dist/esm/anchored-region/anchored-region.vscode.definition.json +0 -140
  327. package/dist/esm/anchored-region/index.js +0 -26
  328. package/dist/esm/badge/badge.vscode.definition.json +0 -60
  329. package/dist/esm/breadcrumb/breadcrumb.stories.js +0 -20
  330. package/dist/esm/breadcrumb/breadcrumb.styles.js +0 -13
  331. package/dist/esm/breadcrumb/breadcrumb.vscode.definition.json +0 -18
  332. package/dist/esm/breadcrumb/index.js +0 -26
  333. package/dist/esm/breadcrumb-item/breadcrumb-item.stories.js +0 -16
  334. package/dist/esm/breadcrumb-item/breadcrumb-item.styles.js +0 -96
  335. package/dist/esm/breadcrumb-item/breadcrumb-item.vscode.definition.json +0 -50
  336. package/dist/esm/breadcrumb-item/index.js +0 -34
  337. package/dist/esm/button/button.stories.js +0 -40
  338. package/dist/esm/button/button.styles.js +0 -24
  339. package/dist/esm/button/button.vscode.definition.json +0 -158
  340. package/dist/esm/button/index.js +0 -67
  341. package/dist/esm/calendar/calendar.stories.js +0 -115
  342. package/dist/esm/calendar/calendar.styles.js +0 -132
  343. package/dist/esm/calendar/index.js +0 -31
  344. package/dist/esm/card/card.stories.js +0 -30
  345. package/dist/esm/card/card.styles.js +0 -28
  346. package/dist/esm/card/card.vscode.definition.json +0 -33
  347. package/dist/esm/card/index.js +0 -79
  348. package/dist/esm/checkbox/checkbox.stories.js +0 -43
  349. package/dist/esm/checkbox/checkbox.styles.js +0 -161
  350. package/dist/esm/checkbox/checkbox.vscode.definition.json +0 -69
  351. package/dist/esm/checkbox/index.js +0 -31
  352. package/dist/esm/color/palette.js +0 -250
  353. package/dist/esm/color/recipes/contrast-and-delta-swatch-set.js +0 -28
  354. package/dist/esm/color/recipes/contrast-swatch.js +0 -12
  355. package/dist/esm/color/recipes/delta-swatch-set.js +0 -53
  356. package/dist/esm/color/recipes/delta-swatch.js +0 -13
  357. package/dist/esm/color/recipes/focus-stroke.js +0 -14
  358. package/dist/esm/color/recipes/foreground-on-accent.js +0 -21
  359. package/dist/esm/color/recipes/gradient-shadow-stroke.js +0 -54
  360. package/dist/esm/color/recipes/gradient-swatch.js +0 -36
  361. package/dist/esm/color/recipes/neutral-layer-1.js +0 -13
  362. package/dist/esm/color/recipes/neutral-layer-2.js +0 -7
  363. package/dist/esm/color/recipes/neutral-layer-3.js +0 -7
  364. package/dist/esm/color/recipes/neutral-layer-4.js +0 -7
  365. package/dist/esm/color/recipes/neutral-layer-floating.js +0 -7
  366. package/dist/esm/color/recipes/underline-stroke.js +0 -31
  367. package/dist/esm/color/swatch.js +0 -53
  368. package/dist/esm/color/utilities/base-layer-luminance.js +0 -14
  369. package/dist/esm/color/utilities/binary-search.js +0 -15
  370. package/dist/esm/color/utilities/color-constants.js +0 -19
  371. package/dist/esm/color/utilities/direction-by-is-dark.js +0 -7
  372. package/dist/esm/color/utilities/is-dark.js +0 -17
  373. package/dist/esm/color/utilities/relative-luminance.js +0 -8
  374. package/dist/esm/combobox/combobox.stories.js +0 -84
  375. package/dist/esm/combobox/combobox.styles.js +0 -40
  376. package/dist/esm/combobox/combobox.vscode.definition.json +0 -121
  377. package/dist/esm/combobox/index.js +0 -63
  378. package/dist/esm/component-definitions.js +0 -84
  379. package/dist/esm/custom-elements.js +0 -102
  380. package/dist/esm/data-grid/data-grid-cell.styles.js +0 -36
  381. package/dist/esm/data-grid/data-grid-cell.vscode.definition.json +0 -34
  382. package/dist/esm/data-grid/data-grid-row.styles.js +0 -24
  383. package/dist/esm/data-grid/data-grid-row.vscode.definition.json +0 -34
  384. package/dist/esm/data-grid/data-grid.stories.js +0 -381
  385. package/dist/esm/data-grid/data-grid.styles.js +0 -8
  386. package/dist/esm/data-grid/data-grid.vscode.definition.json +0 -34
  387. package/dist/esm/data-grid/index.js +0 -60
  388. package/dist/esm/design-system-provider/design-system-provider.vscode.definition.json +0 -510
  389. package/dist/esm/design-system-provider/index.js +0 -518
  390. package/dist/esm/design-tokens.js +0 -685
  391. package/dist/esm/dialog/dialog.stories.js +0 -36
  392. package/dist/esm/dialog/dialog.styles.js +0 -47
  393. package/dist/esm/dialog/dialog.vscode.definition.json +0 -67
  394. package/dist/esm/dialog/index.js +0 -26
  395. package/dist/esm/divider/divider.stories.js +0 -17
  396. package/dist/esm/divider/divider.styles.js +0 -11
  397. package/dist/esm/divider/divider.vscode.definition.json +0 -29
  398. package/dist/esm/divider/index.js +0 -26
  399. package/dist/esm/flipper/flipper.stories.js +0 -31
  400. package/dist/esm/flipper/flipper.styles.js +0 -84
  401. package/dist/esm/flipper/flipper.vscode.definition.json +0 -56
  402. package/dist/esm/flipper/index.js +0 -36
  403. package/dist/esm/horizontal-scroll/horizontal-scroll.stories.js +0 -81
  404. package/dist/esm/horizontal-scroll/horizontal-scroll.styles.js +0 -138
  405. package/dist/esm/horizontal-scroll/horizontal-scroll.vscode.definition.json +0 -85
  406. package/dist/esm/horizontal-scroll/index.js +0 -47
  407. package/dist/esm/listbox/index.js +0 -24
  408. package/dist/esm/listbox/listbox.stories.js +0 -29
  409. package/dist/esm/listbox/listbox.styles.js +0 -21
  410. package/dist/esm/listbox/listbox.vscode.definition.json +0 -40
  411. package/dist/esm/listbox-option/index.js +0 -22
  412. package/dist/esm/listbox-option/listbox-option.stories.js +0 -38
  413. package/dist/esm/listbox-option/listbox-option.styles.js +0 -133
  414. package/dist/esm/listbox-option/listbox-option.vscode.definition.json +0 -45
  415. package/dist/esm/menu/index.js +0 -36
  416. package/dist/esm/menu/menu.stories.js +0 -56
  417. package/dist/esm/menu/menu.styles.js +0 -42
  418. package/dist/esm/menu/menu.vscode.definition.json +0 -18
  419. package/dist/esm/menu-item/index.js +0 -41
  420. package/dist/esm/menu-item/menu-item.stories.js +0 -34
  421. package/dist/esm/menu-item/menu-item.styles.js +0 -265
  422. package/dist/esm/menu-item/menu-item.vscode.definition.json +0 -82
  423. package/dist/esm/number-field/index.js +0 -57
  424. package/dist/esm/number-field/number-field.stories.js +0 -83
  425. package/dist/esm/number-field/number-field.styles.js +0 -71
  426. package/dist/esm/number-field/number-field.vscode.definition.json +0 -167
  427. package/dist/esm/progress/index.js +0 -2
  428. package/dist/esm/progress/progress/index.js +0 -33
  429. package/dist/esm/progress/progress/progress.stories.js +0 -59
  430. package/dist/esm/progress/progress/progress.styles.js +0 -119
  431. package/dist/esm/progress/progress/progress.vscode.definition.json +0 -56
  432. package/dist/esm/progress/progress-ring/index.js +0 -45
  433. package/dist/esm/progress/progress-ring/progress-ring.stories.js +0 -59
  434. package/dist/esm/progress/progress-ring/progress-ring.styles.js +0 -79
  435. package/dist/esm/progress/progress-ring/progress-ring.vscode.definition.json +0 -56
  436. package/dist/esm/radio/index.js +0 -31
  437. package/dist/esm/radio/radio.stories.js +0 -41
  438. package/dist/esm/radio/radio.styles.js +0 -152
  439. package/dist/esm/radio/radio.vscode.definition.json +0 -63
  440. package/dist/esm/radio-group/index.js +0 -26
  441. package/dist/esm/radio-group/radio-group.stories.js +0 -42
  442. package/dist/esm/radio-group/radio-group.styles.js +0 -21
  443. package/dist/esm/radio-group/radio-group.vscode.definition.json +0 -64
  444. package/dist/esm/search/index.js +0 -52
  445. package/dist/esm/search/search.stories.js +0 -83
  446. package/dist/esm/search/search.styles.js +0 -104
  447. package/dist/esm/search/search.template.js +0 -82
  448. package/dist/esm/search/search.vscode.definition.json +0 -145
  449. package/dist/esm/select/index.js +0 -61
  450. package/dist/esm/select/select.stories.js +0 -53
  451. package/dist/esm/select/select.styles.js +0 -139
  452. package/dist/esm/select/select.vscode.definition.json +0 -79
  453. package/dist/esm/skeleton/index.js +0 -26
  454. package/dist/esm/skeleton/skeleton.stories.js +0 -37
  455. package/dist/esm/skeleton/skeleton.styles.js +0 -77
  456. package/dist/esm/skeleton/skeleton.vscode.definition.json +0 -49
  457. package/dist/esm/slider/index.js +0 -29
  458. package/dist/esm/slider/slider.stories.js +0 -40
  459. package/dist/esm/slider/slider.styles.js +0 -162
  460. package/dist/esm/slider/slider.vscode.definition.json +0 -101
  461. package/dist/esm/slider-label/index.js +0 -26
  462. package/dist/esm/slider-label/slider-label.stories.js +0 -40
  463. package/dist/esm/slider-label/slider-label.styles.js +0 -77
  464. package/dist/esm/slider-label/slider-label.vscode.definition.json +0 -43
  465. package/dist/esm/styles/direction.js +0 -73
  466. package/dist/esm/styles/elevation.js +0 -74
  467. package/dist/esm/styles/focus.js +0 -21
  468. package/dist/esm/styles/patterns/button.styles.js +0 -427
  469. package/dist/esm/styles/patterns/index.js +0 -3
  470. package/dist/esm/styles/patterns/input.styles.js +0 -227
  471. package/dist/esm/styles/patterns/type-ramp.js +0 -74
  472. package/dist/esm/styles/size.js +0 -9
  473. package/dist/esm/switch/index.js +0 -31
  474. package/dist/esm/switch/switch.stories.js +0 -42
  475. package/dist/esm/switch/switch.styles.js +0 -213
  476. package/dist/esm/switch/switch.vscode.definition.json +0 -68
  477. package/dist/esm/tabs/index.js +0 -28
  478. package/dist/esm/tabs/tab/index.js +0 -26
  479. package/dist/esm/tabs/tab/tab.styles.js +0 -75
  480. package/dist/esm/tabs/tab/tab.vscode.definition.json +0 -17
  481. package/dist/esm/tabs/tab-panel/index.js +0 -26
  482. package/dist/esm/tabs/tab-panel/tab-panel.styles.js +0 -11
  483. package/dist/esm/tabs/tab-panel/tab-panel.vscode.definition.json +0 -17
  484. package/dist/esm/tabs/tabs.stories.js +0 -105
  485. package/dist/esm/tabs/tabs.styles.js +0 -98
  486. package/dist/esm/tabs/tabs.vscode.definition.json +0 -50
  487. package/dist/esm/text-area/index.js +0 -56
  488. package/dist/esm/text-area/text-area.stories.js +0 -56
  489. package/dist/esm/text-area/text-area.styles.js +0 -39
  490. package/dist/esm/text-area/text-area.vscode.definition.json +0 -141
  491. package/dist/esm/text-field/index.js +0 -56
  492. package/dist/esm/text-field/text-field.stories.js +0 -88
  493. package/dist/esm/text-field/text-field.styles.js +0 -48
  494. package/dist/esm/text-field/text-field.vscode.definition.json +0 -150
  495. package/dist/esm/toolbar/index.js +0 -23
  496. package/dist/esm/toolbar/toolbar.stories.js +0 -9
  497. package/dist/esm/toolbar/toolbar.styles.js +0 -73
  498. package/dist/esm/tooltip/index.js +0 -31
  499. package/dist/esm/tooltip/tooltip.stories.js +0 -34
  500. package/dist/esm/tooltip/tooltip.styles.js +0 -107
  501. package/dist/esm/tooltip/tooltip.vscode.definition.json +0 -56
  502. package/dist/esm/tree-item/index.js +0 -32
  503. package/dist/esm/tree-item/tree-item.stories.js +0 -34
  504. package/dist/esm/tree-item/tree-item.styles.js +0 -227
  505. package/dist/esm/tree-item/tree-item.vscode.definition.json +0 -63
  506. package/dist/esm/tree-view/index.js +0 -27
  507. package/dist/esm/tree-view/tree-view.stories.js +0 -99
  508. package/dist/esm/tree-view/tree-view.styles.js +0 -14
  509. package/dist/esm/tree-view/tree-view.vscode.definition.json +0 -26
  510. package/dist/esm/utilities/behaviors.js +0 -13
  511. package/dist/esm/utilities/type-ramp.js +0 -12
  512. package/karma.conf.js +0 -147
  513. package/public/switches.ts +0 -24
@@ -1,2982 +1,1387 @@
1
- import { Accordion } from '@microsoft/fast-foundation';
2
- import { AccordionItem } from '@microsoft/fast-foundation';
3
- import { AccordionItemOptions } from '@microsoft/fast-foundation';
4
- import { Anchor as Anchor_2 } from '@microsoft/fast-foundation';
5
- import { AnchoredRegion } from '@microsoft/fast-foundation';
6
- import { Badge as Badge_2 } from '@microsoft/fast-foundation';
7
- import { BaseProgress } from '@microsoft/fast-foundation';
8
- import { Behavior } from '@microsoft/fast-element';
9
- import { Breadcrumb } from '@microsoft/fast-foundation';
10
- import { BreadcrumbItem } from '@microsoft/fast-foundation';
11
- import { BreadcrumbItemOptions } from '@microsoft/fast-foundation';
12
- import { Button as Button_2 } from '@microsoft/fast-foundation';
13
- import { CalendarOptions } from '@microsoft/fast-foundation';
14
- import { Card as Card_2 } from '@microsoft/fast-foundation';
15
- import { CheckboxOptions } from '@microsoft/fast-foundation';
16
- import { Combobox as Combobox_2 } from '@microsoft/fast-foundation';
17
- import { ComboboxOptions } from '@microsoft/fast-foundation';
18
- import { Constructable } from '@microsoft/fast-element';
19
- import type { Container } from '@microsoft/fast-foundation';
20
1
  import { CSSDesignToken } from '@microsoft/fast-foundation';
21
- import { CSSDirective } from '@microsoft/fast-element';
22
- import { DataGrid } from '@microsoft/fast-foundation';
23
- import { DataGridCell } from '@microsoft/fast-foundation';
24
- import { DataGridRow } from '@microsoft/fast-foundation';
25
- import { DesignSystem } from '@microsoft/fast-foundation';
26
- import { DesignToken } from '@microsoft/fast-foundation';
27
- import { Dialog } from '@microsoft/fast-foundation';
28
- import { Direction } from '@microsoft/fast-web-utilities';
29
- import { Divider } from '@microsoft/fast-foundation';
30
- import { ElementDefinitionContext } from '@microsoft/fast-foundation';
31
2
  import { ElementStyles } from '@microsoft/fast-element';
3
+ import { ElementViewTemplate } from '@microsoft/fast-element';
32
4
  import { FASTElement } from '@microsoft/fast-element';
33
- import { Flipper } from '@microsoft/fast-foundation';
34
- import { FlipperOptions } from '@microsoft/fast-foundation';
35
- import { FoundationElement } from '@microsoft/fast-foundation';
36
- import { FoundationElementDefinition } from '@microsoft/fast-foundation';
37
- import { FoundationElementRegistry } from '@microsoft/fast-foundation';
38
- import { HorizontalScroll as HorizontalScroll_2 } from '@microsoft/fast-foundation';
39
- import { HorizontalScrollOptions } from '@microsoft/fast-foundation';
40
- import { Listbox as Listbox_2 } from '@microsoft/fast-foundation';
41
- import { ListboxOption } from '@microsoft/fast-foundation';
42
- import { Menu as Menu_2 } from '@microsoft/fast-foundation';
43
- import { MenuItem } from '@microsoft/fast-foundation';
44
- import { MenuItemOptions } from '@microsoft/fast-foundation';
45
- import { NumberField as NumberField_2 } from '@microsoft/fast-foundation';
46
- import { NumberFieldOptions } from '@microsoft/fast-foundation';
47
- import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
48
- import { ProgressOptions } from '@microsoft/fast-foundation';
49
- import { ProgressRingOptions } from '@microsoft/fast-foundation';
50
- import { Radio } from '@microsoft/fast-foundation';
51
- import { RadioGroup } from '@microsoft/fast-foundation';
52
- import { RadioOptions } from '@microsoft/fast-foundation';
53
- import { Search as Search_2 } from '@microsoft/fast-foundation';
54
- import { SearchOptions } from '@microsoft/fast-foundation';
55
- import { Select as Select_2 } from '@microsoft/fast-foundation';
56
- import { SelectOptions } from '@microsoft/fast-foundation';
57
- import { Skeleton } from '@microsoft/fast-foundation';
58
- import { Slider } from '@microsoft/fast-foundation';
59
- import { SliderLabel } from '@microsoft/fast-foundation';
60
- import { SliderOptions } from '@microsoft/fast-foundation';
61
- import { Switch } from '@microsoft/fast-foundation';
62
- import { SwitchOptions } from '@microsoft/fast-foundation';
63
- import { Tab } from '@microsoft/fast-foundation';
64
- import { TabPanel } from '@microsoft/fast-foundation';
65
- import { Tabs } from '@microsoft/fast-foundation';
66
- import { TextArea as TextArea_2 } from '@microsoft/fast-foundation';
67
- import { TextField as TextField_2 } from '@microsoft/fast-foundation';
68
- import { Toolbar as Toolbar_2 } from '@microsoft/fast-foundation';
69
- import { Tooltip as Tooltip_2 } from '@microsoft/fast-foundation';
70
- import { TreeItem } from '@microsoft/fast-foundation';
71
- import { TreeItemOptions } from '@microsoft/fast-foundation';
72
- import { TreeView } from '@microsoft/fast-foundation';
73
- import { ViewTemplate } from '@microsoft/fast-element';
74
-
75
- /** @public */
76
- export declare const accentBaseColor: CSSDesignToken<Swatch>;
5
+ import { FASTElementDefinition } from '@microsoft/fast-element';
6
+ import { FASTProgress } from '@microsoft/fast-foundation';
7
+ import { StartEnd } from '@microsoft/fast-foundation';
8
+ import { StartEndOptions } from '@microsoft/fast-foundation';
9
+ import { StaticallyComposableHTML } from '@microsoft/fast-foundation';
10
+ import type { Theme } from '@fluentui/tokens';
11
+ import { ValuesOf } from '@microsoft/fast-foundation';
77
12
 
78
13
  /**
79
- * @internal
80
- */
81
- export declare const AccentButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
82
-
83
- /** @public */
84
- export declare const accentFillActive: CSSDesignToken<Swatch>;
85
-
86
- /** @public */
87
- export declare const accentFillActiveDelta: DesignToken<number>;
88
-
89
- /** @public */
90
- export declare const accentFillFocus: CSSDesignToken<Swatch>;
91
-
92
- /** @public */
93
- export declare const accentFillFocusDelta: DesignToken<number>;
94
-
95
- /** @public */
96
- export declare const accentFillHover: CSSDesignToken<Swatch>;
97
-
98
- /** @public */
99
- export declare const accentFillHoverDelta: DesignToken<number>;
100
-
101
- /** @public */
102
- export declare const accentFillRecipe: DesignToken<InteractiveColorRecipe>;
103
-
104
- /** @public */
105
- export declare const accentFillRest: CSSDesignToken<Swatch>;
106
-
107
- /** @public */
108
- export declare const accentFillRestDelta: DesignToken<number>;
109
-
110
- /** @public */
111
- export declare const accentForegroundActive: CSSDesignToken<Swatch>;
112
-
113
- /** @public */
114
- export declare const accentForegroundActiveDelta: DesignToken<number>;
115
-
116
- /** @public @deprecated Use foregroundOnAccentRest */
117
- export declare const accentForegroundCut: CSSDesignToken<Swatch>;
118
-
119
- /** @public @deprecated Use foregroundOnAccentRestLarge */
120
- export declare const accentForegroundCutLarge: CSSDesignToken<Swatch>;
121
-
122
- /** @public */
123
- export declare const accentForegroundFocus: CSSDesignToken<Swatch>;
124
-
125
- /** @public */
126
- export declare const accentForegroundFocusDelta: DesignToken<number>;
127
-
128
- /** @public */
129
- export declare const accentForegroundHover: CSSDesignToken<Swatch>;
130
-
131
- /** @public */
132
- export declare const accentForegroundHoverDelta: DesignToken<number>;
133
-
134
- /** @public */
135
- export declare const accentForegroundRecipe: DesignToken<InteractiveColorRecipe>;
136
-
137
- /** @public */
138
- export declare const accentForegroundRest: CSSDesignToken<Swatch>;
139
-
140
- /** @public */
141
- export declare const accentForegroundRestDelta: DesignToken<number>;
142
-
143
- /** @public */
144
- export declare const accentPalette: DesignToken<Palette<Swatch>>;
145
-
146
- /** @public */
147
- export declare const accentStrokeControlActive: CSSDesignToken<Swatch>;
148
-
149
- /** @public */
150
- export declare const accentStrokeControlFocus: CSSDesignToken<Swatch>;
151
-
152
- /** @public */
153
- export declare const accentStrokeControlHover: CSSDesignToken<Swatch>;
154
-
155
- /** @public */
156
- export declare const accentStrokeControlRecipe: DesignToken<InteractiveColorRecipe>;
157
-
158
- /** @public */
159
- export declare const accentStrokeControlRest: CSSDesignToken<Swatch>;
160
-
161
- export { Accordion }
162
-
163
- export { AccordionItem }
164
-
165
- /**
166
- * Styles for AccordionItem
14
+ * The base class used for constructing a fluent-badge custom element
167
15
  * @public
168
16
  */
169
- export declare const accordionItemStyles: (context: ElementDefinitionContext, definition: AccordionItemOptions) => ElementStyles;
170
-
171
- /**
172
- * Styles for Accordion
173
- * @public
174
- */
175
- export declare const accordionStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
176
-
177
- /**
178
- * All Fluent UI Web Components
179
- * @public
180
- */
181
- export declare const allComponents: {
182
- fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Accordion>;
183
- fluentAccordionItem: (overrideDefinition?: OverrideFoundationElementDefinition<AccordionItemOptions> | undefined) => FoundationElementRegistry<AccordionItemOptions, Constructable<FoundationElement>>;
184
- fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Anchor>;
185
- fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof AnchoredRegion>;
186
- fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Badge>;
187
- fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Breadcrumb>;
188
- fluentBreadcrumbItem: (overrideDefinition?: OverrideFoundationElementDefinition<BreadcrumbItemOptions> | undefined) => FoundationElementRegistry<BreadcrumbItemOptions, Constructable<FoundationElement>>;
189
- fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Button>;
190
- fluentCalendar: (overrideDefinition?: OverrideFoundationElementDefinition<CalendarOptions> | undefined) => FoundationElementRegistry<CalendarOptions, Constructable<FoundationElement>>;
191
- fluentCard: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Card>;
192
- fluentCheckbox: (overrideDefinition?: OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => FoundationElementRegistry<CheckboxOptions, Constructable<FoundationElement>>;
193
- fluentCombobox: (overrideDefinition?: OverrideFoundationElementDefinition<ComboboxOptions> | undefined) => FoundationElementRegistry<ComboboxOptions, Constructable<FoundationElement>>;
194
- fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGrid>;
195
- fluentDataGridCell: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridCell>;
196
- fluentDataGridRow: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridRow>;
197
- fluentDesignSystemProvider: (overrideDefinition?: OverrideFoundationElementDefinition< {
198
- baseName: string;
199
- template: ViewTemplate<any, any>;
200
- styles: ElementStyles;
201
- }> | undefined) => FoundationElementRegistry< {
202
- baseName: string;
203
- template: ViewTemplate<any, any>;
204
- styles: ElementStyles;
205
- }, DesignSystemProvider>;
206
- fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Dialog>;
207
- fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Divider>;
208
- fluentFlipper: (overrideDefinition?: OverrideFoundationElementDefinition<FlipperOptions> | undefined) => FoundationElementRegistry<FlipperOptions, Constructable<FoundationElement>>;
209
- fluentHorizontalScroll: (overrideDefinition?: OverrideFoundationElementDefinition<HorizontalScrollOptions> | undefined) => FoundationElementRegistry<HorizontalScrollOptions, Constructable<FoundationElement>>;
210
- fluentListbox: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Listbox>;
211
- fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof ListboxOption>;
212
- fluentMenu: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Menu>;
213
- fluentMenuItem: (overrideDefinition?: OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => FoundationElementRegistry<MenuItemOptions, Constructable<FoundationElement>>;
214
- fluentNumberField: (overrideDefinition?: OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => FoundationElementRegistry<NumberFieldOptions, Constructable<FoundationElement>>;
215
- fluentProgress: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressOptions> | undefined) => FoundationElementRegistry<ProgressOptions, Constructable<FoundationElement>>;
216
- fluentProgressRing: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => FoundationElementRegistry<ProgressRingOptions, Constructable<FoundationElement>>;
217
- fluentRadio: (overrideDefinition?: OverrideFoundationElementDefinition<RadioOptions> | undefined) => FoundationElementRegistry<RadioOptions, Constructable<FoundationElement>>;
218
- fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof RadioGroup>;
219
- fluentSearch: (overrideDefinition?: OverrideFoundationElementDefinition<SearchOptions> | undefined) => FoundationElementRegistry<SearchOptions, Constructable<FoundationElement>>;
220
- fluentSelect: (overrideDefinition?: OverrideFoundationElementDefinition<SelectOptions> | undefined) => FoundationElementRegistry<SelectOptions, Constructable<FoundationElement>>;
221
- fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Skeleton>;
222
- fluentSlider: (overrideDefinition?: OverrideFoundationElementDefinition<SliderOptions> | undefined) => FoundationElementRegistry<SliderOptions, Constructable<FoundationElement>>;
223
- fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof SliderLabel>;
224
- fluentSwitch: (overrideDefinition?: OverrideFoundationElementDefinition<SwitchOptions> | undefined) => FoundationElementRegistry<SwitchOptions, Constructable<FoundationElement>>;
225
- fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tabs>;
226
- fluentTab: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tab>;
227
- fluentTabPanel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TabPanel>;
228
- fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TextArea>;
229
- fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TextField>;
230
- fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Toolbar>;
231
- fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tooltip>;
232
- fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
233
- fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
234
- register(container?: Container | undefined, ...rest: any[]): void;
235
- };
236
-
237
- /**
238
- * Define shadow algorithms.
239
- *
240
- * TODO: The --background-luminance will need to be derived from JavaScript. For now
241
- * this is hard-coded to a 1, the relative luminance of pure white.
242
- * https://github.com/microsoft/fast/issues/2778
243
- * opacity was `calc(.11 * (2 - var(--background-luminance, 1)))`
244
- *
245
- * @internal
246
- * @deprecated Use elevationShadow design token
247
- */
248
- export declare const ambientShadow = "0 0 2px rgba(0, 0, 0, 0.14)";
249
-
250
- /**
251
- * The Fluent version of Anchor
252
- * @internal
253
- */
254
- export declare class Anchor extends Anchor_2 {
17
+ export declare class Badge extends FASTElement {
255
18
  /**
256
- * The appearance the anchor should have.
19
+ * The appearance the badge should have.
257
20
  *
258
21
  * @public
259
22
  * @remarks
260
23
  * HTML Attribute: appearance
261
24
  */
262
- appearance: AnchorAppearance;
263
- appearanceChanged(oldValue: AnchorAppearance, newValue: AnchorAppearance): void;
25
+ appearance: BadgeAppearance;
264
26
  /**
265
- * @internal
27
+ * The color the badge should have.
28
+ *
29
+ * @public
30
+ * @remarks
31
+ * HTML Attribute: color
266
32
  */
267
- connectedCallback(): void;
33
+ color: BadgeColor;
268
34
  /**
269
- * Applies 'icon-only' class when there is only an SVG in the default slot
35
+ * The shape the badge should have.
270
36
  *
271
- * @internal
37
+ * @public
38
+ * @remarks
39
+ * HTML Attribute: shape
40
+ */
41
+ shape: BadgeShape;
42
+ /**
43
+ * The size the badge should have.
44
+ *
45
+ * @public
46
+ * @remarks
47
+ * HTML Attribute: size
272
48
  */
273
- defaultSlottedContentChanged(): void;
49
+ size: BadgeSize;
274
50
  }
275
51
 
276
52
  /**
277
- * Types of anchor appearance.
278
- * @public
53
+ * Mark internal because exporting class and interface of the same name
54
+ * confuses API extractor.
55
+ * TODO: Below will be unnecessary when Badge class gets updated
56
+ * @internal
279
57
  */
280
- export declare type AnchorAppearance = ButtonAppearance | 'hypertext';
281
-
282
- export { AnchoredRegion }
58
+ export declare interface Badge extends StartEnd {
59
+ }
283
60
 
284
61
  /**
285
- * Styles for AnchoredRegion
62
+ * BadgeAppearance constants
286
63
  * @public
287
64
  */
288
- export declare const anchoredRegionStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
65
+ export declare const BadgeAppearance: {
66
+ readonly filled: "filled";
67
+ readonly ghost: "ghost";
68
+ readonly outline: "outline";
69
+ readonly tint: "tint";
70
+ };
289
71
 
290
72
  /**
291
- * Styles for Anchor
73
+ * A Badge can be filled, outline, ghost, inverted
292
74
  * @public
293
75
  */
294
- export declare const anchorStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
295
-
296
- /**
297
- * The Fluent Badge class
298
- * @internal
299
- */
300
- export declare class Badge extends Badge_2 {
301
- appearance: BadgeAppearance;
302
- private appearanceChanged;
303
- }
76
+ export declare type BadgeAppearance = ValuesOf<typeof BadgeAppearance>;
304
77
 
305
78
  /**
306
- * Badge appearance options.
79
+ * BadgeColor constants
307
80
  * @public
308
81
  */
309
- export declare type BadgeAppearance = 'accent' | 'lightweight' | 'neutral' | string;
82
+ export declare const BadgeColor: {
83
+ readonly brand: "brand";
84
+ readonly danger: "danger";
85
+ readonly important: "important";
86
+ readonly informative: "informative";
87
+ readonly severe: "severe";
88
+ readonly subtle: "subtle";
89
+ readonly success: "success";
90
+ readonly warning: "warning";
91
+ };
310
92
 
311
93
  /**
312
- * Styles for Badge
94
+ * A Badge can be one of preset colors
313
95
  * @public
314
96
  */
315
- export declare const badgeStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
97
+ export declare type BadgeColor = ValuesOf<typeof BadgeColor>;
316
98
 
317
99
  /**
318
- * The base styles for button controls, without `appearance` visual differences.
100
+ * The Fluent Badge Element. Implements {@link @microsoft/fast-foundation#Badge },
101
+ * {@link @microsoft/fast-foundation#badgeTemplate}
319
102
  *
320
- * @internal
321
- */
322
- export declare const baseButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
323
-
324
- /** @public */
325
- export declare const baseHeightMultiplier: CSSDesignToken<number>;
326
-
327
- /** @public */
328
- export declare const baseHorizontalSpacingMultiplier: CSSDesignToken<number>;
329
-
330
- /**
331
- * The base styles for input controls, without `appearance` visual differences.
332
103
  *
333
- * @internal
334
- */
335
- export declare const baseInputStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string) => ElementStyles;
336
-
337
- /** @public */
338
- export declare const baseLayerLuminance: CSSDesignToken<number>;
339
-
340
- /** @public */
341
- export declare const bodyFont: CSSDesignToken<string>;
342
-
343
- export { Breadcrumb }
344
-
345
- export { BreadcrumbItem }
346
-
347
- /**
348
- * Styles for BreadcrumbItem
349
- * @public
350
- */
351
- export declare const breadcrumbItemStyles: (context: ElementDefinitionContext, definition: BreadcrumbItemOptions) => ElementStyles;
352
-
353
- /**
354
- * Styles for Breadcrumb
355
104
  * @public
105
+ * @remarks
106
+ * HTML Element: \<fluent-badge\>
356
107
  */
357
- export declare const breadcrumbStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
108
+ export declare const BadgeDefinition: FASTElementDefinition<typeof Badge>;
358
109
 
359
110
  /**
360
- * The Fluent button class
361
- * @internal
111
+ * @internal - marking as internal update when Badge PR for start/end is in
362
112
  */
363
- export declare class Button extends Button_2 {
364
- /**
365
- * The appearance the button should have.
366
- *
367
- * @public
368
- * @remarks
369
- * HTML Attribute: appearance
370
- */
371
- appearance: ButtonAppearance;
372
- appearanceChanged(oldValue: ButtonAppearance, newValue: ButtonAppearance): void;
373
- /**
374
- * @internal
375
- */
376
- connectedCallback(): void;
377
- /**
378
- * Applies 'icon-only' class when there is only an SVG in the default slot
379
- *
380
- * @internal
381
- */
382
- defaultSlottedContentChanged(): void;
383
- }
113
+ export declare type BadgeOptions = StartEndOptions<Badge> & {
114
+ defaultContent?: StaticallyComposableHTML;
115
+ };
384
116
 
385
117
  /**
386
- * Types of button appearance.
118
+ * A Badge can be square, circular or rounded.
387
119
  * @public
388
120
  */
389
- export declare type ButtonAppearance = 'accent' | 'lightweight' | 'neutral' | 'outline' | 'stealth';
121
+ export declare const BadgeShape: {
122
+ readonly circular: "circular";
123
+ readonly rounded: "rounded";
124
+ readonly square: "square";
125
+ };
390
126
 
391
127
  /**
392
- * Styles for Button
128
+ * A Badge can be one of preset colors
393
129
  * @public
394
130
  */
395
- export declare const buttonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
131
+ export declare type BadgeShape = ValuesOf<typeof BadgeShape>;
396
132
 
397
133
  /**
134
+ * A Badge can be square, circular or rounded.
398
135
  * @public
399
136
  */
400
- export declare class Card extends Card_2 {
401
- /**
402
- * Fill color for the card component. Sets context for the design system.
403
- *
404
- * Updates the neutral palette and sets the card to the source color. For tinting use neutral-palette-source instead.
405
- * @public
406
- * @remarks
407
- * HTML Attribute: card-fill-color
408
- */
409
- cardFillColor: string;
410
- private cardFillColorChanged;
411
- /**
412
- * Neutral palette source color for the card component. Sets context for the design system.
413
- *
414
- * This allows for tinting the card while maintaining the light or dark context. For a fixed color use card-fill-color instead.
415
- * @public
416
- * @remarks
417
- * HTML Attribute: neutral-palette-source
418
- */
419
- neutralPaletteSource: string;
420
- private neutralPaletteSourceChanged;
421
- /**
422
- * @internal
423
- */
424
- handleChange(source: any, propertyName: string): void;
425
- connectedCallback(): void;
426
- }
137
+ export declare const BadgeSize: {
138
+ readonly tiny: "tiny";
139
+ readonly extraSmall: "extra-small";
140
+ readonly small: "small";
141
+ readonly medium: "medium";
142
+ readonly large: "large";
143
+ readonly extraLarge: "extra-large";
144
+ };
427
145
 
428
146
  /**
429
- * Styles for Card
147
+ * A Badge can be on of several preset sizes.
430
148
  * @public
431
149
  */
432
- export declare const cardStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
150
+ export declare type BadgeSize = ValuesOf<typeof BadgeSize>;
433
151
 
434
- /**
435
- * Styles for Checkbox
152
+ /** Badge styles
436
153
  * @public
437
154
  */
438
- export declare const checkboxStyles: (context: ElementDefinitionContext, definition: CheckboxOptions) => ElementStyles;
155
+ export declare const BadgeStyles: ElementStyles;
439
156
 
440
- /** @public */
441
- export declare interface ColorRecipe {
442
- evaluate(element: HTMLElement, reference?: Swatch): Swatch;
443
- }
157
+ export declare const BadgeTemplate: ElementViewTemplate<Badge>;
444
158
 
445
- /**
446
- * The Fluent combobox class
447
- * @internal
448
- */
449
- export declare class Combobox extends Combobox_2 {
450
- /**
451
- * The appearance of the element.
452
- *
453
- * @public
454
- * @remarks
455
- * HTML Attribute: appearance
456
- */
457
- appearance: ComboboxAppearance;
458
- /**
459
- * @internal
460
- */
461
- appearanceChanged(oldValue: ComboboxAppearance, newValue: ComboboxAppearance): void;
462
- /**
463
- * @internal
464
- */
465
- connectedCallback(): void;
466
- }
159
+ export declare const borderRadiusCircular: CSSDesignToken<string>;
467
160
 
468
- /**
469
- * Combobox appearances
470
- * @public
471
- */
472
- export declare type ComboboxAppearance = 'filled' | 'outline';
161
+ export declare const borderRadiusLarge: CSSDesignToken<string>;
473
162
 
474
- /**
475
- * Styles for combobox
476
- * @public
477
- */
478
- export declare const comboboxStyles: (context: ElementDefinitionContext, definition: ComboboxOptions) => ElementStyles;
163
+ export declare const borderRadiusMedium: CSSDesignToken<string>;
479
164
 
480
- /** @public */
481
- export declare const controlCornerRadius: CSSDesignToken<number>;
165
+ export declare const borderRadiusNone: CSSDesignToken<string>;
482
166
 
483
- /** @public @deprecated Use controlCornerRadius */
484
- export declare const cornerRadius: CSSDesignToken<number>;
167
+ export declare const borderRadiusSmall: CSSDesignToken<string>;
485
168
 
486
- /**
487
- * Creates a PaletteRGB from input R, G, B color values.
488
- * @param r - Red value represented as a number between 0 and 1.
489
- * @param g - Green value represented as a number between 0 and 1.
490
- * @param b - Blue value represented as a number between 0 and 1.
491
- */
492
- declare function create(r: number, g: number, b: number): PaletteRGB;
169
+ export declare const borderRadiusXLarge: CSSDesignToken<string>;
493
170
 
494
- /**
495
- * Creates a PaletteRGB from a source SwatchRGB object.
496
- * @deprecated - Use PaletteRGB.from()
497
- */
498
- declare function create(source: SwatchRGB): PaletteRGB;
171
+ export declare const colorBackgroundOverlay: CSSDesignToken<string>;
499
172
 
500
- export { DataGrid }
173
+ export declare const colorBrandBackground: CSSDesignToken<string>;
501
174
 
502
- export { DataGridCell }
175
+ export declare const colorBrandBackground2: CSSDesignToken<string>;
503
176
 
504
- /**
505
- * Styles for DataGrid cell
506
- * @public
507
- */
508
- export declare const dataGridCellStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
177
+ export declare const colorBrandBackgroundHover: CSSDesignToken<string>;
509
178
 
510
- export { DataGridRow }
179
+ export declare const colorBrandBackgroundInverted: CSSDesignToken<string>;
511
180
 
512
- /**
513
- * Styles for DataGrid row
514
- * @public
515
- */
516
- export declare const dataGridRowStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
181
+ export declare const colorBrandBackgroundInvertedHover: CSSDesignToken<string>;
517
182
 
518
- /**
519
- * Styles for DataGrid
520
- * @public
521
- */
522
- export declare const dataGridStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
183
+ export declare const colorBrandBackgroundInvertedPressed: CSSDesignToken<string>;
523
184
 
524
- /** @public */
525
- export declare const density: CSSDesignToken<number>;
185
+ export declare const colorBrandBackgroundInvertedSelected: CSSDesignToken<string>;
526
186
 
527
- /**
528
- * The Fluent DesignSystemProvider Element.
529
- * @public
530
- */
531
- export declare class DesignSystemProvider extends FoundationElement {
532
- constructor();
533
- connectedCallback(): void;
534
- /**
535
- * Used to instruct the FluentDesignSystemProvider
536
- * that it should not set the CSS
537
- * background-color and color properties
538
- *
539
- * @remarks
540
- * HTML boolean attribute: no-paint
541
- */
542
- noPaint: boolean;
543
- private noPaintChanged;
544
- /**
545
- * Define design system property attributes
546
- * @remarks
547
- * HTML attribute: fill-color
548
- *
549
- * CSS custom property: --fill-color
550
- */
551
- fillColor: Swatch;
552
- /**
553
- * A convenience to recreate the accentPalette
554
- * @remarks
555
- * HTML attribute: accent-base-color
556
- */
557
- accentBaseColor: Swatch;
558
- /**
559
- * A convenience to recreate the neutralPalette
560
- * @remarks
561
- * HTML attribute: neutral-base-color
562
- */
563
- neutralBaseColor: Swatch;
564
- /**
565
- *
566
- * The density offset, used with designUnit to calculate height and spacing.
567
- *
568
- * @remarks
569
- * HTML attribute: density
570
- *
571
- * CSS custom property: --density
572
- */
573
- density: number;
574
- /**
575
- * The grid-unit that UI dimensions are derived from in pixels.
576
- *
577
- * @remarks
578
- * HTML attribute: design-unit
579
- *
580
- * CSS custom property: --design-unit
581
- */
582
- designUnit: number;
583
- /**
584
- * The primary document direction.
585
- *
586
- * @remarks
587
- * HTML attribute: direction
588
- *
589
- * CSS custom property: N/A
590
- */
591
- direction: Direction;
592
- /**
593
- * The number of designUnits used for component height at the base density.
594
- *
595
- * @remarks
596
- * HTML attribute: base-height-multiplier
597
- *
598
- * CSS custom property: --base-height-multiplier
599
- */
600
- baseHeightMultiplier: number;
601
- /**
602
- * The number of designUnits used for horizontal spacing at the base density.
603
- *
604
- * @remarks
605
- * HTML attribute: base-horizontal-spacing-multiplier
606
- *
607
- * CSS custom property: --base-horizontal-spacing-multiplier
608
- */
609
- baseHorizontalSpacingMultiplier: number;
610
- /**
611
- * The corner radius applied to controls.
612
- *
613
- * @remarks
614
- * HTML attribute: control-corner-radius
615
- *
616
- * CSS custom property: --control-corner-radius
617
- */
618
- controlCornerRadius: number;
619
- /**
620
- * The corner radius applied to layers.
621
- *
622
- * @remarks
623
- * HTML attribute: layer-corner-radius
624
- *
625
- * CSS custom property: --layer-corner-radius
626
- */
627
- layerCornerRadius: number;
628
- /**
629
- * The width of the standard stroke applied to stroke components in pixels.
630
- *
631
- * @remarks
632
- * HTML attribute: stroke-width
633
- *
634
- * CSS custom property: --stroke-width
635
- */
636
- strokeWidth: number;
637
- /**
638
- * The width of the standard focus stroke in pixels.
639
- *
640
- * @remarks
641
- * HTML attribute: focus-stroke-width
642
- *
643
- * CSS custom property: --focus-stroke-width
644
- */
645
- focusStrokeWidth: number;
646
- /**
647
- * The opacity of a disabled control.
648
- *
649
- * @remarks
650
- * HTML attribute: disabled-opacity
651
- *
652
- * CSS custom property: --disabled-opacity
653
- */
654
- disabledOpacity: number;
655
- /**
656
- * The font-size two steps below the base font-size
657
- *
658
- * @remarks
659
- * HTML attribute: type-ramp-minus-2-font-size
660
- *
661
- * CSS custom property: --type-ramp-minus-2-font-size
662
- */
663
- typeRampMinus2FontSize: string;
664
- /**
665
- * The line-height two steps below the base line-height
666
- *
667
- * @remarks
668
- * HTML attribute: type-ramp-minus-2-line-height
669
- *
670
- * CSS custom property: --type-ramp-minus-2-line-height
671
- */
672
- typeRampMinus2LineHeight: string;
673
- /**
674
- * The font-size one step below the base font-size
675
- *
676
- * @remarks
677
- * HTML attribute: type-ramp-minus-1-font-size
678
- *
679
- * CSS custom property: --type-ramp-minus-1-font-size
680
- */
681
- typeRampMinus1FontSize: string;
682
- /**
683
- * The line-height one step below the base line-height
684
- *
685
- * @remarks
686
- * HTML attribute: type-ramp-minus-1-line-height
687
- *
688
- * CSS custom property: --type-ramp-minus-1-line-height
689
- */
690
- typeRampMinus1LineHeight: string;
691
- /**
692
- * The base font-size of the relative type-ramp scale
693
- *
694
- * @remarks
695
- * HTML attribute: type-ramp-base-font-size
696
- *
697
- * CSS custom property: --type-ramp-base-font-size
698
- */
699
- typeRampBaseFontSize: string;
700
- /**
701
- * The base line-height of the relative type-ramp scale
702
- *
703
- * @remarks
704
- * HTML attribute: type-ramp-base-line-height
705
- *
706
- * CSS custom property: --type-ramp-base-line-height
707
- */
708
- typeRampBaseLineHeight: string;
709
- /**
710
- * The font-size one step above the base font-size
711
- *
712
- * @remarks
713
- * HTML attribute: type-ramp-plus-1-font-size
714
- *
715
- * CSS custom property: --type-ramp-plus-1-font-size
716
- */
717
- typeRampPlus1FontSize: string;
718
- /**
719
- * The line-height one step above the base line-height
720
- *
721
- * @remarks
722
- * HTML attribute: type-ramp-plus-1-line-height
723
- *
724
- * CSS custom property: --type-ramp-plus-1-line-height
725
- */
726
- typeRampPlus1LineHeight: string;
727
- /**
728
- * The font-size two steps above the base font-size
729
- *
730
- * @remarks
731
- * HTML attribute: type-ramp-plus-2-font-size
732
- *
733
- * CSS custom property: --type-ramp-plus-2-font-size
734
- */
735
- typeRampPlus2FontSize: string;
736
- /**
737
- * The line-height two steps above the base line-height
738
- *
739
- * @remarks
740
- * HTML attribute: type-ramp-plus-2-line-height
741
- *
742
- * CSS custom property: --type-ramp-plus-2-line-height
743
- */
744
- typeRampPlus2LineHeight: string;
745
- /**
746
- * The font-size three steps above the base font-size
747
- *
748
- * @remarks
749
- * HTML attribute: type-ramp-plus-3-font-size
750
- *
751
- * CSS custom property: --type-ramp-plus-3-font-size
752
- */
753
- typeRampPlus3FontSize: string;
754
- /**
755
- * The line-height three steps above the base line-height
756
- *
757
- * @remarks
758
- * HTML attribute: type-ramp-plus-3-line-height
759
- *
760
- * CSS custom property: --type-ramp-plus-3-line-height
761
- */
762
- typeRampPlus3LineHeight: string;
763
- /**
764
- * The font-size four steps above the base font-size
765
- *
766
- * @remarks
767
- * HTML attribute: type-ramp-plus-4-font-size
768
- *
769
- * CSS custom property: --type-ramp-plus-4-font-size
770
- */
771
- typeRampPlus4FontSize: string;
772
- /**
773
- * The line-height four steps above the base line-height
774
- *
775
- * @remarks
776
- * HTML attribute: type-ramp-plus-4-line-height
777
- *
778
- * CSS custom property: --type-ramp-plus-4-line-height
779
- */
780
- typeRampPlus4LineHeight: string;
781
- /**
782
- * The font-size five steps above the base font-size
783
- *
784
- * @remarks
785
- * HTML attribute: type-ramp-plus-5-font-size
786
- *
787
- * CSS custom property: --type-ramp-plus-5-font-size
788
- */
789
- typeRampPlus5FontSize: string;
790
- /**
791
- * The line-height five steps above the base line-height
792
- *
793
- * @remarks
794
- * HTML attribute: type-ramp-plus-5-line-height
795
- *
796
- * CSS custom property: --type-ramp-plus-5-line-height
797
- */
798
- typeRampPlus5LineHeight: string;
799
- /**
800
- * The font-size six steps above the base font-size
801
- *
802
- * @remarks
803
- * HTML attribute: type-ramp-plus-6-font-size
804
- *
805
- * CSS custom property: --type-ramp-plus-6-font-size
806
- */
807
- typeRampPlus6FontSize: string;
808
- /**
809
- * The line-height six steps above the base line-height
810
- *
811
- * @remarks
812
- * HTML attribute: type-ramp-plus-6-line-height
813
- *
814
- * CSS custom property: --type-ramp-plus-6-line-height
815
- */
816
- typeRampPlus6LineHeight: string;
817
- /**
818
- * The distance from the resolved accent fill color for the rest state of the accent-fill recipe.
819
- *
820
- * @remarks
821
- * HTML attribute: accent-fill-rest-delta
822
- *
823
- * CSS custom property: N/A
824
- */
825
- accentFillRestDelta: number;
826
- /**
827
- * The distance from the resolved accent fill color for the hover state of the accent-fill recipe.
828
- *
829
- * @remarks
830
- * HTML attribute: accent-fill-hover-delta
831
- *
832
- * CSS custom property: N/A
833
- */
834
- accentFillHoverDelta: number;
835
- /**
836
- * The distance from the resolved accent fill color for the active state of the accent-fill recipe.
837
- *
838
- * @remarks
839
- * HTML attribute: accent-fill-active-delta
840
- *
841
- * CSS custom property: N/A
842
- */
843
- accentFillActiveDelta: number;
844
- /**
845
- * The distance from the resolved accent fill color for the focus state of the accent-fill recipe.
846
- *
847
- * @remarks
848
- * HTML attribute: accent-fill-focus-delta
849
- *
850
- * CSS custom property: N/A
851
- */
852
- accentFillFocusDelta: number;
853
- /**
854
- * The distance from the resolved accent foreground color for the rest state of the accent-foreground recipe.
855
- *
856
- * @remarks
857
- * HTML attribute: accent-foreground-rest-delta
858
- *
859
- * CSS custom property: N/A
860
- */
861
- accentForegroundRestDelta: number;
862
- /**
863
- * The distance from the resolved accent foreground color for the hover state of the accent-foreground recipe.
864
- *
865
- * @remarks
866
- * HTML attribute: accent-foreground-hover-delta
867
- *
868
- * CSS custom property: N/A
869
- */
870
- accentForegroundHoverDelta: number;
871
- /**
872
- * The distance from the resolved accent foreground color for the active state of the accent-foreground recipe.
873
- *
874
- * @remarks
875
- * HTML attribute: accent-foreground-active-delta
876
- *
877
- * CSS custom property: N/A
878
- */
879
- accentForegroundActiveDelta: number;
880
- /**
881
- * The distance from the resolved accent foreground color for the focus state of the accent-foreground recipe.
882
- *
883
- * @remarks
884
- * HTML attribute: accent-foreground-focus-delta
885
- *
886
- * CSS custom property: N/A
887
- */
888
- accentForegroundFocusDelta: number;
889
- /**
890
- * The distance from the resolved neutral fill color for the rest state of the neutral-fill recipe.
891
- *
892
- * @remarks
893
- * HTML attribute: neutral-fill-rest-delta
894
- *
895
- * CSS custom property: N/A
896
- */
897
- neutralFillRestDelta: number;
898
- /**
899
- * The distance from the resolved neutral fill color for the hover state of the neutral-fill recipe.
900
- *
901
- * @remarks
902
- * HTML attribute: neutral-fill-hover-delta
903
- *
904
- * CSS custom property: N/A
905
- */
906
- neutralFillHoverDelta: number;
907
- /**
908
- * The distance from the resolved neutral fill color for the active state of the neutral-fill recipe.
909
- *
910
- * @remarks
911
- * HTML attribute: neutral-fill-active-delta
912
- *
913
- * CSS custom property: N/A
914
- */
915
- neutralFillActiveDelta: number;
916
- /**
917
- * The distance from the resolved neutral fill color for the focus state of the neutral-fill recipe.
918
- *
919
- * @remarks
920
- * HTML attribute: neutral-fill-focus-delta
921
- *
922
- * CSS custom property: N/A
923
- */
924
- neutralFillFocusDelta: number;
925
- /**
926
- * The distance from the resolved neutral fill input color for the rest state of the neutral-fill-input recipe.
927
- *
928
- * @remarks
929
- * HTML attribute: neutral-fill-input-rest-delta
930
- *
931
- * CSS custom property: N/A
932
- */
933
- neutralFillInputRestDelta: number;
934
- /**
935
- * The distance from the resolved neutral fill input color for the hover state of the neutral-fill-input recipe.
936
- *
937
- * @remarks
938
- * HTML attribute: neutral-fill-input-hover-delta
939
- *
940
- * CSS custom property: N/A
941
- */
942
- neutralFillInputHoverDelta: number;
943
- /**
944
- * The distance from the resolved neutral fill input color for the active state of the neutral-fill-input recipe.
945
- *
946
- * @remarks
947
- * HTML attribute: neutral-fill-input-active-delta
948
- *
949
- * CSS custom property: N/A
950
- */
951
- neutralFillInputActiveDelta: number;
952
- /**
953
- * The distance from the resolved neutral fill input color for the focus state of the neutral-fill-input recipe.
954
- *
955
- * @remarks
956
- * HTML attribute: neutral-fill-input-focus-delta
957
- *
958
- * CSS custom property: N/A
959
- */
960
- neutralFillInputFocusDelta: number;
961
- /**
962
- * The distance from the resolved neutral fill input color for the rest state of the neutral-fill-layer recipe.
963
- *
964
- * @remarks
965
- * HTML attribute: neutral-fill-layer-rest-delta
966
- *
967
- * CSS custom property: N/A
968
- */
969
- neutralFillLayerRestDelta: number;
970
- /**
971
- * The distance from the resolved neutral fill stealth color for the rest state of the neutral-fill-stealth recipe.
972
- *
973
- * @remarks
974
- * HTML attribute: neutral-fill-stealth-rest-delta
975
- *
976
- * CSS custom property: N/A
977
- */
978
- neutralFillStealthRestDelta: number;
979
- /**
980
- * The distance from the resolved neutral fill stealth color for the hover state of the neutral-fill-stealth recipe.
981
- *
982
- * @remarks
983
- * HTML attribute: neutral-fill-stealth-hover-delta
984
- *
985
- * CSS custom property: N/A
986
- */
987
- neutralFillStealthHoverDelta: number;
988
- /**
989
- * The distance from the resolved neutral fill stealth color for the active state of the neutral-fill-stealth recipe.
990
- *
991
- * @remarks
992
- * HTML attribute: neutral-fill-stealth-active-delta
993
- *
994
- * CSS custom property: N/A
995
- */
996
- neutralFillStealthActiveDelta: number;
997
- /**
998
- * The distance from the resolved neutral fill stealth color for the focus state of the neutral-fill-stealth recipe.
999
- *
1000
- * @remarks
1001
- * HTML attribute: neutral-fill-stealth-focus-delta
1002
- *
1003
- * CSS custom property: N/A
1004
- */
1005
- neutralFillStealthFocusDelta: number;
1006
- /**
1007
- * The distance from the resolved neutral fill strong color for the hover state of the neutral-fill-strong recipe.
1008
- *
1009
- * @remarks
1010
- * HTML attribute: neutral-fill-strong-hover-delta
1011
- *
1012
- * CSS custom property: N/A
1013
- */
1014
- neutralFillStrongHoverDelta: number;
1015
- /**
1016
- * The distance from the resolved neutral fill strong color for the active state of the neutral-fill-strong recipe.
1017
- *
1018
- * @remarks
1019
- * HTML attribute: neutral-fill-strong-active-delta
1020
- *
1021
- * CSS custom property: N/A
1022
- */
1023
- neutralFillStrongActiveDelta: number;
1024
- /**
1025
- * The distance from the resolved neutral fill strong color for the focus state of the neutral-fill-strong recipe.
1026
- *
1027
- * @remarks
1028
- * HTML attribute: neutral-fill-strong-focus-delta
1029
- *
1030
- * CSS custom property: N/A
1031
- */
1032
- neutralFillStrongFocusDelta: number;
1033
- /**
1034
- * The {@link https://www.w3.org/WAI/GL/wiki/Relative_luminance#:~:text=WCAG%20definition%20of%20relative%20luminance,and%201%20for%20lightest%20white|relative luminance} of the base layer of the application.
1035
- *
1036
- * @remarks
1037
- * When set to a number between 0 and 1
1038
- *
1039
- * HTML attribute: base-layer-luminance
1040
- *
1041
- * CSS custom property: N/A
1042
- */
1043
- baseLayerLuminance: number;
1044
- /**
1045
- * The distance from the resolved divider color for the rest state of the neutral-stroke-divider recipe.
1046
- *
1047
- * @remarks
1048
- * HTML attribute: neutral-stroke-divider-rest-delta
1049
- *
1050
- * CSS custom property: N/A
1051
- */
1052
- neutralStrokeDividerRestDelta: number;
1053
- /**
1054
- * The distance from the resolved neutral stroke color for the rest state of the neutral-stroke recipe.
1055
- *
1056
- * @remarks
1057
- * HTML attribute: neutral-stroke-rest-delta
1058
- *
1059
- * CSS custom property: N/A
1060
- */
1061
- neutralStrokeRestDelta: number;
1062
- /**
1063
- * The distance from the resolved neutral stroke color for the hover state of the neutral-stroke recipe.
1064
- *
1065
- * @remarks
1066
- * HTML attribute: neutral-stroke-hover-delta
1067
- *
1068
- * CSS custom property: N/A
1069
- */
1070
- neutralStrokeHoverDelta: number;
1071
- /**
1072
- * The distance from the resolved neutral stroke color for the active state of the neutral-stroke recipe.
1073
- *
1074
- * @remarks
1075
- * HTML attribute: neutral-stroke-active-delta
1076
- *
1077
- * CSS custom property: N/A
1078
- */
1079
- neutralStrokeActiveDelta: number;
1080
- /**
1081
- * The distance from the resolved neutral stroke color for the focus state of the neutral-stroke recipe.
1082
- *
1083
- * @remarks
1084
- * HTML attribute: neutral-stroke-focus-delta
1085
- *
1086
- * CSS custom property: N/A
1087
- */
1088
- neutralStrokeFocusDelta: number;
1089
- }
187
+ export declare const colorBrandBackgroundPressed: CSSDesignToken<string>;
1090
188
 
1091
- /** @public */
1092
- export declare const designUnit: CSSDesignToken<number>;
189
+ export declare const colorBrandBackgroundSelected: CSSDesignToken<string>;
1093
190
 
1094
- export { Dialog }
191
+ export declare const colorBrandBackgroundStatic: CSSDesignToken<string>;
1095
192
 
1096
- /**
1097
- * Styles for Dialog
1098
- * @public
1099
- */
1100
- export declare const dialogStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
193
+ export declare const colorBrandForeground1: CSSDesignToken<string>;
1101
194
 
1102
- /** @public */
1103
- export declare const direction: CSSDesignToken<Direction>;
195
+ export declare const colorBrandForeground2: CSSDesignToken<string>;
1104
196
 
1105
- /**
1106
- * @internal
1107
- * @deprecated Use elevationShadow design token
1108
- */
1109
- export declare const directionalShadow = "0 calc(var(--elevation) * 0.5px) calc((var(--elevation) * 1px)) rgba(0, 0, 0, 0.2)";
197
+ export declare const colorBrandForegroundInverted: CSSDesignToken<string>;
1110
198
 
1111
- /**
1112
- * Behavior to conditionally apply LTR and RTL stylesheets. To determine which to apply,
1113
- * the behavior will use the nearest DesignSystemProvider's 'direction' design system value.
1114
- *
1115
- * @public
1116
- * @example
1117
- * ```ts
1118
- * import { css } from "@microsoft/fast-element";
1119
- * import { DirectionalStyleSheetBehavior } from "@microsoft/fast-foundation";
1120
- *
1121
- * css`
1122
- * // ...
1123
- * `.withBehaviors(new DirectionalStyleSheetBehavior(
1124
- * css`:host { content: "ltr"}`),
1125
- * css`:host { content: "rtl"}`),
1126
- * )
1127
- * ```
1128
- */
1129
- export declare class DirectionalStyleSheetBehavior implements Behavior {
1130
- private ltr;
1131
- private rtl;
1132
- private cache;
1133
- constructor(ltr: ElementStyles | null, rtl: ElementStyles | null);
1134
- /**
1135
- * @internal
1136
- */
1137
- bind(source: FASTElement & HTMLElement): void;
1138
- /**
1139
- * @internal
1140
- */
1141
- unbind(source: FASTElement & HTMLElement): void;
1142
- private attach;
1143
- }
199
+ export declare const colorBrandForegroundInvertedHover: CSSDesignToken<string>;
1144
200
 
1145
- /** @public */
1146
- export declare const disabledOpacity: CSSDesignToken<number>;
201
+ export declare const colorBrandForegroundInvertedPressed: CSSDesignToken<string>;
1147
202
 
1148
- export { Divider }
203
+ export declare const colorBrandForegroundLink: CSSDesignToken<string>;
1149
204
 
1150
- /**
1151
- * Styles for Divider
1152
- * @public
1153
- */
1154
- export declare const dividerStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
205
+ export declare const colorBrandForegroundLinkHover: CSSDesignToken<string>;
1155
206
 
1156
- /** @public @deprecated Use layerCornerRadius */
1157
- export declare const elevatedCornerRadius: CSSDesignToken<number>;
207
+ export declare const colorBrandForegroundLinkPressed: CSSDesignToken<string>;
1158
208
 
1159
- /**
1160
- * Applies the box-shadow CSS rule set to the elevation formula.
1161
- * Control this formula with the --elevation CSS Custom Property
1162
- * by setting --elevation to a number.
1163
- *
1164
- * @public
1165
- * @deprecated Use elevationShadow design token
1166
- */
1167
- export declare const elevation: string;
209
+ export declare const colorBrandForegroundLinkSelected: CSSDesignToken<string>;
1168
210
 
1169
- /** @public */
1170
- export declare interface ElevationRecipe {
1171
- evaluate(element: HTMLElement, size: number, reference?: Swatch): string;
1172
- }
211
+ export declare const colorBrandForegroundOnLight: CSSDesignToken<string>;
1173
212
 
1174
- /** @public */
1175
- export declare const elevationShadowCardActive: CSSDesignToken<string>;
213
+ export declare const colorBrandForegroundOnLightHover: CSSDesignToken<string>;
1176
214
 
1177
- /** @public */
1178
- export declare const elevationShadowCardActiveSize: CSSDesignToken<number>;
215
+ export declare const colorBrandForegroundOnLightPressed: CSSDesignToken<string>;
1179
216
 
1180
- /** @public */
1181
- export declare const elevationShadowCardFocus: CSSDesignToken<string>;
217
+ export declare const colorBrandForegroundOnLightSelected: CSSDesignToken<string>;
1182
218
 
1183
- /** @public */
1184
- export declare const elevationShadowCardFocusSize: CSSDesignToken<number>;
219
+ export declare const colorBrandShadowAmbient: CSSDesignToken<string>;
1185
220
 
1186
- /** @public */
1187
- export declare const elevationShadowCardHover: CSSDesignToken<string>;
221
+ export declare const colorBrandShadowKey: CSSDesignToken<string>;
1188
222
 
1189
- /** @public */
1190
- export declare const elevationShadowCardHoverSize: CSSDesignToken<number>;
223
+ export declare const colorBrandStroke1: CSSDesignToken<string>;
1191
224
 
1192
- /** @public */
1193
- export declare const elevationShadowCardRest: CSSDesignToken<string>;
225
+ export declare const colorBrandStroke2: CSSDesignToken<string>;
1194
226
 
1195
- /** @public */
1196
- export declare const elevationShadowCardRestSize: CSSDesignToken<number>;
227
+ export declare const colorCompoundBrandBackground: CSSDesignToken<string>;
1197
228
 
1198
- /** @public */
1199
- export declare const elevationShadowDialog: CSSDesignToken<string>;
229
+ export declare const colorCompoundBrandBackgroundHover: CSSDesignToken<string>;
1200
230
 
1201
- /** @public */
1202
- export declare const elevationShadowDialogSize: CSSDesignToken<number>;
231
+ export declare const colorCompoundBrandBackgroundPressed: CSSDesignToken<string>;
1203
232
 
1204
- /** @public */
1205
- export declare const elevationShadowFlyout: CSSDesignToken<string>;
233
+ export declare const colorCompoundBrandForeground1: CSSDesignToken<string>;
1206
234
 
1207
- /** @public */
1208
- export declare const elevationShadowFlyoutSize: CSSDesignToken<number>;
235
+ export declare const colorCompoundBrandForeground1Hover: CSSDesignToken<string>;
1209
236
 
1210
- /**
1211
- * @public
1212
- */
1213
- export declare const elevationShadowRecipe: DesignToken<ElevationRecipe>;
237
+ export declare const colorCompoundBrandForeground1Pressed: CSSDesignToken<string>;
1214
238
 
1215
- /** @public */
1216
- export declare const elevationShadowTooltip: CSSDesignToken<string>;
239
+ export declare const colorCompoundBrandStroke: CSSDesignToken<string>;
1217
240
 
1218
- /** @public */
1219
- export declare const elevationShadowTooltipSize: CSSDesignToken<number>;
241
+ export declare const colorCompoundBrandStrokeHover: CSSDesignToken<string>;
1220
242
 
1221
- /** @public */
1222
- export declare const fillColor: CSSDesignToken<Swatch>;
243
+ export declare const colorCompoundBrandStrokePressed: CSSDesignToken<string>;
1223
244
 
1224
- export { Flipper }
245
+ export declare const colorNeutralBackground1: CSSDesignToken<string>;
1225
246
 
1226
- /**
1227
- * Styles for Flipper
1228
- * @public
1229
- */
1230
- export declare const flipperStyles: (context: ElementDefinitionContext, definition: FlipperOptions) => ElementStyles;
247
+ export declare const colorNeutralBackground1Hover: CSSDesignToken<string>;
1231
248
 
1232
- /**
1233
- * The Fluent Accordion Element. Implements {@link @microsoft/fast-foundation#Accordion},
1234
- * {@link @microsoft/fast-foundation#accordionTemplate}
1235
- *
1236
- *
1237
- * @public
1238
- * @remarks
1239
- * HTML Element: \<fluent-accordion\>
1240
- */
1241
- export declare const fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Accordion>;
249
+ export declare const colorNeutralBackground1Pressed: CSSDesignToken<string>;
1242
250
 
1243
- /**
1244
- * The Fluent Accordion Item Element. Implements {@link @microsoft/fast-foundation#AccordionItem},
1245
- * {@link @microsoft/fast-foundation#accordionItemTemplate}
1246
- *
1247
- *
1248
- * @public
1249
- * @remarks
1250
- * HTML Element: \<fluent-accordion-item\>
1251
- */
1252
- export declare const fluentAccordionItem: (overrideDefinition?: OverrideFoundationElementDefinition<AccordionItemOptions> | undefined) => FoundationElementRegistry<AccordionItemOptions, Constructable<FoundationElement>>;
251
+ export declare const colorNeutralBackground1Selected: CSSDesignToken<string>;
1253
252
 
1254
- /**
1255
- * The Fluent Anchor Element. Implements {@link @microsoft/fast-foundation#Anchor},
1256
- * {@link @microsoft/fast-foundation#anchorTemplate}
1257
- *
1258
- *
1259
- * @public
1260
- * @remarks
1261
- * HTML Element: \<fluent-anchor\>
1262
- *
1263
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1264
- */
1265
- export declare const fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Anchor>;
253
+ export declare const colorNeutralBackground2: CSSDesignToken<string>;
1266
254
 
1267
- /**
1268
- * The Fluent AnchoredRegion Element. Implements {@link @microsoft/fast-foundation#AnchoredRegion},
1269
- * {@link @microsoft/fast-foundation#anchoredRegionTemplate}
1270
- *
1271
- *
1272
- * @beta
1273
- * @remarks
1274
- * HTML Element: \<fluent-anchored-region\>
1275
- */
1276
- export declare const fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof AnchoredRegion>;
255
+ export declare const colorNeutralBackground2Hover: CSSDesignToken<string>;
1277
256
 
1278
- /**
1279
- * The Fluent Badge Element. Implements {@link @microsoft/fast-foundation#Badge},
1280
- * {@link @microsoft/fast-foundation#badgeTemplate}
1281
- *
1282
- *
1283
- * @public
1284
- * @remarks
1285
- * HTML Element: \<fluent-badge\>
1286
- */
1287
- export declare const fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Badge>;
257
+ export declare const colorNeutralBackground2Pressed: CSSDesignToken<string>;
1288
258
 
1289
- /**
1290
- * The Fluent Breadcrumb Element. Implements {@link @microsoft/fast-foundation#Breadcrumb},
1291
- * {@link @microsoft/fast-foundation#breadcrumbTemplate}
1292
- *
1293
- *
1294
- * @public
1295
- * @remarks
1296
- * HTML Element: \<fluent-breadcrumb\>
1297
- */
1298
- export declare const fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Breadcrumb>;
259
+ export declare const colorNeutralBackground2Selected: CSSDesignToken<string>;
1299
260
 
1300
- /**
1301
- * The Fluent BreadcrumbItem Element. Implements {@link @microsoft/fast-foundation#BreadcrumbItem},
1302
- * {@link @microsoft/fast-foundation#breadcrumbItemTemplate}
1303
- *
1304
- *
1305
- * @public
1306
- * @remarks
1307
- * HTML Element: \<fluent-breadcrumb-item\>
1308
- */
1309
- export declare const fluentBreadcrumbItem: (overrideDefinition?: OverrideFoundationElementDefinition<BreadcrumbItemOptions> | undefined) => FoundationElementRegistry<BreadcrumbItemOptions, Constructable<FoundationElement>>;
261
+ export declare const colorNeutralBackground3: CSSDesignToken<string>;
1310
262
 
1311
- /**
1312
- * The Fluent Button Element. Implements {@link @microsoft/fast-foundation#Button},
1313
- * {@link @microsoft/fast-foundation#buttonTemplate}
1314
- *
1315
- *
1316
- * @public
1317
- * @remarks
1318
- * HTML Element: \<fluent-button\>
1319
- *
1320
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1321
- */
1322
- export declare const fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Button>;
263
+ export declare const colorNeutralBackground3Hover: CSSDesignToken<string>;
1323
264
 
1324
- /**
1325
- * The Fluent Calendar Element. Implements {@link @microsoft/fast-foundation#Calendar},
1326
- * {@link @microsoft/fast-foundation#calendarTemplate}
1327
- *
1328
- * @public
1329
- * @remarks
1330
- * HTML Element \<fluent-calendar\>
1331
- */
1332
- export declare const fluentCalendar: (overrideDefinition?: OverrideFoundationElementDefinition<CalendarOptions> | undefined) => FoundationElementRegistry<CalendarOptions, Constructable<FoundationElement>>;
265
+ export declare const colorNeutralBackground3Pressed: CSSDesignToken<string>;
1333
266
 
1334
- /**
1335
- * The Fluent Card Element. Implements {@link @microsoft/fast-foundation#Card},
1336
- * {@link @microsoft/fast-foundation#CardTemplate}
1337
- *
1338
- *
1339
- * @public
1340
- * @remarks
1341
- * HTML Element: \<fluent-card\>
1342
- */
1343
- export declare const fluentCard: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Card>;
267
+ export declare const colorNeutralBackground3Selected: CSSDesignToken<string>;
1344
268
 
1345
- /**
1346
- * The Fluent Checkbox Element. Implements {@link @microsoft/fast-foundation#Checkbox},
1347
- * {@link @microsoft/fast-foundation#checkboxTemplate}
1348
- *
1349
- *
1350
- * @public
1351
- * @remarks
1352
- * HTML Element: \<fluent-checkbox\>
1353
- */
1354
- export declare const fluentCheckbox: (overrideDefinition?: OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => FoundationElementRegistry<CheckboxOptions, Constructable<FoundationElement>>;
269
+ export declare const colorNeutralBackground4: CSSDesignToken<string>;
1355
270
 
1356
- /**
1357
- * The Fluent Combobox Custom Element. Implements {@link @microsoft/fast-foundation#Combobox},
1358
- * {@link @microsoft/fast-foundation#comboboxTemplate}
1359
- *
1360
- * @public
1361
- * @remarks
1362
- * HTML Element: \<fluent-combobox\>
1363
- *
1364
- */
1365
- export declare const fluentCombobox: (overrideDefinition?: OverrideFoundationElementDefinition<ComboboxOptions> | undefined) => FoundationElementRegistry<ComboboxOptions, Constructable<FoundationElement>>;
271
+ export declare const colorNeutralBackground4Hover: CSSDesignToken<string>;
1366
272
 
1367
- /**
1368
- * The Fluent Data Grid Element.
1369
- *
1370
- * @public
1371
- * @remarks
1372
- * HTML Element: \<fluent-data-grid\>
1373
- */
1374
- export declare const fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGrid>;
273
+ export declare const colorNeutralBackground4Pressed: CSSDesignToken<string>;
1375
274
 
1376
- /**
1377
- * The Fluent Data Grid Cell Element.
1378
- *
1379
- * @public
1380
- * @remarks
1381
- * HTML Element: \<fluent-data-grid-cell\>
1382
- */
1383
- export declare const fluentDataGridCell: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGridCell>;
275
+ export declare const colorNeutralBackground4Selected: CSSDesignToken<string>;
1384
276
 
1385
- /**
1386
- * The Fluent Data Grid Row Element.
1387
- *
1388
- * @public
1389
- * @remarks
1390
- * HTML Element: \<fluent-data-grid-row\>
1391
- */
1392
- export declare const fluentDataGridRow: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGridRow>;
277
+ export declare const colorNeutralBackground5: CSSDesignToken<string>;
1393
278
 
1394
- /**
1395
- * The Fluent Design System Provider Element.
1396
- *
1397
- * @public
1398
- * @remarks
1399
- * HTML Element: \<fluent-design-system-provider\>
1400
- */
1401
- export declare const fluentDesignSystemProvider: (overrideDefinition?: OverrideFoundationElementDefinition< {
1402
- baseName: string;
1403
- template: ViewTemplate<any, any>;
1404
- styles: ElementStyles;
1405
- }> | undefined) => FoundationElementRegistry< {
1406
- baseName: string;
1407
- template: ViewTemplate<any, any>;
1408
- styles: ElementStyles;
1409
- }, typeof DesignSystemProvider>;
279
+ export declare const colorNeutralBackground5Hover: CSSDesignToken<string>;
1410
280
 
1411
- /**
1412
- * The Fluent Dialog Element. Implements {@link @microsoft/fast-foundation#Dialog},
1413
- * {@link @microsoft/fast-foundation#dialogTemplate}
1414
- *
1415
- *
1416
- * @public
1417
- * @remarks
1418
- * HTML Element: \<fluent-dialog\>
1419
- */
1420
- export declare const fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Dialog>;
281
+ export declare const colorNeutralBackground5Pressed: CSSDesignToken<string>;
1421
282
 
1422
- /**
1423
- * The Fluent Divider Element. Implements {@link @microsoft/fast-foundation#Divider},
1424
- * {@link @microsoft/fast-foundation#dividerTemplate}
1425
- *
1426
- *
1427
- * @public
1428
- * @remarks
1429
- * HTML Element: \<fluent-divider\>
1430
- */
1431
- export declare const fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Divider>;
283
+ export declare const colorNeutralBackground5Selected: CSSDesignToken<string>;
1432
284
 
1433
- /**
1434
- * The Fluent Flipper Element. Implements {@link @microsoft/fast-foundation#Flipper},
1435
- * {@link @microsoft/fast-foundation#flipperTemplate}
1436
- *
1437
- *
1438
- * @public
1439
- * @remarks
1440
- * HTML Element: \<fluent-flipper\>
1441
- */
1442
- export declare const fluentFlipper: (overrideDefinition?: OverrideFoundationElementDefinition<FlipperOptions> | undefined) => FoundationElementRegistry<FlipperOptions, Constructable<FoundationElement>>;
285
+ export declare const colorNeutralBackground6: CSSDesignToken<string>;
1443
286
 
1444
- /**
1445
- * The Fluent HorizontalScroll Element. Implements {@link @microsoft/fast-foundation#HorizontalScroll},
1446
- * {@link @microsoft/fast-foundation#horizontalScrollTemplate}
1447
- *
1448
- *
1449
- * @public
1450
- * @remarks
1451
- * HTML Element: \<fluent-horizontal-scroll\>
1452
- */
1453
- export declare const fluentHorizontalScroll: (overrideDefinition?: OverrideFoundationElementDefinition<HorizontalScrollOptions> | undefined) => FoundationElementRegistry<HorizontalScrollOptions, Constructable<FoundationElement>>;
287
+ export declare const colorNeutralBackgroundDisabled: CSSDesignToken<string>;
1454
288
 
1455
- /**
1456
- * The Fluent listbox Custom Element. Implements, {@link @microsoft/fast-foundation#Listbox}
1457
- * {@link @microsoft/fast-foundation#listboxTemplate}
1458
- *
1459
- *
1460
- * @public
1461
- * @remarks
1462
- * HTML Element: \<fluent-listbox\>
1463
- *
1464
- */
1465
- export declare const fluentListbox: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Listbox>;
289
+ export declare const colorNeutralBackgroundInverted: CSSDesignToken<string>;
1466
290
 
1467
- /**
1468
- * The Fluent Menu Element. Implements {@link @microsoft/fast-foundation#Menu},
1469
- * {@link @microsoft/fast-foundation#menuTemplate}
1470
- *
1471
- *
1472
- * @public
1473
- * @remarks
1474
- * HTML Element: \<fluent-menu\>
1475
- */
1476
- export declare const fluentMenu: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Menu>;
291
+ export declare const colorNeutralBackgroundInvertedDisabled: CSSDesignToken<string>;
1477
292
 
1478
- /**
1479
- * The Fluent Menu Item Element. Implements {@link @microsoft/fast-foundation#MenuItem},
1480
- * {@link @microsoft/fast-foundation#menuItemTemplate}
1481
- *
1482
- *
1483
- * @public
1484
- * @remarks
1485
- * HTML Element: \<fluent-menu-item\>
1486
- */
1487
- export declare const fluentMenuItem: (overrideDefinition?: OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => FoundationElementRegistry<MenuItemOptions, Constructable<FoundationElement>>;
293
+ export declare const colorNeutralBackgroundStatic: CSSDesignToken<string>;
1488
294
 
1489
- /**
1490
- * The Fluent Number Field Custom Element. Implements {@link @microsoft/fast-foundation#NumberField},
1491
- * {@link @microsoft/fast-foundation#numberFieldTemplate}
1492
- *
1493
- *
1494
- * @public
1495
- * @remarks
1496
- * HTML Element: \<fluent-number-field\>
1497
- *
1498
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1499
- */
1500
- export declare const fluentNumberField: (overrideDefinition?: OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => FoundationElementRegistry<NumberFieldOptions, Constructable<FoundationElement>>;
295
+ export declare const colorNeutralForeground1: CSSDesignToken<string>;
1501
296
 
1502
- /**
1503
- * The Fluent option Custom Element. Implements {@link @microsoft/fast-foundation#ListboxOption}
1504
- * {@link @microsoft/fast-foundation#listboxOptionTemplate}
1505
- *
1506
- *
1507
- * @public
1508
- * @remarks
1509
- * HTML Element: \<fluent-option\>
1510
- *
1511
- */
1512
- export declare const fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof ListboxOption>;
297
+ export declare const colorNeutralForeground1Hover: CSSDesignToken<string>;
1513
298
 
1514
- /**
1515
- * The Fluent Progress Element. Implements {@link @microsoft/fast-foundation#BaseProgress},
1516
- * {@link @microsoft/fast-foundation#progressTemplate}
1517
- *
1518
- *
1519
- * @public
1520
- * @remarks
1521
- * HTML Element: \<fluent-progress\>
1522
- */
1523
- export declare const fluentProgress: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressOptions> | undefined) => FoundationElementRegistry<ProgressOptions, Constructable<FoundationElement>>;
299
+ export declare const colorNeutralForeground1Pressed: CSSDesignToken<string>;
1524
300
 
1525
- /**
1526
- * The Fluent Progress Ring Element. Implements {@link @microsoft/fast-foundation#BaseProgress},
1527
- * {@link @microsoft/fast-foundation#progressRingTemplate}
1528
- *
1529
- *
1530
- * @public
1531
- * @remarks
1532
- * HTML Element: \<fluent-progress-ring\>
1533
- */
1534
- export declare const fluentProgressRing: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => FoundationElementRegistry<ProgressRingOptions, Constructable<FoundationElement>>;
301
+ export declare const colorNeutralForeground1Selected: CSSDesignToken<string>;
1535
302
 
1536
- /**
1537
- * The Fluent Radio Element. Implements {@link @microsoft/fast-foundation#Radio},
1538
- * {@link @microsoft/fast-foundation#radioTemplate}
1539
- *
1540
- *
1541
- * @public
1542
- * @remarks
1543
- * HTML Element: \<fluent-radio\>
1544
- */
1545
- export declare const fluentRadio: (overrideDefinition?: OverrideFoundationElementDefinition<RadioOptions> | undefined) => FoundationElementRegistry<RadioOptions, Constructable<FoundationElement>>;
303
+ export declare const colorNeutralForeground1Static: CSSDesignToken<string>;
1546
304
 
1547
- /**
1548
- * The Fluent Radio Group Element. Implements {@link @microsoft/fast-foundation#RadioGroup},
1549
- * {@link @microsoft/fast-foundation#radioGroupTemplate}
1550
- *
1551
- *
1552
- * @public
1553
- * @remarks
1554
- * HTML Element: \<fluent-radio-group\>
1555
- */
1556
- export declare const fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof RadioGroup>;
305
+ export declare const colorNeutralForeground2: CSSDesignToken<string>;
1557
306
 
1558
- /**
1559
- * The Fluent Search Custom Element. Implements {@link @microsoft/fast-foundation#Search},
1560
- * {@link @microsoft/fast-foundation#searchTemplate}
1561
- *
1562
- *
1563
- * @public
1564
- * @remarks
1565
- * HTML Element: \<fluent-search\>
1566
- *
1567
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1568
- */
1569
- export declare const fluentSearch: (overrideDefinition?: OverrideFoundationElementDefinition<SearchOptions> | undefined) => FoundationElementRegistry<SearchOptions, Constructable<FoundationElement>>;
307
+ export declare const colorNeutralForeground2BrandHover: CSSDesignToken<string>;
1570
308
 
1571
- /**
1572
- * The Fluent select Custom Element. Implements, {@link @microsoft/fast-foundation#Select}
1573
- * {@link @microsoft/fast-foundation#selectTemplate}
1574
- *
1575
- *
1576
- * @public
1577
- * @remarks
1578
- * HTML Element: \<fluent-select\>
1579
- *
1580
- */
1581
- export declare const fluentSelect: (overrideDefinition?: OverrideFoundationElementDefinition<SelectOptions> | undefined) => FoundationElementRegistry<SelectOptions, Constructable<FoundationElement>>;
309
+ export declare const colorNeutralForeground2BrandPressed: CSSDesignToken<string>;
310
+
311
+ export declare const colorNeutralForeground2BrandSelected: CSSDesignToken<string>;
312
+
313
+ export declare const colorNeutralForeground2Hover: CSSDesignToken<string>;
314
+
315
+ export declare const colorNeutralForeground2Link: CSSDesignToken<string>;
316
+
317
+ export declare const colorNeutralForeground2LinkHover: CSSDesignToken<string>;
318
+
319
+ export declare const colorNeutralForeground2LinkPressed: CSSDesignToken<string>;
320
+
321
+ export declare const colorNeutralForeground2LinkSelected: CSSDesignToken<string>;
322
+
323
+ export declare const colorNeutralForeground2Pressed: CSSDesignToken<string>;
324
+
325
+ export declare const colorNeutralForeground2Selected: CSSDesignToken<string>;
326
+
327
+ export declare const colorNeutralForeground3: CSSDesignToken<string>;
328
+
329
+ export declare const colorNeutralForeground3BrandHover: CSSDesignToken<string>;
330
+
331
+ export declare const colorNeutralForeground3BrandPressed: CSSDesignToken<string>;
332
+
333
+ export declare const colorNeutralForeground3BrandSelected: CSSDesignToken<string>;
334
+
335
+ export declare const colorNeutralForeground3Hover: CSSDesignToken<string>;
336
+
337
+ export declare const colorNeutralForeground3Pressed: CSSDesignToken<string>;
338
+
339
+ export declare const colorNeutralForeground3Selected: CSSDesignToken<string>;
340
+
341
+ export declare const colorNeutralForeground4: CSSDesignToken<string>;
342
+
343
+ export declare const colorNeutralForegroundDisabled: CSSDesignToken<string>;
344
+
345
+ export declare const colorNeutralForegroundInverted: CSSDesignToken<string>;
346
+
347
+ export declare const colorNeutralForegroundInverted2: CSSDesignToken<string>;
348
+
349
+ export declare const colorNeutralForegroundInvertedDisabled: CSSDesignToken<string>;
350
+
351
+ export declare const colorNeutralForegroundInvertedHover: CSSDesignToken<string>;
352
+
353
+ export declare const colorNeutralForegroundInvertedLink: CSSDesignToken<string>;
354
+
355
+ export declare const colorNeutralForegroundInvertedLinkHover: CSSDesignToken<string>;
356
+
357
+ export declare const colorNeutralForegroundInvertedLinkPressed: CSSDesignToken<string>;
358
+
359
+ export declare const colorNeutralForegroundInvertedLinkSelected: CSSDesignToken<string>;
360
+
361
+ export declare const colorNeutralForegroundInvertedPressed: CSSDesignToken<string>;
362
+
363
+ export declare const colorNeutralForegroundInvertedSelected: CSSDesignToken<string>;
364
+
365
+ export declare const colorNeutralForegroundOnBrand: CSSDesignToken<string>;
366
+
367
+ export declare const colorNeutralForegroundStaticInverted: CSSDesignToken<string>;
368
+
369
+ export declare const colorNeutralShadowAmbient: CSSDesignToken<string>;
370
+
371
+ export declare const colorNeutralShadowAmbientDarker: CSSDesignToken<string>;
372
+
373
+ export declare const colorNeutralShadowAmbientLighter: CSSDesignToken<string>;
374
+
375
+ export declare const colorNeutralShadowKey: CSSDesignToken<string>;
376
+
377
+ export declare const colorNeutralShadowKeyDarker: CSSDesignToken<string>;
378
+
379
+ export declare const colorNeutralShadowKeyLighter: CSSDesignToken<string>;
380
+
381
+ export declare const colorNeutralStencil1: CSSDesignToken<string>;
382
+
383
+ export declare const colorNeutralStencil2: CSSDesignToken<string>;
384
+
385
+ export declare const colorNeutralStroke1: CSSDesignToken<string>;
386
+
387
+ export declare const colorNeutralStroke1Hover: CSSDesignToken<string>;
388
+
389
+ export declare const colorNeutralStroke1Pressed: CSSDesignToken<string>;
390
+
391
+ export declare const colorNeutralStroke1Selected: CSSDesignToken<string>;
392
+
393
+ export declare const colorNeutralStroke2: CSSDesignToken<string>;
394
+
395
+ export declare const colorNeutralStroke3: CSSDesignToken<string>;
396
+
397
+ export declare const colorNeutralStrokeAccessible: CSSDesignToken<string>;
398
+
399
+ export declare const colorNeutralStrokeAccessibleHover: CSSDesignToken<string>;
400
+
401
+ export declare const colorNeutralStrokeAccessiblePressed: CSSDesignToken<string>;
402
+
403
+ export declare const colorNeutralStrokeAccessibleSelected: CSSDesignToken<string>;
404
+
405
+ export declare const colorNeutralStrokeDisabled: CSSDesignToken<string>;
406
+
407
+ export declare const colorNeutralStrokeInvertedDisabled: CSSDesignToken<string>;
408
+
409
+ export declare const colorNeutralStrokeOnBrand: CSSDesignToken<string>;
410
+
411
+ export declare const colorNeutralStrokeOnBrand2: CSSDesignToken<string>;
412
+
413
+ export declare const colorNeutralStrokeOnBrand2Hover: CSSDesignToken<string>;
414
+
415
+ export declare const colorNeutralStrokeOnBrand2Pressed: CSSDesignToken<string>;
416
+
417
+ export declare const colorNeutralStrokeOnBrand2Selected: CSSDesignToken<string>;
418
+
419
+ export declare const colorPaletteAnchorBackground2: CSSDesignToken<string>;
420
+
421
+ export declare const colorPaletteAnchorBorderActive: CSSDesignToken<string>;
1582
422
 
1583
- /**
1584
- * The Fluent Skeleton Element. Implements {@link @microsoft/fast-foundation#Skeleton},
1585
- * {@link @microsoft/fast-foundation#skeletonTemplate}
1586
- *
1587
- *
1588
- * @public
1589
- * @remarks
1590
- * HTML Element: \<fluent-skeleton\>
1591
- */
1592
- export declare const fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Skeleton>;
423
+ export declare const colorPaletteAnchorForeground2: CSSDesignToken<string>;
1593
424
 
1594
- /**
1595
- * The Fluent Slider Custom Element. Implements {@link @microsoft/fast-foundation#(Slider:class)},
1596
- * {@link @microsoft/fast-foundation#sliderTemplate}
1597
- *
1598
- *
1599
- * @public
1600
- * @remarks
1601
- * HTML Element: \<fluent-slider\>
1602
- */
1603
- export declare const fluentSlider: (overrideDefinition?: OverrideFoundationElementDefinition<SliderOptions> | undefined) => FoundationElementRegistry<SliderOptions, Constructable<FoundationElement>>;
425
+ export declare const colorPaletteBeigeBackground2: CSSDesignToken<string>;
1604
426
 
1605
- /**
1606
- * The Fluent Slider Label Custom Element. Implements {@link @microsoft/fast-foundation#SliderLabel},
1607
- * {@link @microsoft/fast-foundation#sliderLabelTemplate}
1608
- *
1609
- *
1610
- * @public
1611
- * @remarks
1612
- * HTML Element: \<fluent-slider-label\>
1613
- */
1614
- export declare const fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof SliderLabel>;
427
+ export declare const colorPaletteBeigeBorderActive: CSSDesignToken<string>;
1615
428
 
1616
- /**
1617
- * The Fluent Switch Custom Element. Implements {@link @microsoft/fast-foundation#Switch},
1618
- * {@link @microsoft/fast-foundation#SwitchTemplate}
1619
- *
1620
- *
1621
- * @public
1622
- * @remarks
1623
- * HTML Element: \<fluent-switch\>
1624
- */
1625
- export declare const fluentSwitch: (overrideDefinition?: OverrideFoundationElementDefinition<SwitchOptions> | undefined) => FoundationElementRegistry<SwitchOptions, Constructable<FoundationElement>>;
429
+ export declare const colorPaletteBeigeForeground2: CSSDesignToken<string>;
1626
430
 
1627
- /**
1628
- * The Fluent Tab Custom Element. Implements {@link @microsoft/fast-foundation#Tab},
1629
- * {@link @microsoft/fast-foundation#tabTemplate}
1630
- *
1631
- *
1632
- * @public
1633
- * @remarks
1634
- * HTML Element: \<fluent-tab\>
1635
- */
1636
- export declare const fluentTab: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tab>;
431
+ export declare const colorPaletteBerryBackground1: CSSDesignToken<string>;
1637
432
 
1638
- /**
1639
- * The Fluent Tab Panel Custom Element. Implements {@link @microsoft/fast-foundation#TabPanel},
1640
- * {@link @microsoft/fast-foundation#tabPanelTemplate}
1641
- *
1642
- *
1643
- * @public
1644
- * @remarks
1645
- * HTML Element: \<fluent-tab-panel\>
1646
- */
1647
- export declare const fluentTabPanel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TabPanel>;
433
+ export declare const colorPaletteBerryBackground2: CSSDesignToken<string>;
1648
434
 
1649
- /**
1650
- * The Fluent Tabs Custom Element. Implements {@link @microsoft/fast-foundation#Tabs},
1651
- * {@link @microsoft/fast-foundation#tabsTemplate}
1652
- *
1653
- *
1654
- * @public
1655
- * @remarks
1656
- * HTML Element: \<fluent-tabs\>
1657
- */
1658
- export declare const fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tabs>;
435
+ export declare const colorPaletteBerryBackground3: CSSDesignToken<string>;
1659
436
 
1660
- /**
1661
- * The Fluent Text Area Custom Element. Implements {@link @microsoft/fast-foundation#TextArea},
1662
- * {@link @microsoft/fast-foundation#textAreaTemplate}
1663
- *
1664
- *
1665
- * @public
1666
- * @remarks
1667
- * HTML Element: \<fluent-text-area\>
1668
- *
1669
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1670
- */
1671
- export declare const fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TextArea>;
437
+ export declare const colorPaletteBerryBorder1: CSSDesignToken<string>;
1672
438
 
1673
- /**
1674
- * The Fluent Text Field Custom Element. Implements {@link @microsoft/fast-foundation#TextField},
1675
- * {@link @microsoft/fast-foundation#textFieldTemplate}
1676
- *
1677
- *
1678
- * @public
1679
- * @remarks
1680
- * HTML Element: \<fluent-text-field\>
1681
- *
1682
- * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus}
1683
- */
1684
- export declare const fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TextField>;
439
+ export declare const colorPaletteBerryBorder2: CSSDesignToken<string>;
1685
440
 
1686
- /**
1687
- * The Fluent Toolbar Custom Element. Implements {@link @microsoft/fast-foundation#Toolbar},
1688
- * {@link @microsoft/fast-foundation#toolbarTemplate}
1689
- *
1690
- *
1691
- * @public
1692
- * @remarks
1693
- * HTML Element: \<fluent-toolbar\>
1694
- */
1695
- export declare const fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Toolbar>;
441
+ export declare const colorPaletteBerryBorderActive: CSSDesignToken<string>;
1696
442
 
1697
- /**
1698
- * The Fluent Tooltip Custom Element. Implements {@link @microsoft/fast-foundation#Tooltip},
1699
- * {@link @microsoft/fast-foundation#tooltipTemplate}
1700
- *
1701
- *
1702
- * @public
1703
- * @remarks
1704
- * HTML Element: \<fluent-tooltip\>
1705
- */
1706
- export declare const fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tooltip>;
443
+ export declare const colorPaletteBerryForeground1: CSSDesignToken<string>;
1707
444
 
1708
- /**
1709
- * The Fluent tree item Custom Element. Implements, {@link @microsoft/fast-foundation#TreeItem}
1710
- * {@link @microsoft/fast-foundation#treeItemTemplate}
1711
- *
1712
- *
1713
- * @public
1714
- * @remarks
1715
- * HTML Element: \<fluent-tree-item\>
1716
- *
1717
- */
1718
- export declare const fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
445
+ export declare const colorPaletteBerryForeground2: CSSDesignToken<string>;
1719
446
 
1720
- /**
1721
- * The Fluent tree view Custom Element. Implements, {@link @microsoft/fast-foundation#TreeView}
1722
- * {@link @microsoft/fast-foundation#treeViewTemplate}
1723
- *
1724
- *
1725
- * @public
1726
- * @remarks
1727
- * HTML Element: \<fluent-tree-view\>
1728
- *
1729
- */
1730
- export declare const fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
447
+ export declare const colorPaletteBerryForeground3: CSSDesignToken<string>;
1731
448
 
1732
- /** @public @deprecated Use focusStrokeWidth */
1733
- export declare const focusOutlineWidth: CSSDesignToken<number>;
449
+ export declare const colorPaletteBlueBackground2: CSSDesignToken<string>;
1734
450
 
1735
- /** @public */
1736
- export declare const focusStrokeInner: CSSDesignToken<Swatch>;
451
+ export declare const colorPaletteBlueBorderActive: CSSDesignToken<string>;
1737
452
 
1738
- /** @public */
1739
- export declare const focusStrokeInnerRecipe: DesignToken<ColorRecipe>;
453
+ export declare const colorPaletteBlueForeground2: CSSDesignToken<string>;
1740
454
 
1741
- /** @public */
1742
- export declare const focusStrokeOuter: CSSDesignToken<Swatch>;
455
+ export declare const colorPaletteBrassBackground2: CSSDesignToken<string>;
1743
456
 
1744
- /** @public */
1745
- export declare const focusStrokeOuterRecipe: DesignToken<ColorRecipe>;
457
+ export declare const colorPaletteBrassBorderActive: CSSDesignToken<string>;
1746
458
 
1747
- /** @public */
1748
- export declare const focusStrokeWidth: CSSDesignToken<number>;
459
+ export declare const colorPaletteBrassForeground2: CSSDesignToken<string>;
1749
460
 
1750
- /**
1751
- * Partial CSS for the focus treatment for most typical sized components like Button, Menu Item, etc.
1752
- *
1753
- * @public
1754
- */
1755
- export declare const focusTreatmentBase: CSSDirective;
461
+ export declare const colorPaletteBrownBackground2: CSSDesignToken<string>;
1756
462
 
1757
- /**
1758
- * Partial CSS for the focus treatment for tighter components with spacing constraints, like Checkbox
1759
- * and Radio, or plain text like Hypertext appearance Anchor or Breadcrumb Item.
1760
- *
1761
- * @public
1762
- */
1763
- export declare const focusTreatmentTight: CSSDirective;
463
+ export declare const colorPaletteBrownBorderActive: CSSDesignToken<string>;
1764
464
 
1765
- /** @public */
1766
- export declare const fontWeight: CSSDesignToken<number>;
465
+ export declare const colorPaletteBrownForeground2: CSSDesignToken<string>;
1767
466
 
1768
- /** @public */
1769
- export declare const foregroundOnAccentActive: CSSDesignToken<Swatch>;
467
+ export declare const colorPaletteCornflowerBackground2: CSSDesignToken<string>;
1770
468
 
1771
- /** @public @deprecated Not used */
1772
- export declare const foregroundOnAccentActiveLarge: CSSDesignToken<Swatch>;
469
+ export declare const colorPaletteCornflowerBorderActive: CSSDesignToken<string>;
1773
470
 
1774
- /** @public */
1775
- export declare const foregroundOnAccentFocus: CSSDesignToken<Swatch>;
471
+ export declare const colorPaletteCornflowerForeground2: CSSDesignToken<string>;
1776
472
 
1777
- /** @public @deprecated Not used */
1778
- export declare const foregroundOnAccentFocusLarge: CSSDesignToken<Swatch>;
473
+ export declare const colorPaletteCranberryBackground2: CSSDesignToken<string>;
1779
474
 
1780
- /** @public */
1781
- export declare const foregroundOnAccentHover: CSSDesignToken<Swatch>;
475
+ export declare const colorPaletteCranberryBorderActive: CSSDesignToken<string>;
1782
476
 
1783
- /** @public @deprecated Not used */
1784
- export declare const foregroundOnAccentHoverLarge: CSSDesignToken<Swatch>;
477
+ export declare const colorPaletteCranberryForeground2: CSSDesignToken<string>;
1785
478
 
1786
- /** @public @deprecated Not used */
1787
- export declare const foregroundOnAccentLargeRecipe: DesignToken<InteractiveColorRecipe>;
479
+ export declare const colorPaletteDarkGreenBackground2: CSSDesignToken<string>;
1788
480
 
1789
- /** @public */
1790
- export declare const foregroundOnAccentRecipe: DesignToken<InteractiveColorRecipe>;
481
+ export declare const colorPaletteDarkGreenBorderActive: CSSDesignToken<string>;
1791
482
 
1792
- /** @public */
1793
- export declare const foregroundOnAccentRest: CSSDesignToken<Swatch>;
483
+ export declare const colorPaletteDarkGreenForeground2: CSSDesignToken<string>;
1794
484
 
1795
- /** @public @deprecated Not used */
1796
- export declare const foregroundOnAccentRestLarge: CSSDesignToken<Swatch>;
485
+ export declare const colorPaletteDarkOrangeBackground1: CSSDesignToken<string>;
1797
486
 
1798
- /**
1799
- * Creates a PaletteRGB from a source color object.
1800
- * @param source - The source color
1801
- */
1802
- declare function from(source: SwatchRGB, options?: Partial<PaletteRGBOptions>): PaletteRGB;
487
+ export declare const colorPaletteDarkOrangeBackground2: CSSDesignToken<string>;
1803
488
 
1804
- /**
1805
- * A formula to retrieve the control height.
1806
- * Use this as the value of any CSS property that
1807
- * accepts a pixel size.
1808
- * @public
1809
- */
1810
- export declare const heightNumber: CSSDirective;
489
+ export declare const colorPaletteDarkOrangeBackground3: CSSDesignToken<string>;
1811
490
 
1812
- /**
1813
- * @internal
1814
- */
1815
- export declare class HorizontalScroll extends HorizontalScroll_2 {
1816
- /**
1817
- * @public
1818
- */
1819
- connectedCallback(): void;
1820
- }
491
+ export declare const colorPaletteDarkOrangeBorder1: CSSDesignToken<string>;
1821
492
 
1822
- /**
1823
- * Styles for horizontal scroll
1824
- * @public
1825
- */
1826
- export declare const horizontalScrollStyles: (context: ElementDefinitionContext, definition: HorizontalScrollOptions) => ElementStyles;
493
+ export declare const colorPaletteDarkOrangeBorder2: CSSDesignToken<string>;
1827
494
 
1828
- /**
1829
- * @internal
1830
- */
1831
- export declare const HypertextStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
495
+ export declare const colorPaletteDarkOrangeBorderActive: CSSDesignToken<string>;
1832
496
 
1833
- /**
1834
- * The visual styles for inputs with `appearance='filled'`.
1835
- *
1836
- * @internal
1837
- */
1838
- export declare const inputFilledStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
497
+ export declare const colorPaletteDarkOrangeForeground1: CSSDesignToken<string>;
1839
498
 
1840
- /**
1841
- * @internal
1842
- */
1843
- export declare const inputForcedColorStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
499
+ export declare const colorPaletteDarkOrangeForeground2: CSSDesignToken<string>;
1844
500
 
1845
- /**
1846
- * The visual styles for inputs with `appearance='outline'`.
1847
- *
1848
- * @internal
1849
- */
1850
- export declare const inputOutlineStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
501
+ export declare const colorPaletteDarkOrangeForeground3: CSSDesignToken<string>;
1851
502
 
1852
- /**
1853
- * The styles for active and focus interactions for input controls.
1854
- *
1855
- * @internal
1856
- */
1857
- export declare const inputStateStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string) => ElementStyles;
503
+ export declare const colorPaletteDarkRedBackground2: CSSDesignToken<string>;
1858
504
 
1859
- /** @public */
1860
- export declare interface InteractiveColorRecipe {
1861
- evaluate(element: HTMLElement, reference?: Swatch): InteractiveSwatchSet;
1862
- }
505
+ export declare const colorPaletteDarkRedBorderActive: CSSDesignToken<string>;
1863
506
 
1864
- /** @public */
1865
- export declare interface InteractiveSwatchSet {
1866
- /**
1867
- * The swatch to apply to the rest state
1868
- */
1869
- rest: Swatch;
1870
- /**
1871
- * The swatch to apply to the hover state
1872
- */
1873
- hover: Swatch;
1874
- /**
1875
- * The swatch to apply to the active state
1876
- */
1877
- active: Swatch;
1878
- /**
1879
- * The swatch to apply to the focus state
1880
- */
1881
- focus: Swatch;
1882
- }
507
+ export declare const colorPaletteDarkRedForeground2: CSSDesignToken<string>;
1883
508
 
1884
- /**
1885
- * Determines if a color should be considered Dark Mode
1886
- * @param color - The color to check to mode of
1887
- * @returns boolean
1888
- *
1889
- * @internal
1890
- */
1891
- export declare function isDark(color: Swatch): boolean;
509
+ export declare const colorPaletteForestBackground2: CSSDesignToken<string>;
1892
510
 
1893
- /** @public */
1894
- export declare const layerCornerRadius: CSSDesignToken<number>;
511
+ export declare const colorPaletteForestBorderActive: CSSDesignToken<string>;
1895
512
 
1896
- /**
1897
- * @internal
1898
- */
1899
- export declare const LightweightButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
513
+ export declare const colorPaletteForestForeground2: CSSDesignToken<string>;
1900
514
 
1901
- export declare class Listbox extends Listbox_2 {
1902
- }
515
+ export declare const colorPaletteGoldBackground2: CSSDesignToken<string>;
1903
516
 
1904
- /**
1905
- * Styles for Listbox
1906
- * @public
1907
- */
1908
- export declare const listboxStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
517
+ export declare const colorPaletteGoldBorderActive: CSSDesignToken<string>;
1909
518
 
1910
- /**
1911
- * The Fluent menu class
1912
- * @public
1913
- */
1914
- export declare class Menu extends Menu_2 {
1915
- /**
1916
- * @internal
1917
- */
1918
- connectedCallback(): void;
1919
- }
519
+ export declare const colorPaletteGoldForeground2: CSSDesignToken<string>;
1920
520
 
1921
- export { MenuItem }
521
+ export declare const colorPaletteGrapeBackground2: CSSDesignToken<string>;
1922
522
 
1923
- /**
1924
- * Styles for MenuItem
1925
- * @public
1926
- */
1927
- export declare const menuItemStyles: (context: ElementDefinitionContext, definition: MenuItemOptions) => ElementStyles;
523
+ export declare const colorPaletteGrapeBorderActive: CSSDesignToken<string>;
1928
524
 
1929
- /**
1930
- * Styles for Menu
1931
- * @public
1932
- */
1933
- export declare const menuStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
525
+ export declare const colorPaletteGrapeForeground2: CSSDesignToken<string>;
1934
526
 
1935
- /** @public */
1936
- export declare const neutralBaseColor: CSSDesignToken<Swatch>;
527
+ export declare const colorPaletteGreenBackground1: CSSDesignToken<string>;
1937
528
 
1938
- /**
1939
- * @internal
1940
- */
1941
- export declare const NeutralButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
529
+ export declare const colorPaletteGreenBackground2: CSSDesignToken<string>;
1942
530
 
1943
- /** @public @deprecated Use neutralFillInverseActive */
1944
- export declare const neutralContrastFillActive: CSSDesignToken<Swatch>;
531
+ export declare const colorPaletteGreenBackground3: CSSDesignToken<string>;
1945
532
 
1946
- /** @public @deprecated Use neutralFillInverseActiveDelta */
1947
- export declare const neutralContrastFillActiveDelta: CSSDesignToken<number>;
533
+ export declare const colorPaletteGreenBorder1: CSSDesignToken<string>;
1948
534
 
1949
- /** @public @deprecated Use neutralFillInverseFocus */
1950
- export declare const neutralContrastFillFocus: CSSDesignToken<Swatch>;
535
+ export declare const colorPaletteGreenBorder2: CSSDesignToken<string>;
1951
536
 
1952
- /** @public @deprecated Use neutralFillInverseFocusDelta */
1953
- export declare const neutralContrastFillFocusDelta: CSSDesignToken<number>;
537
+ export declare const colorPaletteGreenBorderActive: CSSDesignToken<string>;
1954
538
 
1955
- /** @public @deprecated Use neutralFillInverseHover */
1956
- export declare const neutralContrastFillHover: CSSDesignToken<Swatch>;
539
+ export declare const colorPaletteGreenForeground1: CSSDesignToken<string>;
1957
540
 
1958
- /** @public @deprecated Use neutralFillInverseHoverDelta */
1959
- export declare const neutralContrastFillHoverDelta: CSSDesignToken<number>;
541
+ export declare const colorPaletteGreenForeground2: CSSDesignToken<string>;
1960
542
 
1961
- /** @public @deprecated Use neutralFillInverseRest */
1962
- export declare const neutralContrastFillRest: CSSDesignToken<Swatch>;
543
+ export declare const colorPaletteGreenForeground3: CSSDesignToken<string>;
1963
544
 
1964
- /** @public @deprecated Use neutralFillInverseRestDelta */
1965
- export declare const neutralContrastFillRestDelta: CSSDesignToken<number>;
545
+ export declare const colorPaletteLavenderBackground2: CSSDesignToken<string>;
1966
546
 
1967
- /** @public @deprecated Use neutralStrokeDividerRest */
1968
- export declare const neutralDivider: CSSDesignToken<Swatch>;
547
+ export declare const colorPaletteLavenderBorderActive: CSSDesignToken<string>;
1969
548
 
1970
- /** @public @deprecated Use neutralStrokeDividerRestDelta */
1971
- export declare const neutralDividerRestDelta: DesignToken<number>;
549
+ export declare const colorPaletteLavenderForeground2: CSSDesignToken<string>;
1972
550
 
1973
- /** @public */
1974
- export declare const neutralFillActive: CSSDesignToken<Swatch>;
551
+ export declare const colorPaletteLightGreenBackground1: CSSDesignToken<string>;
1975
552
 
1976
- /** @public */
1977
- export declare const neutralFillActiveDelta: DesignToken<number>;
553
+ export declare const colorPaletteLightGreenBackground2: CSSDesignToken<string>;
1978
554
 
1979
- /** @public @deprecated Use neutralFillLayerRest */
1980
- export declare const neutralFillCard: CSSDesignToken<Swatch>;
555
+ export declare const colorPaletteLightGreenBackground3: CSSDesignToken<string>;
1981
556
 
1982
- /** @public @deprecated Use neutralFillLayerRestDelta */
1983
- export declare const neutralFillCardDelta: DesignToken<number>;
557
+ export declare const colorPaletteLightGreenBorder1: CSSDesignToken<string>;
1984
558
 
1985
- /** @public */
1986
- export declare const neutralFillFocus: CSSDesignToken<Swatch>;
559
+ export declare const colorPaletteLightGreenBorder2: CSSDesignToken<string>;
1987
560
 
1988
- /** @public */
1989
- export declare const neutralFillFocusDelta: DesignToken<number>;
561
+ export declare const colorPaletteLightGreenBorderActive: CSSDesignToken<string>;
1990
562
 
1991
- /** @public */
1992
- export declare const neutralFillHover: CSSDesignToken<Swatch>;
563
+ export declare const colorPaletteLightGreenForeground1: CSSDesignToken<string>;
1993
564
 
1994
- /** @public */
1995
- export declare const neutralFillHoverDelta: DesignToken<number>;
565
+ export declare const colorPaletteLightGreenForeground2: CSSDesignToken<string>;
1996
566
 
1997
- /** @public */
1998
- export declare const neutralFillInputActive: CSSDesignToken<Swatch>;
567
+ export declare const colorPaletteLightGreenForeground3: CSSDesignToken<string>;
1999
568
 
2000
- /** @public */
2001
- export declare const neutralFillInputActiveDelta: DesignToken<number>;
569
+ export declare const colorPaletteLightTealBackground2: CSSDesignToken<string>;
2002
570
 
2003
- /** @public */
2004
- export declare const neutralFillInputAltActive: CSSDesignToken<Swatch>;
571
+ export declare const colorPaletteLightTealBorderActive: CSSDesignToken<string>;
2005
572
 
2006
- /** @public */
2007
- export declare const neutralFillInputAltActiveDelta: DesignToken<number>;
573
+ export declare const colorPaletteLightTealForeground2: CSSDesignToken<string>;
2008
574
 
2009
- /** @public */
2010
- export declare const neutralFillInputAltFocus: CSSDesignToken<Swatch>;
575
+ export declare const colorPaletteLilacBackground2: CSSDesignToken<string>;
2011
576
 
2012
- /** @public */
2013
- export declare const neutralFillInputAltFocusDelta: DesignToken<number>;
577
+ export declare const colorPaletteLilacBorderActive: CSSDesignToken<string>;
2014
578
 
2015
- /** @public */
2016
- export declare const neutralFillInputAltHover: CSSDesignToken<Swatch>;
579
+ export declare const colorPaletteLilacForeground2: CSSDesignToken<string>;
2017
580
 
2018
- /** @public */
2019
- export declare const neutralFillInputAltHoverDelta: DesignToken<number>;
581
+ export declare const colorPaletteMagentaBackground2: CSSDesignToken<string>;
2020
582
 
2021
- /** @public */
2022
- export declare const neutralFillInputAltRecipe: DesignToken<InteractiveColorRecipe>;
583
+ export declare const colorPaletteMagentaBorderActive: CSSDesignToken<string>;
2023
584
 
2024
- /** @public */
2025
- export declare const neutralFillInputAltRest: CSSDesignToken<Swatch>;
585
+ export declare const colorPaletteMagentaForeground2: CSSDesignToken<string>;
2026
586
 
2027
- /** @public */
2028
- export declare const neutralFillInputAltRestDelta: DesignToken<number>;
587
+ export declare const colorPaletteMarigoldBackground1: CSSDesignToken<string>;
2029
588
 
2030
- /** @public */
2031
- export declare const neutralFillInputFocus: CSSDesignToken<Swatch>;
589
+ export declare const colorPaletteMarigoldBackground2: CSSDesignToken<string>;
2032
590
 
2033
- /** @public */
2034
- export declare const neutralFillInputFocusDelta: DesignToken<number>;
591
+ export declare const colorPaletteMarigoldBackground3: CSSDesignToken<string>;
2035
592
 
2036
- /** @public */
2037
- export declare const neutralFillInputHover: CSSDesignToken<Swatch>;
593
+ export declare const colorPaletteMarigoldBorder1: CSSDesignToken<string>;
2038
594
 
2039
- /** @public */
2040
- export declare const neutralFillInputHoverDelta: DesignToken<number>;
595
+ export declare const colorPaletteMarigoldBorder2: CSSDesignToken<string>;
2041
596
 
2042
- /** @public */
2043
- export declare const neutralFillInputRecipe: DesignToken<InteractiveColorRecipe>;
597
+ export declare const colorPaletteMarigoldBorderActive: CSSDesignToken<string>;
2044
598
 
2045
- /** @public */
2046
- export declare const neutralFillInputRest: CSSDesignToken<Swatch>;
599
+ export declare const colorPaletteMarigoldForeground1: CSSDesignToken<string>;
2047
600
 
2048
- /** @public */
2049
- export declare const neutralFillInputRestDelta: DesignToken<number>;
601
+ export declare const colorPaletteMarigoldForeground2: CSSDesignToken<string>;
2050
602
 
2051
- /** @public @deprecated Not used */
2052
- export declare const neutralFillInverseActive: CSSDesignToken<Swatch>;
603
+ export declare const colorPaletteMarigoldForeground3: CSSDesignToken<string>;
2053
604
 
2054
- /** @public @deprecated Not used */
2055
- export declare const neutralFillInverseActiveDelta: CSSDesignToken<number>;
605
+ export declare const colorPaletteMinkBackground2: CSSDesignToken<string>;
2056
606
 
2057
- /** @public @deprecated Not used */
2058
- export declare const neutralFillInverseFocus: CSSDesignToken<Swatch>;
607
+ export declare const colorPaletteMinkBorderActive: CSSDesignToken<string>;
2059
608
 
2060
- /** @public @deprecated Not used */
2061
- export declare const neutralFillInverseFocusDelta: CSSDesignToken<number>;
609
+ export declare const colorPaletteMinkForeground2: CSSDesignToken<string>;
2062
610
 
2063
- /** @public @deprecated Not used */
2064
- export declare const neutralFillInverseHover: CSSDesignToken<Swatch>;
611
+ export declare const colorPaletteNavyBackground2: CSSDesignToken<string>;
2065
612
 
2066
- /** @public @deprecated Not used */
2067
- export declare const neutralFillInverseHoverDelta: CSSDesignToken<number>;
613
+ export declare const colorPaletteNavyBorderActive: CSSDesignToken<string>;
2068
614
 
2069
- /** @public @deprecated Not used */
2070
- export declare const neutralFillInverseRecipe: DesignToken<InteractiveColorRecipe>;
615
+ export declare const colorPaletteNavyForeground2: CSSDesignToken<string>;
2071
616
 
2072
- /** @public @deprecated Not used */
2073
- export declare const neutralFillInverseRest: CSSDesignToken<Swatch>;
617
+ export declare const colorPalettePeachBackground2: CSSDesignToken<string>;
2074
618
 
2075
- /** @public @deprecated Not used */
2076
- export declare const neutralFillInverseRestDelta: CSSDesignToken<number>;
619
+ export declare const colorPalettePeachBorderActive: CSSDesignToken<string>;
2077
620
 
2078
- /** @public */
2079
- export declare const neutralFillLayerActive: CSSDesignToken<Swatch>;
621
+ export declare const colorPalettePeachForeground2: CSSDesignToken<string>;
2080
622
 
2081
- /** @public */
2082
- export declare const neutralFillLayerActiveDelta: DesignToken<number>;
623
+ export declare const colorPalettePinkBackground2: CSSDesignToken<string>;
2083
624
 
2084
- /** @public */
2085
- export declare const neutralFillLayerAltRecipe: DesignToken<InteractiveColorRecipe>;
625
+ export declare const colorPalettePinkBorderActive: CSSDesignToken<string>;
2086
626
 
2087
- /** @public */
2088
- export declare const neutralFillLayerAltRest: CSSDesignToken<Swatch>;
627
+ export declare const colorPalettePinkForeground2: CSSDesignToken<string>;
2089
628
 
2090
- /** @public */
2091
- export declare const neutralFillLayerAltRestDelta: DesignToken<number>;
629
+ export declare const colorPalettePlatinumBackground2: CSSDesignToken<string>;
2092
630
 
2093
- /** @public */
2094
- export declare const neutralFillLayerHover: CSSDesignToken<Swatch>;
631
+ export declare const colorPalettePlatinumBorderActive: CSSDesignToken<string>;
2095
632
 
2096
- /** @public */
2097
- export declare const neutralFillLayerHoverDelta: DesignToken<number>;
633
+ export declare const colorPalettePlatinumForeground2: CSSDesignToken<string>;
2098
634
 
2099
- /** @public */
2100
- export declare const neutralFillLayerRecipe: DesignToken<InteractiveColorRecipe>;
635
+ export declare const colorPalettePlumBackground2: CSSDesignToken<string>;
2101
636
 
2102
- /** @public */
2103
- export declare const neutralFillLayerRest: CSSDesignToken<Swatch>;
637
+ export declare const colorPalettePlumBorderActive: CSSDesignToken<string>;
2104
638
 
2105
- /** @public */
2106
- export declare const neutralFillLayerRestDelta: DesignToken<number>;
639
+ export declare const colorPalettePlumForeground2: CSSDesignToken<string>;
2107
640
 
2108
- /** @public */
2109
- export declare const neutralFillRecipe: DesignToken<InteractiveColorRecipe>;
641
+ export declare const colorPalettePumpkinBackground2: CSSDesignToken<string>;
2110
642
 
2111
- /** @public */
2112
- export declare const neutralFillRest: CSSDesignToken<Swatch>;
643
+ export declare const colorPalettePumpkinBorderActive: CSSDesignToken<string>;
2113
644
 
2114
- /** @public */
2115
- export declare const neutralFillRestDelta: DesignToken<number>;
645
+ export declare const colorPalettePumpkinForeground2: CSSDesignToken<string>;
2116
646
 
2117
- /** @public */
2118
- export declare const neutralFillSecondaryActive: CSSDesignToken<Swatch>;
647
+ export declare const colorPalettePurpleBackground2: CSSDesignToken<string>;
2119
648
 
2120
- /** @public */
2121
- export declare const neutralFillSecondaryActiveDelta: DesignToken<number>;
649
+ export declare const colorPalettePurpleBorderActive: CSSDesignToken<string>;
2122
650
 
2123
- /** @public */
2124
- export declare const neutralFillSecondaryFocus: CSSDesignToken<Swatch>;
651
+ export declare const colorPalettePurpleForeground2: CSSDesignToken<string>;
2125
652
 
2126
- /** @public */
2127
- export declare const neutralFillSecondaryFocusDelta: DesignToken<number>;
653
+ export declare const colorPaletteRedBackground1: CSSDesignToken<string>;
2128
654
 
2129
- /** @public */
2130
- export declare const neutralFillSecondaryHover: CSSDesignToken<Swatch>;
655
+ export declare const colorPaletteRedBackground2: CSSDesignToken<string>;
2131
656
 
2132
- /** @public */
2133
- export declare const neutralFillSecondaryHoverDelta: DesignToken<number>;
657
+ export declare const colorPaletteRedBackground3: CSSDesignToken<string>;
2134
658
 
2135
- /** @public */
2136
- export declare const neutralFillSecondaryRecipe: DesignToken<InteractiveColorRecipe>;
659
+ export declare const colorPaletteRedBorder1: CSSDesignToken<string>;
2137
660
 
2138
- /** @public */
2139
- export declare const neutralFillSecondaryRest: CSSDesignToken<Swatch>;
661
+ export declare const colorPaletteRedBorder2: CSSDesignToken<string>;
2140
662
 
2141
- /** @public */
2142
- export declare const neutralFillSecondaryRestDelta: DesignToken<number>;
663
+ export declare const colorPaletteRedBorderActive: CSSDesignToken<string>;
2143
664
 
2144
- /** @public */
2145
- export declare const neutralFillStealthActive: CSSDesignToken<Swatch>;
665
+ export declare const colorPaletteRedForeground1: CSSDesignToken<string>;
2146
666
 
2147
- /** @public */
2148
- export declare const neutralFillStealthActiveDelta: DesignToken<number>;
667
+ export declare const colorPaletteRedForeground2: CSSDesignToken<string>;
2149
668
 
2150
- /** @public */
2151
- export declare const neutralFillStealthFocus: CSSDesignToken<Swatch>;
669
+ export declare const colorPaletteRedForeground3: CSSDesignToken<string>;
2152
670
 
2153
- /** @public */
2154
- export declare const neutralFillStealthFocusDelta: DesignToken<number>;
671
+ export declare const colorPaletteRoyalBlueBackground2: CSSDesignToken<string>;
2155
672
 
2156
- /** @public */
2157
- export declare const neutralFillStealthHover: CSSDesignToken<Swatch>;
673
+ export declare const colorPaletteRoyalBlueBorderActive: CSSDesignToken<string>;
2158
674
 
2159
- /** @public */
2160
- export declare const neutralFillStealthHoverDelta: DesignToken<number>;
675
+ export declare const colorPaletteRoyalBlueForeground2: CSSDesignToken<string>;
2161
676
 
2162
- /** @public */
2163
- export declare const neutralFillStealthRecipe: DesignToken<InteractiveColorRecipe>;
677
+ export declare const colorPaletteSeafoamBackground2: CSSDesignToken<string>;
2164
678
 
2165
- /** @public */
2166
- export declare const neutralFillStealthRest: CSSDesignToken<Swatch>;
679
+ export declare const colorPaletteSeafoamBorderActive: CSSDesignToken<string>;
2167
680
 
2168
- /** @public */
2169
- export declare const neutralFillStealthRestDelta: DesignToken<number>;
681
+ export declare const colorPaletteSeafoamForeground2: CSSDesignToken<string>;
2170
682
 
2171
- /** @public */
2172
- export declare const neutralFillStrongActive: CSSDesignToken<Swatch>;
683
+ export declare const colorPaletteSteelBackground2: CSSDesignToken<string>;
2173
684
 
2174
- /** @public */
2175
- export declare const neutralFillStrongActiveDelta: DesignToken<number>;
685
+ export declare const colorPaletteSteelBorderActive: CSSDesignToken<string>;
2176
686
 
2177
- /** @public */
2178
- export declare const neutralFillStrongFocus: CSSDesignToken<Swatch>;
687
+ export declare const colorPaletteSteelForeground2: CSSDesignToken<string>;
2179
688
 
2180
- /** @public */
2181
- export declare const neutralFillStrongFocusDelta: DesignToken<number>;
689
+ export declare const colorPaletteTealBackground2: CSSDesignToken<string>;
2182
690
 
2183
- /** @public */
2184
- export declare const neutralFillStrongHover: CSSDesignToken<Swatch>;
691
+ export declare const colorPaletteTealBorderActive: CSSDesignToken<string>;
2185
692
 
2186
- /** @public */
2187
- export declare const neutralFillStrongHoverDelta: DesignToken<number>;
693
+ export declare const colorPaletteTealForeground2: CSSDesignToken<string>;
2188
694
 
2189
- /** @public */
2190
- export declare const neutralFillStrongRecipe: DesignToken<InteractiveColorRecipe>;
695
+ export declare const colorPaletteYellowBackground1: CSSDesignToken<string>;
2191
696
 
2192
- /** @public */
2193
- export declare const neutralFillStrongRest: CSSDesignToken<Swatch>;
697
+ export declare const colorPaletteYellowBackground2: CSSDesignToken<string>;
2194
698
 
2195
- /** @public */
2196
- export declare const neutralFillStrongRestDelta: DesignToken<number>;
699
+ export declare const colorPaletteYellowBackground3: CSSDesignToken<string>;
2197
700
 
2198
- /** @public @deprecated Use neutralFillStrongActive */
2199
- export declare const neutralFillToggleActive: CSSDesignToken<Swatch>;
701
+ export declare const colorPaletteYellowBorder1: CSSDesignToken<string>;
2200
702
 
2201
- /** @public @deprecated Use neutralFillStrongActiveDelta */
2202
- export declare const neutralFillToggleActiveDelta: DesignToken<number>;
703
+ export declare const colorPaletteYellowBorder2: CSSDesignToken<string>;
2203
704
 
2204
- /** @public @deprecated Use neutralFillStrongFocus */
2205
- export declare const neutralFillToggleFocus: CSSDesignToken<Swatch>;
705
+ export declare const colorPaletteYellowBorderActive: CSSDesignToken<string>;
2206
706
 
2207
- /** @public @deprecated Use neutralFillStrongFocusDelta */
2208
- export declare const neutralFillToggleFocusDelta: DesignToken<number>;
707
+ export declare const colorPaletteYellowForeground1: CSSDesignToken<string>;
2209
708
 
2210
- /** @public @deprecated Use neutralFillStrongHover */
2211
- export declare const neutralFillToggleHover: CSSDesignToken<Swatch>;
709
+ export declare const colorPaletteYellowForeground2: CSSDesignToken<string>;
2212
710
 
2213
- /** @public @deprecated Use neutralFillStrongHoverDelta */
2214
- export declare const neutralFillToggleHoverDelta: DesignToken<number>;
711
+ export declare const colorPaletteYellowForeground3: CSSDesignToken<string>;
2215
712
 
2216
- /** @public @deprecated Use neutralFillStrongRest */
2217
- export declare const neutralFillToggleRest: CSSDesignToken<Swatch>;
713
+ export declare const colorScrollbarOverlay: CSSDesignToken<string>;
2218
714
 
2219
- /** @public @deprecated Use neutralFillStrongRestDelta */
2220
- export declare const neutralFillToggleRestDelta: DesignToken<number>;
715
+ export declare const colorStrokeFocus1: CSSDesignToken<string>;
2221
716
 
2222
- /** @public @deprecated Use focusStrokeOuter */
2223
- export declare const neutralFocus: CSSDesignToken<Swatch>;
717
+ export declare const colorStrokeFocus2: CSSDesignToken<string>;
2224
718
 
2225
- /** @public @deprecated Use focusStrokeInner */
2226
- export declare const neutralFocusInnerAccent: CSSDesignToken<Swatch>;
719
+ export declare const colorSubtleBackground: CSSDesignToken<string>;
2227
720
 
2228
- /** @public */
2229
- export declare const neutralForegroundActive: CSSDesignToken<Swatch>;
721
+ export declare const colorSubtleBackgroundHover: CSSDesignToken<string>;
2230
722
 
2231
- /** @public */
2232
- export declare const neutralForegroundFocus: CSSDesignToken<Swatch>;
723
+ export declare const colorSubtleBackgroundInverted: CSSDesignToken<string>;
2233
724
 
2234
- /** @public */
2235
- export declare const neutralForegroundHint: CSSDesignToken<Swatch>;
725
+ export declare const colorSubtleBackgroundInvertedHover: CSSDesignToken<string>;
2236
726
 
2237
- /** @public */
2238
- export declare const neutralForegroundHintRecipe: DesignToken<ColorRecipe>;
727
+ export declare const colorSubtleBackgroundInvertedPressed: CSSDesignToken<string>;
2239
728
 
2240
- /** @public */
2241
- export declare const neutralForegroundHover: CSSDesignToken<Swatch>;
729
+ export declare const colorSubtleBackgroundInvertedSelected: CSSDesignToken<string>;
2242
730
 
2243
- /** @public */
2244
- export declare const neutralForegroundRecipe: DesignToken<InteractiveColorRecipe>;
731
+ export declare const colorSubtleBackgroundLightAlphaHover: CSSDesignToken<string>;
2245
732
 
2246
- /** @public */
2247
- export declare const neutralForegroundRest: CSSDesignToken<Swatch>;
733
+ export declare const colorSubtleBackgroundLightAlphaPressed: CSSDesignToken<string>;
2248
734
 
2249
- /** @public */
2250
- export declare const neutralLayer1: CSSDesignToken<Swatch>;
735
+ export declare const colorSubtleBackgroundLightAlphaSelected: CSSDesignToken<string>;
2251
736
 
2252
- /** @public */
2253
- export declare const neutralLayer1Recipe: DesignToken<ColorRecipe>;
737
+ export declare const colorSubtleBackgroundPressed: CSSDesignToken<string>;
2254
738
 
2255
- /** @public */
2256
- export declare const neutralLayer2: CSSDesignToken<Swatch>;
739
+ export declare const colorSubtleBackgroundSelected: CSSDesignToken<string>;
2257
740
 
2258
- /** @public */
2259
- export declare const neutralLayer2Recipe: DesignToken<ColorRecipe>;
741
+ export declare const colorTransparentBackground: CSSDesignToken<string>;
2260
742
 
2261
- /** @public */
2262
- export declare const neutralLayer3: CSSDesignToken<Swatch>;
743
+ export declare const colorTransparentBackgroundHover: CSSDesignToken<string>;
2263
744
 
2264
- /** @public */
2265
- export declare const neutralLayer3Recipe: DesignToken<ColorRecipe>;
745
+ export declare const colorTransparentBackgroundPressed: CSSDesignToken<string>;
746
+
747
+ export declare const colorTransparentBackgroundSelected: CSSDesignToken<string>;
748
+
749
+ export declare const colorTransparentStroke: CSSDesignToken<string>;
750
+
751
+ export declare const colorTransparentStrokeDisabled: CSSDesignToken<string>;
752
+
753
+ export declare const colorTransparentStrokeInteractive: CSSDesignToken<string>;
754
+
755
+ /**
756
+ * The base class used for constructing a fluent-badge custom element
757
+ * @public
758
+ */
759
+ export declare class CounterBadge extends FASTElement {
760
+ /**
761
+ * The appearance the badge should have.
762
+ *
763
+ * @public
764
+ * @remarks
765
+ * HTML Attribute: appearance
766
+ */
767
+ appearance: CounterBadgeAppearance;
768
+ /**
769
+ * The color the badge should have.
770
+ *
771
+ * @public
772
+ * @remarks
773
+ * HTML Attribute: color
774
+ */
775
+ color: CounterBadgeColor;
776
+ /**
777
+ * The shape the badge should have.
778
+ *
779
+ * @public
780
+ * @remarks
781
+ * HTML Attribute: shape
782
+ */
783
+ shape: CounterBadgeShape;
784
+ /**
785
+ * The size the badge should have.
786
+ *
787
+ * @public
788
+ * @remarks
789
+ * HTML Attribute: size
790
+ */
791
+ size: CounterBadgeSize;
792
+ /**
793
+ * The count the badge should have.
794
+ *
795
+ * @public
796
+ * @remarks
797
+ * HTML Attribute: count
798
+ */
799
+ count: number;
800
+ protected countChanged(): void;
801
+ /**
802
+ * Max number to be displayed
803
+ *
804
+ * @public
805
+ * @remarks
806
+ * HTML Attribute: overflow-count
807
+ */
808
+ overflowCount: number;
809
+ protected overflowCountChanged(): void;
810
+ /**
811
+ * If the badge should be shown when count is 0
812
+ *
813
+ * @public
814
+ * @remarks
815
+ * HTML Attribute: show-zero
816
+ */
817
+ showZero: boolean;
818
+ /**
819
+ * If a dot should be displayed without the count
820
+ *
821
+ * @public
822
+ * @remarks
823
+ * HTML Attribute: dot
824
+ */
825
+ dot: boolean;
826
+ /**
827
+ * @internal
828
+ * Function to set the count
829
+ * This is the default slotted content for the counter badge
830
+ * If children are slotted, that will override the value returned
831
+ */
832
+ setCount(): string | void;
833
+ }
2266
834
 
2267
- /** @public */
2268
- export declare const neutralLayer4: CSSDesignToken<Swatch>;
835
+ /**
836
+ * Mark internal because exporting class and interface of the same name
837
+ * confuses API extractor.
838
+ * TODO: Below will be unnecessary when Badge class gets updated
839
+ * @internal
840
+ */
841
+ export declare interface CounterBadge extends StartEnd {
842
+ }
2269
843
 
2270
- /** @public */
2271
- export declare const neutralLayer4Recipe: DesignToken<ColorRecipe>;
844
+ /**
845
+ * CounterBadgeAppearance constants
846
+ * @public
847
+ */
848
+ export declare const CounterBadgeAppearance: {
849
+ readonly filled: "filled";
850
+ readonly ghost: "ghost";
851
+ };
2272
852
 
2273
- /** @public */
2274
- export declare const neutralLayerCardContainer: CSSDesignToken<Swatch>;
853
+ /**
854
+ * A CounterBadge can have an appearance of filled or ghost
855
+ * @public
856
+ */
857
+ export declare type CounterBadgeAppearance = ValuesOf<typeof CounterBadgeAppearance>;
2275
858
 
2276
- /** @public */
2277
- export declare const neutralLayerCardContainerRecipe: DesignToken<ColorRecipe>;
859
+ /**
860
+ * CounterBadgeColor constants
861
+ * @public
862
+ */
863
+ export declare const CounterBadgeColor: {
864
+ readonly brand: "brand";
865
+ readonly danger: "danger";
866
+ readonly important: "important";
867
+ readonly informative: "informative";
868
+ readonly severe: "severe";
869
+ readonly subtle: "subtle";
870
+ readonly success: "success";
871
+ readonly warning: "warning";
872
+ };
2278
873
 
2279
- /** @public */
2280
- export declare const neutralLayerFloating: CSSDesignToken<Swatch>;
874
+ /**
875
+ * A CounterBadge can be one of preset colors
876
+ * @public
877
+ */
878
+ export declare type CounterBadgeColor = ValuesOf<typeof CounterBadgeColor>;
2281
879
 
2282
- /** @public */
2283
- export declare const neutralLayerFloatingRecipe: DesignToken<ColorRecipe>;
880
+ /**
881
+ * The Fluent CounterBadge Element. Implements {@link @microsoft/fast-foundation#Badge },
882
+ * {@link @microsoft/fast-foundation#badgeTemplate}
883
+ *
884
+ *
885
+ * @public
886
+ * @remarks
887
+ * HTML Element: \<fluent-counter-badge\>
888
+ */
889
+ export declare const CounterBadgeDefinition: FASTElementDefinition<typeof CounterBadge>;
2284
890
 
2285
- /** @public @deprecated Use neutralLayer1 */
2286
- export declare const neutralLayerL1: CSSDesignToken<Swatch>;
891
+ /**
892
+ * CounterBadge options
893
+ * @public
894
+ */
895
+ export declare type CounterBadgeOptions = BadgeOptions;
2287
896
 
2288
- /** @public @deprecated Use neutralLayer2 */
2289
- export declare const neutralLayerL2: CSSDesignToken<Swatch>;
897
+ /**
898
+ * A CounterBadge shape can be circular or rounded.
899
+ * @public
900
+ */
901
+ export declare const CounterBadgeShape: {
902
+ readonly circular: "circular";
903
+ readonly rounded: "rounded";
904
+ };
2290
905
 
2291
- /** @public @deprecated Use neutralLayer3 */
2292
- export declare const neutralLayerL3: CSSDesignToken<Swatch>;
906
+ /**
907
+ * A CounterBadge can be one of preset colors
908
+ * @public
909
+ */
910
+ export declare type CounterBadgeShape = ValuesOf<typeof CounterBadgeShape>;
2293
911
 
2294
- /** @public @deprecated Use neutralLayer4 */
2295
- export declare const neutralLayerL4: CSSDesignToken<Swatch>;
912
+ /**
913
+ * A CounterBadge can be square, circular or rounded.
914
+ * @public
915
+ */
916
+ export declare const CounterBadgeSize: {
917
+ readonly tiny: "tiny";
918
+ readonly extraSmall: "extra-small";
919
+ readonly small: "small";
920
+ readonly medium: "medium";
921
+ readonly large: "large";
922
+ readonly extraLarge: "extra-large";
923
+ };
2296
924
 
2297
- /** @public @deprecated Use neutralStrokeActive */
2298
- export declare const neutralOutlineActive: CSSDesignToken<Swatch>;
925
+ /**
926
+ * A CounterBadge can be on of several preset sizes.
927
+ * @public
928
+ */
929
+ export declare type CounterBadgeSize = ValuesOf<typeof CounterBadgeSize>;
2299
930
 
2300
- /** @public @deprecated Use neutralStrokeFocus */
2301
- export declare const neutralOutlineFocus: CSSDesignToken<Swatch>;
931
+ /** Badge styles
932
+ * @public
933
+ */
934
+ export declare const CounterBadgeStyles: ElementStyles;
2302
935
 
2303
- /** @public @deprecated Use neutralStrokeHover */
2304
- export declare const neutralOutlineHover: CSSDesignToken<Swatch>;
936
+ /**
937
+ * The template for the Counter Badge component.
938
+ * @public
939
+ */
940
+ export declare const CounterBadgeTemplate: ElementViewTemplate<CounterBadge>;
2305
941
 
2306
- /** @public @deprecated Use neutralStrokeRest */
2307
- export declare const neutralOutlineRest: CSSDesignToken<Swatch>;
942
+ export declare const curveAccelerateMax: CSSDesignToken<string>;
2308
943
 
2309
- /** @public */
2310
- export declare const neutralPalette: DesignToken<Palette<Swatch>>;
944
+ export declare const curveAccelerateMid: CSSDesignToken<string>;
2311
945
 
2312
- /** @public */
2313
- export declare const neutralStrokeActive: CSSDesignToken<Swatch>;
946
+ export declare const curveAccelerateMin: CSSDesignToken<string>;
2314
947
 
2315
- /** @public */
2316
- export declare const neutralStrokeActiveDelta: DesignToken<number>;
948
+ export declare const curveDecelerateMax: CSSDesignToken<string>;
2317
949
 
2318
- /** @public */
2319
- export declare const neutralStrokeControlActive: CSSDesignToken<Swatch>;
950
+ export declare const curveDecelerateMid: CSSDesignToken<string>;
2320
951
 
2321
- /** @public */
2322
- export declare const neutralStrokeControlActiveDelta: DesignToken<number>;
952
+ export declare const curveDecelerateMin: CSSDesignToken<string>;
2323
953
 
2324
- /** @public */
2325
- export declare const neutralStrokeControlFocus: CSSDesignToken<Swatch>;
954
+ export declare const curveEasyEase: CSSDesignToken<string>;
2326
955
 
2327
- /** @public */
2328
- export declare const neutralStrokeControlFocusDelta: DesignToken<number>;
956
+ export declare const curveEasyEaseMax: CSSDesignToken<string>;
2329
957
 
2330
- /** @public */
2331
- export declare const neutralStrokeControlHover: CSSDesignToken<Swatch>;
958
+ export declare const curveLinear: CSSDesignToken<string>;
2332
959
 
2333
- /** @public */
2334
- export declare const neutralStrokeControlHoverDelta: DesignToken<number>;
960
+ export declare const durationFast: CSSDesignToken<string>;
2335
961
 
2336
- /** @public */
2337
- export declare const neutralStrokeControlRecipe: DesignToken<InteractiveColorRecipe>;
962
+ export declare const durationFaster: CSSDesignToken<string>;
2338
963
 
2339
- /** @public */
2340
- export declare const neutralStrokeControlRest: CSSDesignToken<Swatch>;
964
+ export declare const durationNormal: CSSDesignToken<string>;
2341
965
 
2342
- /** @public */
2343
- export declare const neutralStrokeControlRestDelta: DesignToken<number>;
966
+ export declare const durationSlow: CSSDesignToken<string>;
2344
967
 
2345
- /** @public */
2346
- export declare const neutralStrokeDividerRecipe: DesignToken<ColorRecipe>;
968
+ export declare const durationSlower: CSSDesignToken<string>;
2347
969
 
2348
- /** @public */
2349
- export declare const neutralStrokeDividerRest: CSSDesignToken<Swatch>;
970
+ export declare const durationUltraFast: CSSDesignToken<string>;
2350
971
 
2351
- /** @public */
2352
- export declare const neutralStrokeDividerRestDelta: DesignToken<number>;
972
+ export declare const durationUltraSlow: CSSDesignToken<string>;
2353
973
 
2354
- /** @public */
2355
- export declare const neutralStrokeFocus: CSSDesignToken<Swatch>;
974
+ export declare const fontFamilyBase: CSSDesignToken<string>;
2356
975
 
2357
- /** @public */
2358
- export declare const neutralStrokeFocusDelta: DesignToken<number>;
976
+ export declare const fontFamilyMonospace: CSSDesignToken<string>;
2359
977
 
2360
- /** @public */
2361
- export declare const neutralStrokeHover: CSSDesignToken<Swatch>;
978
+ export declare const fontFamilyNumeric: CSSDesignToken<string>;
2362
979
 
2363
- /** @public */
2364
- export declare const neutralStrokeHoverDelta: DesignToken<number>;
980
+ export declare const fontSizeBase100: CSSDesignToken<string>;
2365
981
 
2366
- /** @public */
2367
- export declare const neutralStrokeInputActive: CSSDesignToken<Swatch>;
982
+ export declare const fontSizeBase200: CSSDesignToken<string>;
2368
983
 
2369
- /** @public */
2370
- export declare const neutralStrokeInputFocus: CSSDesignToken<Swatch>;
984
+ export declare const fontSizeBase300: CSSDesignToken<string>;
2371
985
 
2372
- /** @public */
2373
- export declare const neutralStrokeInputHover: CSSDesignToken<Swatch>;
986
+ export declare const fontSizeBase400: CSSDesignToken<string>;
2374
987
 
2375
- /** @public */
2376
- export declare const neutralStrokeInputRecipe: DesignToken<InteractiveColorRecipe>;
988
+ export declare const fontSizeBase500: CSSDesignToken<string>;
2377
989
 
2378
- /** @public */
2379
- export declare const neutralStrokeInputRest: CSSDesignToken<Swatch>;
990
+ export declare const fontSizeBase600: CSSDesignToken<string>;
2380
991
 
2381
- /** @public */
2382
- export declare const neutralStrokeLayerActive: CSSDesignToken<Swatch>;
992
+ export declare const fontSizeHero1000: CSSDesignToken<string>;
2383
993
 
2384
- /** @public */
2385
- export declare const neutralStrokeLayerActiveDelta: DesignToken<number>;
994
+ export declare const fontSizeHero700: CSSDesignToken<string>;
2386
995
 
2387
- /** @public */
2388
- export declare const neutralStrokeLayerHover: CSSDesignToken<Swatch>;
996
+ export declare const fontSizeHero800: CSSDesignToken<string>;
2389
997
 
2390
- /** @public */
2391
- export declare const neutralStrokeLayerHoverDelta: DesignToken<number>;
998
+ export declare const fontSizeHero900: CSSDesignToken<string>;
2392
999
 
2393
- /** @public */
2394
- export declare const neutralStrokeLayerRecipe: DesignToken<InteractiveColorRecipe>;
1000
+ export declare const fontWeightBold: CSSDesignToken<string>;
2395
1001
 
2396
- /** @public */
2397
- export declare const neutralStrokeLayerRest: CSSDesignToken<Swatch>;
1002
+ export declare const fontWeightMedium: CSSDesignToken<string>;
2398
1003
 
2399
- /** @public */
2400
- export declare const neutralStrokeLayerRestDelta: DesignToken<number>;
1004
+ export declare const fontWeightRegular: CSSDesignToken<string>;
2401
1005
 
2402
- /** @public */
2403
- export declare const neutralStrokeRecipe: DesignToken<InteractiveColorRecipe>;
1006
+ export declare const fontWeightSemibold: CSSDesignToken<string>;
2404
1007
 
2405
- /** @public */
2406
- export declare const neutralStrokeRest: CSSDesignToken<Swatch>;
1008
+ export declare const lineHeightBase100: CSSDesignToken<string>;
2407
1009
 
2408
- /** @public */
2409
- export declare const neutralStrokeRestDelta: DesignToken<number>;
1010
+ export declare const lineHeightBase200: CSSDesignToken<string>;
2410
1011
 
2411
- /** @public */
2412
- export declare const neutralStrokeStrongActive: CSSDesignToken<Swatch>;
1012
+ export declare const lineHeightBase300: CSSDesignToken<string>;
2413
1013
 
2414
- /** @public */
2415
- export declare const neutralStrokeStrongActiveDelta: DesignToken<number>;
1014
+ export declare const lineHeightBase400: CSSDesignToken<string>;
2416
1015
 
2417
- /** @public */
2418
- export declare const neutralStrokeStrongFocus: CSSDesignToken<Swatch>;
1016
+ export declare const lineHeightBase500: CSSDesignToken<string>;
2419
1017
 
2420
- /** @public */
2421
- export declare const neutralStrokeStrongFocusDelta: DesignToken<number>;
1018
+ export declare const lineHeightBase600: CSSDesignToken<string>;
2422
1019
 
2423
- /** @public */
2424
- export declare const neutralStrokeStrongHover: CSSDesignToken<Swatch>;
1020
+ export declare const lineHeightHero1000: CSSDesignToken<string>;
2425
1021
 
2426
- /** @public */
2427
- export declare const neutralStrokeStrongHoverDelta: DesignToken<number>;
1022
+ export declare const lineHeightHero700: CSSDesignToken<string>;
2428
1023
 
2429
- /** @public */
2430
- export declare const neutralStrokeStrongRecipe: DesignToken<InteractiveColorRecipe>;
1024
+ export declare const lineHeightHero800: CSSDesignToken<string>;
2431
1025
 
2432
- /** @public */
2433
- export declare const neutralStrokeStrongRest: CSSDesignToken<Swatch>;
1026
+ export declare const lineHeightHero900: CSSDesignToken<string>;
2434
1027
 
2435
1028
  /**
2436
- * The Fluent number field class
2437
- * @internal
1029
+ * The base class used for constructing a fluent-progress-bar custom element
1030
+ * @public
2438
1031
  */
2439
- export declare class NumberField extends NumberField_2 {
1032
+ export declare class ProgressBar extends FASTProgress {
2440
1033
  /**
2441
- * The appearance of the element.
1034
+ * The thickness of the progress bar
2442
1035
  *
2443
1036
  * @public
2444
1037
  * @remarks
2445
- * HTML Attribute: appearance
1038
+ * HTML Attribute: thickness
2446
1039
  */
2447
- appearance: NumberFieldAppearance;
1040
+ thickness: ProgressBarThickness;
2448
1041
  /**
2449
- * @internal
1042
+ * The shape of the progress bar
1043
+ * @public
1044
+ * @remarks
1045
+ * HTML Attribute: shape
1046
+ */
1047
+ shape: ProgressBarShape;
1048
+ /**
1049
+ * The validation state of the progress bar
1050
+ * @public
1051
+ * @remarks
1052
+ * HTML Attribute: validation-state
2450
1053
  */
2451
- connectedCallback(): void;
1054
+ validationState: ProgressBarValidationState | null;
2452
1055
  }
2453
1056
 
2454
1057
  /**
2455
- * Number field appearances
1058
+ * The Fluent ProgressBar Element.
1059
+ *
1060
+ *
2456
1061
  * @public
1062
+ * @remarks
1063
+ * HTML Element: \<fluent-progress-bar\>
2457
1064
  */
2458
- export declare type NumberFieldAppearance = 'filled' | 'outline';
1065
+ export declare const ProgressBarDefinition: FASTElementDefinition<typeof ProgressBar>;
2459
1066
 
2460
1067
  /**
2461
- * Styles for NumberField
1068
+ * ProgressBarShape Constants
2462
1069
  * @public
2463
1070
  */
2464
- export declare const numberFieldStyles: (context: ElementDefinitionContext, definition: NumberFieldOptions) => ElementStyles;
1071
+ export declare const ProgressBarShape: {
1072
+ readonly rounded: "rounded";
1073
+ readonly square: "square";
1074
+ };
2465
1075
 
2466
1076
  /**
2467
- * Styles for Option
1077
+ * Applies bar shape to the content
2468
1078
  * @public
2469
1079
  */
2470
- export declare const OptionStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
2471
-
2472
- /**
2473
- * @internal
2474
- */
2475
- export declare const OutlineButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
1080
+ export declare type ProgressBarShape = ValuesOf<typeof ProgressBarShape>;
2476
1081
 
2477
- /** @public @deprecated Use strokeWidth */
2478
- export declare const outlineWidth: CSSDesignToken<number>;
2479
-
2480
- /**
2481
- * A collection of {@link Swatch} instances
1082
+ /** Text styles
2482
1083
  * @public
2483
1084
  */
2484
- export declare interface Palette<T extends Swatch = Swatch> {
2485
- readonly source: T;
2486
- readonly swatches: ReadonlyArray<T>;
2487
- /**
2488
- * Returns a swatch from the palette that most closely matches
2489
- * the contrast ratio provided to a provided reference.
2490
- */
2491
- colorContrast(reference: Swatch, contrast: number, initialIndex?: number, direction?: 1 | -1): T;
2492
- /**
2493
- * Returns the index of the palette that most closely matches
2494
- * the relativeLuminance of the provided swatch
2495
- */
2496
- closestIndexOf(reference: RelativeLuminance): number;
2497
- /**
2498
- * Gets a swatch by index. Index is clamped to the limits
2499
- * of the palette so a Swatch will always be returned.
2500
- */
2501
- get(index: number): T;
2502
- }
2503
-
2504
- /** @public */
2505
- export declare type PaletteRGB = Palette<SwatchRGB>;
1085
+ export declare const ProgressBarStyles: ElementStyles;
2506
1086
 
2507
- /** @public */
2508
- export declare const PaletteRGB: Readonly<{
2509
- create: typeof create;
2510
- from: typeof from;
2511
- }>;
1087
+ export declare const ProgressBarTemplate: ElementViewTemplate<ProgressBar>;
2512
1088
 
2513
1089
  /**
2514
- * Options to tailor the generation of the color palette.
1090
+ * ProgressBarThickness Constants
2515
1091
  * @public
2516
1092
  */
2517
- declare interface PaletteRGBOptions {
2518
- /**
2519
- * The minimum amount of contrast between steps in the palette. Default 1.03.
2520
- * Recommended increments by hundredths.
2521
- */
2522
- stepContrast: number;
2523
- /**
2524
- * Multiplier for increasing step contrast as the swatches darken. Default 0.03.
2525
- * Recommended increments by hundredths.
2526
- */
2527
- stepContrastRamp: number;
2528
- /**
2529
- * Whether to keep the exact source color in the target palette. Default false.
2530
- * Only recommended when the exact color is required and used in stateful interaction recipes like hover.
2531
- * Note that custom recipes can still access the source color even if it's not in the ramp,
2532
- * but turning this on will potentially increase the contrast between steps toward the ends of the palette.
2533
- */
2534
- preserveSource: boolean;
2535
- }
1093
+ export declare const ProgressBarThickness: {
1094
+ readonly medium: "medium";
1095
+ readonly large: "large";
1096
+ };
2536
1097
 
2537
1098
  /**
2538
- * Progress base class
1099
+ * Applies bar thickness to the content
2539
1100
  * @public
2540
1101
  */
2541
- export declare class Progress extends BaseProgress {
2542
- }
1102
+ export declare type ProgressBarThickness = ValuesOf<typeof ProgressBarThickness>;
2543
1103
 
2544
1104
  /**
2545
- * Progress Ring base class
1105
+ * ProgressBarValidationState Constants
2546
1106
  * @public
2547
1107
  */
2548
- export declare class ProgressRing extends BaseProgress {
2549
- }
1108
+ export declare const ProgressBarValidationState: {
1109
+ readonly success: "success";
1110
+ readonly warning: "warning";
1111
+ readonly error: "error";
1112
+ };
2550
1113
 
2551
1114
  /**
2552
- * Styles for ProgressRing
1115
+ * Applies validation state to the content
2553
1116
  * @public
2554
1117
  */
2555
- export declare const progressRingStyles: (context: ElementDefinitionContext, definition: ProgressRingOptions) => ElementStyles;
1118
+ export declare type ProgressBarValidationState = ValuesOf<typeof ProgressBarValidationState>;
2556
1119
 
2557
1120
  /**
2558
- * Styles for Progress
2559
- * @public
1121
+ * Sets the theme tokens on defaultNode.
1122
+ * @param theme Flat object of theme token values.
2560
1123
  */
2561
- export declare const progressStyles: (context: ElementDefinitionContext, definition: ProgressOptions) => ElementStyles;
1124
+ export declare const setTheme: (theme: Theme) => void;
2562
1125
 
2563
- /**
2564
- * Provides a design system for the specified element either by returning one that was
2565
- * already created for that element or creating one.
2566
- * @param element - The element to root the design system at. By default, this is the body.
2567
- * @returns A Fluent Design System
2568
- * @public
2569
- */
2570
- export declare function provideFluentDesignSystem(element?: HTMLElement): DesignSystem;
1126
+ export declare const shadow16: CSSDesignToken<string>;
2571
1127
 
2572
- export { Radio }
1128
+ export declare const shadow16Brand: CSSDesignToken<string>;
2573
1129
 
2574
- export { RadioGroup }
1130
+ export declare const shadow2: CSSDesignToken<string>;
2575
1131
 
2576
- /**
2577
- * Styles for RadioGroup
2578
- * @public
2579
- */
2580
- export declare const radioGroupStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1132
+ export declare const shadow28: CSSDesignToken<string>;
2581
1133
 
2582
- /**
2583
- * Styles for Radio
2584
- * @public
2585
- */
2586
- export declare const RadioStyles: (context: ElementDefinitionContext, definition: RadioOptions) => ElementStyles;
1134
+ export declare const shadow28Brand: CSSDesignToken<string>;
2587
1135
 
2588
- /** @public @deprecated Use ColorRecipe instead */
2589
- export declare interface Recipe<T> {
2590
- evaluate(element: HTMLElement, reference?: Swatch): T;
2591
- }
1136
+ export declare const shadow2Brand: CSSDesignToken<string>;
2592
1137
 
2593
- /**
2594
- * @public
2595
- */
2596
- declare interface RelativeLuminance {
2597
- /**
2598
- * A number between 0 and 1, calculated by {@link https://www.w3.org/WAI/GL/wiki/Relative_luminance}
2599
- */
2600
- readonly relativeLuminance: number;
2601
- }
1138
+ export declare const shadow4: CSSDesignToken<string>;
2602
1139
 
2603
- /**
2604
- * The Fluent search class
2605
- * @internal
2606
- */
2607
- export declare class Search extends Search_2 {
2608
- /**
2609
- * The appearance of the element.
2610
- *
2611
- * @public
2612
- * @remarks
2613
- * HTML Attribute: appearance
2614
- */
2615
- appearance: SearchAppearance;
2616
- }
1140
+ export declare const shadow4Brand: CSSDesignToken<string>;
2617
1141
 
2618
- /**
2619
- * Search appearances
2620
- * @public
2621
- */
2622
- export declare type SearchAppearance = 'filled' | 'outline';
1142
+ export declare const shadow64: CSSDesignToken<string>;
2623
1143
 
2624
- /**
2625
- * Styles for Search
2626
- * @public
2627
- */
2628
- export declare const searchStyles: (context: ElementDefinitionContext, definition: SearchOptions) => ElementStyles;
1144
+ export declare const shadow64Brand: CSSDesignToken<string>;
2629
1145
 
2630
- /**
2631
- * @public
2632
- */
2633
- export declare const searchTemplate: (context: ElementDefinitionContext, definition: SearchOptions) => ViewTemplate<Search_2>;
1146
+ export declare const shadow8: CSSDesignToken<string>;
2634
1147
 
2635
- /**
2636
- * The Fluent select class
2637
- * @internal
2638
- */
2639
- export declare class Select extends Select_2 {
2640
- /**
2641
- * The appearance of the element.
2642
- *
2643
- * @public
2644
- * @remarks
2645
- * HTML Attribute: appearance
2646
- */
2647
- appearance: SelectAppearance;
2648
- /**
2649
- * @internal
2650
- */
2651
- appearanceChanged(oldValue: SelectAppearance, newValue: SelectAppearance): void;
2652
- /**
2653
- * @internal
2654
- */
2655
- connectedCallback(): void;
2656
- }
1148
+ export declare const shadow8Brand: CSSDesignToken<string>;
2657
1149
 
2658
- /**
2659
- * Select appearances
2660
- * @public
2661
- */
2662
- export declare type SelectAppearance = 'filled' | 'outline' | 'stealth';
1150
+ export declare const spacingHorizontalL: CSSDesignToken<string>;
2663
1151
 
2664
- /**
2665
- * Styles for Select
2666
- * @public
2667
- */
2668
- export declare const selectStyles: (context: ElementDefinitionContext, definition: SelectOptions) => ElementStyles;
1152
+ export declare const spacingHorizontalM: CSSDesignToken<string>;
2669
1153
 
2670
- export { Skeleton }
1154
+ export declare const spacingHorizontalMNudge: CSSDesignToken<string>;
2671
1155
 
2672
- /**
2673
- * Styles for Skeleton
2674
- * @public
2675
- */
2676
- export declare const skeletonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1156
+ export declare const spacingHorizontalNone: CSSDesignToken<string>;
2677
1157
 
2678
- export { Slider }
1158
+ export declare const spacingHorizontalS: CSSDesignToken<string>;
2679
1159
 
2680
- export { SliderLabel }
1160
+ export declare const spacingHorizontalSNudge: CSSDesignToken<string>;
2681
1161
 
2682
- /**
2683
- * Styles for SliderLabel
2684
- * @public
2685
- */
2686
- export declare const sliderLabelStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1162
+ export declare const spacingHorizontalXL: CSSDesignToken<string>;
2687
1163
 
2688
- /**
2689
- * Styles for Slider
2690
- * @public
2691
- */
2692
- export declare const sliderStyles: (context: ElementDefinitionContext, definition: SliderOptions) => ElementStyles;
1164
+ export declare const spacingHorizontalXS: CSSDesignToken<string>;
2693
1165
 
2694
- /**
2695
- * Recommended values for light and dark mode for {@link @fluentui/web-components#baseLayerLuminance}.
2696
- *
2697
- * @public
2698
- */
2699
- export declare enum StandardLuminance {
2700
- LightMode = 0.98,
2701
- DarkMode = 0.15
2702
- }
1166
+ export declare const spacingHorizontalXXL: CSSDesignToken<string>;
2703
1167
 
2704
- /**
2705
- * @internal
2706
- */
2707
- export declare const StealthButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
1168
+ export declare const spacingHorizontalXXS: CSSDesignToken<string>;
2708
1169
 
2709
- /** @public */
2710
- export declare const strokeWidth: CSSDesignToken<number>;
1170
+ export declare const spacingHorizontalXXXL: CSSDesignToken<string>;
2711
1171
 
2712
- /**
2713
- * Represents a color in a {@link Palette}
2714
- * @public
2715
- */
2716
- export declare interface Swatch extends RelativeLuminance {
2717
- toColorString(): string;
2718
- contrast(target: RelativeLuminance): number;
2719
- }
1172
+ export declare const spacingVerticalL: CSSDesignToken<string>;
2720
1173
 
2721
- /** @public */
2722
- export declare interface SwatchRGB extends Swatch {
2723
- r: number;
2724
- g: number;
2725
- b: number;
2726
- }
1174
+ export declare const spacingVerticalM: CSSDesignToken<string>;
2727
1175
 
2728
- /** @public */
2729
- export declare const SwatchRGB: Readonly<{
2730
- create(r: number, g: number, b: number): SwatchRGB;
2731
- from(obj: {
2732
- r: number;
2733
- g: number;
2734
- b: number;
2735
- }): SwatchRGB;
2736
- }>;
1176
+ export declare const spacingVerticalMNudge: CSSDesignToken<string>;
2737
1177
 
2738
- export { Switch }
1178
+ export declare const spacingVerticalNone: CSSDesignToken<string>;
2739
1179
 
2740
- /**
2741
- * Styles for Switch
2742
- * @public
2743
- */
2744
- export declare const switchStyles: (context: ElementDefinitionContext, definition: SwitchOptions) => ElementStyles;
1180
+ export declare const spacingVerticalS: CSSDesignToken<string>;
2745
1181
 
2746
- export { Tab }
1182
+ export declare const spacingVerticalSNudge: CSSDesignToken<string>;
2747
1183
 
2748
- export { TabPanel }
1184
+ export declare const spacingVerticalXL: CSSDesignToken<string>;
2749
1185
 
2750
- /**
2751
- * Styles for TabPanel
2752
- * @public
2753
- */
2754
- export declare const tabPanelStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1186
+ export declare const spacingVerticalXS: CSSDesignToken<string>;
2755
1187
 
2756
- export { Tabs }
1188
+ export declare const spacingVerticalXXL: CSSDesignToken<string>;
2757
1189
 
2758
- /**
2759
- * Styles for Tabs
2760
- * @public
2761
- */
2762
- export declare const tabsStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1190
+ export declare const spacingVerticalXXS: CSSDesignToken<string>;
2763
1191
 
2764
- /**
2765
- * Styles for Tab
2766
- * @public
2767
- */
2768
- export declare const tabStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1192
+ export declare const spacingVerticalXXXL: CSSDesignToken<string>;
1193
+
1194
+ export declare const strokeWidthThick: CSSDesignToken<string>;
1195
+
1196
+ export declare const strokeWidthThicker: CSSDesignToken<string>;
1197
+
1198
+ export declare const strokeWidthThickest: CSSDesignToken<string>;
1199
+
1200
+ export declare const strokeWidthThin: CSSDesignToken<string>;
2769
1201
 
2770
1202
  /**
2771
- * The Fluent TextArea class
2772
- * @internal
1203
+ * The base class used for constructing a fluent-text custom element
1204
+ * @public
2773
1205
  */
2774
- export declare class TextArea extends TextArea_2 {
1206
+ declare class Text_2 extends FASTElement {
2775
1207
  /**
2776
- * The appearance of the element.
1208
+ * The text will not wrap
1209
+ * NOTE: In Fluent UI React v9 this is "wrap"
1210
+ * Boolean attributes which default to true in HTML can't be switched off in the DOM
2777
1211
  *
2778
1212
  * @public
2779
1213
  * @remarks
2780
- * HTML Attribute: appearance
1214
+ * HTML Attribute: nowrap
2781
1215
  */
2782
- appearance: TextAreaAppearance;
1216
+ nowrap: boolean;
2783
1217
  /**
2784
- * @internal
1218
+ * The text truncates
1219
+ *
1220
+ * @public
1221
+ * @remarks
1222
+ * HTML Attribute: truncate
2785
1223
  */
2786
- appearanceChanged(oldValue: TextAreaAppearance, newValue: TextAreaAppearance): void;
1224
+ truncate: boolean;
2787
1225
  /**
2788
- * @internal
1226
+ * The text style is italic
1227
+ *
1228
+ * @public
1229
+ * @remarks
1230
+ * HTML Attribute: italic
2789
1231
  */
2790
- connectedCallback(): void;
2791
- }
2792
-
2793
- /**
2794
- * Text area appearances
2795
- * @public
2796
- */
2797
- export declare type TextAreaAppearance = 'filled' | 'outline';
2798
-
2799
- /**
2800
- * Styles for TextArea
2801
- * @public
2802
- */
2803
- export declare const textAreaStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
2804
-
2805
- /**
2806
- * The Fluent text field class
2807
- * @internal
2808
- */
2809
- export declare class TextField extends TextField_2 {
1232
+ italic: boolean;
2810
1233
  /**
2811
- * The appearance of the element.
1234
+ * The text style is underline
2812
1235
  *
2813
1236
  * @public
2814
1237
  * @remarks
2815
- * HTML Attribute: appearance
1238
+ * HTML Attribute: underline
2816
1239
  */
2817
- appearance: TextFieldAppearance;
1240
+ underline: boolean;
2818
1241
  /**
2819
- * @internal
1242
+ * The text style is strikethrough
1243
+ *
1244
+ * @public
1245
+ * @remarks
1246
+ * HTML Attribute: strikethrough
2820
1247
  */
2821
- appearanceChanged(oldValue: TextFieldAppearance, newValue: TextFieldAppearance): void;
1248
+ strikethrough: boolean;
2822
1249
  /**
2823
- * @internal
1250
+ * An text can take up the width of its container.
1251
+ *
1252
+ * @public
1253
+ * @remarks
1254
+ * HTML Attribute: block
1255
+ */
1256
+ block: boolean;
1257
+ /**
1258
+ * THe Text size
1259
+ *
1260
+ * @public
1261
+ * @remarks
1262
+ * HTML Attribute: size
1263
+ *
1264
+ */
1265
+ size: TextSize;
1266
+ /**
1267
+ * THe Text font
1268
+ *
1269
+ * @public
1270
+ * @remarks
1271
+ * HTML Attribute: font
1272
+ */
1273
+ font: TextFont;
1274
+ /**
1275
+ * THe Text weight
1276
+ *
1277
+ * @public
1278
+ * @remarks
1279
+ * HTML Attribute: weight
1280
+ */
1281
+ weight: TextWeight;
1282
+ /**
1283
+ * THe Text align
1284
+ *
1285
+ * @public
1286
+ * @remarks
1287
+ * HTML Attribute: align
2824
1288
  */
2825
- connectedCallback(): void;
1289
+ align: TextAlign;
2826
1290
  }
1291
+ export { Text_2 as Text }
2827
1292
 
2828
1293
  /**
2829
- * Text field appearances
1294
+ * TextAlign Constants
2830
1295
  * @public
2831
1296
  */
2832
- export declare type TextFieldAppearance = 'filled' | 'outline';
1297
+ export declare const TextAlign: {
1298
+ readonly start: "start";
1299
+ readonly end: "end";
1300
+ readonly center: "center";
1301
+ readonly justify: "justify";
1302
+ };
2833
1303
 
2834
1304
  /**
2835
- * Styles for TextField
1305
+ * Aligns the content
2836
1306
  * @public
2837
1307
  */
2838
- export declare const textFieldStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
1308
+ export declare type TextAlign = ValuesOf<typeof TextAlign>;
2839
1309
 
2840
1310
  /**
2841
- * The Fluent toolbar class
2842
- * @internal
1311
+ * The Fluent Text Element.
1312
+ *
1313
+ *
1314
+ * @public
1315
+ * @remarks
1316
+ * HTML Element: \<fluent-text\>
2843
1317
  */
2844
- export declare class Toolbar extends Toolbar_2 {
2845
- }
1318
+ export declare const TextDefinition: FASTElementDefinition<typeof Text_2>;
2846
1319
 
2847
1320
  /**
2848
- * The Fluent tooltip class
2849
- * @internal
1321
+ * TextFont Constants
1322
+ * @public
2850
1323
  */
2851
- export declare class Tooltip extends Tooltip_2 {
2852
- /**
2853
- * @internal
2854
- */
2855
- connectedCallback(): void;
2856
- }
2857
-
2858
- export { TreeItem }
1324
+ export declare const TextFont: {
1325
+ readonly base: "base";
1326
+ readonly numeric: "numeric";
1327
+ readonly monospace: "monospace";
1328
+ };
2859
1329
 
2860
1330
  /**
2861
- * Styles for TreeItem
1331
+ * Applies font family to the content
2862
1332
  * @public
2863
1333
  */
2864
- export declare const treeItemStyles: (context: ElementDefinitionContext, definition: TreeItemOptions) => ElementStyles;
2865
-
2866
- export { TreeView }
1334
+ export declare type TextFont = ValuesOf<typeof TextFont>;
2867
1335
 
2868
1336
  /**
2869
- * Styles for TreeView
1337
+ * TextSize constants
2870
1338
  * @public
2871
1339
  */
2872
- export declare const treeViewStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
2873
-
2874
- /** @public */
2875
- export declare const typeRampBase: CSSDirective;
2876
-
2877
- /** @public */
2878
- export declare const typeRampBaseFontSize: CSSDesignToken<string>;
2879
-
2880
- /** @public */
2881
- export declare const typeRampBaseFontVariations: CSSDesignToken<string>;
2882
-
2883
- /** @public */
2884
- export declare const typeRampBaseLineHeight: CSSDesignToken<string>;
2885
-
2886
- /** @public */
2887
- export declare const typeRampMinus1: CSSDirective;
2888
-
2889
- /** @public */
2890
- export declare const typeRampMinus1FontSize: CSSDesignToken<string>;
2891
-
2892
- /** @public */
2893
- export declare const typeRampMinus1FontVariations: CSSDesignToken<string>;
2894
-
2895
- /** @public */
2896
- export declare const typeRampMinus1LineHeight: CSSDesignToken<string>;
2897
-
2898
- /** @public */
2899
- export declare const typeRampMinus2: CSSDirective;
2900
-
2901
- /** @public */
2902
- export declare const typeRampMinus2FontSize: CSSDesignToken<string>;
2903
-
2904
- /** @public */
2905
- export declare const typeRampMinus2FontVariations: CSSDesignToken<string>;
2906
-
2907
- /** @public */
2908
- export declare const typeRampMinus2LineHeight: CSSDesignToken<string>;
2909
-
2910
- /** @public */
2911
- export declare const typeRampPlus1: CSSDirective;
2912
-
2913
- /** @public */
2914
- export declare const typeRampPlus1FontSize: CSSDesignToken<string>;
2915
-
2916
- /** @public */
2917
- export declare const typeRampPlus1FontVariations: CSSDesignToken<string>;
2918
-
2919
- /** @public */
2920
- export declare const typeRampPlus1LineHeight: CSSDesignToken<string>;
2921
-
2922
- /** @public */
2923
- export declare const typeRampPlus2: CSSDirective;
2924
-
2925
- /** @public */
2926
- export declare const typeRampPlus2FontSize: CSSDesignToken<string>;
2927
-
2928
- /** @public */
2929
- export declare const typeRampPlus2FontVariations: CSSDesignToken<string>;
2930
-
2931
- /** @public */
2932
- export declare const typeRampPlus2LineHeight: CSSDesignToken<string>;
2933
-
2934
- /** @public */
2935
- export declare const typeRampPlus3: CSSDirective;
2936
-
2937
- /** @public */
2938
- export declare const typeRampPlus3FontSize: CSSDesignToken<string>;
2939
-
2940
- /** @public */
2941
- export declare const typeRampPlus3FontVariations: CSSDesignToken<string>;
2942
-
2943
- /** @public */
2944
- export declare const typeRampPlus3LineHeight: CSSDesignToken<string>;
2945
-
2946
- /** @public */
2947
- export declare const typeRampPlus4: CSSDirective;
2948
-
2949
- /** @public */
2950
- export declare const typeRampPlus4FontSize: CSSDesignToken<string>;
2951
-
2952
- /** @public */
2953
- export declare const typeRampPlus4FontVariations: CSSDesignToken<string>;
2954
-
2955
- /** @public */
2956
- export declare const typeRampPlus4LineHeight: CSSDesignToken<string>;
2957
-
2958
- /** @public */
2959
- export declare const typeRampPlus5: CSSDirective;
2960
-
2961
- /** @public */
2962
- export declare const typeRampPlus5FontSize: CSSDesignToken<string>;
2963
-
2964
- /** @public */
2965
- export declare const typeRampPlus5FontVariations: CSSDesignToken<string>;
1340
+ export declare const TextSize: {
1341
+ readonly _100: "100";
1342
+ readonly _200: "200";
1343
+ readonly _300: "300";
1344
+ readonly _400: "400";
1345
+ readonly _500: "500";
1346
+ readonly _600: "600";
1347
+ readonly _700: "700";
1348
+ readonly _800: "800";
1349
+ readonly _900: "900";
1350
+ readonly _1000: "1000";
1351
+ };
2966
1352
 
2967
- /** @public */
2968
- export declare const typeRampPlus5LineHeight: CSSDesignToken<string>;
1353
+ /**
1354
+ * The type for TextSize
1355
+ * The font size and line height based on the theme tokens
1356
+ * @public
1357
+ */
1358
+ export declare type TextSize = ValuesOf<typeof TextSize>;
2969
1359
 
2970
- /** @public */
2971
- export declare const typeRampPlus6: CSSDirective;
1360
+ /** Text styles
1361
+ * @public
1362
+ */
1363
+ export declare const TextStyles: ElementStyles;
2972
1364
 
2973
- /** @public */
2974
- export declare const typeRampPlus6FontSize: CSSDesignToken<string>;
1365
+ /**
1366
+ * @internal
1367
+ */
1368
+ export declare const TextTemplate: ElementViewTemplate<Text_2>;
2975
1369
 
2976
- /** @public */
2977
- export declare const typeRampPlus6FontVariations: CSSDesignToken<string>;
1370
+ /**
1371
+ * TextWeight Constants
1372
+ * @public
1373
+ */
1374
+ export declare const TextWeight: {
1375
+ readonly medium: "medium";
1376
+ readonly regular: "regular";
1377
+ readonly semibold: "semibold";
1378
+ readonly bold: "bold";
1379
+ };
2978
1380
 
2979
- /** @public */
2980
- export declare const typeRampPlus6LineHeight: CSSDesignToken<string>;
1381
+ /**
1382
+ * Applies font weight to the content
1383
+ * @public
1384
+ */
1385
+ export declare type TextWeight = ValuesOf<typeof TextWeight>;
2981
1386
 
2982
1387
  export { }