@vodafone_de/brix-components 3.1.7 → 3.1.9

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 (2696) hide show
  1. package/README.md +1 -0
  2. package/dist/BackgroundColor-JObp_2xA.js +14 -0
  3. package/dist/BorderColor-BummoQ1-.js +24 -0
  4. package/dist/BorderRadius-ClUShVLu.js +10 -0
  5. package/dist/BorderWidth-eg_mz82k.js +16 -0
  6. package/dist/CornerStyle-JEbGNArR.js +6 -0
  7. package/dist/FontWeight-CR22KTex.js +8 -0
  8. package/dist/HeadingSize-CfCRn3Lh.js +12 -0
  9. package/dist/IconColor-CtC9WUgr.js +10 -0
  10. package/dist/ObjectColor-BZDBuV8H.js +22 -0
  11. package/dist/Opacity-smkGiwsf.js +6 -0
  12. package/dist/SizeTypes-Ck_RdzIf.js +8 -0
  13. package/dist/Spacing-B-7SYaM_.js +16 -0
  14. package/dist/TextBodySize-ovWXXu9n.js +6 -0
  15. package/dist/TextColor-BXiR5Uq9.js +16 -0
  16. package/dist/colorUtils-uLZF5UIN.js +94 -0
  17. package/dist/components/Accordion/index.d.ts +5 -0
  18. package/dist/components/Accordion/index.js +195 -0
  19. package/dist/components/Accordion/props.d.ts +63 -0
  20. package/dist/components/Accordion/styled.d.ts +6 -0
  21. package/dist/components/AccordionGroup/AccordionGroupSingleExpand.d.ts +7 -0
  22. package/dist/components/AccordionGroup/index.d.ts +5 -0
  23. package/dist/components/AccordionGroup/index.js +59 -0
  24. package/dist/components/AccordionGroup/props.d.ts +15 -0
  25. package/dist/components/AccordionGroup/stories/scrollToViewFixedHeaderStoryObj.d.ts +3 -0
  26. package/dist/components/AccordionGroup/styled.d.ts +2 -0
  27. package/dist/components/Badge/index.d.ts +5 -0
  28. package/dist/components/Badge/index.js +11 -0
  29. package/dist/components/Badge/props.d.ts +30 -0
  30. package/dist/components/Badge/styled.d.ts +2 -0
  31. package/dist/components/Body/index.d.ts +5 -0
  32. package/dist/components/Body/index.js +75 -0
  33. package/dist/components/Body/props.d.ts +40 -0
  34. package/dist/components/Body/styled.d.ts +4 -0
  35. package/dist/components/BottomBar/index.d.ts +5 -0
  36. package/dist/components/BottomBar/index.js +79 -0
  37. package/dist/components/BottomBar/props.d.ts +18 -0
  38. package/dist/components/BottomBar/styled.d.ts +3 -0
  39. package/dist/components/Button/ButtonAppearanceHelper.d.ts +5 -0
  40. package/dist/components/Button/getButtonIcon.d.ts +2 -0
  41. package/dist/components/Button/index.d.ts +6 -0
  42. package/dist/components/Button/index.js +24 -0
  43. package/dist/components/Button/props.d.ts +40 -0
  44. package/dist/components/Button/styled.d.ts +10 -0
  45. package/dist/components/ButtonAsLink/index.d.ts +5 -0
  46. package/dist/components/ButtonAsLink/index.js +7 -0
  47. package/dist/components/ButtonAsLink/props.d.ts +14 -0
  48. package/dist/components/ButtonAsLink/styled.d.ts +2 -0
  49. package/dist/components/ButtonGroup/index.d.ts +5 -0
  50. package/dist/components/ButtonGroup/index.js +34 -0
  51. package/dist/components/ButtonGroup/props.d.ts +30 -0
  52. package/dist/components/Card/index.d.ts +5 -0
  53. package/dist/components/Card/index.js +18 -0
  54. package/dist/components/Card/props.d.ts +28 -0
  55. package/dist/components/Card/styled.d.ts +2 -0
  56. package/dist/components/Carousel/components/CarouselContext.d.ts +20 -0
  57. package/dist/components/Carousel/components/CarouselIndicator.d.ts +2 -0
  58. package/dist/components/Carousel/components/CarouselInner.d.ts +4 -0
  59. package/dist/components/Carousel/components/CarouselItem.d.ts +3 -0
  60. package/dist/components/Carousel/components/CarouselNavigation.d.ts +7 -0
  61. package/dist/components/Carousel/index.d.ts +5 -0
  62. package/dist/components/Carousel/index.js +497 -0
  63. package/dist/components/Carousel/props.d.ts +88 -0
  64. package/dist/components/Carousel/stories/productCards.d.ts +6 -0
  65. package/dist/components/Carousel/styled.d.ts +19 -0
  66. package/dist/components/Carousel/utils/carouselDefaultGridConfig.d.ts +2 -0
  67. package/dist/components/Carousel/utils/getItemByScroll.d.ts +2 -0
  68. package/dist/components/Carousel/utils/getItems.d.ts +2 -0
  69. package/dist/components/Carousel/utils/scrollTo.d.ts +1 -0
  70. package/dist/components/Carousel/utils/useScrollSpy.d.ts +2 -0
  71. package/dist/components/Checkbox/assets/CheckedBox.d.ts +3 -0
  72. package/dist/components/Checkbox/assets/UncheckedBox.d.ts +3 -0
  73. package/dist/components/Checkbox/index.d.ts +5 -0
  74. package/dist/components/Checkbox/index.js +218 -0
  75. package/dist/components/Checkbox/props.d.ts +20 -0
  76. package/dist/components/Checkbox/styled.d.ts +13 -0
  77. package/dist/components/CheckboxGroup/index.d.ts +5 -0
  78. package/dist/components/CheckboxGroup/index.js +58 -0
  79. package/dist/components/CheckboxGroup/props.d.ts +21 -0
  80. package/dist/components/CheckboxGroup/styled.d.ts +2 -0
  81. package/dist/components/Collapsible/index.d.ts +5 -0
  82. package/dist/components/Collapsible/index.js +85 -0
  83. package/dist/components/Collapsible/props.d.ts +15 -0
  84. package/dist/components/Collapsible/styled.d.ts +3 -0
  85. package/dist/components/ColorSwatch/index.d.ts +5 -0
  86. package/dist/components/ColorSwatch/index.js +87 -0
  87. package/dist/components/ColorSwatch/props.d.ts +19 -0
  88. package/dist/components/ColorSwatch/styled.d.ts +5 -0
  89. package/dist/components/ColorSwatchGroup/index.d.ts +5 -0
  90. package/dist/components/ColorSwatchGroup/index.js +43 -0
  91. package/dist/components/ColorSwatchGroup/props.d.ts +17 -0
  92. package/dist/components/ColorSwatchGroup/styled.d.ts +4 -0
  93. package/dist/components/Container/index.d.ts +5 -0
  94. package/dist/components/Container/index.js +76 -0
  95. package/dist/components/Container/props.d.ts +27 -0
  96. package/dist/components/Container/styled.d.ts +3 -0
  97. package/dist/components/DateInput/index.d.ts +4 -0
  98. package/dist/components/DateInput/index.js +86 -0
  99. package/dist/components/DateInput/props.d.ts +13 -0
  100. package/dist/components/DateInput/styled.d.ts +4 -0
  101. package/dist/components/DemoBox/index.d.ts +5 -0
  102. package/dist/components/DemoBox/index.js +21 -0
  103. package/dist/components/DemoBox/props.d.ts +5 -0
  104. package/dist/components/DemoBox/styled.d.ts +2 -0
  105. package/dist/components/Dialog/index.d.ts +5 -0
  106. package/dist/components/Dialog/index.js +172 -0
  107. package/dist/components/Dialog/props.d.ts +47 -0
  108. package/dist/components/Dialog/styled.d.ts +9 -0
  109. package/dist/components/DiscoveryCard/components/DiscoveryCardLinkedImage.d.ts +4 -0
  110. package/dist/components/DiscoveryCard/index.d.ts +5 -0
  111. package/dist/components/DiscoveryCard/index.js +130 -0
  112. package/dist/components/DiscoveryCard/props.d.ts +45 -0
  113. package/dist/components/DiscoveryCard/styled.d.ts +6 -0
  114. package/dist/components/DiscoveryCardGroup/index.d.ts +5 -0
  115. package/dist/components/DiscoveryCardGroup/index.js +53 -0
  116. package/dist/components/DiscoveryCardGroup/props.d.ts +21 -0
  117. package/dist/components/DiscoveryCardGroup/styled.d.ts +6 -0
  118. package/dist/components/Divider/index.d.ts +5 -0
  119. package/dist/components/Divider/index.js +30 -0
  120. package/dist/components/Divider/props.d.ts +5 -0
  121. package/dist/components/Divider/styled.d.ts +2 -0
  122. package/dist/components/Fieldset/index.d.ts +4 -0
  123. package/dist/components/Fieldset/index.js +41 -0
  124. package/dist/components/Fieldset/props.d.ts +38 -0
  125. package/dist/components/Fieldset/styled.d.ts +2 -0
  126. package/dist/components/FilterGroup/index.d.ts +5 -0
  127. package/dist/components/FilterGroup/index.js +148 -0
  128. package/dist/components/FilterGroup/props.d.ts +29 -0
  129. package/dist/components/FilterGroup/styled.d.ts +7 -0
  130. package/dist/components/Flex/index.d.ts +5 -0
  131. package/dist/components/Flex/index.js +17 -0
  132. package/dist/components/Flex/props.d.ts +35 -0
  133. package/dist/components/Flex/stories/autoAndFullItemArgs.d.ts +2 -0
  134. package/dist/components/Flex/stories/autoAndFullItemVerticalArgs.d.ts +2 -0
  135. package/dist/components/Flex/stories/fullAndAutoItemArgs.d.ts +2 -0
  136. package/dist/components/Flex/stories/fullAndAutoItemVerticalArgs.d.ts +2 -0
  137. package/dist/components/Flex/stories/justifyBetweenArgs.d.ts +2 -0
  138. package/dist/components/Flex/stories/justifyBetweenVerticalArgs.d.ts +2 -0
  139. package/dist/components/Flex/stories/justifyCenterArgs.d.ts +2 -0
  140. package/dist/components/Flex/stories/justifyCenterVerticalArgs.d.ts +2 -0
  141. package/dist/components/Flex/stories/justifyEndArgs.d.ts +2 -0
  142. package/dist/components/Flex/stories/justifyEndVerticalArgs.d.ts +2 -0
  143. package/dist/components/Flex/stories/justifyStartArgs.d.ts +2 -0
  144. package/dist/components/Flex/stories/justifyStartVerticalArgs.d.ts +2 -0
  145. package/dist/components/Flex/stories/twoFullItemsArgs.d.ts +2 -0
  146. package/dist/components/Flex/stories/twoFullItemsVerticalArgs.d.ts +2 -0
  147. package/dist/components/Flex/stories/xlGapSpacingArgs.d.ts +2 -0
  148. package/dist/components/Flex/styled.d.ts +2 -0
  149. package/dist/components/FlexItem/index.d.ts +5 -0
  150. package/dist/components/FlexItem/index.js +41 -0
  151. package/dist/components/FlexItem/props.d.ts +17 -0
  152. package/dist/components/FlexItem/styled.d.ts +2 -0
  153. package/dist/components/FootnoteContent/index.d.ts +5 -0
  154. package/dist/components/FootnoteContent/index.js +39 -0
  155. package/dist/components/FootnoteContent/props.d.ts +17 -0
  156. package/dist/components/FootnoteContent/styled.d.ts +2 -0
  157. package/dist/components/FootnoteLink/index.d.ts +5 -0
  158. package/dist/components/FootnoteLink/index.js +46 -0
  159. package/dist/components/FootnoteLink/props.d.ts +24 -0
  160. package/dist/components/FootnoteLink/styled.d.ts +1 -0
  161. package/dist/components/Form/index.d.ts +5 -0
  162. package/dist/components/Form/index.js +20 -0
  163. package/dist/components/Form/props.d.ts +15 -0
  164. package/dist/components/Form/styled.d.ts +2 -0
  165. package/dist/components/FormElement/index.d.ts +5 -0
  166. package/dist/components/FormElement/index.js +31 -0
  167. package/dist/components/FormElement/props.d.ts +12 -0
  168. package/dist/components/FormElement/styled.d.ts +4 -0
  169. package/dist/components/FormHelperLabel/index.d.ts +10 -0
  170. package/dist/components/FormHelperLabel/index.js +21 -0
  171. package/dist/components/FormHelperLabel/props.d.ts +5 -0
  172. package/dist/components/FormHelperMessage/index.d.ts +5 -0
  173. package/dist/components/FormHelperMessage/index.js +47 -0
  174. package/dist/components/FormHelperMessage/props.d.ts +18 -0
  175. package/dist/components/FormHelperMessage/styled.d.ts +5 -0
  176. package/dist/components/FormHelperStatusIcon/index.d.ts +14 -0
  177. package/dist/components/FormHelperStatusIcon/index.js +50 -0
  178. package/dist/components/FormHelperStatusIcon/props.d.ts +5 -0
  179. package/dist/components/FormHelperStatusIcon/styled.d.ts +3 -0
  180. package/dist/components/GoogleMap/components/ConsentMessage/bg.d.ts +6 -0
  181. package/dist/components/GoogleMap/components/ConsentMessage/index.d.ts +4 -0
  182. package/dist/components/GoogleMap/components/ConsentMessage/props.d.ts +23 -0
  183. package/dist/components/GoogleMap/components/ConsentMessage/styled.d.ts +7 -0
  184. package/dist/components/GoogleMap/components/Map/MapInner.d.ts +4 -0
  185. package/dist/components/GoogleMap/components/Map/MapProvider.d.ts +4 -0
  186. package/dist/components/GoogleMap/components/Map/props.d.ts +6 -0
  187. package/dist/components/GoogleMap/index.d.ts +5 -0
  188. package/dist/components/GoogleMap/index.js +196 -0
  189. package/dist/components/GoogleMap/props.d.ts +45 -0
  190. package/dist/components/GoogleMap/styled.d.ts +2 -0
  191. package/dist/components/Grid/getColumnWidth.d.ts +3 -0
  192. package/dist/components/Grid/getOffset.d.ts +3 -0
  193. package/dist/components/Grid/helpers.d.ts +5 -0
  194. package/dist/components/Grid/index.d.ts +5 -0
  195. package/dist/components/Grid/index.js +39 -0
  196. package/dist/components/Grid/props.d.ts +48 -0
  197. package/dist/components/Grid/stories/alignGridCenterArgs.d.ts +2 -0
  198. package/dist/components/Grid/stories/alignGridItemArgs.d.ts +2 -0
  199. package/dist/components/Grid/stories/alignGridRightArgs.d.ts +2 -0
  200. package/dist/components/Grid/stories/grid12Args.d.ts +2 -0
  201. package/dist/components/Grid/stories/grid222222Args.d.ts +2 -0
  202. package/dist/components/Grid/stories/grid3333Args.d.ts +2 -0
  203. package/dist/components/Grid/stories/grid363Args.d.ts +2 -0
  204. package/dist/components/Grid/stories/grid444Args.d.ts +2 -0
  205. package/dist/components/Grid/stories/grid64Args.d.ts +2 -0
  206. package/dist/components/Grid/stories/grid66Args.d.ts +2 -0
  207. package/dist/components/Grid/stories/grid75Args.d.ts +2 -0
  208. package/dist/components/Grid/stories/nestingArgs.d.ts +2 -0
  209. package/dist/components/Grid/stories/noSpacingArgs.d.ts +2 -0
  210. package/dist/components/Grid/stories/offsetArgs.d.ts +2 -0
  211. package/dist/components/Grid/stories/responsiveArgs.d.ts +2 -0
  212. package/dist/components/Grid/stories/stretchArgs.d.ts +2 -0
  213. package/dist/components/Grid/stories/tagOrderedListArgs.d.ts +2 -0
  214. package/dist/components/Grid/stories/tagUnorderedListArgs.d.ts +2 -0
  215. package/dist/components/Grid/styled.d.ts +2 -0
  216. package/dist/components/GridItem/index.d.ts +5 -0
  217. package/dist/components/GridItem/index.js +12 -0
  218. package/dist/components/GridItem/props.d.ts +25 -0
  219. package/dist/components/GridItem/styled.d.ts +3 -0
  220. package/dist/components/Heading/index.d.ts +5 -0
  221. package/dist/components/Heading/index.js +94 -0
  222. package/dist/components/Heading/props.d.ts +46 -0
  223. package/dist/components/Heading/styled.d.ts +8 -0
  224. package/dist/components/HifiIcon/index.d.ts +5 -0
  225. package/dist/components/HifiIcon/index.js +31 -0
  226. package/dist/components/HifiIcon/props.d.ts +23 -0
  227. package/dist/components/HifiIcon/styled.d.ts +2 -0
  228. package/dist/components/Icon/index.d.ts +14 -0
  229. package/dist/components/Icon/index.js +38 -0
  230. package/dist/components/Icon/props.d.ts +17 -0
  231. package/dist/components/IconButton/index.d.ts +5 -0
  232. package/dist/components/IconButton/index.js +85 -0
  233. package/dist/components/IconButton/props.d.ts +42 -0
  234. package/dist/components/IconButton/styled.d.ts +4 -0
  235. package/dist/components/IconSnippet/index.d.ts +5 -0
  236. package/dist/components/IconSnippet/index.js +112 -0
  237. package/dist/components/IconSnippet/props.d.ts +53 -0
  238. package/dist/components/IconSnippet/styled.d.ts +6 -0
  239. package/dist/components/IconSnippetList/index.d.ts +5 -0
  240. package/dist/components/IconSnippetList/index.js +25 -0
  241. package/dist/components/IconSnippetList/props.d.ts +19 -0
  242. package/dist/components/IconSnippetList/styled.d.ts +2 -0
  243. package/dist/components/Image/index.d.ts +5 -0
  244. package/dist/components/Image/index.js +84 -0
  245. package/dist/components/Image/props.d.ts +61 -0
  246. package/dist/components/Image/styled.d.ts +2 -0
  247. package/dist/components/ImageHeader/index.d.ts +5 -0
  248. package/dist/components/ImageHeader/index.js +262 -0
  249. package/dist/components/ImageHeader/props.d.ts +69 -0
  250. package/dist/components/ImageHeader/styled.d.ts +9 -0
  251. package/dist/components/InlineLink/index.d.ts +5 -0
  252. package/dist/components/InlineLink/index.js +43 -0
  253. package/dist/components/InlineLink/props.d.ts +16 -0
  254. package/dist/components/InlineLink/styled.d.ts +2 -0
  255. package/dist/components/Input/index.d.ts +8 -0
  256. package/dist/components/Input/index.js +55 -0
  257. package/dist/components/Input/props.d.ts +48 -0
  258. package/dist/components/Input/styled.d.ts +7 -0
  259. package/dist/components/Label/index.d.ts +5 -0
  260. package/dist/components/Label/index.js +22 -0
  261. package/dist/components/Label/props.d.ts +12 -0
  262. package/dist/components/Label/styled.d.ts +2 -0
  263. package/dist/components/Legend/index.d.ts +5 -0
  264. package/dist/components/Legend/index.js +60 -0
  265. package/dist/components/Legend/props.d.ts +17 -0
  266. package/dist/components/Legend/styled.d.ts +1 -0
  267. package/dist/components/Link/getLinkIcon.d.ts +3 -0
  268. package/dist/components/Link/index.d.ts +6 -0
  269. package/dist/components/Link/index.js +19 -0
  270. package/dist/components/Link/props.d.ts +28 -0
  271. package/dist/components/Link/styled.d.ts +4 -0
  272. package/dist/components/LinkAsButton/index.d.ts +5 -0
  273. package/dist/components/LinkAsButton/index.js +7 -0
  274. package/dist/components/LinkAsButton/props.d.ts +13 -0
  275. package/dist/components/LinkAsButton/styled.d.ts +2 -0
  276. package/dist/components/LinkList/index.d.ts +5 -0
  277. package/dist/components/LinkList/index.js +64 -0
  278. package/dist/components/LinkList/props.d.ts +29 -0
  279. package/dist/components/LinkList/styled.d.ts +3 -0
  280. package/dist/components/LinkListItem/index.d.ts +5 -0
  281. package/dist/components/LinkListItem/index.js +316 -0
  282. package/dist/components/LinkListItem/props.d.ts +46 -0
  283. package/dist/components/LinkListItem/styled.d.ts +11 -0
  284. package/dist/components/LoadingSpinner/LoadingSpinnerSVG.d.ts +4 -0
  285. package/dist/components/LoadingSpinner/index.d.ts +5 -0
  286. package/dist/components/LoadingSpinner/index.js +70 -0
  287. package/dist/components/LoadingSpinner/props.d.ts +46 -0
  288. package/dist/components/LoadingSpinner/styled.d.ts +20 -0
  289. package/dist/components/Notification/index.d.ts +5 -0
  290. package/dist/components/Notification/index.js +181 -0
  291. package/dist/components/Notification/notificationStatusVariants.d.ts +12 -0
  292. package/dist/components/Notification/props.d.ts +30 -0
  293. package/dist/components/Notification/styled.d.ts +10 -0
  294. package/dist/components/Overlay/index.d.ts +5 -0
  295. package/dist/components/Overlay/index.js +33 -0
  296. package/dist/components/Overlay/props.d.ts +9 -0
  297. package/dist/components/Overlay/styled.d.ts +2 -0
  298. package/dist/components/PickerGroup/Pickers.d.ts +9 -0
  299. package/dist/components/PickerGroup/components/Picker/index.d.ts +5 -0
  300. package/dist/components/PickerGroup/components/Picker/props.d.ts +75 -0
  301. package/dist/components/PickerGroup/components/Picker/styled.d.ts +5 -0
  302. package/dist/components/PickerGroup/components/PickerElementIcon/index.d.ts +4 -0
  303. package/dist/components/PickerGroup/components/PickerElementIcon/styled.d.ts +1 -0
  304. package/dist/components/PickerGroup/components/PickerElementImage/index.d.ts +4 -0
  305. package/dist/components/PickerGroup/components/PickerElementImage/styled.d.ts +1 -0
  306. package/dist/components/PickerGroup/components/PickerElementLabel/styled.d.ts +1 -0
  307. package/dist/components/PickerGroup/components/PickerElementSuffix/styled.d.ts +1 -0
  308. package/dist/components/PickerGroup/index.d.ts +5 -0
  309. package/dist/components/PickerGroup/index.js +282 -0
  310. package/dist/components/PickerGroup/props.d.ts +29 -0
  311. package/dist/components/Price/index.d.ts +7 -0
  312. package/dist/components/Price/index.js +18 -0
  313. package/dist/components/Price/props.d.ts +65 -0
  314. package/dist/components/Price/styled.d.ts +7 -0
  315. package/dist/components/ProductCard/index.d.ts +5 -0
  316. package/dist/components/ProductCard/index.js +81 -0
  317. package/dist/components/ProductCard/props.d.ts +33 -0
  318. package/dist/components/ProductCard/styled.d.ts +6 -0
  319. package/dist/components/RadioGroup/components/Radio/assets/RadioSVG.d.ts +3 -0
  320. package/dist/components/RadioGroup/components/Radio/index.d.ts +4 -0
  321. package/dist/components/RadioGroup/components/Radio/props.d.ts +15 -0
  322. package/dist/components/RadioGroup/components/Radio/styled.d.ts +8 -0
  323. package/dist/components/RadioGroup/index.d.ts +5 -0
  324. package/dist/components/RadioGroup/index.js +197 -0
  325. package/dist/components/RadioGroup/props.d.ts +25 -0
  326. package/dist/components/ResponsiveImage/index.d.ts +5 -0
  327. package/dist/components/ResponsiveImage/index.js +89 -0
  328. package/dist/components/ResponsiveImage/props.d.ts +16 -0
  329. package/dist/components/ResponsiveImage/styled.d.ts +4 -0
  330. package/dist/components/RichText/index.d.ts +5 -0
  331. package/dist/components/RichText/index.js +7 -0
  332. package/dist/components/RichText/parseHtml.d.ts +17 -0
  333. package/dist/components/RichText/props.d.ts +22 -0
  334. package/dist/components/ScreenreaderOnly/index.d.ts +5 -0
  335. package/dist/components/ScreenreaderOnly/index.js +6 -0
  336. package/dist/components/ScreenreaderOnly/props.d.ts +9 -0
  337. package/dist/components/ScreenreaderOnly/styled.d.ts +2 -0
  338. package/dist/components/SearchInput/index.d.ts +4 -0
  339. package/dist/components/SearchInput/index.js +140 -0
  340. package/dist/components/SearchInput/props.d.ts +34 -0
  341. package/dist/components/SearchInput/styled.d.ts +13 -0
  342. package/dist/components/SelectInput/index.d.ts +8 -0
  343. package/dist/components/SelectInput/index.js +160 -0
  344. package/dist/components/SelectInput/props.d.ts +19 -0
  345. package/dist/components/SelectInput/styled.d.ts +5 -0
  346. package/dist/components/Stepper/index.d.ts +5 -0
  347. package/dist/components/Stepper/index.js +205 -0
  348. package/dist/components/Stepper/props.d.ts +23 -0
  349. package/dist/components/Stepper/styled.d.ts +6 -0
  350. package/dist/components/SuggestInput/SuggestInputFormElement.d.ts +4 -0
  351. package/dist/components/SuggestInput/components/SuggestInputList/index.d.ts +4 -0
  352. package/dist/components/SuggestInput/components/SuggestInputList/props.d.ts +13 -0
  353. package/dist/components/SuggestInput/components/SuggestInputList/styled.d.ts +8 -0
  354. package/dist/components/SuggestInput/index.d.ts +4 -0
  355. package/dist/components/SuggestInput/index.js +387 -0
  356. package/dist/components/SuggestInput/props.d.ts +37 -0
  357. package/dist/components/SuggestInput/styled.d.ts +13 -0
  358. package/dist/components/Switch/getHandleIcon.d.ts +1 -0
  359. package/dist/components/Switch/index.d.ts +5 -0
  360. package/dist/components/Switch/index.js +169 -0
  361. package/dist/components/Switch/props.d.ts +20 -0
  362. package/dist/components/Switch/styled.d.ts +8 -0
  363. package/dist/components/TabularPrice/index.d.ts +5 -0
  364. package/dist/components/TabularPrice/index.js +8 -0
  365. package/dist/components/TabularPrice/props.d.ts +17 -0
  366. package/dist/components/TabularPrice/styled.d.ts +3 -0
  367. package/dist/components/TextList/index.d.ts +5 -0
  368. package/dist/components/TextList/index.js +10 -0
  369. package/dist/components/TextList/props.d.ts +37 -0
  370. package/dist/components/TextList/styled.d.ts +3 -0
  371. package/dist/components/Textarea/index.d.ts +4 -0
  372. package/dist/components/Textarea/index.js +156 -0
  373. package/dist/components/Textarea/props.d.ts +17 -0
  374. package/dist/components/Textarea/styled.d.ts +11 -0
  375. package/dist/components/Tray/index.d.ts +5 -0
  376. package/dist/components/Tray/index.js +218 -0
  377. package/dist/components/Tray/props.d.ts +43 -0
  378. package/dist/components/Tray/styled.d.ts +7 -0
  379. package/dist/easing-Dm-pO8SY.js +6 -0
  380. package/dist/filterProps-Cewck8OH.js +13 -0
  381. package/dist/foundations/GlobalStyle/index.d.ts +3 -0
  382. package/dist/foundations/GlobalStyle/index.js +228 -0
  383. package/dist/foundations/PatternProps/index.d.ts +18 -0
  384. package/dist/foundations/PatternProps/index.js +1 -0
  385. package/dist/foundations/cssObjects/screenreaderOnly.d.ts +2 -0
  386. package/dist/foundations/cssVars.d.ts +7 -0
  387. package/dist/foundations/media-query/forcedColors/index.d.ts +7 -0
  388. package/dist/foundations/media-query/forcedColors/index.js +12 -0
  389. package/dist/foundations/media-query/reducedMotion/index.d.ts +11 -0
  390. package/dist/foundations/media-query/reducedMotion/index.js +21 -0
  391. package/dist/foundations/media-query/viewport/index.d.ts +11 -0
  392. package/dist/foundations/media-query/viewport/index.js +6 -0
  393. package/dist/foundations/tags.d.ts +19 -0
  394. package/dist/foundations/token/base/baseColors.d.ts +31 -0
  395. package/dist/foundations/token/base/shadow.d.ts +1 -0
  396. package/dist/foundations/token/breakpoint.d.ts +4 -0
  397. package/dist/foundations/token/easing.d.ts +2 -0
  398. package/dist/foundations/token/getBackgroundColor/index.d.ts +2 -0
  399. package/dist/foundations/token/getBackgroundColor/index.js +5 -0
  400. package/dist/foundations/token/getBodySize/index.d.ts +3 -0
  401. package/dist/foundations/token/getBodySize/index.js +15 -0
  402. package/dist/foundations/token/getBorderColor/index.d.ts +2 -0
  403. package/dist/foundations/token/getBorderColor/index.js +5 -0
  404. package/dist/foundations/token/getBorderRadius/index.d.ts +2 -0
  405. package/dist/foundations/token/getBorderRadius/index.js +15 -0
  406. package/dist/foundations/token/getBorderWidth/index.d.ts +2 -0
  407. package/dist/foundations/token/getBorderWidth/index.js +19 -0
  408. package/dist/foundations/token/getBottomSpacing/index.d.ts +3 -0
  409. package/dist/foundations/token/getBottomSpacing/index.js +14 -0
  410. package/dist/foundations/token/getFontWeight/index.d.ts +2 -0
  411. package/dist/foundations/token/getFontWeight/index.js +13 -0
  412. package/dist/foundations/token/getHeadingSize/index.d.ts +3 -0
  413. package/dist/foundations/token/getHeadingSize/index.js +27 -0
  414. package/dist/foundations/token/getHoverColor/index.d.ts +3 -0
  415. package/dist/foundations/token/getHoverColor/index.js +7 -0
  416. package/dist/foundations/token/getIconColor/index.d.ts +2 -0
  417. package/dist/foundations/token/getIconColor/index.js +5 -0
  418. package/dist/foundations/token/getObjectColor/index.d.ts +2 -0
  419. package/dist/foundations/token/getObjectColor/index.js +5 -0
  420. package/dist/foundations/token/getOpacity/index.d.ts +2 -0
  421. package/dist/foundations/token/getOpacity/index.js +11 -0
  422. package/dist/foundations/token/getPressColor/index.d.ts +3 -0
  423. package/dist/foundations/token/getPressColor/index.js +7 -0
  424. package/dist/foundations/token/getSpacing/index.d.ts +2 -0
  425. package/dist/foundations/token/getSpacing/index.js +5 -0
  426. package/dist/foundations/token/getTextColor/index.d.ts +2 -0
  427. package/dist/foundations/token/getTextColor/index.js +5 -0
  428. package/dist/foundations/token/getTextDecoration/index.d.ts +2 -0
  429. package/dist/foundations/token/getTextDecoration/index.js +13 -0
  430. package/dist/foundations/token/types/BackgroundColor.d.ts +7 -0
  431. package/dist/foundations/token/types/BorderColor.d.ts +13 -0
  432. package/dist/foundations/token/types/BorderRadius.d.ts +5 -0
  433. package/dist/foundations/token/types/BorderWidth.d.ts +9 -0
  434. package/dist/foundations/token/types/FontWeight.d.ts +4 -0
  435. package/dist/foundations/token/types/HeadingSize.d.ts +6 -0
  436. package/dist/foundations/token/types/IconColor.d.ts +10 -0
  437. package/dist/foundations/token/types/ObjectColor.d.ts +12 -0
  438. package/dist/foundations/token/types/Opacity.d.ts +3 -0
  439. package/dist/foundations/token/types/Spacing.d.ts +53 -0
  440. package/dist/foundations/token/types/TextBodySize.d.ts +3 -0
  441. package/dist/foundations/token/types/TextColor.d.ts +8 -0
  442. package/dist/foundations/token/types/TextDecoration.d.ts +4 -0
  443. package/dist/foundations/token/types/Viewport.d.ts +4 -0
  444. package/dist/foundations/types/ButtonAppearances.d.ts +4 -0
  445. package/dist/foundations/types/CornerStyle.d.ts +3 -0
  446. package/dist/foundations/types/PositionType.d.ts +6 -0
  447. package/dist/foundations/types/PositionedIconInterface.d.ts +6 -0
  448. package/dist/foundations/types/SizeTypes.d.ts +3 -0
  449. package/dist/foundations/types/SystemIconWithPosition.d.ts +5 -0
  450. package/dist/foundations/types/Theme.d.ts +1 -0
  451. package/dist/getCssVar-BP6T9pFM.js +6 -0
  452. package/dist/hooks/useFocusWithin/index.d.ts +2 -0
  453. package/dist/hooks/useFocusWithin/index.js +36 -0
  454. package/dist/hooks/useForcedColors/index.d.ts +1 -0
  455. package/dist/hooks/useForcedColors/index.js +9 -0
  456. package/dist/hooks/useMediaQuery/index.d.ts +1 -0
  457. package/dist/hooks/useMediaQuery/index.js +19 -0
  458. package/dist/hooks/useReducedMotion/index.d.ts +1 -0
  459. package/dist/hooks/useReducedMotion/index.js +9 -0
  460. package/dist/hooks/useThirdPartyConsent/index.d.ts +18 -0
  461. package/dist/hooks/useThirdPartyConsent/index.js +54 -0
  462. package/dist/hooks/useViewport/index.d.ts +2 -0
  463. package/dist/hooks/useViewport/index.js +24 -0
  464. package/dist/icons/index.d.ts +1 -0
  465. package/dist/icons/index.js +603 -0
  466. package/dist/index-Cbojl4_Q.js +7134 -0
  467. package/dist/index-Ck2bCrhT.js +32 -0
  468. package/dist/index-DE9iZx_0.js +79 -0
  469. package/dist/index-DH6pW0wc.js +208 -0
  470. package/dist/index-DPQJSCi7.js +168 -0
  471. package/dist/index-DQhtQZ85.js +24 -0
  472. package/dist/index-DRQqmPiC.js +61 -0
  473. package/dist/index-DauKVKW_.js +79 -0
  474. package/dist/index.d.ts +169 -0
  475. package/dist/index.js +288 -0
  476. package/dist/props-DDpgcryb.js +6 -0
  477. package/dist/renderInlineRichTextFromOpenText-RvOG3QbI.js +13 -0
  478. package/dist/shadow-u158mzuN.js +4 -0
  479. package/dist/styled-BWxYFp57.js +71 -0
  480. package/dist/styled-Bq7qee_E.js +34 -0
  481. package/dist/styled-CN4Pw2Cl.js +245 -0
  482. package/dist/styled-D4n7rxyh.js +45 -0
  483. package/dist/styled-DBibvE8t.js +165 -0
  484. package/dist/styled-DtPpPNNy.js +29 -0
  485. package/dist/styled-Dtd8GcNo.js +133 -0
  486. package/dist/styled-G3ZpnzDF.js +124 -0
  487. package/dist/tags-DI6H1biK.js +29 -0
  488. package/package.json +22 -83
  489. package/Accordion/Accordion.d.ts +0 -122
  490. package/Accordion/Accordion.js +0 -334
  491. package/Accordion/AccordionContext.js +0 -18
  492. package/Accordion/accordionClasses.d.ts +0 -20
  493. package/Accordion/accordionClasses.js +0 -15
  494. package/Accordion/index.d.ts +0 -4
  495. package/Accordion/index.js +0 -35
  496. package/AccordionActions/AccordionActions.d.ts +0 -35
  497. package/AccordionActions/AccordionActions.js +0 -100
  498. package/AccordionActions/accordionActionsClasses.d.ts +0 -10
  499. package/AccordionActions/accordionActionsClasses.js +0 -15
  500. package/AccordionActions/index.d.ts +0 -4
  501. package/AccordionActions/index.js +0 -35
  502. package/AccordionDetails/AccordionDetails.d.ts +0 -30
  503. package/AccordionDetails/AccordionDetails.js +0 -76
  504. package/AccordionDetails/accordionDetailsClasses.d.ts +0 -8
  505. package/AccordionDetails/accordionDetailsClasses.js +0 -15
  506. package/AccordionDetails/index.d.ts +0 -4
  507. package/AccordionDetails/index.js +0 -35
  508. package/AccordionSummary/AccordionSummary.d.ts +0 -80
  509. package/AccordionSummary/AccordionSummary.js +0 -254
  510. package/AccordionSummary/accordionSummaryClasses.d.ts +0 -25
  511. package/AccordionSummary/accordionSummaryClasses.js +0 -15
  512. package/AccordionSummary/index.d.ts +0 -4
  513. package/AccordionSummary/index.js +0 -35
  514. package/Alert/Alert.d.ts +0 -178
  515. package/Alert/Alert.js +0 -390
  516. package/Alert/alertClasses.d.ts +0 -100
  517. package/Alert/alertClasses.js +0 -15
  518. package/Alert/index.d.ts +0 -4
  519. package/Alert/index.js +0 -35
  520. package/AlertTitle/AlertTitle.d.ts +0 -31
  521. package/AlertTitle/AlertTitle.js +0 -82
  522. package/AlertTitle/alertTitleClasses.d.ts +0 -8
  523. package/AlertTitle/alertTitleClasses.js +0 -15
  524. package/AlertTitle/index.d.ts +0 -4
  525. package/AlertTitle/index.js +0 -35
  526. package/AppBar/AppBar.d.ts +0 -59
  527. package/AppBar/AppBar.js +0 -234
  528. package/AppBar/appBarClasses.d.ts +0 -36
  529. package/AppBar/appBarClasses.js +0 -15
  530. package/AppBar/index.d.ts +0 -4
  531. package/AppBar/index.js +0 -35
  532. package/Autocomplete/Autocomplete.d.ts +0 -320
  533. package/Autocomplete/Autocomplete.js +0 -1202
  534. package/Autocomplete/autocompleteClasses.d.ts +0 -58
  535. package/Autocomplete/autocompleteClasses.js +0 -15
  536. package/Autocomplete/index.d.ts +0 -4
  537. package/Autocomplete/index.js +0 -41
  538. package/Avatar/Avatar.d.ts +0 -112
  539. package/Avatar/Avatar.js +0 -325
  540. package/Avatar/avatarClasses.d.ts +0 -20
  541. package/Avatar/avatarClasses.js +0 -15
  542. package/Avatar/index.d.ts +0 -4
  543. package/Avatar/index.js +0 -35
  544. package/AvatarGroup/AvatarGroup.d.ts +0 -96
  545. package/AvatarGroup/AvatarGroup.js +0 -238
  546. package/AvatarGroup/avatarGroupClasses.d.ts +0 -10
  547. package/AvatarGroup/avatarGroupClasses.js +0 -15
  548. package/AvatarGroup/index.d.ts +0 -4
  549. package/AvatarGroup/index.js +0 -35
  550. package/Backdrop/Backdrop.d.ts +0 -118
  551. package/Backdrop/Backdrop.js +0 -212
  552. package/Backdrop/backdropClasses.d.ts +0 -10
  553. package/Backdrop/backdropClasses.js +0 -15
  554. package/Backdrop/index.d.ts +0 -4
  555. package/Backdrop/index.js +0 -35
  556. package/Badge/Badge.d.ts +0 -157
  557. package/Badge/Badge.js +0 -441
  558. package/Badge/badgeClasses.d.ts +0 -56
  559. package/Badge/badgeClasses.js +0 -17
  560. package/Badge/index.d.ts +0 -4
  561. package/Badge/index.js +0 -35
  562. package/Badge/useBadge.d.ts +0 -3
  563. package/Badge/useBadge.js +0 -37
  564. package/Badge/useBadge.types.d.ts +0 -39
  565. package/Badge/useBadge.types.js +0 -5
  566. package/BottomNavigation/BottomNavigation.d.ts +0 -55
  567. package/BottomNavigation/BottomNavigation.js +0 -129
  568. package/BottomNavigation/bottomNavigationClasses.d.ts +0 -8
  569. package/BottomNavigation/bottomNavigationClasses.js +0 -15
  570. package/BottomNavigation/index.d.ts +0 -4
  571. package/BottomNavigation/index.js +0 -35
  572. package/BottomNavigationAction/BottomNavigationAction.d.ts +0 -87
  573. package/BottomNavigationAction/BottomNavigationAction.js +0 -237
  574. package/BottomNavigationAction/bottomNavigationActionClasses.d.ts +0 -14
  575. package/BottomNavigationAction/bottomNavigationActionClasses.js +0 -15
  576. package/BottomNavigationAction/index.d.ts +0 -4
  577. package/BottomNavigationAction/index.js +0 -35
  578. package/Box/Box.d.ts +0 -20
  579. package/Box/Box.js +0 -41
  580. package/Box/boxClasses.d.ts +0 -7
  581. package/Box/boxClasses.js +0 -10
  582. package/Box/index.d.ts +0 -4
  583. package/Box/index.js +0 -35
  584. package/Breadcrumbs/BreadcrumbCollapsed.js +0 -97
  585. package/Breadcrumbs/Breadcrumbs.d.ts +0 -94
  586. package/Breadcrumbs/Breadcrumbs.js +0 -245
  587. package/Breadcrumbs/breadcrumbsClasses.d.ts +0 -14
  588. package/Breadcrumbs/breadcrumbsClasses.js +0 -15
  589. package/Breadcrumbs/index.d.ts +0 -4
  590. package/Breadcrumbs/index.js +0 -35
  591. package/Button/Button.d.ts +0 -130
  592. package/Button/Button.js +0 -693
  593. package/Button/buttonClasses.d.ts +0 -194
  594. package/Button/buttonClasses.js +0 -15
  595. package/Button/index.d.ts +0 -4
  596. package/Button/index.js +0 -35
  597. package/ButtonBase/ButtonBase.d.ts +0 -125
  598. package/ButtonBase/ButtonBase.js +0 -453
  599. package/ButtonBase/Ripple.js +0 -93
  600. package/ButtonBase/TouchRipple.d.ts +0 -22
  601. package/ButtonBase/TouchRipple.js +0 -331
  602. package/ButtonBase/buttonBaseClasses.d.ts +0 -12
  603. package/ButtonBase/buttonBaseClasses.js +0 -15
  604. package/ButtonBase/index.d.ts +0 -6
  605. package/ButtonBase/index.js +0 -54
  606. package/ButtonBase/touchRippleClasses.d.ts +0 -20
  607. package/ButtonBase/touchRippleClasses.js +0 -15
  608. package/ButtonGroup/ButtonGroup.d.ts +0 -91
  609. package/ButtonGroup/ButtonGroup.js +0 -397
  610. package/ButtonGroup/ButtonGroupButtonContext.d.ts +0 -6
  611. package/ButtonGroup/ButtonGroupButtonContext.js +0 -17
  612. package/ButtonGroup/ButtonGroupContext.d.ts +0 -18
  613. package/ButtonGroup/ButtonGroupContext.js +0 -17
  614. package/ButtonGroup/buttonGroupClasses.d.ts +0 -104
  615. package/ButtonGroup/buttonGroupClasses.js +0 -15
  616. package/ButtonGroup/index.d.ts +0 -6
  617. package/ButtonGroup/index.js +0 -51
  618. package/CHANGELOG.md +0 -565
  619. package/Card/Card.d.ts +0 -47
  620. package/Card/Card.js +0 -90
  621. package/Card/cardClasses.d.ts +0 -8
  622. package/Card/cardClasses.js +0 -15
  623. package/Card/index.d.ts +0 -4
  624. package/Card/index.js +0 -35
  625. package/CardActionArea/CardActionArea.d.ts +0 -63
  626. package/CardActionArea/CardActionArea.js +0 -161
  627. package/CardActionArea/cardActionAreaClasses.d.ts +0 -12
  628. package/CardActionArea/cardActionAreaClasses.js +0 -15
  629. package/CardActionArea/index.d.ts +0 -4
  630. package/CardActionArea/index.js +0 -35
  631. package/CardActions/CardActions.d.ts +0 -35
  632. package/CardActions/CardActions.js +0 -101
  633. package/CardActions/cardActionsClasses.d.ts +0 -10
  634. package/CardActions/cardActionsClasses.js +0 -15
  635. package/CardActions/index.d.ts +0 -4
  636. package/CardActions/index.js +0 -35
  637. package/CardContent/CardContent.d.ts +0 -38
  638. package/CardContent/CardContent.js +0 -86
  639. package/CardContent/cardContentClasses.d.ts +0 -8
  640. package/CardContent/cardContentClasses.js +0 -15
  641. package/CardContent/index.d.ts +0 -4
  642. package/CardContent/index.js +0 -35
  643. package/CardHeader/CardHeader.d.ts +0 -157
  644. package/CardHeader/CardHeader.js +0 -271
  645. package/CardHeader/cardHeaderClasses.d.ts +0 -18
  646. package/CardHeader/cardHeaderClasses.js +0 -15
  647. package/CardHeader/index.d.ts +0 -4
  648. package/CardHeader/index.js +0 -35
  649. package/CardMedia/CardMedia.d.ts +0 -51
  650. package/CardMedia/CardMedia.js +0 -152
  651. package/CardMedia/cardMediaClasses.d.ts +0 -12
  652. package/CardMedia/cardMediaClasses.js +0 -15
  653. package/CardMedia/index.d.ts +0 -4
  654. package/CardMedia/index.js +0 -35
  655. package/Checkbox/Checkbox.d.ts +0 -131
  656. package/Checkbox/Checkbox.js +0 -287
  657. package/Checkbox/checkboxClasses.d.ts +0 -22
  658. package/Checkbox/checkboxClasses.js +0 -15
  659. package/Checkbox/index.d.ts +0 -4
  660. package/Checkbox/index.js +0 -35
  661. package/Chip/Chip.d.ts +0 -107
  662. package/Chip/Chip.js +0 -583
  663. package/Chip/chipClasses.d.ts +0 -150
  664. package/Chip/chipClasses.js +0 -15
  665. package/Chip/index.d.ts +0 -4
  666. package/Chip/index.js +0 -35
  667. package/CircularProgress/CircularProgress.d.ts +0 -71
  668. package/CircularProgress/CircularProgress.js +0 -291
  669. package/CircularProgress/circularProgressClasses.d.ts +0 -30
  670. package/CircularProgress/circularProgressClasses.js +0 -15
  671. package/CircularProgress/index.d.ts +0 -4
  672. package/CircularProgress/index.js +0 -35
  673. package/ClickAwayListener/ClickAwayListener.d.ts +0 -47
  674. package/ClickAwayListener/ClickAwayListener.js +0 -183
  675. package/ClickAwayListener/index.d.ts +0 -2
  676. package/ClickAwayListener/index.js +0 -12
  677. package/Collapse/Collapse.d.ts +0 -71
  678. package/Collapse/Collapse.js +0 -416
  679. package/Collapse/collapseClasses.d.ts +0 -18
  680. package/Collapse/collapseClasses.js +0 -15
  681. package/Collapse/index.d.ts +0 -4
  682. package/Collapse/index.js +0 -35
  683. package/Container/Container.d.ts +0 -55
  684. package/Container/Container.js +0 -73
  685. package/Container/containerClasses.d.ts +0 -6
  686. package/Container/containerClasses.js +0 -15
  687. package/Container/index.d.ts +0 -4
  688. package/Container/index.js +0 -35
  689. package/CssBaseline/CssBaseline.d.ts +0 -28
  690. package/CssBaseline/CssBaseline.js +0 -170
  691. package/CssBaseline/index.d.ts +0 -2
  692. package/CssBaseline/index.js +0 -13
  693. package/DefaultPropsProvider/DefaultPropsProvider.d.ts +0 -13
  694. package/DefaultPropsProvider/DefaultPropsProvider.js +0 -37
  695. package/DefaultPropsProvider/index.d.ts +0 -1
  696. package/DefaultPropsProvider/index.js +0 -19
  697. package/Dialog/Dialog.d.ts +0 -184
  698. package/Dialog/Dialog.js +0 -516
  699. package/Dialog/DialogContext.d.ts +0 -6
  700. package/Dialog/DialogContext.js +0 -14
  701. package/Dialog/dialogClasses.d.ts +0 -40
  702. package/Dialog/dialogClasses.js +0 -15
  703. package/Dialog/index.d.ts +0 -4
  704. package/Dialog/index.js +0 -35
  705. package/DialogActions/DialogActions.d.ts +0 -35
  706. package/DialogActions/DialogActions.js +0 -103
  707. package/DialogActions/dialogActionsClasses.d.ts +0 -10
  708. package/DialogActions/dialogActionsClasses.js +0 -15
  709. package/DialogActions/index.d.ts +0 -4
  710. package/DialogActions/index.js +0 -35
  711. package/DialogContent/DialogContent.d.ts +0 -35
  712. package/DialogContent/DialogContent.js +0 -116
  713. package/DialogContent/dialogContentClasses.d.ts +0 -10
  714. package/DialogContent/dialogContentClasses.js +0 -15
  715. package/DialogContent/index.d.ts +0 -4
  716. package/DialogContent/index.js +0 -35
  717. package/DialogContentText/DialogContentText.d.ts +0 -37
  718. package/DialogContentText/DialogContentText.js +0 -83
  719. package/DialogContentText/dialogContentTextClasses.d.ts +0 -8
  720. package/DialogContentText/dialogContentTextClasses.js +0 -15
  721. package/DialogContentText/index.d.ts +0 -4
  722. package/DialogContentText/index.js +0 -35
  723. package/DialogTitle/DialogTitle.d.ts +0 -43
  724. package/DialogTitle/DialogTitle.js +0 -87
  725. package/DialogTitle/dialogTitleClasses.d.ts +0 -8
  726. package/DialogTitle/dialogTitleClasses.js +0 -15
  727. package/DialogTitle/index.d.ts +0 -4
  728. package/DialogTitle/index.js +0 -35
  729. package/Divider/Divider.d.ts +0 -74
  730. package/Divider/Divider.js +0 -321
  731. package/Divider/dividerClasses.d.ts +0 -38
  732. package/Divider/dividerClasses.js +0 -15
  733. package/Divider/index.d.ts +0 -4
  734. package/Divider/index.js +0 -35
  735. package/Drawer/Drawer.d.ts +0 -154
  736. package/Drawer/Drawer.js +0 -443
  737. package/Drawer/drawerClasses.d.ts +0 -54
  738. package/Drawer/drawerClasses.js +0 -15
  739. package/Drawer/index.d.ts +0 -4
  740. package/Drawer/index.js +0 -35
  741. package/Fab/Fab.d.ts +0 -82
  742. package/Fab/Fab.js +0 -278
  743. package/Fab/fabClasses.d.ts +0 -26
  744. package/Fab/fabClasses.js +0 -15
  745. package/Fab/index.d.ts +0 -4
  746. package/Fab/index.js +0 -35
  747. package/Fade/Fade.d.ts +0 -48
  748. package/Fade/Fade.js +0 -217
  749. package/Fade/index.d.ts +0 -2
  750. package/Fade/index.js +0 -13
  751. package/FilledInput/FilledInput.d.ts +0 -42
  752. package/FilledInput/FilledInput.js +0 -523
  753. package/FilledInput/filledInputClasses.d.ts +0 -30
  754. package/FilledInput/filledInputClasses.js +0 -19
  755. package/FilledInput/index.d.ts +0 -4
  756. package/FilledInput/index.js +0 -35
  757. package/FormControl/FormControl.d.ts +0 -120
  758. package/FormControl/FormControl.js +0 -312
  759. package/FormControl/FormControlContext.d.ts +0 -17
  760. package/FormControl/FormControlContext.js +0 -17
  761. package/FormControl/formControlClasses.d.ts +0 -14
  762. package/FormControl/formControlClasses.js +0 -15
  763. package/FormControl/formControlState.js +0 -21
  764. package/FormControl/index.d.ts +0 -6
  765. package/FormControl/index.js +0 -43
  766. package/FormControl/useFormControl.d.ts +0 -2
  767. package/FormControl/useFormControl.js +0 -14
  768. package/FormControlLabel/FormControlLabel.d.ts +0 -101
  769. package/FormControlLabel/FormControlLabel.js +0 -289
  770. package/FormControlLabel/formControlLabelClasses.d.ts +0 -24
  771. package/FormControlLabel/formControlLabelClasses.js +0 -15
  772. package/FormControlLabel/index.d.ts +0 -4
  773. package/FormControlLabel/index.js +0 -35
  774. package/FormGroup/FormGroup.d.ts +0 -39
  775. package/FormGroup/FormGroup.js +0 -115
  776. package/FormGroup/formGroupClasses.d.ts +0 -12
  777. package/FormGroup/formGroupClasses.js +0 -15
  778. package/FormGroup/index.d.ts +0 -4
  779. package/FormGroup/index.js +0 -35
  780. package/FormHelperText/FormHelperText.d.ts +0 -71
  781. package/FormHelperText/FormHelperText.js +0 -193
  782. package/FormHelperText/formHelperTextClasses.d.ts +0 -22
  783. package/FormHelperText/formHelperTextClasses.js +0 -15
  784. package/FormHelperText/index.d.ts +0 -4
  785. package/FormHelperText/index.js +0 -35
  786. package/FormLabel/FormLabel.d.ts +0 -78
  787. package/FormLabel/FormLabel.js +0 -188
  788. package/FormLabel/formLabelClasses.d.ts +0 -22
  789. package/FormLabel/formLabelClasses.js +0 -15
  790. package/FormLabel/index.d.ts +0 -4
  791. package/FormLabel/index.js +0 -45
  792. package/GlobalStyles/GlobalStyles.d.ts +0 -20
  793. package/GlobalStyles/GlobalStyles.js +0 -33
  794. package/GlobalStyles/index.d.ts +0 -2
  795. package/GlobalStyles/index.js +0 -13
  796. package/Grid/Grid.d.ts +0 -111
  797. package/Grid/Grid.js +0 -144
  798. package/Grid/gridClasses.d.ts +0 -10
  799. package/Grid/gridClasses.js +0 -27
  800. package/Grid/index.d.ts +0 -4
  801. package/Grid/index.js +0 -45
  802. package/GridLegacy/GridLegacy.d.ts +0 -160
  803. package/GridLegacy/GridLegacy.js +0 -601
  804. package/GridLegacy/GridLegacyContext.js +0 -17
  805. package/GridLegacy/gridLegacyClasses.d.ts +0 -48
  806. package/GridLegacy/gridLegacyClasses.js +0 -27
  807. package/GridLegacy/index.d.ts +0 -4
  808. package/GridLegacy/index.js +0 -35
  809. package/Grow/Grow.d.ts +0 -49
  810. package/Grow/Grow.js +0 -269
  811. package/Grow/index.d.ts +0 -2
  812. package/Grow/index.js +0 -13
  813. package/Icon/Icon.d.ts +0 -62
  814. package/Icon/Icon.js +0 -192
  815. package/Icon/iconClasses.d.ts +0 -24
  816. package/Icon/iconClasses.js +0 -15
  817. package/Icon/index.d.ts +0 -4
  818. package/Icon/index.js +0 -35
  819. package/IconButton/IconButton.d.ts +0 -90
  820. package/IconButton/IconButton.js +0 -328
  821. package/IconButton/iconButtonClasses.d.ts +0 -40
  822. package/IconButton/iconButtonClasses.js +0 -15
  823. package/IconButton/index.d.ts +0 -4
  824. package/IconButton/index.js +0 -35
  825. package/ImageList/ImageList.d.ts +0 -60
  826. package/ImageList/ImageList.js +0 -157
  827. package/ImageList/ImageListContext.js +0 -18
  828. package/ImageList/imageListClasses.d.ts +0 -16
  829. package/ImageList/imageListClasses.js +0 -15
  830. package/ImageList/index.d.ts +0 -4
  831. package/ImageList/index.js +0 -35
  832. package/ImageListItem/ImageListItem.d.ts +0 -48
  833. package/ImageListItem/ImageListItem.js +0 -195
  834. package/ImageListItem/imageListItemClasses.d.ts +0 -18
  835. package/ImageListItem/imageListItemClasses.js +0 -15
  836. package/ImageListItem/index.d.ts +0 -4
  837. package/ImageListItem/index.js +0 -35
  838. package/ImageListItemBar/ImageListItemBar.d.ts +0 -49
  839. package/ImageListItemBar/ImageListItemBar.js +0 -258
  840. package/ImageListItemBar/imageListItemBarClasses.d.ts +0 -42
  841. package/ImageListItemBar/imageListItemBarClasses.js +0 -15
  842. package/ImageListItemBar/index.d.ts +0 -4
  843. package/ImageListItemBar/index.js +0 -35
  844. package/InitColorSchemeScript/InitColorSchemeScript.d.ts +0 -66
  845. package/InitColorSchemeScript/InitColorSchemeScript.js +0 -99
  846. package/InitColorSchemeScript/index.d.ts +0 -1
  847. package/InitColorSchemeScript/index.js +0 -13
  848. package/Input/Input.d.ts +0 -35
  849. package/Input/Input.js +0 -368
  850. package/Input/index.d.ts +0 -4
  851. package/Input/index.js +0 -35
  852. package/Input/inputClasses.d.ts +0 -38
  853. package/Input/inputClasses.js +0 -19
  854. package/InputAdornment/InputAdornment.d.ts +0 -59
  855. package/InputAdornment/InputAdornment.js +0 -193
  856. package/InputAdornment/index.d.ts +0 -4
  857. package/InputAdornment/index.js +0 -35
  858. package/InputAdornment/inputAdornmentClasses.d.ts +0 -24
  859. package/InputAdornment/inputAdornmentClasses.js +0 -15
  860. package/InputBase/InputBase.d.ts +0 -247
  861. package/InputBase/InputBase.js +0 -758
  862. package/InputBase/index.d.ts +0 -4
  863. package/InputBase/index.js +0 -35
  864. package/InputBase/inputBaseClasses.d.ts +0 -55
  865. package/InputBase/inputBaseClasses.js +0 -15
  866. package/InputBase/utils.js +0 -38
  867. package/InputLabel/InputLabel.d.ts +0 -79
  868. package/InputLabel/InputLabel.js +0 -290
  869. package/InputLabel/index.d.ts +0 -4
  870. package/InputLabel/index.js +0 -35
  871. package/InputLabel/inputLabelClasses.d.ts +0 -32
  872. package/InputLabel/inputLabelClasses.js +0 -15
  873. package/LinearProgress/LinearProgress.d.ts +0 -57
  874. package/LinearProgress/LinearProgress.js +0 -462
  875. package/LinearProgress/index.d.ts +0 -4
  876. package/LinearProgress/index.js +0 -35
  877. package/LinearProgress/linearProgressClasses.d.ts +0 -64
  878. package/LinearProgress/linearProgressClasses.js +0 -15
  879. package/Link/Link.d.ts +0 -63
  880. package/Link/Link.js +0 -290
  881. package/Link/getTextDecoration.d.ts +0 -11
  882. package/Link/getTextDecoration.js +0 -22
  883. package/Link/index.d.ts +0 -4
  884. package/Link/index.js +0 -35
  885. package/Link/linkClasses.d.ts +0 -18
  886. package/Link/linkClasses.js +0 -15
  887. package/List/List.d.ts +0 -65
  888. package/List/List.js +0 -141
  889. package/List/ListContext.d.ts +0 -5
  890. package/List/ListContext.js +0 -17
  891. package/List/index.d.ts +0 -4
  892. package/List/index.js +0 -35
  893. package/List/listClasses.d.ts +0 -14
  894. package/List/listClasses.js +0 -15
  895. package/ListItem/ListItem.d.ts +0 -127
  896. package/ListItem/ListItem.js +0 -395
  897. package/ListItem/index.d.ts +0 -4
  898. package/ListItem/index.js +0 -35
  899. package/ListItem/listItemClasses.d.ts +0 -22
  900. package/ListItem/listItemClasses.js +0 -15
  901. package/ListItemAvatar/ListItemAvatar.d.ts +0 -30
  902. package/ListItemAvatar/ListItemAvatar.js +0 -98
  903. package/ListItemAvatar/index.d.ts +0 -4
  904. package/ListItemAvatar/index.js +0 -35
  905. package/ListItemAvatar/listItemAvatarClasses.d.ts +0 -10
  906. package/ListItemAvatar/listItemAvatarClasses.js +0 -15
  907. package/ListItemButton/ListItemButton.d.ts +0 -85
  908. package/ListItemButton/ListItemButton.js +0 -272
  909. package/ListItemButton/index.d.ts +0 -4
  910. package/ListItemButton/index.js +0 -35
  911. package/ListItemButton/listItemButtonClasses.d.ts +0 -22
  912. package/ListItemButton/listItemButtonClasses.js +0 -15
  913. package/ListItemIcon/ListItemIcon.d.ts +0 -32
  914. package/ListItemIcon/ListItemIcon.js +0 -104
  915. package/ListItemIcon/index.d.ts +0 -4
  916. package/ListItemIcon/index.js +0 -35
  917. package/ListItemIcon/listItemIconClasses.d.ts +0 -10
  918. package/ListItemIcon/listItemIconClasses.js +0 -15
  919. package/ListItemSecondaryAction/ListItemSecondaryAction.d.ts +0 -36
  920. package/ListItemSecondaryAction/ListItemSecondaryAction.js +0 -103
  921. package/ListItemSecondaryAction/index.d.ts +0 -4
  922. package/ListItemSecondaryAction/index.js +0 -35
  923. package/ListItemSecondaryAction/listItemSecondaryActionClasses.d.ts +0 -10
  924. package/ListItemSecondaryAction/listItemSecondaryActionClasses.js +0 -15
  925. package/ListItemText/ListItemText.d.ts +0 -105
  926. package/ListItemText/ListItemText.js +0 -234
  927. package/ListItemText/index.d.ts +0 -4
  928. package/ListItemText/index.js +0 -35
  929. package/ListItemText/listItemTextClasses.d.ts +0 -18
  930. package/ListItemText/listItemTextClasses.js +0 -15
  931. package/ListSubheader/ListSubheader.d.ts +0 -59
  932. package/ListSubheader/ListSubheader.js +0 -174
  933. package/ListSubheader/index.d.ts +0 -4
  934. package/ListSubheader/index.js +0 -35
  935. package/ListSubheader/listSubheaderClasses.d.ts +0 -18
  936. package/ListSubheader/listSubheaderClasses.js +0 -15
  937. package/Menu/Menu.d.ts +0 -162
  938. package/Menu/Menu.js +0 -345
  939. package/Menu/index.d.ts +0 -4
  940. package/Menu/index.js +0 -35
  941. package/Menu/menuClasses.d.ts +0 -12
  942. package/Menu/menuClasses.js +0 -15
  943. package/MenuItem/MenuItem.d.ts +0 -69
  944. package/MenuItem/MenuItem.js +0 -291
  945. package/MenuItem/index.d.ts +0 -4
  946. package/MenuItem/index.js +0 -35
  947. package/MenuItem/menuItemClasses.d.ts +0 -20
  948. package/MenuItem/menuItemClasses.js +0 -15
  949. package/MenuList/MenuList.d.ts +0 -62
  950. package/MenuList/MenuList.js +0 -297
  951. package/MenuList/index.d.ts +0 -2
  952. package/MenuList/index.js +0 -13
  953. package/MobileStepper/MobileStepper.d.ts +0 -112
  954. package/MobileStepper/MobileStepper.js +0 -311
  955. package/MobileStepper/index.d.ts +0 -4
  956. package/MobileStepper/index.js +0 -35
  957. package/MobileStepper/mobileStepperClasses.d.ts +0 -22
  958. package/MobileStepper/mobileStepperClasses.js +0 -15
  959. package/Modal/Modal.d.ts +0 -218
  960. package/Modal/Modal.js +0 -397
  961. package/Modal/ModalManager.d.ts +0 -25
  962. package/Modal/ModalManager.js +0 -222
  963. package/Modal/index.d.ts +0 -5
  964. package/Modal/index.js +0 -43
  965. package/Modal/modalClasses.d.ts +0 -12
  966. package/Modal/modalClasses.js +0 -15
  967. package/Modal/useModal.d.ts +0 -3
  968. package/Modal/useModal.js +0 -200
  969. package/Modal/useModal.types.d.ts +0 -118
  970. package/Modal/useModal.types.js +0 -5
  971. package/NativeSelect/NativeSelect.d.ts +0 -68
  972. package/NativeSelect/NativeSelect.js +0 -140
  973. package/NativeSelect/NativeSelectInput.d.ts +0 -13
  974. package/NativeSelect/NativeSelectInput.js +0 -247
  975. package/NativeSelect/index.d.ts +0 -4
  976. package/NativeSelect/index.js +0 -35
  977. package/NativeSelect/nativeSelectClasses.d.ts +0 -34
  978. package/NativeSelect/nativeSelectClasses.js +0 -15
  979. package/NoSsr/NoSsr.d.ts +0 -25
  980. package/NoSsr/NoSsr.js +0 -78
  981. package/NoSsr/NoSsr.types.d.ts +0 -18
  982. package/NoSsr/NoSsr.types.js +0 -5
  983. package/NoSsr/index.d.ts +0 -3
  984. package/NoSsr/index.js +0 -13
  985. package/OutlinedInput/NotchedOutline.d.ts +0 -12
  986. package/OutlinedInput/NotchedOutline.js +0 -161
  987. package/OutlinedInput/OutlinedInput.d.ts +0 -54
  988. package/OutlinedInput/OutlinedInput.js +0 -436
  989. package/OutlinedInput/index.d.ts +0 -4
  990. package/OutlinedInput/index.js +0 -35
  991. package/OutlinedInput/outlinedInputClasses.d.ts +0 -38
  992. package/OutlinedInput/outlinedInputClasses.js +0 -19
  993. package/OverridableComponent/index.d.ts +0 -41
  994. package/OverridableComponent/index.js +0 -5
  995. package/Pagination/Pagination.d.ts +0 -79
  996. package/Pagination/Pagination.js +0 -251
  997. package/Pagination/index.d.ts +0 -4
  998. package/Pagination/index.js +0 -35
  999. package/Pagination/paginationClasses.d.ts +0 -14
  1000. package/Pagination/paginationClasses.js +0 -15
  1001. package/PaginationItem/PaginationItem.d.ts +0 -110
  1002. package/PaginationItem/PaginationItem.js +0 -478
  1003. package/PaginationItem/index.d.ts +0 -4
  1004. package/PaginationItem/index.js +0 -35
  1005. package/PaginationItem/paginationItemClasses.d.ts +0 -54
  1006. package/PaginationItem/paginationItemClasses.js +0 -15
  1007. package/Paper/Paper.d.ts +0 -62
  1008. package/Paper/Paper.js +0 -177
  1009. package/Paper/index.d.ts +0 -4
  1010. package/Paper/index.js +0 -35
  1011. package/Paper/paperClasses.d.ts +0 -64
  1012. package/Paper/paperClasses.js +0 -15
  1013. package/PigmentContainer/PigmentContainer.d.ts +0 -55
  1014. package/PigmentContainer/PigmentContainer.js +0 -107
  1015. package/PigmentContainer/index.d.ts +0 -3
  1016. package/PigmentContainer/index.js +0 -35
  1017. package/PigmentGrid/PigmentGrid.d.ts +0 -83
  1018. package/PigmentGrid/PigmentGrid.js +0 -135
  1019. package/PigmentGrid/index.d.ts +0 -3
  1020. package/PigmentGrid/index.js +0 -35
  1021. package/PigmentStack/PigmentStack.d.ts +0 -49
  1022. package/PigmentStack/PigmentStack.js +0 -90
  1023. package/PigmentStack/index.d.ts +0 -3
  1024. package/PigmentStack/index.js +0 -35
  1025. package/Popover/Popover.d.ts +0 -233
  1026. package/Popover/Popover.js +0 -590
  1027. package/Popover/index.d.ts +0 -4
  1028. package/Popover/index.js +0 -45
  1029. package/Popover/popoverClasses.d.ts +0 -10
  1030. package/Popover/popoverClasses.js +0 -15
  1031. package/Popper/BasePopper.d.ts +0 -7
  1032. package/Popper/BasePopper.js +0 -382
  1033. package/Popper/BasePopper.types.d.ts +0 -129
  1034. package/Popper/BasePopper.types.js +0 -5
  1035. package/Popper/Popper.d.ts +0 -46
  1036. package/Popper/Popper.js +0 -216
  1037. package/Popper/index.d.ts +0 -4
  1038. package/Popper/index.js +0 -26
  1039. package/Popper/popperClasses.d.ts +0 -8
  1040. package/Popper/popperClasses.js +0 -15
  1041. package/Portal/Portal.d.ts +0 -16
  1042. package/Portal/Portal.js +0 -98
  1043. package/Portal/Portal.types.d.ts +0 -23
  1044. package/Portal/Portal.types.js +0 -5
  1045. package/Portal/index.d.ts +0 -3
  1046. package/Portal/index.js +0 -13
  1047. package/Radio/Radio.d.ts +0 -86
  1048. package/Radio/Radio.js +0 -316
  1049. package/Radio/RadioButtonIcon.js +0 -94
  1050. package/Radio/index.d.ts +0 -4
  1051. package/Radio/index.js +0 -35
  1052. package/Radio/radioClasses.d.ts +0 -18
  1053. package/Radio/radioClasses.js +0 -15
  1054. package/RadioGroup/RadioGroup.d.ts +0 -38
  1055. package/RadioGroup/RadioGroup.js +0 -121
  1056. package/RadioGroup/RadioGroupContext.d.ts +0 -11
  1057. package/RadioGroup/RadioGroupContext.js +0 -17
  1058. package/RadioGroup/index.d.ts +0 -5
  1059. package/RadioGroup/index.js +0 -43
  1060. package/RadioGroup/radioGroupClasses.d.ts +0 -6
  1061. package/RadioGroup/radioGroupClasses.js +0 -15
  1062. package/RadioGroup/useRadioGroup.d.ts +0 -3
  1063. package/RadioGroup/useRadioGroup.js +0 -14
  1064. package/Rating/Rating.d.ts +0 -183
  1065. package/Rating/Rating.js +0 -784
  1066. package/Rating/index.d.ts +0 -4
  1067. package/Rating/index.js +0 -35
  1068. package/Rating/ratingClasses.d.ts +0 -40
  1069. package/Rating/ratingClasses.js +0 -15
  1070. package/ScopedCssBaseline/ScopedCssBaseline.d.ts +0 -55
  1071. package/ScopedCssBaseline/ScopedCssBaseline.js +0 -126
  1072. package/ScopedCssBaseline/index.d.ts +0 -4
  1073. package/ScopedCssBaseline/index.js +0 -35
  1074. package/ScopedCssBaseline/scopedCssBaselineClasses.d.ts +0 -8
  1075. package/ScopedCssBaseline/scopedCssBaselineClasses.js +0 -15
  1076. package/Select/Select.d.ts +0 -188
  1077. package/Select/Select.js +0 -306
  1078. package/Select/SelectInput.d.ts +0 -55
  1079. package/Select/SelectInput.js +0 -679
  1080. package/Select/index.d.ts +0 -4
  1081. package/Select/index.js +0 -35
  1082. package/Select/selectClasses.d.ts +0 -42
  1083. package/Select/selectClasses.js +0 -15
  1084. package/Skeleton/Skeleton.d.ts +0 -62
  1085. package/Skeleton/Skeleton.js +0 -276
  1086. package/Skeleton/index.d.ts +0 -4
  1087. package/Skeleton/index.js +0 -35
  1088. package/Skeleton/skeletonClasses.d.ts +0 -26
  1089. package/Skeleton/skeletonClasses.js +0 -15
  1090. package/Slide/Slide.d.ts +0 -63
  1091. package/Slide/Slide.js +0 -345
  1092. package/Slide/index.d.ts +0 -2
  1093. package/Slide/index.js +0 -13
  1094. package/Slider/Slider.d.ts +0 -298
  1095. package/Slider/Slider.js +0 -1097
  1096. package/Slider/SliderValueLabel.d.ts +0 -13
  1097. package/Slider/SliderValueLabel.js +0 -60
  1098. package/Slider/SliderValueLabel.types.d.ts +0 -25
  1099. package/Slider/SliderValueLabel.types.js +0 -5
  1100. package/Slider/index.d.ts +0 -4
  1101. package/Slider/index.js +0 -45
  1102. package/Slider/sliderClasses.d.ts +0 -88
  1103. package/Slider/sliderClasses.js +0 -15
  1104. package/Slider/useSlider.d.ts +0 -4
  1105. package/Slider/useSlider.js +0 -711
  1106. package/Slider/useSlider.types.d.ts +0 -226
  1107. package/Slider/useSlider.types.js +0 -5
  1108. package/Snackbar/Snackbar.d.ts +0 -182
  1109. package/Snackbar/Snackbar.js +0 -437
  1110. package/Snackbar/index.d.ts +0 -4
  1111. package/Snackbar/index.js +0 -35
  1112. package/Snackbar/snackbarClasses.d.ts +0 -20
  1113. package/Snackbar/snackbarClasses.js +0 -15
  1114. package/Snackbar/useSnackbar.d.ts +0 -3
  1115. package/Snackbar/useSnackbar.js +0 -130
  1116. package/Snackbar/useSnackbar.types.d.ts +0 -59
  1117. package/Snackbar/useSnackbar.types.js +0 -5
  1118. package/SnackbarContent/SnackbarContent.d.ts +0 -42
  1119. package/SnackbarContent/SnackbarContent.js +0 -136
  1120. package/SnackbarContent/index.d.ts +0 -4
  1121. package/SnackbarContent/index.js +0 -35
  1122. package/SnackbarContent/snackbarContentClasses.d.ts +0 -12
  1123. package/SnackbarContent/snackbarContentClasses.js +0 -15
  1124. package/SpeedDial/SpeedDial.d.ts +0 -131
  1125. package/SpeedDial/SpeedDial.js +0 -585
  1126. package/SpeedDial/index.d.ts +0 -4
  1127. package/SpeedDial/index.js +0 -35
  1128. package/SpeedDial/speedDialClasses.d.ts +0 -22
  1129. package/SpeedDial/speedDialClasses.js +0 -15
  1130. package/SpeedDialAction/SpeedDialAction.d.ts +0 -117
  1131. package/SpeedDialAction/SpeedDialAction.js +0 -357
  1132. package/SpeedDialAction/index.d.ts +0 -4
  1133. package/SpeedDialAction/index.js +0 -35
  1134. package/SpeedDialAction/speedDialActionClasses.d.ts +0 -20
  1135. package/SpeedDialAction/speedDialActionClasses.js +0 -15
  1136. package/SpeedDialIcon/SpeedDialIcon.d.ts +0 -43
  1137. package/SpeedDialIcon/SpeedDialIcon.js +0 -163
  1138. package/SpeedDialIcon/index.d.ts +0 -4
  1139. package/SpeedDialIcon/index.js +0 -35
  1140. package/SpeedDialIcon/speedDialIconClasses.d.ts +0 -18
  1141. package/SpeedDialIcon/speedDialIconClasses.js +0 -15
  1142. package/Stack/Stack.d.ts +0 -58
  1143. package/Stack/Stack.js +0 -67
  1144. package/Stack/index.d.ts +0 -4
  1145. package/Stack/index.js +0 -20
  1146. package/Stack/stackClasses.d.ts +0 -6
  1147. package/Stack/stackClasses.js +0 -15
  1148. package/Step/Step.d.ts +0 -70
  1149. package/Step/Step.js +0 -183
  1150. package/Step/StepContext.d.ts +0 -20
  1151. package/Step/StepContext.js +0 -26
  1152. package/Step/index.d.ts +0 -6
  1153. package/Step/index.js +0 -54
  1154. package/Step/stepClasses.d.ts +0 -16
  1155. package/Step/stepClasses.js +0 -15
  1156. package/StepButton/StepButton.d.ts +0 -51
  1157. package/StepButton/StepButton.js +0 -140
  1158. package/StepButton/index.d.ts +0 -4
  1159. package/StepButton/index.js +0 -35
  1160. package/StepButton/stepButtonClasses.d.ts +0 -14
  1161. package/StepButton/stepButtonClasses.js +0 -15
  1162. package/StepConnector/StepConnector.d.ts +0 -29
  1163. package/StepConnector/StepConnector.js +0 -159
  1164. package/StepConnector/index.d.ts +0 -4
  1165. package/StepConnector/index.js +0 -35
  1166. package/StepConnector/stepConnectorClasses.d.ts +0 -30
  1167. package/StepConnector/stepConnectorClasses.js +0 -15
  1168. package/StepContent/StepContent.d.ts +0 -75
  1169. package/StepContent/StepContent.js +0 -193
  1170. package/StepContent/index.d.ts +0 -4
  1171. package/StepContent/index.js +0 -35
  1172. package/StepContent/stepContentClasses.d.ts +0 -12
  1173. package/StepContent/stepContentClasses.js +0 -15
  1174. package/StepIcon/StepIcon.d.ts +0 -50
  1175. package/StepIcon/StepIcon.js +0 -166
  1176. package/StepIcon/index.d.ts +0 -4
  1177. package/StepIcon/index.js +0 -35
  1178. package/StepIcon/stepIconClasses.d.ts +0 -16
  1179. package/StepIcon/stepIconClasses.js +0 -15
  1180. package/StepLabel/StepLabel.d.ts +0 -106
  1181. package/StepLabel/StepLabel.js +0 -284
  1182. package/StepLabel/index.d.ts +0 -4
  1183. package/StepLabel/index.js +0 -35
  1184. package/StepLabel/stepLabelClasses.d.ts +0 -28
  1185. package/StepLabel/stepLabelClasses.js +0 -15
  1186. package/Stepper/Stepper.d.ts +0 -71
  1187. package/Stepper/Stepper.js +0 -174
  1188. package/Stepper/StepperContext.d.ts +0 -18
  1189. package/Stepper/StepperContext.js +0 -26
  1190. package/Stepper/index.d.ts +0 -6
  1191. package/Stepper/index.js +0 -54
  1192. package/Stepper/stepperClasses.d.ts +0 -16
  1193. package/Stepper/stepperClasses.js +0 -15
  1194. package/SvgIcon/SvgIcon.d.ts +0 -89
  1195. package/SvgIcon/SvgIcon.js +0 -241
  1196. package/SvgIcon/index.d.ts +0 -4
  1197. package/SvgIcon/index.js +0 -35
  1198. package/SvgIcon/svgIconClasses.d.ts +0 -26
  1199. package/SvgIcon/svgIconClasses.js +0 -15
  1200. package/SwipeableDrawer/SwipeArea.js +0 -111
  1201. package/SwipeableDrawer/SwipeableDrawer.d.ts +0 -106
  1202. package/SwipeableDrawer/SwipeableDrawer.js +0 -668
  1203. package/SwipeableDrawer/index.d.ts +0 -2
  1204. package/SwipeableDrawer/index.js +0 -13
  1205. package/Switch/Switch.d.ts +0 -123
  1206. package/Switch/Switch.js +0 -412
  1207. package/Switch/index.d.ts +0 -4
  1208. package/Switch/index.js +0 -35
  1209. package/Switch/switchClasses.d.ts +0 -32
  1210. package/Switch/switchClasses.js +0 -15
  1211. package/Tab/Tab.d.ts +0 -75
  1212. package/Tab/Tab.js +0 -345
  1213. package/Tab/index.d.ts +0 -4
  1214. package/Tab/index.js +0 -35
  1215. package/Tab/tabClasses.d.ts +0 -30
  1216. package/Tab/tabClasses.js +0 -15
  1217. package/TabScrollButton/TabScrollButton.d.ts +0 -67
  1218. package/TabScrollButton/TabScrollButton.js +0 -179
  1219. package/TabScrollButton/index.d.ts +0 -4
  1220. package/TabScrollButton/index.js +0 -35
  1221. package/TabScrollButton/tabScrollButtonClasses.d.ts +0 -12
  1222. package/TabScrollButton/tabScrollButtonClasses.js +0 -15
  1223. package/Table/Table.d.ts +0 -55
  1224. package/Table/Table.js +0 -143
  1225. package/Table/TableContext.d.ts +0 -7
  1226. package/Table/TableContext.js +0 -17
  1227. package/Table/Tablelvl2Context.d.ts +0 -6
  1228. package/Table/Tablelvl2Context.js +0 -17
  1229. package/Table/index.d.ts +0 -4
  1230. package/Table/index.js +0 -35
  1231. package/Table/tableClasses.d.ts +0 -10
  1232. package/Table/tableClasses.js +0 -15
  1233. package/TableBody/TableBody.d.ts +0 -38
  1234. package/TableBody/TableBody.js +0 -92
  1235. package/TableBody/index.d.ts +0 -4
  1236. package/TableBody/index.js +0 -35
  1237. package/TableBody/tableBodyClasses.d.ts +0 -8
  1238. package/TableBody/tableBodyClasses.js +0 -15
  1239. package/TableCell/TableCell.d.ts +0 -82
  1240. package/TableCell/TableCell.js +0 -277
  1241. package/TableCell/index.d.ts +0 -4
  1242. package/TableCell/index.js +0 -35
  1243. package/TableCell/tableCellClasses.d.ts +0 -32
  1244. package/TableCell/tableCellClasses.js +0 -15
  1245. package/TableContainer/TableContainer.d.ts +0 -38
  1246. package/TableContainer/TableContainer.js +0 -84
  1247. package/TableContainer/index.d.ts +0 -4
  1248. package/TableContainer/index.js +0 -35
  1249. package/TableContainer/tableContainerClasses.d.ts +0 -8
  1250. package/TableContainer/tableContainerClasses.js +0 -15
  1251. package/TableFooter/TableFooter.d.ts +0 -38
  1252. package/TableFooter/TableFooter.js +0 -92
  1253. package/TableFooter/index.d.ts +0 -4
  1254. package/TableFooter/index.js +0 -35
  1255. package/TableFooter/tableFooterClasses.d.ts +0 -8
  1256. package/TableFooter/tableFooterClasses.js +0 -15
  1257. package/TableHead/TableHead.d.ts +0 -38
  1258. package/TableHead/TableHead.js +0 -92
  1259. package/TableHead/index.d.ts +0 -4
  1260. package/TableHead/index.js +0 -35
  1261. package/TableHead/tableHeadClasses.d.ts +0 -8
  1262. package/TableHead/tableHeadClasses.js +0 -15
  1263. package/TablePagination/TablePagination.d.ts +0 -263
  1264. package/TablePagination/TablePagination.js +0 -507
  1265. package/TablePagination/TablePaginationActions.d.ts +0 -94
  1266. package/TablePagination/TablePaginationActions.js +0 -199
  1267. package/TablePagination/index.d.ts +0 -4
  1268. package/TablePagination/index.js +0 -35
  1269. package/TablePagination/tablePaginationClasses.d.ts +0 -28
  1270. package/TablePagination/tablePaginationClasses.js +0 -15
  1271. package/TableRow/TableRow.d.ts +0 -50
  1272. package/TableRow/TableRow.js +0 -134
  1273. package/TableRow/index.d.ts +0 -4
  1274. package/TableRow/index.js +0 -35
  1275. package/TableRow/tableRowClasses.d.ts +0 -16
  1276. package/TableRow/tableRowClasses.js +0 -15
  1277. package/TableSortLabel/TableSortLabel.d.ts +0 -90
  1278. package/TableSortLabel/TableSortLabel.js +0 -219
  1279. package/TableSortLabel/index.d.ts +0 -4
  1280. package/TableSortLabel/index.js +0 -35
  1281. package/TableSortLabel/tableSortLabelClasses.d.ts +0 -24
  1282. package/TableSortLabel/tableSortLabelClasses.js +0 -15
  1283. package/Tabs/ScrollbarSize.js +0 -65
  1284. package/Tabs/Tabs.d.ts +0 -272
  1285. package/Tabs/Tabs.js +0 -962
  1286. package/Tabs/index.d.ts +0 -4
  1287. package/Tabs/index.js +0 -35
  1288. package/Tabs/tabsClasses.d.ts +0 -36
  1289. package/Tabs/tabsClasses.js +0 -15
  1290. package/TextField/TextField.d.ts +0 -342
  1291. package/TextField/TextField.js +0 -463
  1292. package/TextField/index.d.ts +0 -4
  1293. package/TextField/index.js +0 -35
  1294. package/TextField/textFieldClasses.d.ts +0 -8
  1295. package/TextField/textFieldClasses.js +0 -15
  1296. package/TextareaAutosize/TextareaAutosize.d.ts +0 -14
  1297. package/TextareaAutosize/TextareaAutosize.js +0 -263
  1298. package/TextareaAutosize/TextareaAutosize.types.d.ts +0 -13
  1299. package/TextareaAutosize/TextareaAutosize.types.js +0 -5
  1300. package/TextareaAutosize/index.d.ts +0 -3
  1301. package/TextareaAutosize/index.js +0 -13
  1302. package/ToggleButton/ToggleButton.d.ts +0 -95
  1303. package/ToggleButton/ToggleButton.js +0 -275
  1304. package/ToggleButton/index.d.ts +0 -4
  1305. package/ToggleButton/index.js +0 -35
  1306. package/ToggleButton/toggleButtonClasses.d.ts +0 -26
  1307. package/ToggleButton/toggleButtonClasses.js +0 -15
  1308. package/ToggleButtonGroup/ToggleButtonGroup.d.ts +0 -82
  1309. package/ToggleButtonGroup/ToggleButtonGroup.js +0 -288
  1310. package/ToggleButtonGroup/ToggleButtonGroupButtonContext.d.ts +0 -6
  1311. package/ToggleButtonGroup/ToggleButtonGroupButtonContext.js +0 -17
  1312. package/ToggleButtonGroup/ToggleButtonGroupContext.d.ts +0 -16
  1313. package/ToggleButtonGroup/ToggleButtonGroupContext.js +0 -17
  1314. package/ToggleButtonGroup/index.d.ts +0 -4
  1315. package/ToggleButtonGroup/index.js +0 -35
  1316. package/ToggleButtonGroup/isValueSelected.js +0 -17
  1317. package/ToggleButtonGroup/toggleButtonGroupClasses.d.ts +0 -34
  1318. package/ToggleButtonGroup/toggleButtonGroupClasses.js +0 -15
  1319. package/Toolbar/Toolbar.d.ts +0 -51
  1320. package/Toolbar/Toolbar.js +0 -136
  1321. package/Toolbar/index.d.ts +0 -4
  1322. package/Toolbar/index.js +0 -35
  1323. package/Toolbar/toolbarClasses.d.ts +0 -14
  1324. package/Toolbar/toolbarClasses.js +0 -15
  1325. package/Tooltip/Tooltip.d.ts +0 -229
  1326. package/Tooltip/Tooltip.js +0 -905
  1327. package/Tooltip/index.d.ts +0 -4
  1328. package/Tooltip/index.js +0 -35
  1329. package/Tooltip/tooltipClasses.d.ts +0 -30
  1330. package/Tooltip/tooltipClasses.js +0 -15
  1331. package/Typography/Typography.d.ts +0 -99
  1332. package/Typography/Typography.js +0 -275
  1333. package/Typography/index.d.ts +0 -4
  1334. package/Typography/index.js +0 -35
  1335. package/Typography/typographyClasses.d.ts +0 -53
  1336. package/Typography/typographyClasses.js +0 -15
  1337. package/Unstable_TrapFocus/FocusTrap.d.ts +0 -10
  1338. package/Unstable_TrapFocus/FocusTrap.js +0 -340
  1339. package/Unstable_TrapFocus/FocusTrap.types.d.ts +0 -54
  1340. package/Unstable_TrapFocus/FocusTrap.types.js +0 -5
  1341. package/Unstable_TrapFocus/index.d.ts +0 -2
  1342. package/Unstable_TrapFocus/index.js +0 -13
  1343. package/Zoom/Zoom.d.ts +0 -49
  1344. package/Zoom/Zoom.js +0 -217
  1345. package/Zoom/index.d.ts +0 -2
  1346. package/Zoom/index.js +0 -13
  1347. package/className/index.d.ts +0 -1
  1348. package/className/index.js +0 -13
  1349. package/colors/amber.d.ts +0 -62
  1350. package/colors/amber.js +0 -23
  1351. package/colors/blue.d.ts +0 -62
  1352. package/colors/blue.js +0 -23
  1353. package/colors/blueGrey.d.ts +0 -62
  1354. package/colors/blueGrey.js +0 -23
  1355. package/colors/brown.d.ts +0 -62
  1356. package/colors/brown.js +0 -23
  1357. package/colors/common.d.ts +0 -14
  1358. package/colors/common.js +0 -11
  1359. package/colors/cyan.d.ts +0 -62
  1360. package/colors/cyan.js +0 -23
  1361. package/colors/deepOrange.d.ts +0 -62
  1362. package/colors/deepOrange.js +0 -23
  1363. package/colors/deepPurple.d.ts +0 -62
  1364. package/colors/deepPurple.js +0 -23
  1365. package/colors/green.d.ts +0 -62
  1366. package/colors/green.js +0 -23
  1367. package/colors/grey.d.ts +0 -62
  1368. package/colors/grey.js +0 -23
  1369. package/colors/index.d.ts +0 -20
  1370. package/colors/index.js +0 -146
  1371. package/colors/indigo.d.ts +0 -62
  1372. package/colors/indigo.js +0 -23
  1373. package/colors/lightBlue.d.ts +0 -62
  1374. package/colors/lightBlue.js +0 -23
  1375. package/colors/lightGreen.d.ts +0 -62
  1376. package/colors/lightGreen.js +0 -23
  1377. package/colors/lime.d.ts +0 -62
  1378. package/colors/lime.js +0 -23
  1379. package/colors/orange.d.ts +0 -62
  1380. package/colors/orange.js +0 -23
  1381. package/colors/pink.d.ts +0 -62
  1382. package/colors/pink.js +0 -23
  1383. package/colors/purple.d.ts +0 -62
  1384. package/colors/purple.js +0 -23
  1385. package/colors/red.d.ts +0 -62
  1386. package/colors/red.js +0 -23
  1387. package/colors/teal.d.ts +0 -62
  1388. package/colors/teal.js +0 -23
  1389. package/colors/yellow.d.ts +0 -62
  1390. package/colors/yellow.js +0 -23
  1391. package/darkScrollbar/index.d.ts +0 -28
  1392. package/darkScrollbar/index.js +0 -38
  1393. package/esm/Accordion/Accordion.d.ts +0 -122
  1394. package/esm/Accordion/Accordion.js +0 -327
  1395. package/esm/Accordion/AccordionContext.js +0 -13
  1396. package/esm/Accordion/accordionClasses.d.ts +0 -20
  1397. package/esm/Accordion/accordionClasses.js +0 -7
  1398. package/esm/Accordion/index.d.ts +0 -4
  1399. package/esm/Accordion/index.js +0 -3
  1400. package/esm/AccordionActions/AccordionActions.d.ts +0 -35
  1401. package/esm/AccordionActions/AccordionActions.js +0 -93
  1402. package/esm/AccordionActions/accordionActionsClasses.d.ts +0 -10
  1403. package/esm/AccordionActions/accordionActionsClasses.js +0 -7
  1404. package/esm/AccordionActions/index.d.ts +0 -4
  1405. package/esm/AccordionActions/index.js +0 -3
  1406. package/esm/AccordionDetails/AccordionDetails.d.ts +0 -30
  1407. package/esm/AccordionDetails/AccordionDetails.js +0 -69
  1408. package/esm/AccordionDetails/accordionDetailsClasses.d.ts +0 -8
  1409. package/esm/AccordionDetails/accordionDetailsClasses.js +0 -7
  1410. package/esm/AccordionDetails/index.d.ts +0 -4
  1411. package/esm/AccordionDetails/index.js +0 -3
  1412. package/esm/AccordionSummary/AccordionSummary.d.ts +0 -80
  1413. package/esm/AccordionSummary/AccordionSummary.js +0 -247
  1414. package/esm/AccordionSummary/accordionSummaryClasses.d.ts +0 -25
  1415. package/esm/AccordionSummary/accordionSummaryClasses.js +0 -7
  1416. package/esm/AccordionSummary/index.d.ts +0 -4
  1417. package/esm/AccordionSummary/index.js +0 -3
  1418. package/esm/Alert/Alert.d.ts +0 -178
  1419. package/esm/Alert/Alert.js +0 -383
  1420. package/esm/Alert/alertClasses.d.ts +0 -100
  1421. package/esm/Alert/alertClasses.js +0 -7
  1422. package/esm/Alert/index.d.ts +0 -4
  1423. package/esm/Alert/index.js +0 -3
  1424. package/esm/AlertTitle/AlertTitle.d.ts +0 -31
  1425. package/esm/AlertTitle/AlertTitle.js +0 -75
  1426. package/esm/AlertTitle/alertTitleClasses.d.ts +0 -8
  1427. package/esm/AlertTitle/alertTitleClasses.js +0 -7
  1428. package/esm/AlertTitle/index.d.ts +0 -4
  1429. package/esm/AlertTitle/index.js +0 -3
  1430. package/esm/AppBar/AppBar.d.ts +0 -59
  1431. package/esm/AppBar/AppBar.js +0 -227
  1432. package/esm/AppBar/appBarClasses.d.ts +0 -36
  1433. package/esm/AppBar/appBarClasses.js +0 -7
  1434. package/esm/AppBar/index.d.ts +0 -4
  1435. package/esm/AppBar/index.js +0 -3
  1436. package/esm/Autocomplete/Autocomplete.d.ts +0 -320
  1437. package/esm/Autocomplete/Autocomplete.js +0 -1190
  1438. package/esm/Autocomplete/autocompleteClasses.d.ts +0 -58
  1439. package/esm/Autocomplete/autocompleteClasses.js +0 -7
  1440. package/esm/Autocomplete/index.d.ts +0 -4
  1441. package/esm/Autocomplete/index.js +0 -3
  1442. package/esm/Avatar/Avatar.d.ts +0 -112
  1443. package/esm/Avatar/Avatar.js +0 -318
  1444. package/esm/Avatar/avatarClasses.d.ts +0 -20
  1445. package/esm/Avatar/avatarClasses.js +0 -7
  1446. package/esm/Avatar/index.d.ts +0 -4
  1447. package/esm/Avatar/index.js +0 -3
  1448. package/esm/AvatarGroup/AvatarGroup.d.ts +0 -96
  1449. package/esm/AvatarGroup/AvatarGroup.js +0 -231
  1450. package/esm/AvatarGroup/avatarGroupClasses.d.ts +0 -10
  1451. package/esm/AvatarGroup/avatarGroupClasses.js +0 -7
  1452. package/esm/AvatarGroup/index.d.ts +0 -4
  1453. package/esm/AvatarGroup/index.js +0 -3
  1454. package/esm/Backdrop/Backdrop.d.ts +0 -118
  1455. package/esm/Backdrop/Backdrop.js +0 -205
  1456. package/esm/Backdrop/backdropClasses.d.ts +0 -10
  1457. package/esm/Backdrop/backdropClasses.js +0 -7
  1458. package/esm/Backdrop/index.d.ts +0 -4
  1459. package/esm/Backdrop/index.js +0 -3
  1460. package/esm/Badge/Badge.d.ts +0 -157
  1461. package/esm/Badge/Badge.js +0 -434
  1462. package/esm/Badge/badgeClasses.d.ts +0 -56
  1463. package/esm/Badge/badgeClasses.js +0 -9
  1464. package/esm/Badge/index.d.ts +0 -4
  1465. package/esm/Badge/index.js +0 -3
  1466. package/esm/Badge/useBadge.d.ts +0 -3
  1467. package/esm/Badge/useBadge.js +0 -31
  1468. package/esm/Badge/useBadge.types.d.ts +0 -39
  1469. package/esm/Badge/useBadge.types.js +0 -1
  1470. package/esm/BottomNavigation/BottomNavigation.d.ts +0 -55
  1471. package/esm/BottomNavigation/BottomNavigation.js +0 -122
  1472. package/esm/BottomNavigation/bottomNavigationClasses.d.ts +0 -8
  1473. package/esm/BottomNavigation/bottomNavigationClasses.js +0 -7
  1474. package/esm/BottomNavigation/index.d.ts +0 -4
  1475. package/esm/BottomNavigation/index.js +0 -3
  1476. package/esm/BottomNavigationAction/BottomNavigationAction.d.ts +0 -87
  1477. package/esm/BottomNavigationAction/BottomNavigationAction.js +0 -230
  1478. package/esm/BottomNavigationAction/bottomNavigationActionClasses.d.ts +0 -14
  1479. package/esm/BottomNavigationAction/bottomNavigationActionClasses.js +0 -7
  1480. package/esm/BottomNavigationAction/index.d.ts +0 -4
  1481. package/esm/BottomNavigationAction/index.js +0 -3
  1482. package/esm/Box/Box.d.ts +0 -20
  1483. package/esm/Box/Box.js +0 -35
  1484. package/esm/Box/boxClasses.d.ts +0 -7
  1485. package/esm/Box/boxClasses.js +0 -3
  1486. package/esm/Box/index.d.ts +0 -4
  1487. package/esm/Box/index.js +0 -3
  1488. package/esm/Breadcrumbs/BreadcrumbCollapsed.js +0 -90
  1489. package/esm/Breadcrumbs/Breadcrumbs.d.ts +0 -94
  1490. package/esm/Breadcrumbs/Breadcrumbs.js +0 -238
  1491. package/esm/Breadcrumbs/breadcrumbsClasses.d.ts +0 -14
  1492. package/esm/Breadcrumbs/breadcrumbsClasses.js +0 -7
  1493. package/esm/Breadcrumbs/index.d.ts +0 -4
  1494. package/esm/Breadcrumbs/index.js +0 -3
  1495. package/esm/Button/Button.d.ts +0 -130
  1496. package/esm/Button/Button.js +0 -686
  1497. package/esm/Button/buttonClasses.d.ts +0 -194
  1498. package/esm/Button/buttonClasses.js +0 -7
  1499. package/esm/Button/index.d.ts +0 -4
  1500. package/esm/Button/index.js +0 -3
  1501. package/esm/ButtonBase/ButtonBase.d.ts +0 -125
  1502. package/esm/ButtonBase/ButtonBase.js +0 -446
  1503. package/esm/ButtonBase/Ripple.js +0 -88
  1504. package/esm/ButtonBase/TouchRipple.d.ts +0 -22
  1505. package/esm/ButtonBase/TouchRipple.js +0 -324
  1506. package/esm/ButtonBase/buttonBaseClasses.d.ts +0 -12
  1507. package/esm/ButtonBase/buttonBaseClasses.js +0 -7
  1508. package/esm/ButtonBase/index.d.ts +0 -6
  1509. package/esm/ButtonBase/index.js +0 -5
  1510. package/esm/ButtonBase/touchRippleClasses.d.ts +0 -20
  1511. package/esm/ButtonBase/touchRippleClasses.js +0 -7
  1512. package/esm/ButtonGroup/ButtonGroup.d.ts +0 -91
  1513. package/esm/ButtonGroup/ButtonGroup.js +0 -390
  1514. package/esm/ButtonGroup/ButtonGroupButtonContext.d.ts +0 -6
  1515. package/esm/ButtonGroup/ButtonGroupButtonContext.js +0 -11
  1516. package/esm/ButtonGroup/ButtonGroupContext.d.ts +0 -18
  1517. package/esm/ButtonGroup/ButtonGroupContext.js +0 -11
  1518. package/esm/ButtonGroup/buttonGroupClasses.d.ts +0 -104
  1519. package/esm/ButtonGroup/buttonGroupClasses.js +0 -7
  1520. package/esm/ButtonGroup/index.d.ts +0 -6
  1521. package/esm/ButtonGroup/index.js +0 -5
  1522. package/esm/Card/Card.d.ts +0 -47
  1523. package/esm/Card/Card.js +0 -83
  1524. package/esm/Card/cardClasses.d.ts +0 -8
  1525. package/esm/Card/cardClasses.js +0 -7
  1526. package/esm/Card/index.d.ts +0 -4
  1527. package/esm/Card/index.js +0 -3
  1528. package/esm/CardActionArea/CardActionArea.d.ts +0 -63
  1529. package/esm/CardActionArea/CardActionArea.js +0 -154
  1530. package/esm/CardActionArea/cardActionAreaClasses.d.ts +0 -12
  1531. package/esm/CardActionArea/cardActionAreaClasses.js +0 -7
  1532. package/esm/CardActionArea/index.d.ts +0 -4
  1533. package/esm/CardActionArea/index.js +0 -3
  1534. package/esm/CardActions/CardActions.d.ts +0 -35
  1535. package/esm/CardActions/CardActions.js +0 -94
  1536. package/esm/CardActions/cardActionsClasses.d.ts +0 -10
  1537. package/esm/CardActions/cardActionsClasses.js +0 -7
  1538. package/esm/CardActions/index.d.ts +0 -4
  1539. package/esm/CardActions/index.js +0 -3
  1540. package/esm/CardContent/CardContent.d.ts +0 -38
  1541. package/esm/CardContent/CardContent.js +0 -79
  1542. package/esm/CardContent/cardContentClasses.d.ts +0 -8
  1543. package/esm/CardContent/cardContentClasses.js +0 -7
  1544. package/esm/CardContent/index.d.ts +0 -4
  1545. package/esm/CardContent/index.js +0 -3
  1546. package/esm/CardHeader/CardHeader.d.ts +0 -157
  1547. package/esm/CardHeader/CardHeader.js +0 -264
  1548. package/esm/CardHeader/cardHeaderClasses.d.ts +0 -18
  1549. package/esm/CardHeader/cardHeaderClasses.js +0 -7
  1550. package/esm/CardHeader/index.d.ts +0 -4
  1551. package/esm/CardHeader/index.js +0 -3
  1552. package/esm/CardMedia/CardMedia.d.ts +0 -51
  1553. package/esm/CardMedia/CardMedia.js +0 -145
  1554. package/esm/CardMedia/cardMediaClasses.d.ts +0 -12
  1555. package/esm/CardMedia/cardMediaClasses.js +0 -7
  1556. package/esm/CardMedia/index.d.ts +0 -4
  1557. package/esm/CardMedia/index.js +0 -3
  1558. package/esm/Checkbox/Checkbox.d.ts +0 -131
  1559. package/esm/Checkbox/Checkbox.js +0 -280
  1560. package/esm/Checkbox/checkboxClasses.d.ts +0 -22
  1561. package/esm/Checkbox/checkboxClasses.js +0 -7
  1562. package/esm/Checkbox/index.d.ts +0 -4
  1563. package/esm/Checkbox/index.js +0 -3
  1564. package/esm/Chip/Chip.d.ts +0 -107
  1565. package/esm/Chip/Chip.js +0 -576
  1566. package/esm/Chip/chipClasses.d.ts +0 -150
  1567. package/esm/Chip/chipClasses.js +0 -7
  1568. package/esm/Chip/index.d.ts +0 -4
  1569. package/esm/Chip/index.js +0 -3
  1570. package/esm/CircularProgress/CircularProgress.d.ts +0 -71
  1571. package/esm/CircularProgress/CircularProgress.js +0 -284
  1572. package/esm/CircularProgress/circularProgressClasses.d.ts +0 -30
  1573. package/esm/CircularProgress/circularProgressClasses.js +0 -7
  1574. package/esm/CircularProgress/index.d.ts +0 -4
  1575. package/esm/CircularProgress/index.js +0 -3
  1576. package/esm/ClickAwayListener/ClickAwayListener.d.ts +0 -47
  1577. package/esm/ClickAwayListener/ClickAwayListener.js +0 -178
  1578. package/esm/ClickAwayListener/index.d.ts +0 -2
  1579. package/esm/ClickAwayListener/index.js +0 -1
  1580. package/esm/Collapse/Collapse.d.ts +0 -71
  1581. package/esm/Collapse/Collapse.js +0 -409
  1582. package/esm/Collapse/collapseClasses.d.ts +0 -18
  1583. package/esm/Collapse/collapseClasses.js +0 -7
  1584. package/esm/Collapse/index.d.ts +0 -4
  1585. package/esm/Collapse/index.js +0 -3
  1586. package/esm/Container/Container.d.ts +0 -55
  1587. package/esm/Container/Container.js +0 -67
  1588. package/esm/Container/containerClasses.d.ts +0 -6
  1589. package/esm/Container/containerClasses.js +0 -7
  1590. package/esm/Container/index.d.ts +0 -4
  1591. package/esm/Container/index.js +0 -3
  1592. package/esm/CssBaseline/CssBaseline.d.ts +0 -28
  1593. package/esm/CssBaseline/CssBaseline.js +0 -161
  1594. package/esm/CssBaseline/index.d.ts +0 -2
  1595. package/esm/CssBaseline/index.js +0 -1
  1596. package/esm/DefaultPropsProvider/DefaultPropsProvider.d.ts +0 -13
  1597. package/esm/DefaultPropsProvider/DefaultPropsProvider.js +0 -29
  1598. package/esm/DefaultPropsProvider/index.d.ts +0 -1
  1599. package/esm/DefaultPropsProvider/index.js +0 -1
  1600. package/esm/Dialog/Dialog.d.ts +0 -184
  1601. package/esm/Dialog/Dialog.js +0 -509
  1602. package/esm/Dialog/DialogContext.d.ts +0 -6
  1603. package/esm/Dialog/DialogContext.js +0 -8
  1604. package/esm/Dialog/dialogClasses.d.ts +0 -40
  1605. package/esm/Dialog/dialogClasses.js +0 -7
  1606. package/esm/Dialog/index.d.ts +0 -4
  1607. package/esm/Dialog/index.js +0 -3
  1608. package/esm/DialogActions/DialogActions.d.ts +0 -35
  1609. package/esm/DialogActions/DialogActions.js +0 -96
  1610. package/esm/DialogActions/dialogActionsClasses.d.ts +0 -10
  1611. package/esm/DialogActions/dialogActionsClasses.js +0 -7
  1612. package/esm/DialogActions/index.d.ts +0 -4
  1613. package/esm/DialogActions/index.js +0 -3
  1614. package/esm/DialogContent/DialogContent.d.ts +0 -35
  1615. package/esm/DialogContent/DialogContent.js +0 -109
  1616. package/esm/DialogContent/dialogContentClasses.d.ts +0 -10
  1617. package/esm/DialogContent/dialogContentClasses.js +0 -7
  1618. package/esm/DialogContent/index.d.ts +0 -4
  1619. package/esm/DialogContent/index.js +0 -3
  1620. package/esm/DialogContentText/DialogContentText.d.ts +0 -37
  1621. package/esm/DialogContentText/DialogContentText.js +0 -76
  1622. package/esm/DialogContentText/dialogContentTextClasses.d.ts +0 -8
  1623. package/esm/DialogContentText/dialogContentTextClasses.js +0 -7
  1624. package/esm/DialogContentText/index.d.ts +0 -4
  1625. package/esm/DialogContentText/index.js +0 -3
  1626. package/esm/DialogTitle/DialogTitle.d.ts +0 -43
  1627. package/esm/DialogTitle/DialogTitle.js +0 -80
  1628. package/esm/DialogTitle/dialogTitleClasses.d.ts +0 -8
  1629. package/esm/DialogTitle/dialogTitleClasses.js +0 -7
  1630. package/esm/DialogTitle/index.d.ts +0 -4
  1631. package/esm/DialogTitle/index.js +0 -3
  1632. package/esm/Divider/Divider.d.ts +0 -74
  1633. package/esm/Divider/Divider.js +0 -314
  1634. package/esm/Divider/dividerClasses.d.ts +0 -38
  1635. package/esm/Divider/dividerClasses.js +0 -7
  1636. package/esm/Divider/index.d.ts +0 -4
  1637. package/esm/Divider/index.js +0 -3
  1638. package/esm/Drawer/Drawer.d.ts +0 -154
  1639. package/esm/Drawer/Drawer.js +0 -434
  1640. package/esm/Drawer/drawerClasses.d.ts +0 -54
  1641. package/esm/Drawer/drawerClasses.js +0 -7
  1642. package/esm/Drawer/index.d.ts +0 -4
  1643. package/esm/Drawer/index.js +0 -3
  1644. package/esm/Fab/Fab.d.ts +0 -82
  1645. package/esm/Fab/Fab.js +0 -271
  1646. package/esm/Fab/fabClasses.d.ts +0 -26
  1647. package/esm/Fab/fabClasses.js +0 -7
  1648. package/esm/Fab/index.d.ts +0 -4
  1649. package/esm/Fab/index.js +0 -3
  1650. package/esm/Fade/Fade.d.ts +0 -48
  1651. package/esm/Fade/Fade.js +0 -210
  1652. package/esm/Fade/index.d.ts +0 -2
  1653. package/esm/Fade/index.js +0 -1
  1654. package/esm/FilledInput/FilledInput.d.ts +0 -42
  1655. package/esm/FilledInput/FilledInput.js +0 -516
  1656. package/esm/FilledInput/filledInputClasses.d.ts +0 -30
  1657. package/esm/FilledInput/filledInputClasses.js +0 -11
  1658. package/esm/FilledInput/index.d.ts +0 -4
  1659. package/esm/FilledInput/index.js +0 -3
  1660. package/esm/FormControl/FormControl.d.ts +0 -120
  1661. package/esm/FormControl/FormControl.js +0 -305
  1662. package/esm/FormControl/FormControlContext.d.ts +0 -17
  1663. package/esm/FormControl/FormControlContext.js +0 -11
  1664. package/esm/FormControl/formControlClasses.d.ts +0 -14
  1665. package/esm/FormControl/formControlClasses.js +0 -7
  1666. package/esm/FormControl/formControlState.js +0 -15
  1667. package/esm/FormControl/index.d.ts +0 -6
  1668. package/esm/FormControl/index.js +0 -4
  1669. package/esm/FormControl/useFormControl.d.ts +0 -2
  1670. package/esm/FormControl/useFormControl.js +0 -7
  1671. package/esm/FormControlLabel/FormControlLabel.d.ts +0 -101
  1672. package/esm/FormControlLabel/FormControlLabel.js +0 -282
  1673. package/esm/FormControlLabel/formControlLabelClasses.d.ts +0 -24
  1674. package/esm/FormControlLabel/formControlLabelClasses.js +0 -7
  1675. package/esm/FormControlLabel/index.d.ts +0 -4
  1676. package/esm/FormControlLabel/index.js +0 -3
  1677. package/esm/FormGroup/FormGroup.d.ts +0 -39
  1678. package/esm/FormGroup/FormGroup.js +0 -108
  1679. package/esm/FormGroup/formGroupClasses.d.ts +0 -12
  1680. package/esm/FormGroup/formGroupClasses.js +0 -7
  1681. package/esm/FormGroup/index.d.ts +0 -4
  1682. package/esm/FormGroup/index.js +0 -3
  1683. package/esm/FormHelperText/FormHelperText.d.ts +0 -71
  1684. package/esm/FormHelperText/FormHelperText.js +0 -186
  1685. package/esm/FormHelperText/formHelperTextClasses.d.ts +0 -22
  1686. package/esm/FormHelperText/formHelperTextClasses.js +0 -7
  1687. package/esm/FormHelperText/index.d.ts +0 -4
  1688. package/esm/FormHelperText/index.js +0 -3
  1689. package/esm/FormLabel/FormLabel.d.ts +0 -78
  1690. package/esm/FormLabel/FormLabel.js +0 -181
  1691. package/esm/FormLabel/formLabelClasses.d.ts +0 -22
  1692. package/esm/FormLabel/formLabelClasses.js +0 -7
  1693. package/esm/FormLabel/index.d.ts +0 -4
  1694. package/esm/FormLabel/index.js +0 -4
  1695. package/esm/GlobalStyles/GlobalStyles.d.ts +0 -20
  1696. package/esm/GlobalStyles/GlobalStyles.js +0 -26
  1697. package/esm/GlobalStyles/index.d.ts +0 -2
  1698. package/esm/GlobalStyles/index.js +0 -1
  1699. package/esm/Grid/Grid.d.ts +0 -111
  1700. package/esm/Grid/Grid.js +0 -138
  1701. package/esm/Grid/gridClasses.d.ts +0 -10
  1702. package/esm/Grid/gridClasses.js +0 -19
  1703. package/esm/Grid/index.d.ts +0 -4
  1704. package/esm/Grid/index.js +0 -4
  1705. package/esm/GridLegacy/GridLegacy.d.ts +0 -160
  1706. package/esm/GridLegacy/GridLegacy.js +0 -588
  1707. package/esm/GridLegacy/GridLegacyContext.js +0 -12
  1708. package/esm/GridLegacy/gridLegacyClasses.d.ts +0 -48
  1709. package/esm/GridLegacy/gridLegacyClasses.js +0 -19
  1710. package/esm/GridLegacy/index.d.ts +0 -4
  1711. package/esm/GridLegacy/index.js +0 -3
  1712. package/esm/Grow/Grow.d.ts +0 -49
  1713. package/esm/Grow/Grow.js +0 -262
  1714. package/esm/Grow/index.d.ts +0 -2
  1715. package/esm/Grow/index.js +0 -1
  1716. package/esm/Icon/Icon.d.ts +0 -62
  1717. package/esm/Icon/Icon.js +0 -185
  1718. package/esm/Icon/iconClasses.d.ts +0 -24
  1719. package/esm/Icon/iconClasses.js +0 -7
  1720. package/esm/Icon/index.d.ts +0 -4
  1721. package/esm/Icon/index.js +0 -3
  1722. package/esm/IconButton/IconButton.d.ts +0 -90
  1723. package/esm/IconButton/IconButton.js +0 -321
  1724. package/esm/IconButton/iconButtonClasses.d.ts +0 -40
  1725. package/esm/IconButton/iconButtonClasses.js +0 -7
  1726. package/esm/IconButton/index.d.ts +0 -4
  1727. package/esm/IconButton/index.js +0 -3
  1728. package/esm/ImageList/ImageList.d.ts +0 -60
  1729. package/esm/ImageList/ImageList.js +0 -150
  1730. package/esm/ImageList/ImageListContext.js +0 -13
  1731. package/esm/ImageList/imageListClasses.d.ts +0 -16
  1732. package/esm/ImageList/imageListClasses.js +0 -7
  1733. package/esm/ImageList/index.d.ts +0 -4
  1734. package/esm/ImageList/index.js +0 -3
  1735. package/esm/ImageListItem/ImageListItem.d.ts +0 -48
  1736. package/esm/ImageListItem/ImageListItem.js +0 -188
  1737. package/esm/ImageListItem/imageListItemClasses.d.ts +0 -18
  1738. package/esm/ImageListItem/imageListItemClasses.js +0 -7
  1739. package/esm/ImageListItem/index.d.ts +0 -4
  1740. package/esm/ImageListItem/index.js +0 -3
  1741. package/esm/ImageListItemBar/ImageListItemBar.d.ts +0 -49
  1742. package/esm/ImageListItemBar/ImageListItemBar.js +0 -251
  1743. package/esm/ImageListItemBar/imageListItemBarClasses.d.ts +0 -42
  1744. package/esm/ImageListItemBar/imageListItemBarClasses.js +0 -7
  1745. package/esm/ImageListItemBar/index.d.ts +0 -4
  1746. package/esm/ImageListItemBar/index.js +0 -3
  1747. package/esm/InitColorSchemeScript/InitColorSchemeScript.d.ts +0 -66
  1748. package/esm/InitColorSchemeScript/InitColorSchemeScript.js +0 -91
  1749. package/esm/InitColorSchemeScript/index.d.ts +0 -1
  1750. package/esm/InitColorSchemeScript/index.js +0 -1
  1751. package/esm/Input/Input.d.ts +0 -35
  1752. package/esm/Input/Input.js +0 -361
  1753. package/esm/Input/index.d.ts +0 -4
  1754. package/esm/Input/index.js +0 -3
  1755. package/esm/Input/inputClasses.d.ts +0 -38
  1756. package/esm/Input/inputClasses.js +0 -11
  1757. package/esm/InputAdornment/InputAdornment.d.ts +0 -59
  1758. package/esm/InputAdornment/InputAdornment.js +0 -186
  1759. package/esm/InputAdornment/index.d.ts +0 -4
  1760. package/esm/InputAdornment/index.js +0 -3
  1761. package/esm/InputAdornment/inputAdornmentClasses.d.ts +0 -24
  1762. package/esm/InputAdornment/inputAdornmentClasses.js +0 -7
  1763. package/esm/InputBase/InputBase.d.ts +0 -247
  1764. package/esm/InputBase/InputBase.js +0 -749
  1765. package/esm/InputBase/index.d.ts +0 -4
  1766. package/esm/InputBase/index.js +0 -3
  1767. package/esm/InputBase/inputBaseClasses.d.ts +0 -55
  1768. package/esm/InputBase/inputBaseClasses.js +0 -7
  1769. package/esm/InputBase/utils.js +0 -30
  1770. package/esm/InputLabel/InputLabel.d.ts +0 -79
  1771. package/esm/InputLabel/InputLabel.js +0 -283
  1772. package/esm/InputLabel/index.d.ts +0 -4
  1773. package/esm/InputLabel/index.js +0 -3
  1774. package/esm/InputLabel/inputLabelClasses.d.ts +0 -32
  1775. package/esm/InputLabel/inputLabelClasses.js +0 -7
  1776. package/esm/LinearProgress/LinearProgress.d.ts +0 -57
  1777. package/esm/LinearProgress/LinearProgress.js +0 -455
  1778. package/esm/LinearProgress/index.d.ts +0 -4
  1779. package/esm/LinearProgress/index.js +0 -3
  1780. package/esm/LinearProgress/linearProgressClasses.d.ts +0 -64
  1781. package/esm/LinearProgress/linearProgressClasses.js +0 -7
  1782. package/esm/Link/Link.d.ts +0 -63
  1783. package/esm/Link/Link.js +0 -283
  1784. package/esm/Link/getTextDecoration.d.ts +0 -11
  1785. package/esm/Link/getTextDecoration.js +0 -16
  1786. package/esm/Link/index.d.ts +0 -4
  1787. package/esm/Link/index.js +0 -3
  1788. package/esm/Link/linkClasses.d.ts +0 -18
  1789. package/esm/Link/linkClasses.js +0 -7
  1790. package/esm/List/List.d.ts +0 -65
  1791. package/esm/List/List.js +0 -134
  1792. package/esm/List/ListContext.d.ts +0 -5
  1793. package/esm/List/ListContext.js +0 -12
  1794. package/esm/List/index.d.ts +0 -4
  1795. package/esm/List/index.js +0 -3
  1796. package/esm/List/listClasses.d.ts +0 -14
  1797. package/esm/List/listClasses.js +0 -7
  1798. package/esm/ListItem/ListItem.d.ts +0 -127
  1799. package/esm/ListItem/ListItem.js +0 -387
  1800. package/esm/ListItem/index.d.ts +0 -4
  1801. package/esm/ListItem/index.js +0 -3
  1802. package/esm/ListItem/listItemClasses.d.ts +0 -22
  1803. package/esm/ListItem/listItemClasses.js +0 -7
  1804. package/esm/ListItemAvatar/ListItemAvatar.d.ts +0 -30
  1805. package/esm/ListItemAvatar/ListItemAvatar.js +0 -91
  1806. package/esm/ListItemAvatar/index.d.ts +0 -4
  1807. package/esm/ListItemAvatar/index.js +0 -3
  1808. package/esm/ListItemAvatar/listItemAvatarClasses.d.ts +0 -10
  1809. package/esm/ListItemAvatar/listItemAvatarClasses.js +0 -7
  1810. package/esm/ListItemButton/ListItemButton.d.ts +0 -85
  1811. package/esm/ListItemButton/ListItemButton.js +0 -264
  1812. package/esm/ListItemButton/index.d.ts +0 -4
  1813. package/esm/ListItemButton/index.js +0 -3
  1814. package/esm/ListItemButton/listItemButtonClasses.d.ts +0 -22
  1815. package/esm/ListItemButton/listItemButtonClasses.js +0 -7
  1816. package/esm/ListItemIcon/ListItemIcon.d.ts +0 -32
  1817. package/esm/ListItemIcon/ListItemIcon.js +0 -97
  1818. package/esm/ListItemIcon/index.d.ts +0 -4
  1819. package/esm/ListItemIcon/index.js +0 -3
  1820. package/esm/ListItemIcon/listItemIconClasses.d.ts +0 -10
  1821. package/esm/ListItemIcon/listItemIconClasses.js +0 -7
  1822. package/esm/ListItemSecondaryAction/ListItemSecondaryAction.d.ts +0 -36
  1823. package/esm/ListItemSecondaryAction/ListItemSecondaryAction.js +0 -96
  1824. package/esm/ListItemSecondaryAction/index.d.ts +0 -4
  1825. package/esm/ListItemSecondaryAction/index.js +0 -3
  1826. package/esm/ListItemSecondaryAction/listItemSecondaryActionClasses.d.ts +0 -10
  1827. package/esm/ListItemSecondaryAction/listItemSecondaryActionClasses.js +0 -7
  1828. package/esm/ListItemText/ListItemText.d.ts +0 -105
  1829. package/esm/ListItemText/ListItemText.js +0 -227
  1830. package/esm/ListItemText/index.d.ts +0 -4
  1831. package/esm/ListItemText/index.js +0 -3
  1832. package/esm/ListItemText/listItemTextClasses.d.ts +0 -18
  1833. package/esm/ListItemText/listItemTextClasses.js +0 -7
  1834. package/esm/ListSubheader/ListSubheader.d.ts +0 -59
  1835. package/esm/ListSubheader/ListSubheader.js +0 -167
  1836. package/esm/ListSubheader/index.d.ts +0 -4
  1837. package/esm/ListSubheader/index.js +0 -3
  1838. package/esm/ListSubheader/listSubheaderClasses.d.ts +0 -18
  1839. package/esm/ListSubheader/listSubheaderClasses.js +0 -7
  1840. package/esm/Menu/Menu.d.ts +0 -162
  1841. package/esm/Menu/Menu.js +0 -338
  1842. package/esm/Menu/index.d.ts +0 -4
  1843. package/esm/Menu/index.js +0 -3
  1844. package/esm/Menu/menuClasses.d.ts +0 -12
  1845. package/esm/Menu/menuClasses.js +0 -7
  1846. package/esm/MenuItem/MenuItem.d.ts +0 -69
  1847. package/esm/MenuItem/MenuItem.js +0 -283
  1848. package/esm/MenuItem/index.d.ts +0 -4
  1849. package/esm/MenuItem/index.js +0 -3
  1850. package/esm/MenuItem/menuItemClasses.d.ts +0 -20
  1851. package/esm/MenuItem/menuItemClasses.js +0 -7
  1852. package/esm/MenuList/MenuList.d.ts +0 -62
  1853. package/esm/MenuList/MenuList.js +0 -290
  1854. package/esm/MenuList/index.d.ts +0 -2
  1855. package/esm/MenuList/index.js +0 -1
  1856. package/esm/MobileStepper/MobileStepper.d.ts +0 -112
  1857. package/esm/MobileStepper/MobileStepper.js +0 -304
  1858. package/esm/MobileStepper/index.d.ts +0 -4
  1859. package/esm/MobileStepper/index.js +0 -3
  1860. package/esm/MobileStepper/mobileStepperClasses.d.ts +0 -22
  1861. package/esm/MobileStepper/mobileStepperClasses.js +0 -7
  1862. package/esm/Modal/Modal.d.ts +0 -218
  1863. package/esm/Modal/Modal.js +0 -390
  1864. package/esm/Modal/ModalManager.d.ts +0 -25
  1865. package/esm/Modal/ModalManager.js +0 -213
  1866. package/esm/Modal/index.d.ts +0 -5
  1867. package/esm/Modal/index.js +0 -4
  1868. package/esm/Modal/modalClasses.d.ts +0 -12
  1869. package/esm/Modal/modalClasses.js +0 -7
  1870. package/esm/Modal/useModal.d.ts +0 -3
  1871. package/esm/Modal/useModal.js +0 -193
  1872. package/esm/Modal/useModal.types.d.ts +0 -118
  1873. package/esm/Modal/useModal.types.js +0 -1
  1874. package/esm/NativeSelect/NativeSelect.d.ts +0 -68
  1875. package/esm/NativeSelect/NativeSelect.js +0 -133
  1876. package/esm/NativeSelect/NativeSelectInput.d.ts +0 -13
  1877. package/esm/NativeSelect/NativeSelectInput.js +0 -240
  1878. package/esm/NativeSelect/index.d.ts +0 -4
  1879. package/esm/NativeSelect/index.js +0 -3
  1880. package/esm/NativeSelect/nativeSelectClasses.d.ts +0 -34
  1881. package/esm/NativeSelect/nativeSelectClasses.js +0 -7
  1882. package/esm/NoSsr/NoSsr.d.ts +0 -25
  1883. package/esm/NoSsr/NoSsr.js +0 -71
  1884. package/esm/NoSsr/NoSsr.types.d.ts +0 -18
  1885. package/esm/NoSsr/NoSsr.types.js +0 -1
  1886. package/esm/NoSsr/index.d.ts +0 -3
  1887. package/esm/NoSsr/index.js +0 -1
  1888. package/esm/OutlinedInput/NotchedOutline.d.ts +0 -12
  1889. package/esm/OutlinedInput/NotchedOutline.js +0 -154
  1890. package/esm/OutlinedInput/OutlinedInput.d.ts +0 -54
  1891. package/esm/OutlinedInput/OutlinedInput.js +0 -429
  1892. package/esm/OutlinedInput/index.d.ts +0 -4
  1893. package/esm/OutlinedInput/index.js +0 -3
  1894. package/esm/OutlinedInput/outlinedInputClasses.d.ts +0 -38
  1895. package/esm/OutlinedInput/outlinedInputClasses.js +0 -11
  1896. package/esm/OverridableComponent/index.d.ts +0 -41
  1897. package/esm/OverridableComponent/index.js +0 -1
  1898. package/esm/Pagination/Pagination.d.ts +0 -79
  1899. package/esm/Pagination/Pagination.js +0 -244
  1900. package/esm/Pagination/index.d.ts +0 -4
  1901. package/esm/Pagination/index.js +0 -3
  1902. package/esm/Pagination/paginationClasses.d.ts +0 -14
  1903. package/esm/Pagination/paginationClasses.js +0 -7
  1904. package/esm/PaginationItem/PaginationItem.d.ts +0 -110
  1905. package/esm/PaginationItem/PaginationItem.js +0 -471
  1906. package/esm/PaginationItem/index.d.ts +0 -4
  1907. package/esm/PaginationItem/index.js +0 -3
  1908. package/esm/PaginationItem/paginationItemClasses.d.ts +0 -54
  1909. package/esm/PaginationItem/paginationItemClasses.js +0 -7
  1910. package/esm/Paper/Paper.d.ts +0 -62
  1911. package/esm/Paper/Paper.js +0 -170
  1912. package/esm/Paper/index.d.ts +0 -4
  1913. package/esm/Paper/index.js +0 -3
  1914. package/esm/Paper/paperClasses.d.ts +0 -64
  1915. package/esm/Paper/paperClasses.js +0 -7
  1916. package/esm/PigmentContainer/PigmentContainer.d.ts +0 -55
  1917. package/esm/PigmentContainer/PigmentContainer.js +0 -98
  1918. package/esm/PigmentContainer/index.d.ts +0 -3
  1919. package/esm/PigmentContainer/index.js +0 -3
  1920. package/esm/PigmentGrid/PigmentGrid.d.ts +0 -83
  1921. package/esm/PigmentGrid/PigmentGrid.js +0 -126
  1922. package/esm/PigmentGrid/index.d.ts +0 -3
  1923. package/esm/PigmentGrid/index.js +0 -3
  1924. package/esm/PigmentStack/PigmentStack.d.ts +0 -49
  1925. package/esm/PigmentStack/PigmentStack.js +0 -81
  1926. package/esm/PigmentStack/index.d.ts +0 -3
  1927. package/esm/PigmentStack/index.js +0 -3
  1928. package/esm/Popover/Popover.d.ts +0 -233
  1929. package/esm/Popover/Popover.js +0 -581
  1930. package/esm/Popover/index.d.ts +0 -4
  1931. package/esm/Popover/index.js +0 -4
  1932. package/esm/Popover/popoverClasses.d.ts +0 -10
  1933. package/esm/Popover/popoverClasses.js +0 -7
  1934. package/esm/Popper/BasePopper.d.ts +0 -7
  1935. package/esm/Popper/BasePopper.js +0 -375
  1936. package/esm/Popper/BasePopper.types.d.ts +0 -129
  1937. package/esm/Popper/BasePopper.types.js +0 -1
  1938. package/esm/Popper/Popper.d.ts +0 -46
  1939. package/esm/Popper/Popper.js +0 -209
  1940. package/esm/Popper/index.d.ts +0 -4
  1941. package/esm/Popper/index.js +0 -2
  1942. package/esm/Popper/popperClasses.d.ts +0 -8
  1943. package/esm/Popper/popperClasses.js +0 -7
  1944. package/esm/Portal/Portal.d.ts +0 -16
  1945. package/esm/Portal/Portal.js +0 -91
  1946. package/esm/Portal/Portal.types.d.ts +0 -23
  1947. package/esm/Portal/Portal.types.js +0 -1
  1948. package/esm/Portal/index.d.ts +0 -3
  1949. package/esm/Portal/index.js +0 -1
  1950. package/esm/Radio/Radio.d.ts +0 -86
  1951. package/esm/Radio/Radio.js +0 -309
  1952. package/esm/Radio/RadioButtonIcon.js +0 -87
  1953. package/esm/Radio/index.d.ts +0 -4
  1954. package/esm/Radio/index.js +0 -3
  1955. package/esm/Radio/radioClasses.d.ts +0 -18
  1956. package/esm/Radio/radioClasses.js +0 -7
  1957. package/esm/RadioGroup/RadioGroup.d.ts +0 -38
  1958. package/esm/RadioGroup/RadioGroup.js +0 -114
  1959. package/esm/RadioGroup/RadioGroupContext.d.ts +0 -11
  1960. package/esm/RadioGroup/RadioGroupContext.js +0 -11
  1961. package/esm/RadioGroup/index.d.ts +0 -5
  1962. package/esm/RadioGroup/index.js +0 -4
  1963. package/esm/RadioGroup/radioGroupClasses.d.ts +0 -6
  1964. package/esm/RadioGroup/radioGroupClasses.js +0 -7
  1965. package/esm/RadioGroup/useRadioGroup.d.ts +0 -3
  1966. package/esm/RadioGroup/useRadioGroup.js +0 -7
  1967. package/esm/Rating/Rating.d.ts +0 -183
  1968. package/esm/Rating/Rating.js +0 -777
  1969. package/esm/Rating/index.d.ts +0 -4
  1970. package/esm/Rating/index.js +0 -3
  1971. package/esm/Rating/ratingClasses.d.ts +0 -40
  1972. package/esm/Rating/ratingClasses.js +0 -7
  1973. package/esm/ScopedCssBaseline/ScopedCssBaseline.d.ts +0 -55
  1974. package/esm/ScopedCssBaseline/ScopedCssBaseline.js +0 -119
  1975. package/esm/ScopedCssBaseline/index.d.ts +0 -4
  1976. package/esm/ScopedCssBaseline/index.js +0 -3
  1977. package/esm/ScopedCssBaseline/scopedCssBaselineClasses.d.ts +0 -8
  1978. package/esm/ScopedCssBaseline/scopedCssBaselineClasses.js +0 -7
  1979. package/esm/Select/Select.d.ts +0 -188
  1980. package/esm/Select/Select.js +0 -299
  1981. package/esm/Select/SelectInput.d.ts +0 -55
  1982. package/esm/Select/SelectInput.js +0 -672
  1983. package/esm/Select/index.d.ts +0 -4
  1984. package/esm/Select/index.js +0 -3
  1985. package/esm/Select/selectClasses.d.ts +0 -42
  1986. package/esm/Select/selectClasses.js +0 -7
  1987. package/esm/Skeleton/Skeleton.d.ts +0 -62
  1988. package/esm/Skeleton/Skeleton.js +0 -269
  1989. package/esm/Skeleton/index.d.ts +0 -4
  1990. package/esm/Skeleton/index.js +0 -3
  1991. package/esm/Skeleton/skeletonClasses.d.ts +0 -26
  1992. package/esm/Skeleton/skeletonClasses.js +0 -7
  1993. package/esm/Slide/Slide.d.ts +0 -63
  1994. package/esm/Slide/Slide.js +0 -338
  1995. package/esm/Slide/index.d.ts +0 -2
  1996. package/esm/Slide/index.js +0 -1
  1997. package/esm/Slider/Slider.d.ts +0 -298
  1998. package/esm/Slider/Slider.js +0 -1091
  1999. package/esm/Slider/SliderValueLabel.d.ts +0 -13
  2000. package/esm/Slider/SliderValueLabel.js +0 -53
  2001. package/esm/Slider/SliderValueLabel.types.d.ts +0 -25
  2002. package/esm/Slider/SliderValueLabel.types.js +0 -1
  2003. package/esm/Slider/index.d.ts +0 -4
  2004. package/esm/Slider/index.js +0 -4
  2005. package/esm/Slider/sliderClasses.d.ts +0 -88
  2006. package/esm/Slider/sliderClasses.js +0 -7
  2007. package/esm/Slider/useSlider.d.ts +0 -4
  2008. package/esm/Slider/useSlider.js +0 -701
  2009. package/esm/Slider/useSlider.types.d.ts +0 -226
  2010. package/esm/Slider/useSlider.types.js +0 -1
  2011. package/esm/Snackbar/Snackbar.d.ts +0 -182
  2012. package/esm/Snackbar/Snackbar.js +0 -430
  2013. package/esm/Snackbar/index.d.ts +0 -4
  2014. package/esm/Snackbar/index.js +0 -3
  2015. package/esm/Snackbar/snackbarClasses.d.ts +0 -20
  2016. package/esm/Snackbar/snackbarClasses.js +0 -7
  2017. package/esm/Snackbar/useSnackbar.d.ts +0 -3
  2018. package/esm/Snackbar/useSnackbar.js +0 -123
  2019. package/esm/Snackbar/useSnackbar.types.d.ts +0 -59
  2020. package/esm/Snackbar/useSnackbar.types.js +0 -1
  2021. package/esm/SnackbarContent/SnackbarContent.d.ts +0 -42
  2022. package/esm/SnackbarContent/SnackbarContent.js +0 -129
  2023. package/esm/SnackbarContent/index.d.ts +0 -4
  2024. package/esm/SnackbarContent/index.js +0 -3
  2025. package/esm/SnackbarContent/snackbarContentClasses.d.ts +0 -12
  2026. package/esm/SnackbarContent/snackbarContentClasses.js +0 -7
  2027. package/esm/SpeedDial/SpeedDial.d.ts +0 -131
  2028. package/esm/SpeedDial/SpeedDial.js +0 -578
  2029. package/esm/SpeedDial/index.d.ts +0 -4
  2030. package/esm/SpeedDial/index.js +0 -3
  2031. package/esm/SpeedDial/speedDialClasses.d.ts +0 -22
  2032. package/esm/SpeedDial/speedDialClasses.js +0 -7
  2033. package/esm/SpeedDialAction/SpeedDialAction.d.ts +0 -117
  2034. package/esm/SpeedDialAction/SpeedDialAction.js +0 -350
  2035. package/esm/SpeedDialAction/index.d.ts +0 -4
  2036. package/esm/SpeedDialAction/index.js +0 -3
  2037. package/esm/SpeedDialAction/speedDialActionClasses.d.ts +0 -20
  2038. package/esm/SpeedDialAction/speedDialActionClasses.js +0 -7
  2039. package/esm/SpeedDialIcon/SpeedDialIcon.d.ts +0 -43
  2040. package/esm/SpeedDialIcon/SpeedDialIcon.js +0 -156
  2041. package/esm/SpeedDialIcon/index.d.ts +0 -4
  2042. package/esm/SpeedDialIcon/index.js +0 -3
  2043. package/esm/SpeedDialIcon/speedDialIconClasses.d.ts +0 -18
  2044. package/esm/SpeedDialIcon/speedDialIconClasses.js +0 -7
  2045. package/esm/Stack/Stack.d.ts +0 -58
  2046. package/esm/Stack/Stack.js +0 -61
  2047. package/esm/Stack/index.d.ts +0 -4
  2048. package/esm/Stack/index.js +0 -2
  2049. package/esm/Stack/stackClasses.d.ts +0 -6
  2050. package/esm/Stack/stackClasses.js +0 -7
  2051. package/esm/Step/Step.d.ts +0 -70
  2052. package/esm/Step/Step.js +0 -176
  2053. package/esm/Step/StepContext.d.ts +0 -20
  2054. package/esm/Step/StepContext.js +0 -19
  2055. package/esm/Step/index.d.ts +0 -6
  2056. package/esm/Step/index.js +0 -5
  2057. package/esm/Step/stepClasses.d.ts +0 -16
  2058. package/esm/Step/stepClasses.js +0 -7
  2059. package/esm/StepButton/StepButton.d.ts +0 -51
  2060. package/esm/StepButton/StepButton.js +0 -133
  2061. package/esm/StepButton/index.d.ts +0 -4
  2062. package/esm/StepButton/index.js +0 -3
  2063. package/esm/StepButton/stepButtonClasses.d.ts +0 -14
  2064. package/esm/StepButton/stepButtonClasses.js +0 -7
  2065. package/esm/StepConnector/StepConnector.d.ts +0 -29
  2066. package/esm/StepConnector/StepConnector.js +0 -152
  2067. package/esm/StepConnector/index.d.ts +0 -4
  2068. package/esm/StepConnector/index.js +0 -3
  2069. package/esm/StepConnector/stepConnectorClasses.d.ts +0 -30
  2070. package/esm/StepConnector/stepConnectorClasses.js +0 -7
  2071. package/esm/StepContent/StepContent.d.ts +0 -75
  2072. package/esm/StepContent/StepContent.js +0 -186
  2073. package/esm/StepContent/index.d.ts +0 -4
  2074. package/esm/StepContent/index.js +0 -3
  2075. package/esm/StepContent/stepContentClasses.d.ts +0 -12
  2076. package/esm/StepContent/stepContentClasses.js +0 -7
  2077. package/esm/StepIcon/StepIcon.d.ts +0 -50
  2078. package/esm/StepIcon/StepIcon.js +0 -159
  2079. package/esm/StepIcon/index.d.ts +0 -4
  2080. package/esm/StepIcon/index.js +0 -3
  2081. package/esm/StepIcon/stepIconClasses.d.ts +0 -16
  2082. package/esm/StepIcon/stepIconClasses.js +0 -7
  2083. package/esm/StepLabel/StepLabel.d.ts +0 -106
  2084. package/esm/StepLabel/StepLabel.js +0 -277
  2085. package/esm/StepLabel/index.d.ts +0 -4
  2086. package/esm/StepLabel/index.js +0 -3
  2087. package/esm/StepLabel/stepLabelClasses.d.ts +0 -28
  2088. package/esm/StepLabel/stepLabelClasses.js +0 -7
  2089. package/esm/Stepper/Stepper.d.ts +0 -71
  2090. package/esm/Stepper/Stepper.js +0 -167
  2091. package/esm/Stepper/StepperContext.d.ts +0 -18
  2092. package/esm/Stepper/StepperContext.js +0 -19
  2093. package/esm/Stepper/index.d.ts +0 -6
  2094. package/esm/Stepper/index.js +0 -5
  2095. package/esm/Stepper/stepperClasses.d.ts +0 -16
  2096. package/esm/Stepper/stepperClasses.js +0 -7
  2097. package/esm/SvgIcon/SvgIcon.d.ts +0 -89
  2098. package/esm/SvgIcon/SvgIcon.js +0 -234
  2099. package/esm/SvgIcon/index.d.ts +0 -4
  2100. package/esm/SvgIcon/index.js +0 -3
  2101. package/esm/SvgIcon/svgIconClasses.d.ts +0 -26
  2102. package/esm/SvgIcon/svgIconClasses.js +0 -7
  2103. package/esm/SwipeableDrawer/SwipeArea.js +0 -104
  2104. package/esm/SwipeableDrawer/SwipeableDrawer.d.ts +0 -106
  2105. package/esm/SwipeableDrawer/SwipeableDrawer.js +0 -661
  2106. package/esm/SwipeableDrawer/index.d.ts +0 -2
  2107. package/esm/SwipeableDrawer/index.js +0 -1
  2108. package/esm/Switch/Switch.d.ts +0 -123
  2109. package/esm/Switch/Switch.js +0 -405
  2110. package/esm/Switch/index.d.ts +0 -4
  2111. package/esm/Switch/index.js +0 -3
  2112. package/esm/Switch/switchClasses.d.ts +0 -32
  2113. package/esm/Switch/switchClasses.js +0 -7
  2114. package/esm/Tab/Tab.d.ts +0 -75
  2115. package/esm/Tab/Tab.js +0 -338
  2116. package/esm/Tab/index.d.ts +0 -4
  2117. package/esm/Tab/index.js +0 -3
  2118. package/esm/Tab/tabClasses.d.ts +0 -30
  2119. package/esm/Tab/tabClasses.js +0 -7
  2120. package/esm/TabScrollButton/TabScrollButton.d.ts +0 -67
  2121. package/esm/TabScrollButton/TabScrollButton.js +0 -172
  2122. package/esm/TabScrollButton/index.d.ts +0 -4
  2123. package/esm/TabScrollButton/index.js +0 -3
  2124. package/esm/TabScrollButton/tabScrollButtonClasses.d.ts +0 -12
  2125. package/esm/TabScrollButton/tabScrollButtonClasses.js +0 -7
  2126. package/esm/Table/Table.d.ts +0 -55
  2127. package/esm/Table/Table.js +0 -136
  2128. package/esm/Table/TableContext.d.ts +0 -7
  2129. package/esm/Table/TableContext.js +0 -12
  2130. package/esm/Table/Tablelvl2Context.d.ts +0 -6
  2131. package/esm/Table/Tablelvl2Context.js +0 -12
  2132. package/esm/Table/index.d.ts +0 -4
  2133. package/esm/Table/index.js +0 -3
  2134. package/esm/Table/tableClasses.d.ts +0 -10
  2135. package/esm/Table/tableClasses.js +0 -7
  2136. package/esm/TableBody/TableBody.d.ts +0 -38
  2137. package/esm/TableBody/TableBody.js +0 -85
  2138. package/esm/TableBody/index.d.ts +0 -4
  2139. package/esm/TableBody/index.js +0 -3
  2140. package/esm/TableBody/tableBodyClasses.d.ts +0 -8
  2141. package/esm/TableBody/tableBodyClasses.js +0 -7
  2142. package/esm/TableCell/TableCell.d.ts +0 -82
  2143. package/esm/TableCell/TableCell.js +0 -270
  2144. package/esm/TableCell/index.d.ts +0 -4
  2145. package/esm/TableCell/index.js +0 -3
  2146. package/esm/TableCell/tableCellClasses.d.ts +0 -32
  2147. package/esm/TableCell/tableCellClasses.js +0 -7
  2148. package/esm/TableContainer/TableContainer.d.ts +0 -38
  2149. package/esm/TableContainer/TableContainer.js +0 -77
  2150. package/esm/TableContainer/index.d.ts +0 -4
  2151. package/esm/TableContainer/index.js +0 -3
  2152. package/esm/TableContainer/tableContainerClasses.d.ts +0 -8
  2153. package/esm/TableContainer/tableContainerClasses.js +0 -7
  2154. package/esm/TableFooter/TableFooter.d.ts +0 -38
  2155. package/esm/TableFooter/TableFooter.js +0 -85
  2156. package/esm/TableFooter/index.d.ts +0 -4
  2157. package/esm/TableFooter/index.js +0 -3
  2158. package/esm/TableFooter/tableFooterClasses.d.ts +0 -8
  2159. package/esm/TableFooter/tableFooterClasses.js +0 -7
  2160. package/esm/TableHead/TableHead.d.ts +0 -38
  2161. package/esm/TableHead/TableHead.js +0 -85
  2162. package/esm/TableHead/index.d.ts +0 -4
  2163. package/esm/TableHead/index.js +0 -3
  2164. package/esm/TableHead/tableHeadClasses.d.ts +0 -8
  2165. package/esm/TableHead/tableHeadClasses.js +0 -7
  2166. package/esm/TablePagination/TablePagination.d.ts +0 -263
  2167. package/esm/TablePagination/TablePagination.js +0 -500
  2168. package/esm/TablePagination/TablePaginationActions.d.ts +0 -94
  2169. package/esm/TablePagination/TablePaginationActions.js +0 -194
  2170. package/esm/TablePagination/index.d.ts +0 -4
  2171. package/esm/TablePagination/index.js +0 -3
  2172. package/esm/TablePagination/tablePaginationClasses.d.ts +0 -28
  2173. package/esm/TablePagination/tablePaginationClasses.js +0 -7
  2174. package/esm/TableRow/TableRow.d.ts +0 -50
  2175. package/esm/TableRow/TableRow.js +0 -127
  2176. package/esm/TableRow/index.d.ts +0 -4
  2177. package/esm/TableRow/index.js +0 -3
  2178. package/esm/TableRow/tableRowClasses.d.ts +0 -16
  2179. package/esm/TableRow/tableRowClasses.js +0 -7
  2180. package/esm/TableSortLabel/TableSortLabel.d.ts +0 -90
  2181. package/esm/TableSortLabel/TableSortLabel.js +0 -212
  2182. package/esm/TableSortLabel/index.d.ts +0 -4
  2183. package/esm/TableSortLabel/index.js +0 -3
  2184. package/esm/TableSortLabel/tableSortLabelClasses.d.ts +0 -24
  2185. package/esm/TableSortLabel/tableSortLabelClasses.js +0 -7
  2186. package/esm/Tabs/ScrollbarSize.js +0 -58
  2187. package/esm/Tabs/Tabs.d.ts +0 -272
  2188. package/esm/Tabs/Tabs.js +0 -955
  2189. package/esm/Tabs/index.d.ts +0 -4
  2190. package/esm/Tabs/index.js +0 -3
  2191. package/esm/Tabs/tabsClasses.d.ts +0 -36
  2192. package/esm/Tabs/tabsClasses.js +0 -7
  2193. package/esm/TextField/TextField.d.ts +0 -342
  2194. package/esm/TextField/TextField.js +0 -456
  2195. package/esm/TextField/index.d.ts +0 -4
  2196. package/esm/TextField/index.js +0 -3
  2197. package/esm/TextField/textFieldClasses.d.ts +0 -8
  2198. package/esm/TextField/textFieldClasses.js +0 -7
  2199. package/esm/TextareaAutosize/TextareaAutosize.d.ts +0 -14
  2200. package/esm/TextareaAutosize/TextareaAutosize.js +0 -256
  2201. package/esm/TextareaAutosize/TextareaAutosize.types.d.ts +0 -13
  2202. package/esm/TextareaAutosize/TextareaAutosize.types.js +0 -1
  2203. package/esm/TextareaAutosize/index.d.ts +0 -3
  2204. package/esm/TextareaAutosize/index.js +0 -1
  2205. package/esm/ToggleButton/ToggleButton.d.ts +0 -95
  2206. package/esm/ToggleButton/ToggleButton.js +0 -268
  2207. package/esm/ToggleButton/index.d.ts +0 -4
  2208. package/esm/ToggleButton/index.js +0 -3
  2209. package/esm/ToggleButton/toggleButtonClasses.d.ts +0 -26
  2210. package/esm/ToggleButton/toggleButtonClasses.js +0 -7
  2211. package/esm/ToggleButtonGroup/ToggleButtonGroup.d.ts +0 -82
  2212. package/esm/ToggleButtonGroup/ToggleButtonGroup.js +0 -281
  2213. package/esm/ToggleButtonGroup/ToggleButtonGroupButtonContext.d.ts +0 -6
  2214. package/esm/ToggleButtonGroup/ToggleButtonGroupButtonContext.js +0 -11
  2215. package/esm/ToggleButtonGroup/ToggleButtonGroupContext.d.ts +0 -16
  2216. package/esm/ToggleButtonGroup/ToggleButtonGroupContext.js +0 -11
  2217. package/esm/ToggleButtonGroup/index.d.ts +0 -4
  2218. package/esm/ToggleButtonGroup/index.js +0 -3
  2219. package/esm/ToggleButtonGroup/isValueSelected.js +0 -11
  2220. package/esm/ToggleButtonGroup/toggleButtonGroupClasses.d.ts +0 -34
  2221. package/esm/ToggleButtonGroup/toggleButtonGroupClasses.js +0 -7
  2222. package/esm/Toolbar/Toolbar.d.ts +0 -51
  2223. package/esm/Toolbar/Toolbar.js +0 -129
  2224. package/esm/Toolbar/index.d.ts +0 -4
  2225. package/esm/Toolbar/index.js +0 -3
  2226. package/esm/Toolbar/toolbarClasses.d.ts +0 -14
  2227. package/esm/Toolbar/toolbarClasses.js +0 -7
  2228. package/esm/Tooltip/Tooltip.d.ts +0 -229
  2229. package/esm/Tooltip/Tooltip.js +0 -897
  2230. package/esm/Tooltip/index.d.ts +0 -4
  2231. package/esm/Tooltip/index.js +0 -3
  2232. package/esm/Tooltip/tooltipClasses.d.ts +0 -30
  2233. package/esm/Tooltip/tooltipClasses.js +0 -7
  2234. package/esm/Typography/Typography.d.ts +0 -99
  2235. package/esm/Typography/Typography.js +0 -268
  2236. package/esm/Typography/index.d.ts +0 -4
  2237. package/esm/Typography/index.js +0 -3
  2238. package/esm/Typography/typographyClasses.d.ts +0 -53
  2239. package/esm/Typography/typographyClasses.js +0 -7
  2240. package/esm/Unstable_TrapFocus/FocusTrap.d.ts +0 -10
  2241. package/esm/Unstable_TrapFocus/FocusTrap.js +0 -333
  2242. package/esm/Unstable_TrapFocus/FocusTrap.types.d.ts +0 -54
  2243. package/esm/Unstable_TrapFocus/FocusTrap.types.js +0 -1
  2244. package/esm/Unstable_TrapFocus/index.d.ts +0 -2
  2245. package/esm/Unstable_TrapFocus/index.js +0 -1
  2246. package/esm/Zoom/Zoom.d.ts +0 -49
  2247. package/esm/Zoom/Zoom.js +0 -210
  2248. package/esm/Zoom/index.d.ts +0 -2
  2249. package/esm/Zoom/index.js +0 -1
  2250. package/esm/className/index.d.ts +0 -1
  2251. package/esm/className/index.js +0 -2
  2252. package/esm/colors/amber.d.ts +0 -62
  2253. package/esm/colors/amber.js +0 -17
  2254. package/esm/colors/blue.d.ts +0 -62
  2255. package/esm/colors/blue.js +0 -17
  2256. package/esm/colors/blueGrey.d.ts +0 -62
  2257. package/esm/colors/blueGrey.js +0 -17
  2258. package/esm/colors/brown.d.ts +0 -62
  2259. package/esm/colors/brown.js +0 -17
  2260. package/esm/colors/common.d.ts +0 -14
  2261. package/esm/colors/common.js +0 -5
  2262. package/esm/colors/cyan.d.ts +0 -62
  2263. package/esm/colors/cyan.js +0 -17
  2264. package/esm/colors/deepOrange.d.ts +0 -62
  2265. package/esm/colors/deepOrange.js +0 -17
  2266. package/esm/colors/deepPurple.d.ts +0 -62
  2267. package/esm/colors/deepPurple.js +0 -17
  2268. package/esm/colors/green.d.ts +0 -62
  2269. package/esm/colors/green.js +0 -17
  2270. package/esm/colors/grey.d.ts +0 -62
  2271. package/esm/colors/grey.js +0 -17
  2272. package/esm/colors/index.d.ts +0 -20
  2273. package/esm/colors/index.js +0 -20
  2274. package/esm/colors/indigo.d.ts +0 -62
  2275. package/esm/colors/indigo.js +0 -17
  2276. package/esm/colors/lightBlue.d.ts +0 -62
  2277. package/esm/colors/lightBlue.js +0 -17
  2278. package/esm/colors/lightGreen.d.ts +0 -62
  2279. package/esm/colors/lightGreen.js +0 -17
  2280. package/esm/colors/lime.d.ts +0 -62
  2281. package/esm/colors/lime.js +0 -17
  2282. package/esm/colors/orange.d.ts +0 -62
  2283. package/esm/colors/orange.js +0 -17
  2284. package/esm/colors/pink.d.ts +0 -62
  2285. package/esm/colors/pink.js +0 -17
  2286. package/esm/colors/purple.d.ts +0 -62
  2287. package/esm/colors/purple.js +0 -17
  2288. package/esm/colors/red.d.ts +0 -62
  2289. package/esm/colors/red.js +0 -17
  2290. package/esm/colors/teal.d.ts +0 -62
  2291. package/esm/colors/teal.js +0 -17
  2292. package/esm/colors/yellow.d.ts +0 -62
  2293. package/esm/colors/yellow.js +0 -17
  2294. package/esm/darkScrollbar/index.d.ts +0 -28
  2295. package/esm/darkScrollbar/index.js +0 -32
  2296. package/esm/generateUtilityClass/index.d.ts +0 -2
  2297. package/esm/generateUtilityClass/index.js +0 -1
  2298. package/esm/generateUtilityClasses/index.d.ts +0 -1
  2299. package/esm/generateUtilityClasses/index.js +0 -1
  2300. package/esm/index.d.ts +0 -324
  2301. package/esm/index.js +0 -287
  2302. package/esm/internal/SwitchBase.d.ts +0 -108
  2303. package/esm/internal/SwitchBase.js +0 -355
  2304. package/esm/internal/animate.js +0 -39
  2305. package/esm/internal/svg-icons/Add.js +0 -12
  2306. package/esm/internal/svg-icons/ArrowDownward.js +0 -12
  2307. package/esm/internal/svg-icons/ArrowDropDown.js +0 -12
  2308. package/esm/internal/svg-icons/Cancel.js +0 -12
  2309. package/esm/internal/svg-icons/CheckBox.js +0 -12
  2310. package/esm/internal/svg-icons/CheckBoxOutlineBlank.js +0 -12
  2311. package/esm/internal/svg-icons/CheckCircle.js +0 -12
  2312. package/esm/internal/svg-icons/Close.js +0 -14
  2313. package/esm/internal/svg-icons/ErrorOutline.js +0 -12
  2314. package/esm/internal/svg-icons/FirstPage.js +0 -12
  2315. package/esm/internal/svg-icons/IndeterminateCheckBox.js +0 -12
  2316. package/esm/internal/svg-icons/InfoOutlined.js +0 -12
  2317. package/esm/internal/svg-icons/KeyboardArrowLeft.js +0 -12
  2318. package/esm/internal/svg-icons/KeyboardArrowRight.js +0 -12
  2319. package/esm/internal/svg-icons/LastPage.js +0 -12
  2320. package/esm/internal/svg-icons/MoreHoriz.js +0 -12
  2321. package/esm/internal/svg-icons/NavigateBefore.js +0 -12
  2322. package/esm/internal/svg-icons/NavigateNext.js +0 -12
  2323. package/esm/internal/svg-icons/Person.js +0 -12
  2324. package/esm/internal/svg-icons/RadioButtonChecked.js +0 -12
  2325. package/esm/internal/svg-icons/RadioButtonUnchecked.js +0 -12
  2326. package/esm/internal/svg-icons/ReportProblemOutlined.js +0 -12
  2327. package/esm/internal/svg-icons/Star.js +0 -12
  2328. package/esm/internal/svg-icons/StarBorder.js +0 -12
  2329. package/esm/internal/svg-icons/SuccessOutlined.js +0 -12
  2330. package/esm/internal/svg-icons/Warning.js +0 -12
  2331. package/esm/internal/switchBaseClasses.d.ts +0 -12
  2332. package/esm/internal/switchBaseClasses.js +0 -7
  2333. package/esm/locale/index.d.ts +0 -82
  2334. package/esm/locale/index.js +0 -4324
  2335. package/esm/package.json +0 -1
  2336. package/esm/styles/ThemeProvider.d.ts +0 -76
  2337. package/esm/styles/ThemeProvider.js +0 -40
  2338. package/esm/styles/ThemeProviderNoVars.d.ts +0 -10
  2339. package/esm/styles/ThemeProviderNoVars.js +0 -17
  2340. package/esm/styles/ThemeProviderWithVars.d.ts +0 -51
  2341. package/esm/styles/ThemeProviderWithVars.js +0 -91
  2342. package/esm/styles/adaptV4Theme.d.ts +0 -36
  2343. package/esm/styles/adaptV4Theme.js +0 -83
  2344. package/esm/styles/components.d.ts +0 -595
  2345. package/esm/styles/components.js +0 -1
  2346. package/esm/styles/createColorScheme.d.ts +0 -9
  2347. package/esm/styles/createColorScheme.js +0 -41
  2348. package/esm/styles/createGetSelector.d.ts +0 -16
  2349. package/esm/styles/createGetSelector.js +0 -60
  2350. package/esm/styles/createMixins.d.ts +0 -32
  2351. package/esm/styles/createMixins.js +0 -16
  2352. package/esm/styles/createMuiStrictModeTheme.js +0 -7
  2353. package/esm/styles/createPalette.d.ts +0 -125
  2354. package/esm/styles/createPalette.js +0 -302
  2355. package/esm/styles/createStyles.d.ts +0 -1
  2356. package/esm/styles/createStyles.js +0 -10
  2357. package/esm/styles/createTheme.d.ts +0 -14
  2358. package/esm/styles/createTheme.js +0 -98
  2359. package/esm/styles/createThemeNoVars.d.ts +0 -70
  2360. package/esm/styles/createThemeNoVars.js +0 -91
  2361. package/esm/styles/createThemeWithVars.d.ts +0 -350
  2362. package/esm/styles/createThemeWithVars.js +0 -386
  2363. package/esm/styles/createTransitions.d.ts +0 -51
  2364. package/esm/styles/createTransitions.js +0 -89
  2365. package/esm/styles/createTypography.d.ts +0 -28
  2366. package/esm/styles/createTypography.js +0 -92
  2367. package/esm/styles/cssUtils.d.ts +0 -25
  2368. package/esm/styles/cssUtils.js +0 -125
  2369. package/esm/styles/defaultTheme.js +0 -5
  2370. package/esm/styles/excludeVariablesFromRoot.d.ts +0 -5
  2371. package/esm/styles/excludeVariablesFromRoot.js +0 -5
  2372. package/esm/styles/experimental_extendTheme.js +0 -9
  2373. package/esm/styles/getOverlayAlpha.d.ts +0 -1
  2374. package/esm/styles/getOverlayAlpha.js +0 -10
  2375. package/esm/styles/identifier.d.ts +0 -2
  2376. package/esm/styles/identifier.js +0 -1
  2377. package/esm/styles/index.d.ts +0 -49
  2378. package/esm/styles/index.js +0 -37
  2379. package/esm/styles/makeStyles.d.ts +0 -1
  2380. package/esm/styles/makeStyles.js +0 -4
  2381. package/esm/styles/overrides.d.ts +0 -244
  2382. package/esm/styles/overrides.js +0 -1
  2383. package/esm/styles/props.d.ts +0 -241
  2384. package/esm/styles/props.js +0 -1
  2385. package/esm/styles/responsiveFontSizes.d.ts +0 -11
  2386. package/esm/styles/responsiveFontSizes.js +0 -67
  2387. package/esm/styles/rootShouldForwardProp.d.ts +0 -2
  2388. package/esm/styles/rootShouldForwardProp.js +0 -3
  2389. package/esm/styles/shadows.d.ts +0 -3
  2390. package/esm/styles/shadows.js +0 -10
  2391. package/esm/styles/shouldSkipGeneratingVar.d.ts +0 -1
  2392. package/esm/styles/shouldSkipGeneratingVar.js +0 -5
  2393. package/esm/styles/slotShouldForwardProp.d.ts +0 -2
  2394. package/esm/styles/slotShouldForwardProp.js +0 -5
  2395. package/esm/styles/stringifyTheme.d.ts +0 -20
  2396. package/esm/styles/stringifyTheme.js +0 -54
  2397. package/esm/styles/styled.d.ts +0 -13
  2398. package/esm/styles/styled.js +0 -14
  2399. package/esm/styles/useTheme.d.ts +0 -2
  2400. package/esm/styles/useTheme.js +0 -15
  2401. package/esm/styles/useThemeProps.d.ts +0 -42
  2402. package/esm/styles/useThemeProps.js +0 -16
  2403. package/esm/styles/variants.d.ts +0 -10
  2404. package/esm/styles/variants.js +0 -1
  2405. package/esm/styles/withStyles.d.ts +0 -1
  2406. package/esm/styles/withStyles.js +0 -4
  2407. package/esm/styles/withTheme.d.ts +0 -1
  2408. package/esm/styles/withTheme.js +0 -4
  2409. package/esm/styles/zIndex.d.ts +0 -13
  2410. package/esm/styles/zIndex.js +0 -13
  2411. package/esm/themeCssVarsAugmentation/index.d.ts +0 -10
  2412. package/esm/transitions/index.d.ts +0 -1
  2413. package/esm/transitions/index.js +0 -1
  2414. package/esm/transitions/transition.d.ts +0 -12
  2415. package/esm/transitions/transition.js +0 -1
  2416. package/esm/transitions/utils.d.ts +0 -23
  2417. package/esm/transitions/utils.js +0 -13
  2418. package/esm/types/OverridableComponentAugmentation.d.ts +0 -31
  2419. package/esm/types/OverridableComponentAugmentation.js +0 -1
  2420. package/esm/useAutocomplete/index.d.ts +0 -2
  2421. package/esm/useAutocomplete/index.js +0 -1
  2422. package/esm/useAutocomplete/useAutocomplete.d.ts +0 -420
  2423. package/esm/useAutocomplete/useAutocomplete.js +0 -1023
  2424. package/esm/useLazyRipple/index.d.ts +0 -1
  2425. package/esm/useLazyRipple/index.js +0 -3
  2426. package/esm/useLazyRipple/useLazyRipple.d.ts +0 -32
  2427. package/esm/useLazyRipple/useLazyRipple.js +0 -85
  2428. package/esm/useMediaQuery/index.d.ts +0 -7
  2429. package/esm/useMediaQuery/index.js +0 -6
  2430. package/esm/usePagination/index.d.ts +0 -2
  2431. package/esm/usePagination/index.js +0 -1
  2432. package/esm/usePagination/usePagination.d.ts +0 -74
  2433. package/esm/usePagination/usePagination.js +0 -113
  2434. package/esm/useScrollTrigger/index.d.ts +0 -1
  2435. package/esm/useScrollTrigger/index.js +0 -1
  2436. package/esm/useScrollTrigger/useScrollTrigger.d.ts +0 -6
  2437. package/esm/useScrollTrigger/useScrollTrigger.js +0 -55
  2438. package/esm/utils/PolymorphicComponent.d.ts +0 -17
  2439. package/esm/utils/PolymorphicComponent.js +0 -1
  2440. package/esm/utils/areArraysEqual.d.ts +0 -3
  2441. package/esm/utils/areArraysEqual.js +0 -4
  2442. package/esm/utils/capitalize.d.ts +0 -2
  2443. package/esm/utils/capitalize.js +0 -2
  2444. package/esm/utils/createChainedFunction.d.ts +0 -2
  2445. package/esm/utils/createChainedFunction.js +0 -2
  2446. package/esm/utils/createSimplePaletteValueFilter.d.ts +0 -12
  2447. package/esm/utils/createSimplePaletteValueFilter.js +0 -41
  2448. package/esm/utils/createSvgIcon.d.ts +0 -2
  2449. package/esm/utils/createSvgIcon.js +0 -26
  2450. package/esm/utils/debounce.d.ts +0 -2
  2451. package/esm/utils/debounce.js +0 -2
  2452. package/esm/utils/deprecatedPropType.d.ts +0 -2
  2453. package/esm/utils/deprecatedPropType.js +0 -2
  2454. package/esm/utils/getScrollbarSize.d.ts +0 -2
  2455. package/esm/utils/getScrollbarSize.js +0 -2
  2456. package/esm/utils/index.d.ts +0 -20
  2457. package/esm/utils/index.js +0 -31
  2458. package/esm/utils/isHostComponent.d.ts +0 -6
  2459. package/esm/utils/isHostComponent.js +0 -7
  2460. package/esm/utils/isMuiElement.d.ts +0 -2
  2461. package/esm/utils/isMuiElement.js +0 -2
  2462. package/esm/utils/memoTheme.d.ts +0 -7
  2463. package/esm/utils/memoTheme.js +0 -3
  2464. package/esm/utils/mergeSlotProps.d.ts +0 -2
  2465. package/esm/utils/mergeSlotProps.js +0 -75
  2466. package/esm/utils/omitEventHandlers.d.ts +0 -9
  2467. package/esm/utils/omitEventHandlers.js +0 -18
  2468. package/esm/utils/ownerDocument.d.ts +0 -2
  2469. package/esm/utils/ownerDocument.js +0 -2
  2470. package/esm/utils/ownerWindow.d.ts +0 -2
  2471. package/esm/utils/ownerWindow.js +0 -2
  2472. package/esm/utils/requirePropFactory.d.ts +0 -2
  2473. package/esm/utils/requirePropFactory.js +0 -2
  2474. package/esm/utils/setRef.d.ts +0 -2
  2475. package/esm/utils/setRef.js +0 -2
  2476. package/esm/utils/shouldSpreadAdditionalProps.js +0 -5
  2477. package/esm/utils/types.d.ts +0 -26
  2478. package/esm/utils/types.js +0 -1
  2479. package/esm/utils/unsupportedProp.d.ts +0 -2
  2480. package/esm/utils/unsupportedProp.js +0 -2
  2481. package/esm/utils/useControlled.d.ts +0 -2
  2482. package/esm/utils/useControlled.js +0 -4
  2483. package/esm/utils/useEnhancedEffect.d.ts +0 -2
  2484. package/esm/utils/useEnhancedEffect.js +0 -4
  2485. package/esm/utils/useEventCallback.d.ts +0 -2
  2486. package/esm/utils/useEventCallback.js +0 -4
  2487. package/esm/utils/useForkRef.d.ts +0 -2
  2488. package/esm/utils/useForkRef.js +0 -4
  2489. package/esm/utils/useId.d.ts +0 -2
  2490. package/esm/utils/useId.js +0 -4
  2491. package/esm/utils/useSlot.d.ts +0 -81
  2492. package/esm/utils/useSlot.js +0 -80
  2493. package/esm/version/index.d.ts +0 -6
  2494. package/esm/version/index.js +0 -6
  2495. package/esm/zero-styled/index.d.ts +0 -12
  2496. package/esm/zero-styled/index.js +0 -27
  2497. package/generateUtilityClass/index.d.ts +0 -2
  2498. package/generateUtilityClass/index.js +0 -13
  2499. package/generateUtilityClasses/index.d.ts +0 -1
  2500. package/generateUtilityClasses/index.js +0 -13
  2501. package/index.d.ts +0 -324
  2502. package/index.js +0 -2612
  2503. package/internal/SwitchBase.d.ts +0 -108
  2504. package/internal/SwitchBase.js +0 -362
  2505. package/internal/animate.js +0 -45
  2506. package/internal/svg-icons/Add.js +0 -17
  2507. package/internal/svg-icons/ArrowDownward.js +0 -18
  2508. package/internal/svg-icons/ArrowDropDown.js +0 -18
  2509. package/internal/svg-icons/Cancel.js +0 -18
  2510. package/internal/svg-icons/CheckBox.js +0 -18
  2511. package/internal/svg-icons/CheckBoxOutlineBlank.js +0 -18
  2512. package/internal/svg-icons/CheckCircle.js +0 -18
  2513. package/internal/svg-icons/Close.js +0 -20
  2514. package/internal/svg-icons/ErrorOutline.js +0 -18
  2515. package/internal/svg-icons/FirstPage.js +0 -18
  2516. package/internal/svg-icons/IndeterminateCheckBox.js +0 -18
  2517. package/internal/svg-icons/InfoOutlined.js +0 -18
  2518. package/internal/svg-icons/KeyboardArrowLeft.js +0 -18
  2519. package/internal/svg-icons/KeyboardArrowRight.js +0 -18
  2520. package/internal/svg-icons/LastPage.js +0 -18
  2521. package/internal/svg-icons/MoreHoriz.js +0 -18
  2522. package/internal/svg-icons/NavigateBefore.js +0 -18
  2523. package/internal/svg-icons/NavigateNext.js +0 -18
  2524. package/internal/svg-icons/Person.js +0 -18
  2525. package/internal/svg-icons/RadioButtonChecked.js +0 -18
  2526. package/internal/svg-icons/RadioButtonUnchecked.js +0 -18
  2527. package/internal/svg-icons/ReportProblemOutlined.js +0 -18
  2528. package/internal/svg-icons/Star.js +0 -18
  2529. package/internal/svg-icons/StarBorder.js +0 -18
  2530. package/internal/svg-icons/SuccessOutlined.js +0 -18
  2531. package/internal/svg-icons/Warning.js +0 -18
  2532. package/internal/switchBaseClasses.d.ts +0 -12
  2533. package/internal/switchBaseClasses.js +0 -15
  2534. package/locale/index.d.ts +0 -82
  2535. package/locale/index.js +0 -4330
  2536. package/styles/ThemeProvider.d.ts +0 -76
  2537. package/styles/ThemeProvider.js +0 -47
  2538. package/styles/ThemeProviderNoVars.d.ts +0 -10
  2539. package/styles/ThemeProviderNoVars.js +0 -24
  2540. package/styles/ThemeProviderWithVars.d.ts +0 -51
  2541. package/styles/ThemeProviderWithVars.js +0 -101
  2542. package/styles/adaptV4Theme.d.ts +0 -36
  2543. package/styles/adaptV4Theme.js +0 -88
  2544. package/styles/components.d.ts +0 -595
  2545. package/styles/components.js +0 -5
  2546. package/styles/createColorScheme.d.ts +0 -9
  2547. package/styles/createColorScheme.js +0 -50
  2548. package/styles/createGetSelector.d.ts +0 -16
  2549. package/styles/createGetSelector.js +0 -68
  2550. package/styles/createMixins.d.ts +0 -32
  2551. package/styles/createMixins.js +0 -22
  2552. package/styles/createMuiStrictModeTheme.js +0 -14
  2553. package/styles/createPalette.d.ts +0 -125
  2554. package/styles/createPalette.js +0 -311
  2555. package/styles/createStyles.d.ts +0 -1
  2556. package/styles/createStyles.js +0 -16
  2557. package/styles/createTheme.d.ts +0 -14
  2558. package/styles/createTheme.js +0 -105
  2559. package/styles/createThemeNoVars.d.ts +0 -70
  2560. package/styles/createThemeNoVars.js +0 -99
  2561. package/styles/createThemeWithVars.d.ts +0 -350
  2562. package/styles/createThemeWithVars.js +0 -396
  2563. package/styles/createTransitions.d.ts +0 -51
  2564. package/styles/createTransitions.js +0 -96
  2565. package/styles/createTypography.d.ts +0 -28
  2566. package/styles/createTypography.js +0 -99
  2567. package/styles/cssUtils.d.ts +0 -25
  2568. package/styles/cssUtils.js +0 -137
  2569. package/styles/defaultTheme.js +0 -11
  2570. package/styles/excludeVariablesFromRoot.d.ts +0 -5
  2571. package/styles/excludeVariablesFromRoot.js +0 -11
  2572. package/styles/experimental_extendTheme.js +0 -16
  2573. package/styles/getOverlayAlpha.d.ts +0 -1
  2574. package/styles/getOverlayAlpha.js +0 -16
  2575. package/styles/identifier.d.ts +0 -2
  2576. package/styles/identifier.js +0 -7
  2577. package/styles/index.d.ts +0 -49
  2578. package/styles/index.js +0 -348
  2579. package/styles/makeStyles.d.ts +0 -1
  2580. package/styles/makeStyles.js +0 -11
  2581. package/styles/overrides.d.ts +0 -244
  2582. package/styles/overrides.js +0 -5
  2583. package/styles/props.d.ts +0 -241
  2584. package/styles/props.js +0 -5
  2585. package/styles/responsiveFontSizes.d.ts +0 -11
  2586. package/styles/responsiveFontSizes.js +0 -74
  2587. package/styles/rootShouldForwardProp.d.ts +0 -2
  2588. package/styles/rootShouldForwardProp.js +0 -10
  2589. package/styles/shadows.d.ts +0 -3
  2590. package/styles/shadows.js +0 -16
  2591. package/styles/shouldSkipGeneratingVar.d.ts +0 -1
  2592. package/styles/shouldSkipGeneratingVar.js +0 -11
  2593. package/styles/slotShouldForwardProp.d.ts +0 -2
  2594. package/styles/slotShouldForwardProp.js +0 -11
  2595. package/styles/stringifyTheme.d.ts +0 -20
  2596. package/styles/stringifyTheme.js +0 -61
  2597. package/styles/styled.d.ts +0 -13
  2598. package/styles/styled.js +0 -31
  2599. package/styles/useTheme.d.ts +0 -2
  2600. package/styles/useTheme.js +0 -22
  2601. package/styles/useThemeProps.d.ts +0 -42
  2602. package/styles/useThemeProps.js +0 -22
  2603. package/styles/variants.d.ts +0 -10
  2604. package/styles/variants.js +0 -5
  2605. package/styles/withStyles.d.ts +0 -1
  2606. package/styles/withStyles.js +0 -11
  2607. package/styles/withTheme.d.ts +0 -1
  2608. package/styles/withTheme.js +0 -11
  2609. package/styles/zIndex.d.ts +0 -13
  2610. package/styles/zIndex.js +0 -19
  2611. package/themeCssVarsAugmentation/index.d.ts +0 -10
  2612. package/transitions/index.d.ts +0 -1
  2613. package/transitions/index.js +0 -16
  2614. package/transitions/transition.d.ts +0 -12
  2615. package/transitions/transition.js +0 -5
  2616. package/transitions/utils.d.ts +0 -23
  2617. package/transitions/utils.js +0 -21
  2618. package/types/OverridableComponentAugmentation.d.ts +0 -31
  2619. package/types/OverridableComponentAugmentation.js +0 -5
  2620. package/useAutocomplete/index.d.ts +0 -2
  2621. package/useAutocomplete/index.js +0 -19
  2622. package/useAutocomplete/useAutocomplete.d.ts +0 -420
  2623. package/useAutocomplete/useAutocomplete.js +0 -1030
  2624. package/useLazyRipple/index.d.ts +0 -1
  2625. package/useLazyRipple/index.js +0 -14
  2626. package/useLazyRipple/useLazyRipple.d.ts +0 -32
  2627. package/useLazyRipple/useLazyRipple.js +0 -94
  2628. package/useMediaQuery/index.d.ts +0 -7
  2629. package/useMediaQuery/index.js +0 -13
  2630. package/usePagination/index.d.ts +0 -2
  2631. package/usePagination/index.js +0 -13
  2632. package/usePagination/usePagination.d.ts +0 -74
  2633. package/usePagination/usePagination.js +0 -119
  2634. package/useScrollTrigger/index.d.ts +0 -1
  2635. package/useScrollTrigger/index.js +0 -13
  2636. package/useScrollTrigger/useScrollTrigger.d.ts +0 -6
  2637. package/useScrollTrigger/useScrollTrigger.js +0 -61
  2638. package/utils/PolymorphicComponent.d.ts +0 -17
  2639. package/utils/PolymorphicComponent.js +0 -5
  2640. package/utils/areArraysEqual.d.ts +0 -3
  2641. package/utils/areArraysEqual.js +0 -10
  2642. package/utils/capitalize.d.ts +0 -2
  2643. package/utils/capitalize.js +0 -9
  2644. package/utils/createChainedFunction.d.ts +0 -2
  2645. package/utils/createChainedFunction.js +0 -9
  2646. package/utils/createSimplePaletteValueFilter.d.ts +0 -12
  2647. package/utils/createSimplePaletteValueFilter.js +0 -47
  2648. package/utils/createSvgIcon.d.ts +0 -2
  2649. package/utils/createSvgIcon.js +0 -31
  2650. package/utils/debounce.d.ts +0 -2
  2651. package/utils/debounce.js +0 -9
  2652. package/utils/deprecatedPropType.d.ts +0 -2
  2653. package/utils/deprecatedPropType.js +0 -9
  2654. package/utils/getScrollbarSize.d.ts +0 -2
  2655. package/utils/getScrollbarSize.js +0 -9
  2656. package/utils/index.d.ts +0 -20
  2657. package/utils/index.js +0 -145
  2658. package/utils/isHostComponent.d.ts +0 -6
  2659. package/utils/isHostComponent.js +0 -13
  2660. package/utils/isMuiElement.d.ts +0 -2
  2661. package/utils/isMuiElement.js +0 -9
  2662. package/utils/memoTheme.d.ts +0 -7
  2663. package/utils/memoTheme.js +0 -9
  2664. package/utils/mergeSlotProps.d.ts +0 -2
  2665. package/utils/mergeSlotProps.js +0 -81
  2666. package/utils/omitEventHandlers.d.ts +0 -9
  2667. package/utils/omitEventHandlers.js +0 -24
  2668. package/utils/ownerDocument.d.ts +0 -2
  2669. package/utils/ownerDocument.js +0 -9
  2670. package/utils/ownerWindow.d.ts +0 -2
  2671. package/utils/ownerWindow.js +0 -9
  2672. package/utils/requirePropFactory.d.ts +0 -2
  2673. package/utils/requirePropFactory.js +0 -9
  2674. package/utils/setRef.d.ts +0 -2
  2675. package/utils/setRef.js +0 -9
  2676. package/utils/shouldSpreadAdditionalProps.js +0 -12
  2677. package/utils/types.d.ts +0 -26
  2678. package/utils/types.js +0 -5
  2679. package/utils/unsupportedProp.d.ts +0 -2
  2680. package/utils/unsupportedProp.js +0 -9
  2681. package/utils/useControlled.d.ts +0 -2
  2682. package/utils/useControlled.js +0 -10
  2683. package/utils/useEnhancedEffect.d.ts +0 -2
  2684. package/utils/useEnhancedEffect.js +0 -10
  2685. package/utils/useEventCallback.d.ts +0 -2
  2686. package/utils/useEventCallback.js +0 -10
  2687. package/utils/useForkRef.d.ts +0 -2
  2688. package/utils/useForkRef.js +0 -10
  2689. package/utils/useId.d.ts +0 -2
  2690. package/utils/useId.js +0 -10
  2691. package/utils/useSlot.d.ts +0 -81
  2692. package/utils/useSlot.js +0 -86
  2693. package/version/index.d.ts +0 -6
  2694. package/version/index.js +0 -12
  2695. package/zero-styled/index.d.ts +0 -12
  2696. package/zero-styled/index.js +0 -59
@@ -1,4324 +0,0 @@
1
- export const amET = {
2
- components: {
3
- MuiBreadcrumbs: {
4
- defaultProps: {
5
- expandText: 'መንገድ አሳይ'
6
- }
7
- },
8
- MuiTablePagination: {
9
- defaultProps: {
10
- getItemAriaLabel: type => {
11
- if (type === 'first') {
12
- return 'ወደ መጀመሪያው ገጽ ይሂዱ';
13
- }
14
- if (type === 'last') {
15
- return 'ወደ መጨረሻው ገጽ ይሂዱ';
16
- }
17
- if (type === 'next') {
18
- return 'ወደ ቀጣዩ ገጽ ይሂዱ';
19
- }
20
- // if (type === 'previous') {
21
- return 'ወደ ቀዳሚው ገጽ ይሂዱ';
22
- },
23
- labelRowsPerPage: 'ረድፎች በአንድ ገጽ:',
24
- labelDisplayedRows: ({
25
- from,
26
- to,
27
- count
28
- }) => `${from}-${to} ከ ${count !== -1 ? count : `${to} በላይ`}`
29
- }
30
- },
31
- MuiRating: {
32
- defaultProps: {
33
- getLabelText: value => `${value} ኮከ${value !== 1 ? 'ቦች' : 'ብ'}`,
34
- emptyLabelText: 'ባዶ'
35
- }
36
- },
37
- MuiAutocomplete: {
38
- defaultProps: {
39
- clearText: 'አጽዳ',
40
- closeText: 'ዝጋ',
41
- loadingText: 'በመጫን ላይ…',
42
- noOptionsText: 'አማራጮች የሉም',
43
- openText: 'ክፈት'
44
- }
45
- },
46
- MuiAlert: {
47
- defaultProps: {
48
- closeText: 'ዝጋ'
49
- }
50
- },
51
- MuiPagination: {
52
- defaultProps: {
53
- 'aria-label': 'የገጽ አሰሳ',
54
- getItemAriaLabel: (type, page, selected) => {
55
- if (type === 'page') {
56
- return `${selected ? '' : 'ወደ '}ገጽ ${page}${selected ? '' : ' ሂድ'}`;
57
- }
58
- if (type === 'first') {
59
- return 'ወደ መጀመሪያው ገጽ ይሂዱ';
60
- }
61
- if (type === 'last') {
62
- return 'ወደ መጨረሻው ገጽ ይሂዱ';
63
- }
64
- if (type === 'next') {
65
- return 'ወደ ቀጣዩ ገጽ ይሂዱ';
66
- }
67
- // if (type === 'previous') {
68
- return 'ወደ ቀዳሚው ገጽ ይሂዱ';
69
- }
70
- }
71
- }
72
- }
73
- };
74
- export const arEG = {
75
- components: {
76
- MuiBreadcrumbs: {
77
- defaultProps: {
78
- expandText: 'إظهار المسار'
79
- }
80
- },
81
- MuiTablePagination: {
82
- defaultProps: {
83
- getItemAriaLabel: type => {
84
- if (type === 'first') {
85
- return 'انتقل إلى الصفحة الأولى';
86
- }
87
- if (type === 'last') {
88
- return 'انتقل إلى الصفحة الأخيرة';
89
- }
90
- if (type === 'next') {
91
- return 'انتقل إلى الصفحة التالية';
92
- }
93
- // if (type === 'previous') {
94
- return 'انتقل إلى الصفحة السابقة';
95
- },
96
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
97
- labelDisplayedRows: ({
98
- from,
99
- to,
100
- count
101
- }) => `${from}–${to} من ${count !== -1 ? count : ` أكثر من${to}`}`
102
- }
103
- },
104
- MuiRating: {
105
- defaultProps: {
106
- getLabelText: value => `${value} ${value !== 1 ? 'نجوم' : 'نجمة'}`,
107
- emptyLabelText: 'فارغ'
108
- }
109
- },
110
- MuiAutocomplete: {
111
- defaultProps: {
112
- clearText: 'مسح',
113
- closeText: 'إغلاق',
114
- loadingText: 'جار التحميل...',
115
- noOptionsText: 'لا يوجد خيارات',
116
- openText: 'فتح'
117
- }
118
- },
119
- MuiAlert: {
120
- defaultProps: {
121
- closeText: 'إغلاق'
122
- }
123
- },
124
- MuiPagination: {
125
- defaultProps: {
126
- 'aria-label': 'التنقل عبر الصفحات',
127
- getItemAriaLabel: (type, page, selected) => {
128
- if (type === 'page') {
129
- return `${selected ? '' : 'انتقل إلى '} صفحة ${page}`;
130
- }
131
- if (type === 'first') {
132
- return 'انتقل إلى الصفحة الأولى';
133
- }
134
- if (type === 'last') {
135
- return 'انتقل إلى الصفحة الأخيرة';
136
- }
137
- if (type === 'next') {
138
- return 'انتقل إلى الصفحة التالية';
139
- }
140
- // if (type === 'previous') {
141
- return 'انتقل إلى الصفحة السابقة';
142
- }
143
- }
144
- }
145
- }
146
- };
147
- export const arSA = {
148
- components: {
149
- MuiBreadcrumbs: {
150
- defaultProps: {
151
- expandText: 'إظهار المسار'
152
- }
153
- },
154
- MuiTablePagination: {
155
- defaultProps: {
156
- getItemAriaLabel: type => {
157
- if (type === 'first') {
158
- return 'الانتقال إلى الصفحة الأولى';
159
- }
160
- if (type === 'last') {
161
- return 'الانتقال إلى الصفحة الأخيرة';
162
- }
163
- if (type === 'next') {
164
- return 'الانتقال إلى الصفحة التالية';
165
- }
166
- // if (type === 'previous') {
167
- return 'الانتقال إلى الصفحة السابقة';
168
- },
169
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
170
- labelDisplayedRows: ({
171
- from,
172
- to,
173
- count
174
- }) => `${from}–${to} من ${count !== -1 ? count : ` أكثر من${to}`}`
175
- }
176
- },
177
- MuiRating: {
178
- defaultProps: {
179
- getLabelText: value => `${value} ${value !== 1 ? 'نجوم' : 'نجمة'}`,
180
- emptyLabelText: 'فارغ'
181
- }
182
- },
183
- MuiAutocomplete: {
184
- defaultProps: {
185
- clearText: 'مسح',
186
- closeText: 'إغلاق',
187
- loadingText: 'جار التحميل...',
188
- noOptionsText: 'لا توجد خيارات',
189
- openText: 'فتح'
190
- }
191
- },
192
- MuiAlert: {
193
- defaultProps: {
194
- closeText: 'إغلاق'
195
- }
196
- },
197
- MuiPagination: {
198
- defaultProps: {
199
- 'aria-label': 'التنقل عبر الصفحات',
200
- getItemAriaLabel: (type, page, selected) => {
201
- if (type === 'page') {
202
- return `${selected ? '' : 'الانتقال إلى '} صفحة ${page}`;
203
- }
204
- if (type === 'first') {
205
- return 'الانتقال إلى الصفحة الأولى';
206
- }
207
- if (type === 'last') {
208
- return 'الانتقال الي الصفحة الأخيرة';
209
- }
210
- if (type === 'next') {
211
- return 'الانتقال إلى الصفحة التالية';
212
- }
213
- // if (type === 'previous') {
214
- return 'الانتقال إلى الصفحة السابقة';
215
- }
216
- }
217
- }
218
- }
219
- };
220
- export const arSD = {
221
- components: {
222
- MuiBreadcrumbs: {
223
- defaultProps: {
224
- expandText: 'إظهار المسار'
225
- }
226
- },
227
- MuiTablePagination: {
228
- defaultProps: {
229
- getItemAriaLabel: type => {
230
- if (type === 'first') {
231
- return 'انتقل إلى الصفحة الأولى';
232
- }
233
- if (type === 'last') {
234
- return 'انتقل إلى الصفحة الأخيرة';
235
- }
236
- if (type === 'next') {
237
- return 'انتقل إلى الصفحة التالية';
238
- }
239
- // if (type === 'previous') {
240
- return 'انتقل إلى الصفحة السابقة';
241
- },
242
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
243
- labelDisplayedRows: ({
244
- from,
245
- to,
246
- count
247
- }) => `${from}–${to} من ${count !== -1 ? count : ` أكثر من${to}`}`
248
- }
249
- },
250
- MuiRating: {
251
- defaultProps: {
252
- getLabelText: value => `${value} ${value !== 1 ? 'نجوم' : 'نجمة'}`,
253
- emptyLabelText: 'فارغ'
254
- }
255
- },
256
- MuiAutocomplete: {
257
- defaultProps: {
258
- clearText: 'مسح',
259
- closeText: 'إغلاق',
260
- loadingText: 'جار التحميل...',
261
- noOptionsText: 'لا يوجد خيارات',
262
- openText: 'فتح'
263
- }
264
- },
265
- MuiAlert: {
266
- defaultProps: {
267
- closeText: 'إغلاق'
268
- }
269
- },
270
- MuiPagination: {
271
- defaultProps: {
272
- 'aria-label': 'التنقل عبر الصفحات',
273
- getItemAriaLabel: (type, page, selected) => {
274
- if (type === 'page') {
275
- return `${selected ? '' : 'انتقل إلى '} صفحة ${page}`;
276
- }
277
- if (type === 'first') {
278
- return 'انتقل إلى الصفحة الأولى';
279
- }
280
- if (type === 'last') {
281
- return 'انتقل الي الصفحة الأخيرة';
282
- }
283
- if (type === 'next') {
284
- return 'انتقل إلى الصفحة التالية';
285
- }
286
- // if (type === 'previous') {
287
- return 'انتقل إلى الصفحة السابقة';
288
- }
289
- }
290
- }
291
- }
292
- };
293
- export const azAZ = {
294
- components: {
295
- MuiBreadcrumbs: {
296
- defaultProps: {
297
- expandText: 'Yolu göstər'
298
- }
299
- },
300
- MuiTablePagination: {
301
- defaultProps: {
302
- getItemAriaLabel: type => {
303
- if (type === 'first') {
304
- return 'Birinci səhifəyə keç';
305
- }
306
- if (type === 'last') {
307
- return 'Sonuncu səhifəyə keç';
308
- }
309
- if (type === 'next') {
310
- return 'Növbəti səhifəyə keç';
311
- }
312
- // if (type === 'previous') {
313
- return 'Əvvəlki səhifəyə keç';
314
- },
315
- labelRowsPerPage: 'Səhifəyə düşən sətrlər:'
316
- // labelDisplayedRows: ({ from, to, count }) =>
317
- // `${from}–${to} dən ${count !== -1 ? count : `more than ${to}`}`,
318
- }
319
- },
320
- MuiRating: {
321
- defaultProps: {
322
- getLabelText: value => {
323
- let pluralForm = 'Ulduz';
324
- const lastDigit = value % 10;
325
- if (lastDigit > 1 && lastDigit < 5) {
326
- pluralForm = 'Ulduzlar';
327
- }
328
- return `${value} ${pluralForm}`;
329
- },
330
- emptyLabelText: 'Boş'
331
- }
332
- },
333
- MuiAutocomplete: {
334
- defaultProps: {
335
- clearText: 'Silmək',
336
- closeText: 'Bağlamaq',
337
- loadingText: 'Yüklənir…',
338
- noOptionsText: 'Seçimlər mövcud deyil',
339
- openText: 'Открыть'
340
- }
341
- },
342
- MuiAlert: {
343
- defaultProps: {
344
- closeText: 'Bağlamaq'
345
- }
346
- },
347
- MuiPagination: {
348
- defaultProps: {
349
- 'aria-label': 'Səhifənin naviqasiyası',
350
- getItemAriaLabel: (type, page, selected) => {
351
- if (type === 'page') {
352
- return `${page} ${selected ? 'səhifə' : 'səhifəyə keç'}`;
353
- }
354
- if (type === 'first') {
355
- return 'Birinci səhifəyə keç';
356
- }
357
- if (type === 'last') {
358
- return 'Sonuncu səhifəyə keç';
359
- }
360
- if (type === 'next') {
361
- return 'Növbəti səhifəyə keç';
362
- }
363
- // if (type === 'previous') {
364
- return 'Əvvəlki səhifəyə keç';
365
- }
366
- }
367
- }
368
- }
369
- };
370
- export const bnBD = {
371
- components: {
372
- MuiBreadcrumbs: {
373
- defaultProps: {
374
- expandText: 'পথ দেখান'
375
- }
376
- },
377
- MuiTablePagination: {
378
- defaultProps: {
379
- getItemAriaLabel: type => {
380
- if (type === 'first') {
381
- return 'প্রথম পৃষ্ঠায় যান';
382
- }
383
- if (type === 'last') {
384
- return 'শেষ পৃষ্ঠায় যান';
385
- }
386
- if (type === 'next') {
387
- return 'পরবর্তী পৃষ্ঠায় যান';
388
- }
389
- // if (type === 'previous') {
390
- return 'আগের পৃষ্ঠায় যান';
391
- },
392
- labelRowsPerPage: 'প্রতি পৃষ্ঠায় সারি:',
393
- labelDisplayedRows: ({
394
- from,
395
- to,
396
- count
397
- }) => `${from}–${to} / ${count !== -1 ? count : `${to} থেকে বেশি`}`
398
- }
399
- },
400
- MuiRating: {
401
- defaultProps: {
402
- getLabelText: value => `${value} স্টার`,
403
- emptyLabelText: 'খালি'
404
- }
405
- },
406
- MuiAutocomplete: {
407
- defaultProps: {
408
- clearText: 'পরিষ্কার করুন',
409
- closeText: 'বন্ধ করুন',
410
- loadingText: 'লোড হচ্ছে…',
411
- noOptionsText: 'কোন অপশন নেই',
412
- openText: 'ওপেন করুন'
413
- }
414
- },
415
- MuiAlert: {
416
- defaultProps: {
417
- closeText: 'বন্ধ করুন'
418
- }
419
- },
420
- MuiPagination: {
421
- defaultProps: {
422
- 'aria-label': 'পেজিনেশন নেভিগেশন',
423
- getItemAriaLabel: (type, page, selected) => {
424
- if (type === 'page') {
425
- return `${selected ? '' : 'যান '}পৃষ্ঠা ${page}-এ`;
426
- }
427
- if (type === 'first') {
428
- return 'প্রথম পৃষ্ঠায় যান';
429
- }
430
- if (type === 'last') {
431
- return 'শেষ পৃষ্ঠায় যান';
432
- }
433
- if (type === 'next') {
434
- return 'পরবর্তী পৃষ্ঠায় যান';
435
- }
436
- // if (type === 'previous') {
437
- return 'আগের পৃষ্ঠায় যান';
438
- }
439
- }
440
- }
441
- }
442
- };
443
- export const beBY = {
444
- components: {
445
- MuiBreadcrumbs: {
446
- defaultProps: {
447
- expandText: 'Паказаць шлях'
448
- }
449
- },
450
- MuiTablePagination: {
451
- defaultProps: {
452
- getItemAriaLabel: type => {
453
- if (type === 'first') {
454
- return 'Перайсці на першую старонку';
455
- }
456
- if (type === 'last') {
457
- return 'Перайсці на апошнюю старонку';
458
- }
459
- if (type === 'next') {
460
- return 'Перайсці на наступную старонку';
461
- }
462
- // if (type === 'previous') {
463
- return 'Перайсці на папярэднюю старонку';
464
- },
465
- labelRowsPerPage: 'Радкоў на старонцы:',
466
- labelDisplayedRows: ({
467
- from,
468
- to,
469
- count
470
- }) => `${from}–${to} з ${count !== -1 ? count : `больш чым ${to}`}`
471
- }
472
- },
473
- MuiRating: {
474
- defaultProps: {
475
- getLabelText: value => {
476
- let pluralForm = 'Зорак';
477
- const lastDigit = value % 10;
478
- if (lastDigit > 1 && lastDigit < 5 && (value < 10 || value > 20)) {
479
- pluralForm = 'Зоркі';
480
- } else if (lastDigit === 1 && value % 100 !== 11) {
481
- pluralForm = 'Зорка';
482
- }
483
- return `${value} ${pluralForm}`;
484
- },
485
- emptyLabelText: 'Рэйтынг адсутнічае'
486
- }
487
- },
488
- MuiAutocomplete: {
489
- defaultProps: {
490
- clearText: 'Ачысціць',
491
- closeText: 'Закрыць',
492
- loadingText: 'Загрузка…',
493
- noOptionsText: 'Няма варыянтаў',
494
- openText: 'Адкрыць'
495
- }
496
- },
497
- MuiAlert: {
498
- defaultProps: {
499
- closeText: 'Закрыць'
500
- }
501
- },
502
- MuiPagination: {
503
- defaultProps: {
504
- 'aria-label': 'Навігацыя па старонкам',
505
- getItemAriaLabel: (type, page, selected) => {
506
- if (type === 'page') {
507
- if (selected) {
508
- return `${page} старонка`;
509
- }
510
- return `Перайсці на ${page} старонку`;
511
- }
512
- if (type === 'first') {
513
- return 'Перайсці на першую старонку';
514
- }
515
- if (type === 'last') {
516
- return 'Перайсці на апошнюю старонку';
517
- }
518
- if (type === 'next') {
519
- return 'Перайсці на наступную старонку';
520
- }
521
- // if (type === 'previous') {
522
- return 'Перайсці на папярэднюю старонку';
523
- }
524
- }
525
- }
526
- }
527
- };
528
- export const bgBG = {
529
- components: {
530
- MuiBreadcrumbs: {
531
- defaultProps: {
532
- expandText: 'Показване на пътя'
533
- }
534
- },
535
- MuiTablePagination: {
536
- defaultProps: {
537
- getItemAriaLabel: type => {
538
- if (type === 'first') {
539
- return 'Отиди на първата страница';
540
- }
541
- if (type === 'last') {
542
- return 'Отиди на последната страница';
543
- }
544
- if (type === 'next') {
545
- return 'Отиди на следващата страница';
546
- }
547
- // if (type === 'previous') {
548
- return 'Отиди на предишната страница';
549
- },
550
- labelRowsPerPage: 'Редове на страница:'
551
- // labelDisplayedRows: ({ from, to, count }) =>
552
- // `${from}–${to} от ${count !== -1 ? count : `more than ${to}`}`,
553
- }
554
- },
555
- MuiRating: {
556
- defaultProps: {
557
- getLabelText: value => `${value} Звезд${value !== 1 ? 'и' : 'а'}`,
558
- emptyLabelText: 'Изчисти'
559
- }
560
- },
561
- MuiAutocomplete: {
562
- defaultProps: {
563
- clearText: 'Изчисти',
564
- closeText: 'Затвори',
565
- loadingText: 'Зареждане…',
566
- noOptionsText: 'Няма налични опции',
567
- openText: 'Отвори'
568
- }
569
- },
570
- MuiAlert: {
571
- defaultProps: {
572
- closeText: 'Затвори'
573
- }
574
- },
575
- MuiPagination: {
576
- defaultProps: {
577
- 'aria-label': 'Пагинация',
578
- getItemAriaLabel: (type, page, selected) => {
579
- if (type === 'page') {
580
- return `${selected ? '' : 'Към '}страница ${page}`;
581
- }
582
- if (type === 'first') {
583
- return 'Отиди на първата страница';
584
- }
585
- if (type === 'last') {
586
- return 'Отиди на последната страница';
587
- }
588
- if (type === 'next') {
589
- return 'Отиди на следващата страница';
590
- }
591
- // if (type === 'previous') {
592
- return 'Отиди на предишната страница';
593
- }
594
- }
595
- }
596
- }
597
- };
598
- export const caES = {
599
- components: {
600
- // MuiBreadcrumbs: {
601
- // defaultProps: {
602
- // expandText: 'Show path',
603
- // },
604
- // },
605
- MuiTablePagination: {
606
- defaultProps: {
607
- // getItemAriaLabel: (type) => {
608
- // if (type === 'first') {
609
- // return 'Go to first page';
610
- // }
611
- // if (type === 'last') {
612
- // return 'Go to last page';
613
- // }
614
- // if (type === 'next') {
615
- // return 'Go to next page';
616
- // }
617
- // // if (type === 'previous') {
618
- // return 'Go to previous page';
619
- // },
620
- labelRowsPerPage: 'Files per pàgina:'
621
- // labelDisplayedRows: ({ from, to, count }) =>
622
- // `${from}–${to} de ${count !== -1 ? count : `more than ${to}`}`,
623
- }
624
- },
625
- MuiRating: {
626
- defaultProps: {
627
- getLabelText: value => `${value} ${value !== 1 ? 'Estrelles' : 'Estrella'}`,
628
- emptyLabelText: 'Buit'
629
- }
630
- },
631
- MuiAutocomplete: {
632
- defaultProps: {
633
- clearText: 'Netejar',
634
- closeText: 'Tancar',
635
- loadingText: 'Carregant…',
636
- noOptionsText: 'Sense opcions',
637
- openText: 'Obert'
638
- }
639
- },
640
- MuiAlert: {
641
- defaultProps: {
642
- closeText: 'Tancat'
643
- }
644
- }
645
- // MuiPagination: {
646
- // defaultProps: {
647
- // 'aria-label': 'Pagination navigation',
648
- // getItemAriaLabel: (type, page, selected) => {
649
- // if (type === 'page') {
650
- // return `${selected ? '' : 'Go to '}page ${page}`;
651
- // }
652
- // if (type === 'first') {
653
- // return 'Go to first page';
654
- // }
655
- // if (type === 'last') {
656
- // return 'Go to last page';
657
- // }
658
- // if (type === 'next') {
659
- // return 'Go to next page';
660
- // }
661
- // // if (type === 'previous') {
662
- // return 'Go to previous page';
663
- // },
664
- // },
665
- // },
666
- }
667
- };
668
- export const csCZ = {
669
- components: {
670
- MuiBreadcrumbs: {
671
- defaultProps: {
672
- expandText: 'Ukázat cestu'
673
- }
674
- },
675
- MuiTablePagination: {
676
- defaultProps: {
677
- getItemAriaLabel: type => {
678
- if (type === 'first') {
679
- return 'Jít na první stránku';
680
- }
681
- if (type === 'last') {
682
- return 'Jít na poslední stránku';
683
- }
684
- if (type === 'next') {
685
- return 'Jít na další stránku';
686
- }
687
- // if (type === 'previous') {
688
- return 'Jít na předchozí stránku';
689
- },
690
- labelRowsPerPage: 'Řádků na stránce:',
691
- labelDisplayedRows: ({
692
- from,
693
- to,
694
- count
695
- }) => `${from}–${to} z ${count !== -1 ? count : `více než ${to}`}`
696
- }
697
- },
698
- MuiRating: {
699
- defaultProps: {
700
- getLabelText: value => {
701
- if (value === 1) {
702
- return `${value} hvězdička`;
703
- }
704
- if (value >= 2 && value <= 4) {
705
- return `${value} hvězdičky`;
706
- }
707
- return `${value} hvězdiček`;
708
- },
709
- emptyLabelText: 'Prázdné'
710
- }
711
- },
712
- MuiAutocomplete: {
713
- defaultProps: {
714
- clearText: 'Vymazat',
715
- closeText: 'Zavřít',
716
- loadingText: 'Načítání…',
717
- noOptionsText: 'Žádné možnosti',
718
- openText: 'Otevřít'
719
- }
720
- },
721
- MuiAlert: {
722
- defaultProps: {
723
- closeText: 'Zavřít'
724
- }
725
- },
726
- MuiPagination: {
727
- defaultProps: {
728
- 'aria-label': 'Navigace stránkováním',
729
- getItemAriaLabel: (type, page, selected) => {
730
- if (type === 'page') {
731
- return `${selected ? '' : 'Jít na '}${page}. stránku`;
732
- }
733
- if (type === 'first') {
734
- return 'Jít na první stránku';
735
- }
736
- if (type === 'last') {
737
- return 'Jít na poslední stránku';
738
- }
739
- if (type === 'next') {
740
- return 'Jít na další stránku';
741
- }
742
- // if (type === 'previous') {
743
- return 'Jít na předchozí stránku';
744
- }
745
- }
746
- }
747
- }
748
- };
749
- export const daDK = {
750
- components: {
751
- MuiBreadcrumbs: {
752
- defaultProps: {
753
- expandText: 'Vis sti'
754
- }
755
- },
756
- MuiTablePagination: {
757
- defaultProps: {
758
- getItemAriaLabel: type => {
759
- if (type === 'first') {
760
- return 'Gå til den første side';
761
- }
762
- if (type === 'last') {
763
- return 'Gå til den sidste side';
764
- }
765
- if (type === 'next') {
766
- return 'Gå til den næste side';
767
- }
768
- // if (type === 'previous') {
769
- return 'Gå til den forrige side';
770
- },
771
- labelRowsPerPage: 'Rækker pr side:',
772
- labelDisplayedRows: ({
773
- from,
774
- to,
775
- count
776
- }) => `${from}-${to} af ${count !== -1 ? count : `mere end ${to}`}`
777
- }
778
- },
779
- MuiRating: {
780
- defaultProps: {
781
- getLabelText: value => `${value} Stjern${value !== 1 ? 'er' : ''}`,
782
- emptyLabelText: 'Tom'
783
- }
784
- },
785
- MuiAutocomplete: {
786
- defaultProps: {
787
- clearText: 'Slet',
788
- closeText: 'Luk',
789
- loadingText: 'Indlæser…',
790
- noOptionsText: 'Ingen muligheder',
791
- openText: 'Åben'
792
- }
793
- },
794
- MuiAlert: {
795
- defaultProps: {
796
- closeText: 'Luk'
797
- }
798
- },
799
- MuiPagination: {
800
- defaultProps: {
801
- 'aria-label': 'Sideinddelings navigation',
802
- getItemAriaLabel: (type, page, selected) => {
803
- if (type === 'page') {
804
- return `${selected ? '' : 'Go to '}page ${page}`;
805
- }
806
- if (type === 'first') {
807
- return 'Gå til den første side';
808
- }
809
- if (type === 'last') {
810
- return 'Gå til den sidste side';
811
- }
812
- if (type === 'next') {
813
- return 'Gå til den næste side';
814
- }
815
- // if (type === 'previous') {
816
- return 'Gå til den forrige side';
817
- }
818
- }
819
- }
820
- }
821
- };
822
- export const deDE = {
823
- components: {
824
- MuiBreadcrumbs: {
825
- defaultProps: {
826
- expandText: 'Pfad anzeigen'
827
- }
828
- },
829
- MuiTablePagination: {
830
- defaultProps: {
831
- getItemAriaLabel: type => {
832
- if (type === 'first') {
833
- return 'Zur ersten Seite';
834
- }
835
- if (type === 'last') {
836
- return 'Zur letzten Seite';
837
- }
838
- if (type === 'next') {
839
- return 'Zur nächsten Seite';
840
- }
841
- // if (type === 'previous') {
842
- return 'Zur vorherigen Seite';
843
- },
844
- labelRowsPerPage: 'Zeilen pro Seite:',
845
- labelDisplayedRows: ({
846
- from,
847
- to,
848
- count
849
- }) => `${from}–${to} von ${count !== -1 ? count : `mehr als ${to}`}`
850
- }
851
- },
852
- MuiRating: {
853
- defaultProps: {
854
- getLabelText: value => `${value} ${value !== 1 ? 'Sterne' : 'Stern'}`,
855
- emptyLabelText: 'Keine Wertung'
856
- }
857
- },
858
- MuiAutocomplete: {
859
- defaultProps: {
860
- clearText: 'Leeren',
861
- closeText: 'Schließen',
862
- loadingText: 'Wird geladen…',
863
- noOptionsText: 'Keine Optionen',
864
- openText: 'Öffnen'
865
- }
866
- },
867
- MuiAlert: {
868
- defaultProps: {
869
- closeText: 'Schließen'
870
- }
871
- },
872
- MuiPagination: {
873
- defaultProps: {
874
- 'aria-label': 'Navigation via Seitennummerierung',
875
- getItemAriaLabel: (type, page, selected) => {
876
- if (type === 'page') {
877
- return `${selected ? '' : 'Gehe zu '}Seite ${page}`;
878
- }
879
- if (type === 'first') {
880
- return 'Zur ersten Seite';
881
- }
882
- if (type === 'last') {
883
- return 'Zur letzten Seite';
884
- }
885
- if (type === 'next') {
886
- return 'Zur nächsten Seite';
887
- }
888
- // if (type === 'previous') {
889
- return 'Zur vorherigen Seite';
890
- }
891
- }
892
- }
893
- }
894
- };
895
- export const elGR = {
896
- components: {
897
- MuiBreadcrumbs: {
898
- defaultProps: {
899
- expandText: 'Εμφάνιση διαδρομής'
900
- }
901
- },
902
- MuiTablePagination: {
903
- defaultProps: {
904
- getItemAriaLabel: type => {
905
- if (type === 'first') {
906
- return 'Πρώτη σελίδα';
907
- }
908
- if (type === 'last') {
909
- return 'Τελευταία σελίδα';
910
- }
911
- if (type === 'next') {
912
- return 'Επόμενη σελίδα';
913
- }
914
-
915
- // if (type === "previous") {
916
- return 'Προηγούμενη σελίδα';
917
- },
918
- labelRowsPerPage: 'Γραμμές ανα σελίδα:',
919
- labelDisplayedRows: ({
920
- from,
921
- to,
922
- count
923
- }) => `${from}–${to} από ${count !== -1 ? count : `πάνω από ${to}`}`
924
- }
925
- },
926
- MuiRating: {
927
- defaultProps: {
928
- getLabelText: value => `${value} Αστέρι${value !== 1 ? 'α' : ''}`,
929
- emptyLabelText: 'Χωρίς βαθμολόγηση'
930
- }
931
- },
932
- MuiAutocomplete: {
933
- defaultProps: {
934
- clearText: 'Καθαρισμός',
935
- closeText: 'Κλείσιμο',
936
- loadingText: 'Φόρτωση…',
937
- noOptionsText: 'Δεν υπάρχουν επιλογές',
938
- openText: 'Άνοιγμα'
939
- }
940
- },
941
- MuiAlert: {
942
- defaultProps: {
943
- closeText: 'Κλείσιμο'
944
- }
945
- },
946
- MuiPagination: {
947
- defaultProps: {
948
- 'aria-label': 'Πλοήγηση σε σελίδες',
949
- getItemAriaLabel: (type, page, selected) => {
950
- if (type === 'page') {
951
- return `${selected ? '' : 'Μετάβαση '}σελίδα ${page}`;
952
- }
953
- if (type === 'first') {
954
- return 'Πρώτη σελίδα';
955
- }
956
- if (type === 'last') {
957
- return 'Τελευταία σελίδα';
958
- }
959
- if (type === 'next') {
960
- return 'Επόμενη σελίδα';
961
- }
962
-
963
- // if (type === "previous") {
964
- return 'Προηγούμενη σελίδα';
965
- }
966
- }
967
- }
968
- }
969
- };
970
-
971
- // default
972
- export const enUS = {
973
- /*
974
- components: {
975
- MuiBreadcrumbs: { defaultProps: {
976
- expandText: 'Show path',
977
- }},
978
- MuiTablePagination: { defaultProps: {
979
- getItemAriaLabel: (type) => {
980
- if (type === 'first') {
981
- return 'Go to first page';
982
- }
983
- if (type === 'last') {
984
- return 'Go to last page';
985
- }
986
- if (type === 'next') {
987
- return 'Go to next page';
988
- }
989
- // if (type === 'previous') {
990
- return 'Go to previous page';
991
- },
992
- labelRowsPerPage: 'Rows per page:',
993
- labelDisplayedRows: ({ from, to, count }) =>
994
- `${from}–${to} of ${count !== -1 ? count : `more than ${to}`}`,
995
- }},
996
- MuiRating: { defaultProps: {
997
- getLabelText: value => `${value} Star${value !== 1 ? 's' : ''}`,
998
- emptyLabelText: 'Empty',
999
- }},
1000
- MuiAutocomplete: { defaultProps: {
1001
- clearText: 'Clear',
1002
- closeText: 'Close',
1003
- loadingText: 'Loading…',
1004
- noOptionsText: 'No options',
1005
- openText: 'Open',
1006
- }},
1007
- MuiAlert: { defaultProps: {
1008
- closeText: 'Close',
1009
- }},
1010
- MuiPagination: { defaultProps: {
1011
- 'aria-label': 'Pagination navigation',
1012
- getItemAriaLabel: (type, page, selected) => {
1013
- if (type === 'page') {
1014
- return `${selected ? '' : 'Go to '}page ${page}`;
1015
- }
1016
- if (type === 'first') {
1017
- return 'Go to first page';
1018
- }
1019
- if (type === 'last') {
1020
- return 'Go to last page';
1021
- }
1022
- if (type === 'next') {
1023
- return 'Go to next page';
1024
- }
1025
- // if (type === 'previous') {
1026
- return 'Go to previous page';
1027
- },
1028
- }},
1029
- },
1030
- */
1031
- };
1032
- export const esES = {
1033
- components: {
1034
- MuiBreadcrumbs: {
1035
- defaultProps: {
1036
- expandText: 'Mostrar ruta'
1037
- }
1038
- },
1039
- MuiTablePagination: {
1040
- defaultProps: {
1041
- getItemAriaLabel: type => {
1042
- if (type === 'first') {
1043
- return 'Ir a la primera página';
1044
- }
1045
- if (type === 'last') {
1046
- return 'Ir a la última página';
1047
- }
1048
- if (type === 'next') {
1049
- return 'Ir a la página siguiente';
1050
- }
1051
- // if (type === 'previous') {
1052
- return 'Ir a la página anterior';
1053
- },
1054
- labelRowsPerPage: 'Filas por página:',
1055
- labelDisplayedRows: ({
1056
- from,
1057
- to,
1058
- count
1059
- }) => `${from}–${to} de ${count !== -1 ? count : `más de ${to}`}`
1060
- }
1061
- },
1062
- MuiRating: {
1063
- defaultProps: {
1064
- getLabelText: value => `${value} Estrella${value !== 1 ? 's' : ''}`,
1065
- emptyLabelText: 'Vacío'
1066
- }
1067
- },
1068
- MuiAutocomplete: {
1069
- defaultProps: {
1070
- clearText: 'Limpiar',
1071
- closeText: 'Cerrar',
1072
- loadingText: 'Cargando…',
1073
- noOptionsText: 'Sin opciones',
1074
- openText: 'Abierto'
1075
- }
1076
- },
1077
- MuiAlert: {
1078
- defaultProps: {
1079
- closeText: 'Cerrar'
1080
- }
1081
- },
1082
- MuiPagination: {
1083
- defaultProps: {
1084
- 'aria-label': 'Paginador',
1085
- getItemAriaLabel: (type, page, selected) => {
1086
- if (type === 'page') {
1087
- return `${selected ? '' : 'Ir a la '}página ${page}`;
1088
- }
1089
- if (type === 'first') {
1090
- return 'Ir a la primera página';
1091
- }
1092
- if (type === 'last') {
1093
- return 'Ir a la última página';
1094
- }
1095
- if (type === 'next') {
1096
- return 'Ir a la página siguiente';
1097
- }
1098
- // if (type === 'previous') {
1099
- return 'Ir a la página anterior';
1100
- }
1101
- }
1102
- }
1103
- }
1104
- };
1105
- export const etEE = {
1106
- components: {
1107
- MuiBreadcrumbs: {
1108
- defaultProps: {
1109
- expandText: 'Näita teed'
1110
- }
1111
- },
1112
- MuiTablePagination: {
1113
- defaultProps: {
1114
- getItemAriaLabel: type => {
1115
- if (type === 'first') {
1116
- return 'Vali esimene lehekülg';
1117
- }
1118
- if (type === 'last') {
1119
- return 'Vali viimane lehekülg';
1120
- }
1121
- if (type === 'next') {
1122
- return 'Vali järgmine lehekülg';
1123
- }
1124
- // if (type === 'previous') {
1125
- return 'Vali eelmine lehekülg';
1126
- },
1127
- labelRowsPerPage: 'Ridu leheküljel:',
1128
- labelDisplayedRows: ({
1129
- from,
1130
- to,
1131
- count
1132
- }) => `${from}–${to} / ${count !== -1 ? count : `rohkem kui ${to}`}`
1133
- }
1134
- },
1135
- MuiRating: {
1136
- defaultProps: {
1137
- getLabelText: value => `${value} Tärn${value !== 1 ? 'i' : ''}`,
1138
- emptyLabelText: 'Tühi'
1139
- }
1140
- },
1141
- MuiAutocomplete: {
1142
- defaultProps: {
1143
- clearText: 'Tühjenda',
1144
- closeText: 'Sulge',
1145
- loadingText: 'Laen…',
1146
- noOptionsText: 'Valikuid ei ole',
1147
- openText: 'Ava'
1148
- }
1149
- },
1150
- MuiAlert: {
1151
- defaultProps: {
1152
- closeText: 'Sulge'
1153
- }
1154
- },
1155
- MuiPagination: {
1156
- defaultProps: {
1157
- 'aria-label': 'Lehekülgede valik',
1158
- getItemAriaLabel: (type, page, selected) => {
1159
- if (type === 'page') {
1160
- return `${selected ? '' : 'Vali '}lehekülg ${page}`;
1161
- }
1162
- if (type === 'first') {
1163
- return 'Vali esimene lehekülg';
1164
- }
1165
- if (type === 'last') {
1166
- return 'Vali viimane lehekülg';
1167
- }
1168
- if (type === 'next') {
1169
- return 'Vali järgmine lehekülg';
1170
- }
1171
- // if (type === 'previous') {
1172
- return 'Vali eelmine lehekülg';
1173
- }
1174
- }
1175
- }
1176
- }
1177
- };
1178
- export const faIR = {
1179
- components: {
1180
- // MuiBreadcrumbs: {
1181
- // defaultProps: {
1182
- // expandText: 'Show path',
1183
- // },
1184
- // },
1185
- MuiBreadcrumbs: {
1186
- defaultProps: {
1187
- expandText: 'نمایش مسیر'
1188
- }
1189
- },
1190
- MuiTablePagination: {
1191
- defaultProps: {
1192
- getItemAriaLabel: type => {
1193
- if (type === 'first') {
1194
- return 'رفتن به اولین صفحه';
1195
- }
1196
- if (type === 'last') {
1197
- return 'رفتن به آخرین صفحه';
1198
- }
1199
- if (type === 'next') {
1200
- return 'رفتن به صفحه‌ی بعدی';
1201
- }
1202
- // if (type === 'previous') {
1203
- return 'رفتن به صفحه‌ی قبلی';
1204
- },
1205
- labelRowsPerPage: 'تعداد سطرهای هر صفحه:',
1206
- labelDisplayedRows: ({
1207
- from,
1208
- to,
1209
- count
1210
- }) => `${from}–${to} از ${count !== -1 ? count : `بیشتر از ${to}`}`
1211
- }
1212
- },
1213
- MuiRating: {
1214
- defaultProps: {
1215
- getLabelText: value => `${value} ستاره`,
1216
- emptyLabelText: 'خالی'
1217
- }
1218
- },
1219
- MuiAutocomplete: {
1220
- defaultProps: {
1221
- clearText: 'پاک‌کردن',
1222
- closeText: 'بستن',
1223
- loadingText: 'در حال بارگذاری…',
1224
- noOptionsText: 'بی‌نتیجه',
1225
- openText: 'بازکردن'
1226
- }
1227
- },
1228
- MuiAlert: {
1229
- defaultProps: {
1230
- closeText: 'بستن'
1231
- }
1232
- },
1233
- MuiPagination: {
1234
- defaultProps: {
1235
- 'aria-label': 'ناوبری صفحه',
1236
- getItemAriaLabel: (type, page, selected) => {
1237
- if (type === 'page') {
1238
- return `${selected ? '' : 'رفتن به '}صفحهٔ ${page}`;
1239
- }
1240
- if (type === 'first') {
1241
- return 'رفتن به اولین صفحه';
1242
- }
1243
- if (type === 'last') {
1244
- return 'رفتن به آخرین صفحه';
1245
- }
1246
- if (type === 'next') {
1247
- return 'رفتن به صفحه‌ی بعدی';
1248
- }
1249
- // if (type === 'previous') {
1250
- return 'رفتن به صفحه‌ی قبلی';
1251
- }
1252
- }
1253
- }
1254
- }
1255
- };
1256
- export const fiFI = {
1257
- components: {
1258
- MuiBreadcrumbs: {
1259
- defaultProps: {
1260
- expandText: 'Näytä reitti'
1261
- }
1262
- },
1263
- MuiTablePagination: {
1264
- defaultProps: {
1265
- getItemAriaLabel: type => {
1266
- if (type === 'first') {
1267
- return 'Mene ensimmäiselle sivulle';
1268
- }
1269
- if (type === 'last') {
1270
- return 'Mene viimeiselle sivulle';
1271
- }
1272
- if (type === 'next') {
1273
- return 'Mene seuraavalle sivulle';
1274
- }
1275
- // if (type === 'previous') {
1276
- return 'Mene edelliselle sivulle';
1277
- },
1278
- labelRowsPerPage: 'Rivejä per sivu:',
1279
- labelDisplayedRows: ({
1280
- from,
1281
- to,
1282
- count
1283
- }) => `${from}–${to} / ${count !== -1 ? count : `enemmän kuin ${to}`}`
1284
- }
1285
- },
1286
- MuiRating: {
1287
- defaultProps: {
1288
- getLabelText: value => `${value} Täht${value !== 1 ? 'eä' : 'i'}`,
1289
- emptyLabelText: 'Tyhjä'
1290
- }
1291
- },
1292
- MuiAutocomplete: {
1293
- defaultProps: {
1294
- clearText: 'Tyhjennä',
1295
- closeText: 'Sulje',
1296
- loadingText: 'Ladataan…',
1297
- noOptionsText: 'Ei valintoja',
1298
- openText: 'Avaa'
1299
- }
1300
- },
1301
- MuiAlert: {
1302
- defaultProps: {
1303
- closeText: 'Sulje'
1304
- }
1305
- },
1306
- MuiPagination: {
1307
- defaultProps: {
1308
- 'aria-label': 'Sivutus navigaatio',
1309
- getItemAriaLabel: (type, page, selected) => {
1310
- if (type === 'page') {
1311
- return `${selected ? 'sivu' : 'Mene sivulle'} ${page}`;
1312
- }
1313
- if (type === 'first') {
1314
- return 'Mene ensimmäiselle sivulle';
1315
- }
1316
- if (type === 'last') {
1317
- return 'Mene viimeiselle sivulle';
1318
- }
1319
- if (type === 'next') {
1320
- return 'Mene seuraavalle sivulle';
1321
- }
1322
- // if (type === 'previous') {
1323
- return 'Mene edelliselle sivulle';
1324
- }
1325
- }
1326
- }
1327
- }
1328
- };
1329
- export const frFR = {
1330
- components: {
1331
- MuiBreadcrumbs: {
1332
- defaultProps: {
1333
- expandText: 'Montrer le chemin'
1334
- }
1335
- },
1336
- MuiTablePagination: {
1337
- defaultProps: {
1338
- getItemAriaLabel: type => {
1339
- if (type === 'first') {
1340
- return 'Aller à la première page';
1341
- }
1342
- if (type === 'last') {
1343
- return 'Aller à la dernière page';
1344
- }
1345
- if (type === 'next') {
1346
- return 'Aller à la page suivante';
1347
- }
1348
- // if (type === 'previous') {
1349
- return 'Aller à la page précédente';
1350
- },
1351
- labelRowsPerPage: 'Lignes par page :',
1352
- labelDisplayedRows: ({
1353
- from,
1354
- to,
1355
- count
1356
- }) => `${from}–${to} sur ${count !== -1 ? count : `plus que ${to}`}`
1357
- }
1358
- },
1359
- MuiRating: {
1360
- defaultProps: {
1361
- getLabelText: value => `${value} Etoile${value !== 1 ? 's' : ''}`,
1362
- emptyLabelText: 'Vide'
1363
- }
1364
- },
1365
- MuiAutocomplete: {
1366
- defaultProps: {
1367
- clearText: 'Vider',
1368
- closeText: 'Fermer',
1369
- loadingText: 'Chargement…',
1370
- noOptionsText: 'Pas de résultats',
1371
- openText: 'Ouvrir'
1372
- }
1373
- },
1374
- MuiAlert: {
1375
- defaultProps: {
1376
- closeText: 'Fermer'
1377
- }
1378
- },
1379
- MuiPagination: {
1380
- defaultProps: {
1381
- 'aria-label': 'navigation de pagination',
1382
- getItemAriaLabel: (type, page, selected) => {
1383
- if (type === 'page') {
1384
- return `${selected ? '' : 'Aller à la '}page ${page}`;
1385
- }
1386
- if (type === 'first') {
1387
- return 'Aller à la première page';
1388
- }
1389
- if (type === 'last') {
1390
- return 'Aller à la dernière page';
1391
- }
1392
- if (type === 'next') {
1393
- return 'Aller à la page suivante';
1394
- }
1395
- // if (type === 'previous') {
1396
- return 'Aller à la page précédente';
1397
- }
1398
- }
1399
- }
1400
- }
1401
- };
1402
- export const heIL = {
1403
- components: {
1404
- MuiBreadcrumbs: {
1405
- defaultProps: {
1406
- expandText: 'הצג נתיב'
1407
- }
1408
- },
1409
- MuiTablePagination: {
1410
- defaultProps: {
1411
- getItemAriaLabel: type => {
1412
- if (type === 'first') {
1413
- return 'לעמוד הראשון';
1414
- }
1415
- if (type === 'last') {
1416
- return 'לעמוד האחרון';
1417
- }
1418
- if (type === 'next') {
1419
- return 'לעמוד הבא';
1420
- }
1421
- // if (type === 'previous') {
1422
- return 'לעמוד הקודם';
1423
- },
1424
- labelRowsPerPage: 'שורות בעמוד:',
1425
- labelDisplayedRows: ({
1426
- from,
1427
- to,
1428
- count
1429
- }) => `${from}–${to} מתוך ${count !== -1 ? count : `יותר מ ${to}`}`
1430
- }
1431
- },
1432
- MuiRating: {
1433
- defaultProps: {
1434
- getLabelText: value => `${value} כוכב${value !== 1 ? 'ים' : ''}`,
1435
- emptyLabelText: 'ריק'
1436
- }
1437
- },
1438
- MuiAutocomplete: {
1439
- defaultProps: {
1440
- clearText: 'נקה',
1441
- closeText: 'סגור',
1442
- loadingText: 'טוען…',
1443
- noOptionsText: 'אין אופציות',
1444
- openText: 'פתח'
1445
- }
1446
- },
1447
- MuiAlert: {
1448
- defaultProps: {
1449
- closeText: 'סגור'
1450
- }
1451
- },
1452
- MuiPagination: {
1453
- defaultProps: {
1454
- 'aria-label': 'ניווט בעמודים',
1455
- getItemAriaLabel: (type, page, selected) => {
1456
- if (type === 'page') {
1457
- return `${selected ? '' : 'ל '}עמוד ${page}`;
1458
- }
1459
- if (type === 'first') {
1460
- return 'לעמוד הראשון';
1461
- }
1462
- if (type === 'last') {
1463
- return 'לעמוד האחרון';
1464
- }
1465
- if (type === 'next') {
1466
- return 'לעמוד הבא';
1467
- }
1468
- // if (type === 'previous') {
1469
- return 'לעמוד הקודם';
1470
- }
1471
- }
1472
- }
1473
- }
1474
- };
1475
- export const hiIN = {
1476
- components: {
1477
- MuiBreadcrumbs: {
1478
- defaultProps: {
1479
- expandText: 'रास्ता दिखायें'
1480
- }
1481
- },
1482
- MuiTablePagination: {
1483
- defaultProps: {
1484
- getItemAriaLabel: type => {
1485
- if (type === 'first') {
1486
- return 'पहले पृष्ठ पर जाएँ';
1487
- }
1488
- if (type === 'last') {
1489
- return 'अंतिम पृष्ठ पर जाएँ';
1490
- }
1491
- if (type === 'next') {
1492
- return 'अगले पृष्ठ पर जाएँ';
1493
- }
1494
- // if (type === 'previous') {
1495
- return 'पिछले पृष्ठ पर जाएँ';
1496
- },
1497
- labelRowsPerPage: 'पंक्तियाँ प्रति पृष्ठ:',
1498
- labelDisplayedRows: ({
1499
- from,
1500
- to,
1501
- count
1502
- }) => `${from}-${to === -1 ? count : to} कुल ${count} में`
1503
- }
1504
- },
1505
- MuiRating: {
1506
- defaultProps: {
1507
- getLabelText: value => `${value} तार${value !== 1 ? 'े' : 'ा'}`,
1508
- emptyLabelText: 'रिक्त'
1509
- }
1510
- },
1511
- MuiAutocomplete: {
1512
- defaultProps: {
1513
- clearText: 'हटायें',
1514
- closeText: 'बंद करें',
1515
- loadingText: 'लोड हो रहा है…',
1516
- noOptionsText: 'कोई विकल्प नहीं',
1517
- openText: 'खोलें'
1518
- }
1519
- },
1520
- MuiAlert: {
1521
- defaultProps: {
1522
- closeText: 'बंद करें'
1523
- }
1524
- },
1525
- MuiPagination: {
1526
- defaultProps: {
1527
- 'aria-label': 'पृस्ठानुसार संचालन',
1528
- getItemAriaLabel: (type, page, selected) => {
1529
- if (type === 'page') {
1530
- return `पृष्ठ ${page} ${selected ? '' : ' पर जाएँ'}`;
1531
- }
1532
- if (type === 'first') {
1533
- return 'पहले पृष्ठ पर जाएँ';
1534
- }
1535
- if (type === 'last') {
1536
- return 'अंतिम पृष्ठ पर जाएँ';
1537
- }
1538
- if (type === 'next') {
1539
- return 'अगले पृष्ठ पर जाएँ';
1540
- }
1541
- // if (type === 'previous') {
1542
- return 'पिछले पृष्ठ पर जाएँ';
1543
- }
1544
- }
1545
- }
1546
- }
1547
- };
1548
-
1549
- // Croatian - Hrvatski
1550
- export const hrHR = {
1551
- components: {
1552
- MuiBreadcrumbs: {
1553
- defaultProps: {
1554
- expandText: 'Pokaži putanju'
1555
- }
1556
- },
1557
- MuiTablePagination: {
1558
- defaultProps: {
1559
- getItemAriaLabel: type => {
1560
- if (type === 'first') {
1561
- return 'Idi na prvu stranicu';
1562
- }
1563
- if (type === 'last') {
1564
- return 'Idi na posljednju stranicu';
1565
- }
1566
- if (type === 'next') {
1567
- return 'Idi na sljedeću stranicu';
1568
- }
1569
- // if (type === 'previous') {
1570
- return 'Idi na prethodnu stranicu';
1571
- },
1572
- labelRowsPerPage: 'Redova po stranici:',
1573
- labelDisplayedRows: ({
1574
- from,
1575
- to,
1576
- count
1577
- }) => `${from}–${to} od ${count !== -1 ? count : `više nego ${to}`}`
1578
- }
1579
- },
1580
- MuiRating: {
1581
- defaultProps: {
1582
- getLabelText: value => {
1583
- const lastDigit = value % 10;
1584
- const lastTwoDigits = value % 100;
1585
- if ([2, 3, 4].includes(lastDigit) && ![12, 13, 14].includes(lastTwoDigits)) {
1586
- return 'Zvijezde';
1587
- }
1588
- return 'Zvijezda';
1589
- },
1590
- emptyLabelText: 'Prazno'
1591
- }
1592
- },
1593
- MuiAutocomplete: {
1594
- defaultProps: {
1595
- clearText: 'Briši',
1596
- closeText: 'Zatvori',
1597
- loadingText: 'Učitavanje…',
1598
- noOptionsText: 'Nema opcija',
1599
- openText: 'Otvori'
1600
- }
1601
- },
1602
- MuiAlert: {
1603
- defaultProps: {
1604
- closeText: 'Zatvori'
1605
- }
1606
- },
1607
- MuiPagination: {
1608
- defaultProps: {
1609
- 'aria-label': 'Navigacija po stranicama',
1610
- getItemAriaLabel: (type, page, selected) => {
1611
- if (type === 'page') {
1612
- return `${selected ? '' : 'Idi na '}stranicu ${page}`;
1613
- }
1614
- if (type === 'first') {
1615
- return 'Idi na prvu stranicu';
1616
- }
1617
- if (type === 'last') {
1618
- return 'Idi na zadnju stranicu';
1619
- }
1620
- if (type === 'next') {
1621
- return 'Idi na sljedeću stranicu';
1622
- }
1623
- // if (type === 'previous') {
1624
- return 'Idi na prethodnu stranicu';
1625
- }
1626
- }
1627
- }
1628
- }
1629
- };
1630
- export const huHU = {
1631
- components: {
1632
- MuiBreadcrumbs: {
1633
- defaultProps: {
1634
- expandText: 'Útvonal'
1635
- }
1636
- },
1637
- MuiTablePagination: {
1638
- defaultProps: {
1639
- getItemAriaLabel: type => {
1640
- if (type === 'first') {
1641
- return 'Első oldalra';
1642
- }
1643
- if (type === 'last') {
1644
- return 'Utolsó oldalra';
1645
- }
1646
- if (type === 'next') {
1647
- return 'Következő oldalra';
1648
- }
1649
- // if (type === 'previous') {
1650
- return 'Előző oldalra';
1651
- },
1652
- labelRowsPerPage: 'Sorok száma:'
1653
- // labelDisplayedRows: ({ from, to, count }) =>
1654
- // `${from}–${to} / ${count !== -1 ? count : `more than ${to}`}`,
1655
- }
1656
- },
1657
- MuiRating: {
1658
- defaultProps: {
1659
- getLabelText: value => `${value} Csillag`,
1660
- emptyLabelText: 'Üres'
1661
- }
1662
- },
1663
- MuiAutocomplete: {
1664
- defaultProps: {
1665
- clearText: 'Törlés',
1666
- closeText: 'Bezárás',
1667
- loadingText: 'Töltés…',
1668
- noOptionsText: 'Nincs találat',
1669
- openText: 'Megnyitás'
1670
- }
1671
- },
1672
- MuiAlert: {
1673
- defaultProps: {
1674
- closeText: 'Bezárás'
1675
- }
1676
- },
1677
- MuiPagination: {
1678
- defaultProps: {
1679
- 'aria-label': 'Lapozás',
1680
- getItemAriaLabel: (type, page, selected) => {
1681
- if (type === 'page') {
1682
- return `${page}. oldal${selected ? '' : 'ra'}`;
1683
- }
1684
- if (type === 'first') {
1685
- return 'Első oldalra';
1686
- }
1687
- if (type === 'last') {
1688
- return 'Utolsó oldalra';
1689
- }
1690
- if (type === 'next') {
1691
- return 'Következő oldalra';
1692
- }
1693
- // if (type === 'previous') {
1694
- return 'Előző oldalra';
1695
- }
1696
- }
1697
- }
1698
- }
1699
- };
1700
- export const hyAM = {
1701
- components: {
1702
- // MuiBreadcrumbs: {
1703
- // defaultProps: {
1704
- // expandText: 'Show path',
1705
- // },
1706
- // },
1707
- MuiTablePagination: {
1708
- defaultProps: {
1709
- // getItemAriaLabel: (type) => {
1710
- // if (type === 'first') {
1711
- // return 'Go to first page';
1712
- // }
1713
- // if (type === 'last') {
1714
- // return 'Go to last page';
1715
- // }
1716
- // if (type === 'next') {
1717
- // return 'Go to next page';
1718
- // }
1719
- // // if (type === 'previous') {
1720
- // return 'Go to previous page';
1721
- // },
1722
- labelRowsPerPage: 'Տողեր մեկ էջում`'
1723
- // labelDisplayedRows: ({ from, to, count }) =>
1724
- // `${from}–${to} / ${count !== -1 ? count : `more than ${to}`}`,
1725
- }
1726
- },
1727
- MuiRating: {
1728
- defaultProps: {
1729
- getLabelText: value => `${value} Աստղ`,
1730
- emptyLabelText: 'Դատարկ'
1731
- }
1732
- },
1733
- MuiAutocomplete: {
1734
- defaultProps: {
1735
- clearText: 'Մաքրել',
1736
- closeText: 'Փակել',
1737
- loadingText: 'Բեռնում…',
1738
- noOptionsText: 'Տարբերակներ չկան',
1739
- openText: 'Բացել'
1740
- }
1741
- },
1742
- MuiAlert: {
1743
- defaultProps: {
1744
- closeText: 'Փակել'
1745
- }
1746
- }
1747
- // MuiPagination: {
1748
- // defaultProps: {
1749
- // 'aria-label': 'Pagination navigation',
1750
- // getItemAriaLabel: (type, page, selected) => {
1751
- // if (type === 'page') {
1752
- // return `${selected ? '' : 'Go to '}page ${page}`;
1753
- // }
1754
- // if (type === 'first') {
1755
- // return 'Go to first page';
1756
- // }
1757
- // if (type === 'last') {
1758
- // return 'Go to last page';
1759
- // }
1760
- // if (type === 'next') {
1761
- // return 'Go to next page';
1762
- // }
1763
- // // if (type === 'previous') {
1764
- // return 'Go to previous page';
1765
- // },
1766
- // },
1767
- // },
1768
- }
1769
- };
1770
- export const idID = {
1771
- components: {
1772
- // MuiBreadcrumbs: {
1773
- // defaultProps: {
1774
- // expandText: 'Show path',
1775
- // },
1776
- // },
1777
- MuiTablePagination: {
1778
- defaultProps: {
1779
- // getItemAriaLabel: (type) => {
1780
- // if (type === 'first') {
1781
- // return 'Go to first page';
1782
- // }
1783
- // if (type === 'last') {
1784
- // return 'Go to last page';
1785
- // }
1786
- // if (type === 'next') {
1787
- // return 'Go to next page';
1788
- // }
1789
- // // if (type === 'previous') {
1790
- // return 'Go to previous page';
1791
- // },
1792
- labelRowsPerPage: 'Baris per halaman:'
1793
- // labelDisplayedRows: ({ from, to, count }) =>
1794
- // `${from}–${to} dari ${count !== -1 ? count : `more than ${to}`}`,
1795
- }
1796
- },
1797
- MuiRating: {
1798
- defaultProps: {
1799
- getLabelText: value => `${value} Bintang`
1800
- // emptyLabelText: 'Empty',
1801
- }
1802
- },
1803
- MuiAutocomplete: {
1804
- defaultProps: {
1805
- clearText: 'Hapus',
1806
- closeText: 'Tutup',
1807
- loadingText: 'Memuat…',
1808
- noOptionsText: 'Tidak ada opsi',
1809
- openText: 'Buka'
1810
- }
1811
- },
1812
- MuiAlert: {
1813
- defaultProps: {
1814
- closeText: 'Tutup'
1815
- }
1816
- }
1817
- // MuiPagination: {
1818
- // defaultProps: {
1819
- // 'aria-label': 'Pagination navigation',
1820
- // getItemAriaLabel: (type, page, selected) => {
1821
- // if (type === 'page') {
1822
- // return `${selected ? '' : 'Go to '}page ${page}`;
1823
- // }
1824
- // if (type === 'first') {
1825
- // return 'Go to first page';
1826
- // }
1827
- // if (type === 'last') {
1828
- // return 'Go to last page';
1829
- // }
1830
- // if (type === 'next') {
1831
- // return 'Go to next page';
1832
- // }
1833
- // // if (type === 'previous') {
1834
- // return 'Go to previous page';
1835
- // },
1836
- // },
1837
- // },
1838
- }
1839
- };
1840
- export const isIS = {
1841
- components: {
1842
- MuiBreadcrumbs: {
1843
- defaultProps: {
1844
- expandText: 'Sýna slóð'
1845
- }
1846
- },
1847
- MuiTablePagination: {
1848
- defaultProps: {
1849
- getItemAriaLabel: type => {
1850
- if (type === 'first') {
1851
- return 'Fara á fyrstu síðu';
1852
- }
1853
- if (type === 'last') {
1854
- return 'Fara á síðustu síðu';
1855
- }
1856
- if (type === 'next') {
1857
- return 'Fara á næstu síðu';
1858
- }
1859
- // if (type === 'previous') {
1860
- return 'Fara á fyrri síðu';
1861
- },
1862
- labelRowsPerPage: 'Raðir á síðu:',
1863
- labelDisplayedRows: ({
1864
- from,
1865
- to,
1866
- count
1867
- }) => `${from}–${to} af ${count !== -1 ? count : `fleiri en ${to}`}`
1868
- }
1869
- },
1870
- MuiRating: {
1871
- defaultProps: {
1872
- getLabelText: value => `${value} ${value === 1 ? 'stjarna' : 'stjörnur'}`,
1873
- emptyLabelText: 'Tómt'
1874
- }
1875
- },
1876
- MuiAutocomplete: {
1877
- defaultProps: {
1878
- clearText: 'Hreinsa',
1879
- closeText: 'Loka',
1880
- loadingText: 'Hlaða…',
1881
- noOptionsText: 'Engar niðurstöður',
1882
- openText: 'Opna'
1883
- }
1884
- },
1885
- MuiAlert: {
1886
- defaultProps: {
1887
- closeText: 'Loka'
1888
- }
1889
- },
1890
- MuiPagination: {
1891
- defaultProps: {
1892
- 'aria-label': 'Síðuflakk',
1893
- getItemAriaLabel: (type, page, selected) => {
1894
- if (type === 'page') {
1895
- return `${selected ? 'Síða' : 'Fara á síðu'} ${page}`;
1896
- }
1897
- if (type === 'first') {
1898
- return 'Fara á fyrstu síðu';
1899
- }
1900
- if (type === 'last') {
1901
- return 'Fara á síðustu síðu';
1902
- }
1903
- if (type === 'next') {
1904
- return 'Fara á næstu síðu';
1905
- }
1906
- // if (type === 'previous') {
1907
- return 'Fara á fyrri síðu';
1908
- }
1909
- }
1910
- }
1911
- }
1912
- };
1913
- export const itIT = {
1914
- components: {
1915
- MuiBreadcrumbs: {
1916
- defaultProps: {
1917
- expandText: 'Visualizza percorso'
1918
- }
1919
- },
1920
- MuiTablePagination: {
1921
- defaultProps: {
1922
- getItemAriaLabel: type => {
1923
- if (type === 'first') {
1924
- return 'Vai alla prima pagina';
1925
- }
1926
- if (type === 'last') {
1927
- return "Vai all'ultima pagina";
1928
- }
1929
- if (type === 'next') {
1930
- return 'Vai alla pagina successiva';
1931
- }
1932
- // if (type === 'previous') {
1933
- return 'Vai alla pagina precedente';
1934
- },
1935
- labelRowsPerPage: 'Righe per pagina:',
1936
- labelDisplayedRows: ({
1937
- from,
1938
- to,
1939
- count
1940
- }) => `${from}–${to} di ${count !== -1 ? count : `più di ${to}`}`
1941
- }
1942
- },
1943
- MuiRating: {
1944
- defaultProps: {
1945
- getLabelText: value => `${value} Stell${value !== 1 ? 'e' : 'a'}`,
1946
- emptyLabelText: 'Vuoto'
1947
- }
1948
- },
1949
- MuiAutocomplete: {
1950
- defaultProps: {
1951
- clearText: 'Svuota',
1952
- closeText: 'Chiudi',
1953
- loadingText: 'Caricamento in corso…',
1954
- noOptionsText: 'Nessuna opzione',
1955
- openText: 'Apri'
1956
- }
1957
- },
1958
- MuiAlert: {
1959
- defaultProps: {
1960
- closeText: 'Chiudi'
1961
- }
1962
- },
1963
- MuiPagination: {
1964
- defaultProps: {
1965
- 'aria-label': 'Navigazione impaginata',
1966
- getItemAriaLabel: (type, page, selected) => {
1967
- if (type === 'page') {
1968
- return `${selected ? '' : 'Vai alla '}pagina ${page}`;
1969
- }
1970
- if (type === 'first') {
1971
- return 'Vai alla prima pagina';
1972
- }
1973
- if (type === 'last') {
1974
- return "Vai all'ultima pagina";
1975
- }
1976
- if (type === 'next') {
1977
- return 'Vai alla pagina successiva';
1978
- }
1979
- // if (type === 'previous') {
1980
- return 'Vai alla pagina precedente';
1981
- }
1982
- }
1983
- }
1984
- }
1985
- };
1986
- export const jaJP = {
1987
- components: {
1988
- MuiBreadcrumbs: {
1989
- defaultProps: {
1990
- expandText: 'すべて表示'
1991
- }
1992
- },
1993
- MuiTablePagination: {
1994
- defaultProps: {
1995
- getItemAriaLabel: type => {
1996
- if (type === 'first') {
1997
- return '最初のページへ';
1998
- }
1999
- if (type === 'last') {
2000
- return '最後のページへ';
2001
- }
2002
- if (type === 'next') {
2003
- return '次のページへ';
2004
- }
2005
- // if (type === 'previous') {
2006
- return '前のページへ';
2007
- },
2008
- labelRowsPerPage: 'ページあたりの行数:',
2009
- labelDisplayedRows: ({
2010
- from,
2011
- to,
2012
- count
2013
- }) => `${from}~${to} / ${count !== -1 ? count : `${to}以上`}`
2014
- }
2015
- },
2016
- MuiRating: {
2017
- defaultProps: {
2018
- getLabelText: value => `星${value}`,
2019
- emptyLabelText: '星なし'
2020
- }
2021
- },
2022
- MuiAutocomplete: {
2023
- defaultProps: {
2024
- clearText: 'クリア',
2025
- closeText: '閉じる',
2026
- loadingText: '読み込み中…',
2027
- noOptionsText: 'データがありません',
2028
- openText: '開く'
2029
- }
2030
- },
2031
- MuiAlert: {
2032
- defaultProps: {
2033
- closeText: '閉じる'
2034
- }
2035
- },
2036
- MuiPagination: {
2037
- defaultProps: {
2038
- 'aria-label': 'ページ選択',
2039
- getItemAriaLabel: (type, page, selected) => {
2040
- if (type === 'page') {
2041
- return `ページ${page}${selected ? '' : 'へ'}`;
2042
- }
2043
- if (type === 'first') {
2044
- return '最初のページへ';
2045
- }
2046
- if (type === 'last') {
2047
- return '最後のページへ';
2048
- }
2049
- if (type === 'next') {
2050
- return '次のページへ';
2051
- }
2052
- // if (type === 'previous') {
2053
- return '前のページへ';
2054
- }
2055
- }
2056
- }
2057
- }
2058
- };
2059
- export const khKH = {
2060
- components: {
2061
- MuiBreadcrumbs: {
2062
- defaultProps: {
2063
- expandText: 'បង្ហាញផ្លូវ'
2064
- }
2065
- },
2066
- MuiTablePagination: {
2067
- defaultProps: {
2068
- getItemAriaLabel: type => {
2069
- if (type === 'first') {
2070
- return 'ទៅទំព័រដំបូង';
2071
- }
2072
- if (type === 'last') {
2073
- return 'ទៅទំព័រចុងក្រោយ';
2074
- }
2075
- if (type === 'next') {
2076
- return 'ទៅទំព័របន្ទាប់';
2077
- }
2078
- // if (type === 'previous') {
2079
- return 'ទៅទំព័រមុន';
2080
- },
2081
- labelRowsPerPage: 'ចំនួនជួរដេកក្នុងមួយទំព័រ:',
2082
- labelDisplayedRows: ({
2083
- from,
2084
- to,
2085
- count
2086
- }) => `${from} - ${to} នៃ ${count !== -1 ? count : `ច្រើនជាង ${to}`}`
2087
- }
2088
- },
2089
- MuiRating: {
2090
- defaultProps: {
2091
- getLabelText: value => `${value} ផ្កាយ${value !== 1 ? '' : ''}`,
2092
- emptyLabelText: 'ទទេ'
2093
- }
2094
- },
2095
- MuiAutocomplete: {
2096
- defaultProps: {
2097
- clearText: 'លុបចោល',
2098
- closeText: 'បិទ',
2099
- loadingText: 'កំពុងលោត…',
2100
- noOptionsText: 'គ្មានជម្រើស',
2101
- openText: 'បើក'
2102
- }
2103
- },
2104
- MuiAlert: {
2105
- defaultProps: {
2106
- closeText: 'បិទ'
2107
- }
2108
- },
2109
- MuiPagination: {
2110
- defaultProps: {
2111
- 'aria-label': 'រុករកទំព័រ',
2112
- getItemAriaLabel: (type, page, selected) => {
2113
- if (type === 'page') {
2114
- return `${selected ? '' : 'ទៅ '}ទំព័រ ${page}`;
2115
- }
2116
- if (type === 'first') {
2117
- return 'ទៅទំព័រដំបូង';
2118
- }
2119
- if (type === 'last') {
2120
- return 'ទៅទំព័រចុងក្រោយ';
2121
- }
2122
- if (type === 'next') {
2123
- return 'ទៅទំព័របន្ទាប់';
2124
- }
2125
- // if (type === 'previous') {
2126
- return 'ទៅទំព័រមុន';
2127
- }
2128
- }
2129
- }
2130
- }
2131
- };
2132
- export const koKR = {
2133
- components: {
2134
- MuiBreadcrumbs: {
2135
- defaultProps: {
2136
- expandText: '경로 보기'
2137
- }
2138
- },
2139
- MuiTablePagination: {
2140
- defaultProps: {
2141
- getItemAriaLabel: type => {
2142
- if (type === 'first') {
2143
- return '첫 번째 페이지로 이동';
2144
- }
2145
- if (type === 'last') {
2146
- return '마지막 페이지로 이동';
2147
- }
2148
- if (type === 'next') {
2149
- return '다음 페이지로 이동';
2150
- }
2151
- // if (type === 'previous') {
2152
- return '이전 페이지로 이동';
2153
- },
2154
- labelRowsPerPage: '페이지 당 행:',
2155
- labelDisplayedRows: ({
2156
- from,
2157
- to,
2158
- count
2159
- }) => `${from}–${to} / ${count !== -1 ? count : `${to}개 이상`}`
2160
- }
2161
- },
2162
- MuiRating: {
2163
- defaultProps: {
2164
- getLabelText: value => `${value} 점`,
2165
- emptyLabelText: '빈 텍스트'
2166
- }
2167
- },
2168
- MuiAutocomplete: {
2169
- defaultProps: {
2170
- clearText: '지우기',
2171
- closeText: '닫기',
2172
- loadingText: '불러오는 중…',
2173
- noOptionsText: '옵션 없음',
2174
- openText: '열기'
2175
- }
2176
- },
2177
- MuiAlert: {
2178
- defaultProps: {
2179
- closeText: '닫기'
2180
- }
2181
- },
2182
- MuiPagination: {
2183
- defaultProps: {
2184
- 'aria-label': '페이지네이션 네비게이션',
2185
- getItemAriaLabel: (type, page, selected) => {
2186
- if (type === 'page') {
2187
- return `${page} 번째 페이지${selected ? '' : '로 이동'}`;
2188
- }
2189
- if (type === 'first') {
2190
- return '첫 번째 페이지로 이동';
2191
- }
2192
- if (type === 'last') {
2193
- return '마지막 페이지로 이동';
2194
- }
2195
- if (type === 'next') {
2196
- return '다음 페이지로 이동';
2197
- }
2198
- // if (type === 'previous') {
2199
- return '이전 페이지로 이동';
2200
- }
2201
- }
2202
- }
2203
- }
2204
- };
2205
- export const kuCKB = {
2206
- components: {
2207
- MuiBreadcrumbs: {
2208
- defaultProps: {
2209
- expandText: 'ڕێچکە پیشان بدە'
2210
- }
2211
- },
2212
- MuiTablePagination: {
2213
- defaultProps: {
2214
- getItemAriaLabel: type => {
2215
- if (type === 'first') {
2216
- return 'چوونە یەکەم پەڕە';
2217
- }
2218
- if (type === 'last') {
2219
- return 'چوونە کۆتا پەڕە';
2220
- }
2221
- if (type === 'next') {
2222
- return 'چوونە پەڕەی دواتر';
2223
- }
2224
- // if (type === 'previous') {
2225
- return 'گەڕانەوە بۆ پەڕەی پێشوو';
2226
- },
2227
- labelRowsPerPage: 'ژمارەی ڕیزەکان لە هەر پەڕەیەک:',
2228
- labelDisplayedRows: ({
2229
- from,
2230
- to,
2231
- count
2232
- }) => `${from}–${to} لە ${count !== -1 ? count : ` زیاترە لە${to}`}`
2233
- }
2234
- },
2235
- MuiRating: {
2236
- defaultProps: {
2237
- getLabelText: value => `${value} ${value !== 1 ? 'ئەستێرەکان' : 'ئەستێرە'}`,
2238
- emptyLabelText: 'خاڵیە'
2239
- }
2240
- },
2241
- MuiAutocomplete: {
2242
- defaultProps: {
2243
- clearText: 'سڕینەوە',
2244
- closeText: 'داخستن',
2245
- loadingText: 'لە بارکردندایە...',
2246
- noOptionsText: 'هیچ بژاردەیەک نیە',
2247
- openText: 'کردنەوە'
2248
- }
2249
- },
2250
- MuiAlert: {
2251
- defaultProps: {
2252
- closeText: 'داخستن'
2253
- }
2254
- },
2255
- MuiPagination: {
2256
- defaultProps: {
2257
- 'aria-label': 'گەڕان لە پەڕەکان',
2258
- getItemAriaLabel: (type, page, selected) => {
2259
- if (type === 'page') {
2260
- return `${selected ? '' : 'چوون بۆ '} پەڕەی ${page}`;
2261
- }
2262
- if (type === 'first') {
2263
- return 'چوونە یەکەم پەڕە';
2264
- }
2265
- if (type === 'last') {
2266
- return 'چوونە کۆتا پەڕە';
2267
- }
2268
- if (type === 'next') {
2269
- return 'چوونە پەڕەی دواتر';
2270
- }
2271
- // if (type === 'previous') {
2272
- return 'گەڕانەوە بۆ پەڕەی پێشوو';
2273
- }
2274
- }
2275
- }
2276
- }
2277
- };
2278
- export const kuLatn = {
2279
- components: {
2280
- MuiBreadcrumbs: {
2281
- defaultProps: {
2282
- expandText: 'Rê nîşan bide'
2283
- }
2284
- },
2285
- MuiTablePagination: {
2286
- defaultProps: {
2287
- getItemAriaLabel: type => {
2288
- if (type === 'first') {
2289
- return 'Biçe rûpela yekem';
2290
- }
2291
- if (type === 'last') {
2292
- return 'Biçe rûpela dawî';
2293
- }
2294
- if (type === 'next') {
2295
- return 'Biçe rûpela din';
2296
- }
2297
- // if (type === 'previous') {
2298
- return 'Biçe rûpela berê';
2299
- },
2300
- labelRowsPerPage: 'Rêz li ser rûpelê:',
2301
- labelDisplayedRows: ({
2302
- from,
2303
- to,
2304
- count
2305
- }) => `${from}–${to} of ${count !== -1 ? count : `zêdetir ji ${to}`}`
2306
- }
2307
- },
2308
- MuiRating: {
2309
- defaultProps: {
2310
- getLabelText: value => `${value} Stêrk`,
2311
- emptyLabelText: 'Vala'
2312
- }
2313
- },
2314
- MuiAutocomplete: {
2315
- defaultProps: {
2316
- clearText: 'Paqij bike',
2317
- closeText: 'Bigre',
2318
- loadingText: 'Tê barkirin…',
2319
- noOptionsText: 'Vebijêrk tune',
2320
- openText: 'Veke'
2321
- }
2322
- },
2323
- MuiAlert: {
2324
- defaultProps: {
2325
- closeText: 'Bigre'
2326
- }
2327
- },
2328
- MuiPagination: {
2329
- defaultProps: {
2330
- 'aria-label': 'Navîgasyona rûpelan',
2331
- getItemAriaLabel: (type, page, selected) => {
2332
- if (type === 'page') {
2333
- return `${selected ? '' : 'Biçe '}rûpel ${page}`;
2334
- }
2335
- if (type === 'first') {
2336
- return 'Biçe rûpela yekem';
2337
- }
2338
- if (type === 'last') {
2339
- return 'Biçe rûpela dawî';
2340
- }
2341
- if (type === 'next') {
2342
- return 'Biçe rûpela din';
2343
- }
2344
- // if (type === 'previous') {
2345
- return 'Biçe rûpela berê';
2346
- }
2347
- }
2348
- }
2349
- }
2350
- };
2351
- export const kkKZ = {
2352
- components: {
2353
- MuiBreadcrumbs: {
2354
- defaultProps: {
2355
- expandText: 'Толық жолды көрсету'
2356
- }
2357
- },
2358
- MuiTablePagination: {
2359
- defaultProps: {
2360
- getItemAriaLabel: type => {
2361
- if (type === 'first') {
2362
- return 'Бірінші бетке өту';
2363
- }
2364
- if (type === 'last') {
2365
- return 'Соңғы бетке өту';
2366
- }
2367
- if (type === 'next') {
2368
- return 'Келесі бетке өту';
2369
- }
2370
- // if (type === 'previous') {
2371
- return 'Алдыңғы бетке өту';
2372
- },
2373
- labelRowsPerPage: 'Беттегі қатарлар:',
2374
- labelDisplayedRows: ({
2375
- from,
2376
- to,
2377
- count
2378
- }) => `${count !== -1 ? count : `+${to}`} қатардың ішінен ${from}–${to}`
2379
- }
2380
- },
2381
- MuiRating: {
2382
- defaultProps: {
2383
- getLabelText: value => `${value} жұлдыз`,
2384
- emptyLabelText: 'Рейтинг жоқ'
2385
- }
2386
- },
2387
- MuiAutocomplete: {
2388
- defaultProps: {
2389
- clearText: 'Тазарту',
2390
- closeText: 'Жабу',
2391
- loadingText: 'Жүктелуде…',
2392
- noOptionsText: 'Қол жетімді нұсқалар жоқ',
2393
- openText: 'Ашу'
2394
- }
2395
- },
2396
- MuiAlert: {
2397
- defaultProps: {
2398
- closeText: 'Жабу'
2399
- }
2400
- },
2401
- MuiPagination: {
2402
- defaultProps: {
2403
- 'aria-label': 'Беттерді шарлау',
2404
- getItemAriaLabel: (type, page, selected) => {
2405
- if (type === 'page') {
2406
- if (selected) {
2407
- return `${page} — бет`;
2408
- }
2409
- return `${page} — бетке өту`;
2410
- }
2411
- if (type === 'first') {
2412
- return 'Бірінші бетке өту';
2413
- }
2414
- if (type === 'last') {
2415
- return 'Соңғы бетке өту';
2416
- }
2417
- if (type === 'next') {
2418
- return 'Келесі бетке өту';
2419
- }
2420
- // if (type === 'previous') {
2421
- return 'Алдыңғы бетке өту';
2422
- }
2423
- }
2424
- }
2425
- }
2426
- };
2427
-
2428
- // Macedonian - Македонски
2429
- export const mkMK = {
2430
- components: {
2431
- MuiBreadcrumbs: {
2432
- defaultProps: {
2433
- expandText: 'Прикажи патека'
2434
- }
2435
- },
2436
- MuiTablePagination: {
2437
- defaultProps: {
2438
- getItemAriaLabel: type => {
2439
- if (type === 'first') {
2440
- return 'Оди на прва страница';
2441
- }
2442
- if (type === 'last') {
2443
- return 'Оди на последна страница';
2444
- }
2445
- if (type === 'next') {
2446
- return 'Оди на следна страница';
2447
- }
2448
- // if (type === 'previous') {
2449
- return 'Оди на предходна страница';
2450
- },
2451
- labelRowsPerPage: 'Редови по страница:',
2452
- labelDisplayedRows: ({
2453
- from,
2454
- to,
2455
- count
2456
- }) => `${from}–${to} од ${count !== -1 ? count : `повеќе од ${to}`}`
2457
- }
2458
- },
2459
- MuiRating: {
2460
- defaultProps: {
2461
- getLabelText: value => {
2462
- const lastDigit = value % 10;
2463
- return `${value} Ѕвезд${lastDigit === 1 ? 'а' : 'и'}`;
2464
- },
2465
- emptyLabelText: 'Празно'
2466
- }
2467
- },
2468
- MuiAutocomplete: {
2469
- defaultProps: {
2470
- clearText: 'Избриши',
2471
- closeText: 'Затвори',
2472
- loadingText: 'Се презема',
2473
- noOptionsText: 'Нема опција',
2474
- openText: 'Отвори'
2475
- }
2476
- },
2477
- MuiAlert: {
2478
- defaultProps: {
2479
- closeText: 'Затвори'
2480
- }
2481
- },
2482
- MuiPagination: {
2483
- defaultProps: {
2484
- 'aria-label': 'Навигација низ страници',
2485
- getItemAriaLabel: (type, page, selected) => {
2486
- if (type === 'page') {
2487
- return `${selected ? '' : 'Оди на '}страница ${page}`;
2488
- }
2489
- if (type === 'first') {
2490
- return 'Оди на прва страница';
2491
- }
2492
- if (type === 'last') {
2493
- return 'Оди на последна страница';
2494
- }
2495
- if (type === 'next') {
2496
- return 'Оди на следна страница';
2497
- }
2498
- // if (type === 'previous') {
2499
- return 'Оди на предходна страница';
2500
- }
2501
- }
2502
- }
2503
- }
2504
- };
2505
-
2506
- // Myanmar - မြန်မာ
2507
- export const myMY = {
2508
- components: {
2509
- MuiBreadcrumbs: {
2510
- defaultProps: {
2511
- expandText: 'လမ်းကြောင်းပြပါ။'
2512
- }
2513
- },
2514
- MuiTablePagination: {
2515
- defaultProps: {
2516
- getItemAriaLabel: type => {
2517
- if (type === 'first') {
2518
- return 'ပထမစာမျက်နှာသို့သွားပါ။';
2519
- }
2520
- if (type === 'last') {
2521
- return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
2522
- }
2523
- if (type === 'next') {
2524
- return 'နောက်စာမျက်နှာသို့သွားပါ။';
2525
- }
2526
- // if (type === 'previous') {
2527
- return 'ယခင်စာမျက်နှာသို့သွားပါ။';
2528
- },
2529
- labelRowsPerPage: 'စာမျက်နှာအလိုက် အတန်းများ:',
2530
- labelDisplayedRows: ({
2531
- from,
2532
- to,
2533
- count
2534
- }) => `${from}–${to} ၏ ${count !== -1 ? count : `ထက်ပိုပြီး ${to}`}`
2535
- }
2536
- },
2537
- MuiRating: {
2538
- defaultProps: {
2539
- getLabelText: value => {
2540
- const lastDigit = value % 10;
2541
- return `${value} ကြယ်ပွင့်${lastDigit === 1 ? '၎' : ''}`;
2542
- },
2543
- emptyLabelText: 'ဗလာ'
2544
- }
2545
- },
2546
- MuiAutocomplete: {
2547
- defaultProps: {
2548
- clearText: 'ရှင်းလင်းသော',
2549
- closeText: 'ပိတ်လိုက်',
2550
- loadingText: 'ဖွင့်နေသည်…',
2551
- noOptionsText: 'ရွေးချယ်ခွင့်မရှိပါ။',
2552
- openText: 'ဖွင့်သည်။'
2553
- }
2554
- },
2555
- MuiAlert: {
2556
- defaultProps: {
2557
- closeText: 'ပိတ်လိုက်'
2558
- }
2559
- },
2560
- MuiPagination: {
2561
- defaultProps: {
2562
- 'aria-label': 'Pagination အညွှန်း',
2563
- getItemAriaLabel: (type, page, selected) => {
2564
- if (type === 'page') {
2565
- return `${selected ? '' : 'သွားပါ။ '}စာမျက်နှာ ${page}`;
2566
- }
2567
- if (type === 'first') {
2568
- return 'ပထမစာမျက်နှာသို့သွားပါ။';
2569
- }
2570
- if (type === 'last') {
2571
- return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
2572
- }
2573
- if (type === 'next') {
2574
- return 'နောက်စာမျက်နှာသို့သွားပါ။';
2575
- }
2576
- // if (type === 'previous') {
2577
- return 'ယခင်စာမျက်နှာသို့သွားပါ။';
2578
- }
2579
- }
2580
- }
2581
- }
2582
- };
2583
-
2584
- // Malay-Melayu
2585
- export const msMS = {
2586
- components: {
2587
- MuiBreadcrumbs: {
2588
- defaultProps: {
2589
- expandText: 'Tunjukkan laluan'
2590
- }
2591
- },
2592
- MuiTablePagination: {
2593
- defaultProps: {
2594
- getItemAriaLabel: type => {
2595
- if (type === 'first') {
2596
- return 'Pergi ke halaman pertama';
2597
- }
2598
- if (type === 'last') {
2599
- return 'Pergi ke halaman terakhir';
2600
- }
2601
- if (type === 'next') {
2602
- return 'Pergi ke halaman seterusnya';
2603
- }
2604
- // if (type === 'previous') {
2605
- return 'Pergi ke halaman sebelumnya';
2606
- },
2607
- labelRowsPerPage: 'Baris setiap halaman:',
2608
- labelDisplayedRows: ({
2609
- from,
2610
- to,
2611
- count
2612
- }) => `${from}–${to} daripada ${count !== -1 ? count : `lebih daripada ${to}`}`
2613
- }
2614
- },
2615
- MuiRating: {
2616
- defaultProps: {
2617
- getLabelText: value => {
2618
- const lastDigit = value % 10;
2619
- return `${value} Bintang${lastDigit === 1 ? 's' : ''}`;
2620
- },
2621
- emptyLabelText: 'kosong'
2622
- }
2623
- },
2624
- MuiAutocomplete: {
2625
- defaultProps: {
2626
- clearText: 'Jelas',
2627
- closeText: 'tutup',
2628
- loadingText: 'Memuatkan…',
2629
- noOptionsText: 'Tiada pilihan',
2630
- openText: 'Buka'
2631
- }
2632
- },
2633
- MuiAlert: {
2634
- defaultProps: {
2635
- closeText: 'tutup'
2636
- }
2637
- },
2638
- MuiPagination: {
2639
- defaultProps: {
2640
- 'aria-label': 'Navigasi penomboran',
2641
- getItemAriaLabel: (type, page, selected) => {
2642
- if (type === 'page') {
2643
- return `${selected ? '' : 'Pergi ke '}muka surat ${page}`;
2644
- }
2645
- if (type === 'first') {
2646
- return 'Pergi ke halaman pertama';
2647
- }
2648
- if (type === 'last') {
2649
- return 'Pergi ke halaman terakhir';
2650
- }
2651
- if (type === 'next') {
2652
- return 'Pergi ke halaman seterusnya';
2653
- }
2654
- // if (type === 'previous') {
2655
- return 'Pergi ke halaman sebelumnya';
2656
- }
2657
- }
2658
- }
2659
- }
2660
- };
2661
-
2662
- // Nepali-नेपाली
2663
- export const neNP = {
2664
- components: {
2665
- MuiBreadcrumbs: {
2666
- defaultProps: {
2667
- expandText: 'बाटो देखाउनुहोस्'
2668
- }
2669
- },
2670
- MuiTablePagination: {
2671
- defaultProps: {
2672
- getItemAriaLabel: type => {
2673
- if (type === 'first') {
2674
- return 'पहिलो पृष्ठमा जानुहोस्';
2675
- }
2676
- if (type === 'last') {
2677
- return 'अन्तिम पृष्ठमा जानुहोस्';
2678
- }
2679
- if (type === 'next') {
2680
- return 'अर्को पृष्ठमा जानुहोस्';
2681
- }
2682
- // if (type === 'previous') {
2683
- return 'अघिल्लो पृष्ठमा जानुहोस्';
2684
- },
2685
- labelRowsPerPage: 'प्रति पृष्ठ पङ्क्तिहरू:',
2686
- labelDisplayedRows: ({
2687
- from,
2688
- to,
2689
- count
2690
- }) => `${from}–${to} को ${count !== -1 ? count : `धेरै ${to}`}`
2691
- }
2692
- },
2693
- MuiRating: {
2694
- defaultProps: {
2695
- getLabelText: value => {
2696
- const lastDigit = value % 10;
2697
- return `${value} तारा${lastDigit === 1 ? 'स' : ''}`;
2698
- },
2699
- emptyLabelText: 'खाली'
2700
- }
2701
- },
2702
- MuiAutocomplete: {
2703
- defaultProps: {
2704
- clearText: 'खाली गर्नुहोस्',
2705
- closeText: 'बन्द गर्नुहोस्',
2706
- loadingText: 'लोड हुँदै...',
2707
- noOptionsText: 'कुनै विकल्प छैन',
2708
- openText: 'खोल्नुहोस्'
2709
- }
2710
- },
2711
- MuiAlert: {
2712
- defaultProps: {
2713
- closeText: 'बन्द गर्नुहोस्'
2714
- }
2715
- },
2716
- MuiPagination: {
2717
- defaultProps: {
2718
- 'aria-label': 'पृष्ठांकन नेभिगेसन',
2719
- getItemAriaLabel: (type, page, selected) => {
2720
- if (type === 'page') {
2721
- return `${selected ? '' : 'जाऊ त्यहाँ '}पृष्ठ ${page}`;
2722
- }
2723
- if (type === 'first') {
2724
- return 'पहिलो पृष्ठमा जानुहोस्';
2725
- }
2726
- if (type === 'last') {
2727
- return 'अन्तिम पृष्ठमा जानुहोस्';
2728
- }
2729
- if (type === 'next') {
2730
- return 'अर्को पृष्ठमा जानुहोस्';
2731
- }
2732
- // if (type === 'previous') {
2733
- return 'अघिल्लो पृष्ठमा जानुहोस्';
2734
- }
2735
- }
2736
- }
2737
- }
2738
- };
2739
- export const nbNO = {
2740
- components: {
2741
- MuiBreadcrumbs: {
2742
- defaultProps: {
2743
- expandText: 'Vis sti'
2744
- }
2745
- },
2746
- MuiTablePagination: {
2747
- defaultProps: {
2748
- getItemAriaLabel: type => {
2749
- if (type === 'first') {
2750
- return 'Gå til første side';
2751
- }
2752
- if (type === 'last') {
2753
- return 'Gå til siste side';
2754
- }
2755
- if (type === 'next') {
2756
- return 'Gå til neste side';
2757
- }
2758
- // if (type === 'previous') {
2759
- return 'Gå til forrige side';
2760
- },
2761
- labelRowsPerPage: 'Rader per side:',
2762
- labelDisplayedRows: ({
2763
- from,
2764
- to,
2765
- count
2766
- }) => `${from}–${to} av ${count !== -1 ? count : `mer enn ${to}`}`
2767
- }
2768
- },
2769
- MuiRating: {
2770
- defaultProps: {
2771
- getLabelText: value => `${value} Stjerne${value !== 1 ? 'r' : ''}`,
2772
- emptyLabelText: 'Tom'
2773
- }
2774
- },
2775
- MuiAutocomplete: {
2776
- defaultProps: {
2777
- clearText: 'Tøm',
2778
- closeText: 'Lukk',
2779
- loadingText: 'Laster inn…',
2780
- noOptionsText: 'Ingen alternativer',
2781
- openText: 'Åpne'
2782
- }
2783
- },
2784
- MuiAlert: {
2785
- defaultProps: {
2786
- closeText: 'Lukk'
2787
- }
2788
- },
2789
- MuiPagination: {
2790
- defaultProps: {
2791
- 'aria-label': 'Paginering navigasjon',
2792
- getItemAriaLabel: (type, page, selected) => {
2793
- if (type === 'page') {
2794
- return `${selected ? '' : 'Gå til '}side ${page}`;
2795
- }
2796
- if (type === 'first') {
2797
- return 'Gå til første side';
2798
- }
2799
- if (type === 'last') {
2800
- return 'Gå til siste side';
2801
- }
2802
- if (type === 'next') {
2803
- return 'Gå til neste side';
2804
- }
2805
- // if (type === 'previous') {
2806
- return 'Gå til forrige side';
2807
- }
2808
- }
2809
- }
2810
- }
2811
- };
2812
- export const nnNO = {
2813
- components: {
2814
- MuiBreadcrumbs: {
2815
- defaultProps: {
2816
- expandText: 'Vis sti'
2817
- }
2818
- },
2819
- MuiTablePagination: {
2820
- defaultProps: {
2821
- getItemAriaLabel: type => {
2822
- if (type === 'first') {
2823
- return 'Gå til første side';
2824
- }
2825
- if (type === 'last') {
2826
- return 'Gå til siste side';
2827
- }
2828
- if (type === 'next') {
2829
- return 'Gå til neste side';
2830
- }
2831
- // if (type === 'previous') {
2832
- return 'Gå til førre side';
2833
- },
2834
- labelRowsPerPage: 'Rader per side:',
2835
- labelDisplayedRows: ({
2836
- from,
2837
- to,
2838
- count
2839
- }) => `${from}–${to} av ${count !== -1 ? count : `fleire enn ${to}`}`
2840
- }
2841
- },
2842
- MuiRating: {
2843
- defaultProps: {
2844
- getLabelText: value => `${value} stjerne${value !== 1 ? 'r' : ''}`,
2845
- emptyLabelText: 'Tom'
2846
- }
2847
- },
2848
- MuiAutocomplete: {
2849
- defaultProps: {
2850
- clearText: 'Tøm',
2851
- closeText: 'Lukk',
2852
- loadingText: 'Lastar inn…',
2853
- noOptionsText: 'Ingen alternativ',
2854
- openText: 'Opna'
2855
- }
2856
- },
2857
- MuiAlert: {
2858
- defaultProps: {
2859
- closeText: 'Lukk'
2860
- }
2861
- },
2862
- MuiPagination: {
2863
- defaultProps: {
2864
- 'aria-label': 'Navigasjon for paginering',
2865
- getItemAriaLabel: (type, page, selected) => {
2866
- if (type === 'page') {
2867
- return `${selected ? '' : 'Gå til '}side ${page}`;
2868
- }
2869
- if (type === 'first') {
2870
- return 'Gå til første side';
2871
- }
2872
- if (type === 'last') {
2873
- return 'Gå til siste side';
2874
- }
2875
- if (type === 'next') {
2876
- return 'Gå til neste side';
2877
- }
2878
- // if (type === 'previous') {
2879
- return 'Gå til førre side';
2880
- }
2881
- }
2882
- }
2883
- }
2884
- };
2885
- export const nlNL = {
2886
- components: {
2887
- MuiBreadcrumbs: {
2888
- defaultProps: {
2889
- expandText: 'Pad tonen'
2890
- }
2891
- },
2892
- MuiTablePagination: {
2893
- defaultProps: {
2894
- getItemAriaLabel: type => {
2895
- if (type === 'first') {
2896
- return 'Ga naar eerste pagina';
2897
- }
2898
- if (type === 'last') {
2899
- return 'Ga naar laatste pagina';
2900
- }
2901
- if (type === 'next') {
2902
- return 'Ga naar volgende pagina';
2903
- }
2904
- // if (type === 'previous') {
2905
- return 'Ga naar vorige pagina';
2906
- },
2907
- labelRowsPerPage: 'Regels per pagina:',
2908
- labelDisplayedRows: ({
2909
- from,
2910
- to,
2911
- count
2912
- }) => `${from}–${to} van ${count !== -1 ? count : `meer dan ${to}`}`
2913
- }
2914
- },
2915
- MuiRating: {
2916
- defaultProps: {
2917
- getLabelText: value => `${value} Ster${value !== 1 ? 'ren' : ''}`,
2918
- emptyLabelText: 'Leeg'
2919
- }
2920
- },
2921
- MuiAutocomplete: {
2922
- defaultProps: {
2923
- clearText: 'Wissen',
2924
- closeText: 'Sluiten',
2925
- loadingText: 'Laden…',
2926
- noOptionsText: 'Geen opties',
2927
- openText: 'Openen'
2928
- }
2929
- },
2930
- MuiAlert: {
2931
- defaultProps: {
2932
- closeText: 'Sluiten'
2933
- }
2934
- },
2935
- MuiPagination: {
2936
- defaultProps: {
2937
- 'aria-label': 'Navigatie via paginering',
2938
- getItemAriaLabel: (type, page, selected) => {
2939
- if (type === 'page') {
2940
- return `${selected ? '' : 'Ga naar '}pagina ${page}`;
2941
- }
2942
- if (type === 'first') {
2943
- return 'Ga naar eerste pagina';
2944
- }
2945
- if (type === 'last') {
2946
- return 'Ga naar laatste pagina';
2947
- }
2948
- if (type === 'next') {
2949
- return 'Ga naar volgende pagina';
2950
- }
2951
- // if (type === 'previous') {
2952
- return 'Ga naar vorige pagina';
2953
- }
2954
- }
2955
- }
2956
- }
2957
- };
2958
- export const plPL = {
2959
- components: {
2960
- MuiBreadcrumbs: {
2961
- defaultProps: {
2962
- expandText: 'Pokaż ścieżkę'
2963
- }
2964
- },
2965
- MuiTablePagination: {
2966
- defaultProps: {
2967
- getItemAriaLabel: type => {
2968
- if (type === 'first') {
2969
- return 'Przejdź do pierwszej strony';
2970
- }
2971
- if (type === 'last') {
2972
- return 'Przejdź do ostatniej strony';
2973
- }
2974
- if (type === 'next') {
2975
- return 'Przejdź do następnej strony';
2976
- }
2977
- // if (type === 'previous') {
2978
- return 'Przejdź do poprzedniej strony';
2979
- },
2980
- labelRowsPerPage: 'Wierszy na stronę:',
2981
- labelDisplayedRows: ({
2982
- from,
2983
- to,
2984
- count
2985
- }) => `${from}–${to} z ${count !== -1 ? count : `ponad ${to}`}`
2986
- }
2987
- },
2988
- MuiRating: {
2989
- defaultProps: {
2990
- getLabelText: value => {
2991
- let pluralForm = 'gwiazdek';
2992
- const lastDigit = value % 10;
2993
- if ((value < 10 || value > 20) && lastDigit > 1 && lastDigit < 5) {
2994
- pluralForm = 'gwiazdki';
2995
- } else if (value === 1) {
2996
- pluralForm = 'gwiazdka';
2997
- }
2998
- return `${value} ${pluralForm}`;
2999
- },
3000
- emptyLabelText: 'Brak gwiazdek'
3001
- }
3002
- },
3003
- MuiAutocomplete: {
3004
- defaultProps: {
3005
- clearText: 'Wyczyść',
3006
- closeText: 'Zamknij',
3007
- loadingText: 'Ładowanie…',
3008
- noOptionsText: 'Brak opcji',
3009
- openText: 'Otwórz'
3010
- }
3011
- },
3012
- MuiAlert: {
3013
- defaultProps: {
3014
- closeText: 'Zamknij'
3015
- }
3016
- },
3017
- MuiPagination: {
3018
- defaultProps: {
3019
- 'aria-label': 'Nawigacja podziału na strony',
3020
- getItemAriaLabel: (type, page, selected) => {
3021
- if (type === 'page') {
3022
- return selected ? `${page}. strona` : `Przejdź do ${page}. strony`;
3023
- }
3024
- if (type === 'first') {
3025
- return 'Przejdź do pierwszej strony';
3026
- }
3027
- if (type === 'last') {
3028
- return 'Przejdź do ostatniej strony';
3029
- }
3030
- if (type === 'next') {
3031
- return 'Przejdź do następnej strony';
3032
- }
3033
- // if (type === 'previous') {
3034
- return 'Przejdź do poprzedniej strony';
3035
- }
3036
- }
3037
- }
3038
- }
3039
- };
3040
- export const psAF = {
3041
- components: {
3042
- MuiBreadcrumbs: {
3043
- defaultProps: {
3044
- expandText: 'لاره ښکاره کړه'
3045
- }
3046
- },
3047
- MuiTablePagination: {
3048
- defaultProps: {
3049
- getItemAriaLabel: type => {
3050
- if (type === 'first') {
3051
- return 'لومړۍ پاڼې ته لاړ شه';
3052
- }
3053
- if (type === 'last') {
3054
- return 'ورستۍ پاڼې ته لاړ شه';
3055
- }
3056
- if (type === 'next') {
3057
- return 'بلی پاڼې ته لاړ شه';
3058
- }
3059
- // if (type === 'previous') {
3060
- return 'مخکینۍ پاڼې ته لاړ شه';
3061
- },
3062
- labelRowsPerPage: 'په پاڼه کی د کرښو شمیر',
3063
- labelDisplayedRows: ({
3064
- from,
3065
- to,
3066
- count
3067
- }) => `${count !== -1 ? count : `${to} زیات له`} ${to}- ${from} د`
3068
- }
3069
- },
3070
- MuiRating: {
3071
- defaultProps: {
3072
- getLabelText: value => `${value} ستوری`,
3073
- emptyLabelText: 'خالی'
3074
- }
3075
- },
3076
- MuiAutocomplete: {
3077
- defaultProps: {
3078
- clearText: 'پاک کول',
3079
- closeText: 'تړل',
3080
- loadingText: '... لوډ کیږی',
3081
- noOptionsText: 'بی پایلی',
3082
- openText: 'خلاصول'
3083
- }
3084
- },
3085
- MuiAlert: {
3086
- defaultProps: {
3087
- closeText: 'تړل'
3088
- }
3089
- },
3090
- MuiPagination: {
3091
- defaultProps: {
3092
- 'aria-label': 'د پاڼو ترتیب',
3093
- getItemAriaLabel: (type, page, selected) => {
3094
- if (type === 'page') {
3095
- return `${selected ? '' : ' ته لاړ شه'}پاڼې ${page}`;
3096
- }
3097
- if (type === 'first') {
3098
- return 'لومړۍ پاڼی ته لاړ شه';
3099
- }
3100
- if (type === 'last') {
3101
- return 'وروستۍ پاڼې ته لاړه شه';
3102
- }
3103
- if (type === 'next') {
3104
- return 'بلې پاڼې ته لاړ شه';
3105
- }
3106
- // if (type === 'previous') {
3107
- return 'مخکنۍ پاڼې ته لاړ شه';
3108
- }
3109
- }
3110
- }
3111
- }
3112
- };
3113
- export const ptBR = {
3114
- components: {
3115
- MuiBreadcrumbs: {
3116
- defaultProps: {
3117
- expandText: 'Mostrar caminho'
3118
- }
3119
- },
3120
- MuiTablePagination: {
3121
- defaultProps: {
3122
- getItemAriaLabel: type => {
3123
- if (type === 'first') {
3124
- return 'Ir para a primeira página';
3125
- }
3126
- if (type === 'last') {
3127
- return 'Ir para a última página';
3128
- }
3129
- if (type === 'next') {
3130
- return 'Ir para a próxima página';
3131
- }
3132
- // if (type === 'previous') {
3133
- return 'Ir para a página anterior';
3134
- },
3135
- labelRowsPerPage: 'Linhas por página:',
3136
- labelDisplayedRows: ({
3137
- from,
3138
- to,
3139
- count
3140
- }) => `${from}–${to} de ${count !== -1 ? count : `mais de ${to}`}`
3141
- }
3142
- },
3143
- MuiRating: {
3144
- defaultProps: {
3145
- getLabelText: value => `${value} Estrela${value !== 1 ? 's' : ''}`,
3146
- emptyLabelText: 'Vazio'
3147
- }
3148
- },
3149
- MuiAutocomplete: {
3150
- defaultProps: {
3151
- clearText: 'Limpar',
3152
- closeText: 'Fechar',
3153
- loadingText: 'Carregando…',
3154
- noOptionsText: 'Sem opções',
3155
- openText: 'Abrir'
3156
- }
3157
- },
3158
- MuiAlert: {
3159
- defaultProps: {
3160
- closeText: 'Fechar'
3161
- }
3162
- },
3163
- MuiPagination: {
3164
- defaultProps: {
3165
- 'aria-label': 'Navegar pela paginação',
3166
- getItemAriaLabel: (type, page, selected) => {
3167
- if (type === 'page') {
3168
- return `${selected ? '' : 'Ir para a '}página ${page}`;
3169
- }
3170
- if (type === 'first') {
3171
- return 'Ir para a primeira página';
3172
- }
3173
- if (type === 'last') {
3174
- return 'Ir para a última página';
3175
- }
3176
- if (type === 'next') {
3177
- return 'Ir para a próxima página';
3178
- }
3179
- // if (type === 'previous') {
3180
- return 'Ir para a página anterior';
3181
- }
3182
- }
3183
- }
3184
- }
3185
- };
3186
- export const ptPT = {
3187
- components: {
3188
- MuiBreadcrumbs: {
3189
- defaultProps: {
3190
- expandText: 'Mostrar caminho'
3191
- }
3192
- },
3193
- MuiTablePagination: {
3194
- defaultProps: {
3195
- getItemAriaLabel: type => {
3196
- if (type === 'first') {
3197
- return 'Primeira página';
3198
- }
3199
- if (type === 'last') {
3200
- return 'Última página';
3201
- }
3202
- if (type === 'next') {
3203
- return 'Próxima página';
3204
- }
3205
- // if (type === 'previous') {
3206
- return 'Página anterior';
3207
- },
3208
- labelRowsPerPage: 'Linhas por página:',
3209
- labelDisplayedRows: ({
3210
- from,
3211
- to,
3212
- count
3213
- }) => `${from}–${to} de ${count !== -1 ? count : `mais de ${to}`}`
3214
- }
3215
- },
3216
- MuiRating: {
3217
- defaultProps: {
3218
- getLabelText: value => `${value} Estrela${value !== 1 ? 's' : ''}`,
3219
- emptyLabelText: 'Vazio'
3220
- }
3221
- },
3222
- MuiAutocomplete: {
3223
- defaultProps: {
3224
- clearText: 'Limpar',
3225
- closeText: 'Fechar',
3226
- loadingText: 'A carregar…',
3227
- noOptionsText: 'Sem opções',
3228
- openText: 'Abrir'
3229
- }
3230
- },
3231
- MuiAlert: {
3232
- defaultProps: {
3233
- closeText: 'Fechar'
3234
- }
3235
- },
3236
- MuiPagination: {
3237
- defaultProps: {
3238
- 'aria-label': 'Navegar por páginas',
3239
- getItemAriaLabel: (type, page, selected) => {
3240
- if (type === 'page') {
3241
- return `${selected ? '' : 'Ir para a '}página ${page}`;
3242
- }
3243
- if (type === 'first') {
3244
- return 'Primeira página';
3245
- }
3246
- if (type === 'last') {
3247
- return 'Última página';
3248
- }
3249
- if (type === 'next') {
3250
- return 'Próxima página';
3251
- }
3252
- // if (type === 'previous') {
3253
- return 'Página anterior';
3254
- }
3255
- }
3256
- }
3257
- }
3258
- };
3259
- export const roRO = {
3260
- components: {
3261
- MuiBreadcrumbs: {
3262
- defaultProps: {
3263
- expandText: 'Arată calea'
3264
- }
3265
- },
3266
- MuiTablePagination: {
3267
- defaultProps: {
3268
- getItemAriaLabel: type => {
3269
- if (type === 'first') {
3270
- return 'Mergi la prima pagină';
3271
- }
3272
- if (type === 'last') {
3273
- return 'Mergi la ultima pagină';
3274
- }
3275
- if (type === 'next') {
3276
- return 'Mergi la pagina următoare';
3277
- }
3278
- // if (type === 'previous') {
3279
- return 'Mergi la pagina precedentă';
3280
- },
3281
- labelRowsPerPage: 'Rânduri pe pagină:'
3282
- // labelDisplayedRows: ({ from, to, count }) =>
3283
- // `${from}–${to} din ${count !== -1 ? count : `more than ${to}`}`,
3284
- }
3285
- },
3286
- MuiRating: {
3287
- defaultProps: {
3288
- getLabelText: value => `${value} St${value !== 1 ? 'ele' : 'ea'}`,
3289
- emptyLabelText: 'Gol'
3290
- }
3291
- },
3292
- MuiAutocomplete: {
3293
- defaultProps: {
3294
- clearText: 'Șterge',
3295
- closeText: 'Închide',
3296
- loadingText: 'Se încarcă…',
3297
- noOptionsText: 'Nicio opțiune',
3298
- openText: 'Deschide'
3299
- }
3300
- },
3301
- MuiAlert: {
3302
- defaultProps: {
3303
- closeText: 'Închide'
3304
- }
3305
- },
3306
- MuiPagination: {
3307
- defaultProps: {
3308
- 'aria-label': 'Navigare prin paginare',
3309
- getItemAriaLabel: (type, page, selected) => {
3310
- if (type === 'page') {
3311
- return `${selected ? '' : 'Mergi la '}pagina ${page}`;
3312
- }
3313
- if (type === 'first') {
3314
- return 'Mergi la prima pagină';
3315
- }
3316
- if (type === 'last') {
3317
- return 'Mergi la ultima pagină';
3318
- }
3319
- if (type === 'next') {
3320
- return 'Mergi la pagina următoare';
3321
- }
3322
- // if (type === 'previous') {
3323
- return 'Mergi la pagina precedentă';
3324
- }
3325
- }
3326
- }
3327
- }
3328
- };
3329
-
3330
- // Serbian - Srpski
3331
- export const srRS = {
3332
- components: {
3333
- MuiBreadcrumbs: {
3334
- defaultProps: {
3335
- expandText: 'Pokaži putanju'
3336
- }
3337
- },
3338
- MuiTablePagination: {
3339
- defaultProps: {
3340
- getItemAriaLabel: type => {
3341
- if (type === 'first') {
3342
- return 'Idi na prvu stranicu';
3343
- }
3344
- if (type === 'last') {
3345
- return 'Idi na poslednju stranicu';
3346
- }
3347
- if (type === 'next') {
3348
- return 'Idi na sledeću stranicu';
3349
- }
3350
- // if (type === 'previous') {
3351
- return 'Idi na prethodnu stranicu';
3352
- },
3353
- labelRowsPerPage: 'Redova po stranici:',
3354
- labelDisplayedRows: ({
3355
- from,
3356
- to,
3357
- count
3358
- }) => `${from}–${to} od ${count !== -1 ? count : `više nego ${to}`}`
3359
- }
3360
- },
3361
- MuiRating: {
3362
- defaultProps: {
3363
- getLabelText: value => {
3364
- const lastDigit = value % 10;
3365
- const lastTwoDigits = value % 100;
3366
- if ([2, 3, 4].includes(lastDigit) && ![12, 13, 14].includes(lastTwoDigits)) {
3367
- return 'Zvezde';
3368
- }
3369
- return 'Zvezda';
3370
- },
3371
- emptyLabelText: 'Prazno'
3372
- }
3373
- },
3374
- MuiAutocomplete: {
3375
- defaultProps: {
3376
- clearText: 'Briši',
3377
- closeText: 'Zatvori',
3378
- loadingText: 'Učitavanje…',
3379
- noOptionsText: 'Nema opcija',
3380
- openText: 'Otvori'
3381
- }
3382
- },
3383
- MuiAlert: {
3384
- defaultProps: {
3385
- closeText: 'Zatvori'
3386
- }
3387
- },
3388
- MuiPagination: {
3389
- defaultProps: {
3390
- 'aria-label': 'Navigacija po stranicama',
3391
- getItemAriaLabel: (type, page, selected) => {
3392
- if (type === 'page') {
3393
- return `${selected ? '' : 'Idi na '}stranicu ${page}`;
3394
- }
3395
- if (type === 'first') {
3396
- return 'Idi na prvu stranicu';
3397
- }
3398
- if (type === 'last') {
3399
- return 'Idi na zadnju stranicu';
3400
- }
3401
- if (type === 'next') {
3402
- return 'Idi na sledeću stranicu';
3403
- }
3404
- // if (type === 'previous') {
3405
- return 'Idi na prethodnu stranicu';
3406
- }
3407
- }
3408
- }
3409
- }
3410
- };
3411
- export const ruRU = {
3412
- components: {
3413
- MuiBreadcrumbs: {
3414
- defaultProps: {
3415
- expandText: 'Показать полный путь'
3416
- }
3417
- },
3418
- MuiTablePagination: {
3419
- defaultProps: {
3420
- getItemAriaLabel: type => {
3421
- if (type === 'first') {
3422
- return 'Перейти на первую страницу';
3423
- }
3424
- if (type === 'last') {
3425
- return 'Перейти на последнюю страницу';
3426
- }
3427
- if (type === 'next') {
3428
- return 'Перейти на следующую страницу';
3429
- }
3430
- // if (type === 'previous') {
3431
- return 'Перейти на предыдущую страницу';
3432
- },
3433
- labelRowsPerPage: 'Строк на странице:',
3434
- labelDisplayedRows: ({
3435
- from,
3436
- to,
3437
- count
3438
- }) => `${from}–${to} из ${count !== -1 ? count : `более чем ${to}`}`
3439
- }
3440
- },
3441
- MuiRating: {
3442
- defaultProps: {
3443
- getLabelText: value => {
3444
- let pluralForm = 'Звёзд';
3445
- const lastDigit = value % 10;
3446
- if (lastDigit > 1 && lastDigit < 5) {
3447
- pluralForm = 'Звезды';
3448
- } else if (lastDigit === 1) {
3449
- pluralForm = 'Звезда';
3450
- }
3451
- return `${value} ${pluralForm}`;
3452
- },
3453
- emptyLabelText: 'Рейтинг отсутствует'
3454
- }
3455
- },
3456
- MuiAutocomplete: {
3457
- defaultProps: {
3458
- clearText: 'Очистить',
3459
- closeText: 'Закрыть',
3460
- loadingText: 'Загрузка…',
3461
- noOptionsText: 'Нет доступных вариантов',
3462
- openText: 'Открыть'
3463
- }
3464
- },
3465
- MuiAlert: {
3466
- defaultProps: {
3467
- closeText: 'Закрыть'
3468
- }
3469
- },
3470
- MuiPagination: {
3471
- defaultProps: {
3472
- 'aria-label': 'Навигация по страницам',
3473
- getItemAriaLabel: (type, page, selected) => {
3474
- if (type === 'page') {
3475
- if (selected) {
3476
- return `${page} страница`;
3477
- }
3478
- return `Перейти на ${page} страницу`;
3479
- }
3480
- if (type === 'first') {
3481
- return 'Перейти на первую страницу';
3482
- }
3483
- if (type === 'last') {
3484
- return 'Перейти на последнюю страницу';
3485
- }
3486
- if (type === 'next') {
3487
- return 'Перейти на следующую страницу';
3488
- }
3489
- // if (type === 'previous') {
3490
- return 'Перейти на предыдущую страницу';
3491
- }
3492
- }
3493
- }
3494
- }
3495
- };
3496
- export const siLK = {
3497
- components: {
3498
- MuiBreadcrumbs: {
3499
- defaultProps: {
3500
- expandText: 'ගමන් මඟ පෙන්වන්න'
3501
- }
3502
- },
3503
- MuiTablePagination: {
3504
- defaultProps: {
3505
- getItemAriaLabel: type => {
3506
- if (type === 'first') {
3507
- return 'පළමු පිටුවට යන්න';
3508
- }
3509
- if (type === 'last') {
3510
- return 'අවසාන පිටුවට යන්න';
3511
- }
3512
- if (type === 'next') {
3513
- return 'මීළඟ පිටුවට යන්න';
3514
- }
3515
- // if (type === 'previous') {
3516
- return 'පෙර පිටුවට යන්න';
3517
- },
3518
- labelRowsPerPage: 'පිටුවක පේළි:',
3519
- labelDisplayedRows: ({
3520
- from,
3521
- to,
3522
- count
3523
- }) => `${from}–${to} දක්වා ${count !== -1 ? count : `${to} ට වැඩි ප්‍රමාණයකින්`}`
3524
- }
3525
- },
3526
- MuiRating: {
3527
- defaultProps: {
3528
- getLabelText: value => `තරු ${value}`,
3529
- emptyLabelText: 'හිස්'
3530
- }
3531
- },
3532
- MuiAutocomplete: {
3533
- defaultProps: {
3534
- clearText: 'මකන්න',
3535
- closeText: 'වසන්න',
3536
- loadingText: 'නැංවෙමින්…',
3537
- noOptionsText: 'විකල්ප නැත',
3538
- openText: 'විවෘත කරන්න'
3539
- }
3540
- },
3541
- MuiAlert: {
3542
- defaultProps: {
3543
- closeText: 'වසන්න'
3544
- }
3545
- },
3546
- MuiPagination: {
3547
- defaultProps: {
3548
- 'aria-label': 'පිටු අතර සංචරණය',
3549
- getItemAriaLabel: (type, page, selected) => {
3550
- if (type === 'page') {
3551
- return `පිටුව ${page} ${selected ? '' : 'ට යන්න'}`;
3552
- }
3553
- if (type === 'first') {
3554
- return 'පළමු පිටුවට යන්න';
3555
- }
3556
- if (type === 'last') {
3557
- return 'අවසාන පිටුවට යන්න';
3558
- }
3559
- if (type === 'next') {
3560
- return 'මීළඟ පිටුවට යන්න';
3561
- }
3562
- // if (type === 'previous') {
3563
- return 'පෙර පිටුවට යන්න';
3564
- }
3565
- }
3566
- }
3567
- }
3568
- };
3569
- export const skSK = {
3570
- components: {
3571
- MuiBreadcrumbs: {
3572
- defaultProps: {
3573
- expandText: 'Ukázať cestu '
3574
- }
3575
- },
3576
- MuiTablePagination: {
3577
- defaultProps: {
3578
- getItemAriaLabel: type => {
3579
- if (type === 'first') {
3580
- return 'Ísť na prvú stránku';
3581
- }
3582
- if (type === 'last') {
3583
- return 'Ísť na poslednú stránku';
3584
- }
3585
- if (type === 'next') {
3586
- return 'Ísť na ďaľšiu stránku';
3587
- }
3588
- // if (type === 'previous') {
3589
- return 'Ísť na predchádzajúcu stránku';
3590
- },
3591
- labelRowsPerPage: 'Riadkov na stránke:',
3592
- labelDisplayedRows: ({
3593
- from,
3594
- to,
3595
- count
3596
- }) => `${from}–${to} z ${count !== -1 ? count : `viac ako ${to}`}`
3597
- }
3598
- },
3599
- MuiRating: {
3600
- defaultProps: {
3601
- getLabelText: value => {
3602
- if (value === 1) {
3603
- return `${value} hviezdička`;
3604
- }
3605
- if (value >= 2 && value <= 4) {
3606
- return `${value} hviezdičky`;
3607
- }
3608
- return `${value} hviezdičiek`;
3609
- },
3610
- emptyLabelText: 'Prázdne'
3611
- }
3612
- },
3613
- MuiAutocomplete: {
3614
- defaultProps: {
3615
- clearText: 'Vymazať',
3616
- closeText: 'Zavrieť',
3617
- loadingText: 'Načítanie…',
3618
- noOptionsText: 'Žiadne možnosti',
3619
- openText: 'Otvoriť'
3620
- }
3621
- },
3622
- MuiAlert: {
3623
- defaultProps: {
3624
- closeText: 'Zavrieť'
3625
- }
3626
- },
3627
- MuiPagination: {
3628
- defaultProps: {
3629
- 'aria-label': 'Navigácia stránkovanim',
3630
- getItemAriaLabel: (type, page, selected) => {
3631
- if (type === 'page') {
3632
- return `${selected ? '' : 'Ísť na '}stránku ${page}`;
3633
- }
3634
- if (type === 'first') {
3635
- return 'Ísť na prvú stránku';
3636
- }
3637
- if (type === 'last') {
3638
- return 'Ísť na poslednú stránku';
3639
- }
3640
- if (type === 'next') {
3641
- return 'Ísť na ďaľšiu stránku';
3642
- }
3643
- // if (type === 'previous') {
3644
- return 'Ísť na predchádzajúcu stránku';
3645
- }
3646
- }
3647
- }
3648
- }
3649
- };
3650
- export const svSE = {
3651
- components: {
3652
- MuiBreadcrumbs: {
3653
- defaultProps: {
3654
- expandText: 'Visa sökväg'
3655
- }
3656
- },
3657
- MuiTablePagination: {
3658
- defaultProps: {
3659
- getItemAriaLabel: type => {
3660
- if (type === 'first') {
3661
- return 'Gå till första sidan';
3662
- }
3663
- if (type === 'last') {
3664
- return 'Gå till sista sidan';
3665
- }
3666
- if (type === 'next') {
3667
- return 'Gå till nästa sida';
3668
- }
3669
- // if (type === 'previous') {
3670
- return 'Gå till föregående sida';
3671
- },
3672
- labelRowsPerPage: 'Rader per sida:',
3673
- labelDisplayedRows: ({
3674
- from,
3675
- to,
3676
- count
3677
- }) => `${from}–${to} av ${count !== -1 ? count : `fler än ${to}`}`
3678
- }
3679
- },
3680
- MuiRating: {
3681
- defaultProps: {
3682
- getLabelText: value => `${value} ${value !== 1 ? 'Stjärnor' : 'Stjärna'}`,
3683
- emptyLabelText: 'Tom'
3684
- }
3685
- },
3686
- MuiAutocomplete: {
3687
- defaultProps: {
3688
- clearText: 'Rensa',
3689
- closeText: 'Stäng',
3690
- loadingText: 'Laddar…',
3691
- noOptionsText: 'Inga alternativ',
3692
- openText: 'Öppna'
3693
- }
3694
- },
3695
- MuiAlert: {
3696
- defaultProps: {
3697
- closeText: 'Stäng'
3698
- }
3699
- },
3700
- MuiPagination: {
3701
- defaultProps: {
3702
- 'aria-label': 'Sidnavigering',
3703
- getItemAriaLabel: (type, page, selected) => {
3704
- if (type === 'page') {
3705
- return `${selected ? '' : 'Gå till '}sida ${page}`;
3706
- }
3707
- if (type === 'first') {
3708
- return 'Gå till första sidan';
3709
- }
3710
- if (type === 'last') {
3711
- return 'Gå till sista sidan';
3712
- }
3713
- if (type === 'next') {
3714
- return 'Gå till nästa sida';
3715
- }
3716
- // if (type === 'previous') {
3717
- return 'Gå till föregående sida';
3718
- }
3719
- }
3720
- }
3721
- }
3722
- };
3723
- export const thTH = {
3724
- components: {
3725
- MuiBreadcrumbs: {
3726
- defaultProps: {
3727
- expandText: 'แสดงเส้นทาง'
3728
- }
3729
- },
3730
- MuiTablePagination: {
3731
- defaultProps: {
3732
- getItemAriaLabel: type => {
3733
- if (type === 'first') {
3734
- return 'ไปที่หน้าแรก';
3735
- }
3736
- if (type === 'last') {
3737
- return 'ไปที่หน้าสุดท้าย';
3738
- }
3739
- if (type === 'next') {
3740
- return 'ไปที่หน้าถัดไป';
3741
- }
3742
- // if (type === 'previous') {
3743
- return 'ไปที่หน้าก่อน';
3744
- },
3745
- labelRowsPerPage: 'จำนวนแถวต่อหน้า:',
3746
- labelDisplayedRows: ({
3747
- from,
3748
- to,
3749
- count
3750
- }) => `${from}–${to} จาก ${count !== -1 ? count : `มากกว่า ${to}`}`
3751
- }
3752
- },
3753
- MuiRating: {
3754
- defaultProps: {
3755
- getLabelText: value => `${value} ดาว`,
3756
- emptyLabelText: 'ว่างเปล่า'
3757
- }
3758
- },
3759
- MuiAutocomplete: {
3760
- defaultProps: {
3761
- clearText: 'เคลียร์',
3762
- closeText: 'ปิด',
3763
- loadingText: 'กำลังโหลด…',
3764
- noOptionsText: 'ไม่มีตัวเลือก',
3765
- openText: 'เปิด'
3766
- }
3767
- },
3768
- MuiAlert: {
3769
- defaultProps: {
3770
- closeText: 'ปิด'
3771
- }
3772
- },
3773
- MuiPagination: {
3774
- defaultProps: {
3775
- 'aria-label': '',
3776
- getItemAriaLabel: (type, page, selected) => {
3777
- if (type === 'page') {
3778
- return `${selected ? '' : 'ไปที่'}หน้า ${page}`;
3779
- }
3780
- if (type === 'first') {
3781
- return 'ไปที่หน้าแรก';
3782
- }
3783
- if (type === 'last') {
3784
- return 'ไปที่หน้าสุดท้าย';
3785
- }
3786
- if (type === 'next') {
3787
- return 'ไปที่หน้าถัดไป';
3788
- }
3789
- // if (type === 'previous') {
3790
- return 'ไปที่หน้าก่อน';
3791
- }
3792
- }
3793
- }
3794
- }
3795
- };
3796
- export const trTR = {
3797
- components: {
3798
- MuiBreadcrumbs: {
3799
- defaultProps: {
3800
- expandText: 'Yolu göster'
3801
- }
3802
- },
3803
- MuiTablePagination: {
3804
- defaultProps: {
3805
- getItemAriaLabel: type => {
3806
- if (type === 'first') {
3807
- return 'İlk sayfaya git';
3808
- }
3809
- if (type === 'last') {
3810
- return 'Son sayfaya git';
3811
- }
3812
- if (type === 'next') {
3813
- return 'Sonraki sayfaya git';
3814
- }
3815
- // if (type === 'previous') {
3816
- return 'Önceki sayfaya git';
3817
- },
3818
- labelRowsPerPage: 'Sayfa başına satır:',
3819
- labelDisplayedRows: ({
3820
- from,
3821
- to,
3822
- count
3823
- }) => `${from}-${to} / ${count !== -1 ? count : `${to}'den fazla`}`
3824
- }
3825
- },
3826
- MuiRating: {
3827
- defaultProps: {
3828
- getLabelText: value => `${value} Yıldız`,
3829
- emptyLabelText: 'Boş'
3830
- }
3831
- },
3832
- MuiAutocomplete: {
3833
- defaultProps: {
3834
- clearText: 'Temizle',
3835
- closeText: 'Kapat',
3836
- loadingText: 'Yükleniyor…',
3837
- noOptionsText: 'Seçenek yok',
3838
- openText: 'Aç'
3839
- }
3840
- },
3841
- MuiAlert: {
3842
- defaultProps: {
3843
- closeText: 'Kapat'
3844
- }
3845
- },
3846
- MuiPagination: {
3847
- defaultProps: {
3848
- 'aria-label': 'Sayfa navigasyonu',
3849
- getItemAriaLabel: (type, page, selected) => {
3850
- if (type === 'page') {
3851
- return `${page}. ${selected ? 'sayfa' : 'sayfaya git'}`;
3852
- }
3853
- if (type === 'first') {
3854
- return 'İlk sayfaya git';
3855
- }
3856
- if (type === 'last') {
3857
- return 'Son sayfaya git';
3858
- }
3859
- if (type === 'next') {
3860
- return 'Sonraki sayfaya git';
3861
- }
3862
- // if (type === 'previous') {
3863
- return 'Önceki sayfaya git';
3864
- }
3865
- }
3866
- }
3867
- }
3868
- };
3869
-
3870
- // Tagalog-Tagalog
3871
- export const tlTL = {
3872
- components: {
3873
- MuiBreadcrumbs: {
3874
- defaultProps: {
3875
- expandText: 'Ipakita ang landas'
3876
- }
3877
- },
3878
- MuiTablePagination: {
3879
- defaultProps: {
3880
- getItemAriaLabel: type => {
3881
- if (type === 'first') {
3882
- return 'Pumunta sa unang pahina';
3883
- }
3884
- if (type === 'last') {
3885
- return 'Pumunta sa huling pahina';
3886
- }
3887
- if (type === 'next') {
3888
- return 'Pumunta sa susunod na pahina';
3889
- }
3890
- // if (type === 'previous') {
3891
- return 'Pumunta sa nakaraang pahina';
3892
- },
3893
- labelRowsPerPage: 'Mga hilera bawat pahina:',
3894
- labelDisplayedRows: ({
3895
- from,
3896
- to,
3897
- count
3898
- }) => `${from}–${to} ng ${count !== -1 ? count : `higit sa ${to}`}`
3899
- }
3900
- },
3901
- MuiRating: {
3902
- defaultProps: {
3903
- getLabelText: value => `${value} Bituin${value !== 1 ? 's' : ''}`,
3904
- emptyLabelText: 'Walang laman'
3905
- }
3906
- },
3907
- MuiAutocomplete: {
3908
- defaultProps: {
3909
- clearText: 'Maaliwalas',
3910
- closeText: 'Isara',
3911
- loadingText: 'Naglo-load…',
3912
- noOptionsText: 'Walang mga pagpipilian',
3913
- openText: 'Bukas'
3914
- }
3915
- },
3916
- MuiAlert: {
3917
- defaultProps: {
3918
- closeText: 'Isara'
3919
- }
3920
- },
3921
- MuiPagination: {
3922
- defaultProps: {
3923
- 'aria-label': 'Sayfa navigasyonu',
3924
- getItemAriaLabel: (type, page, selected) => {
3925
- if (type === 'page') {
3926
- return `${selected ? '' : 'Pumunta sa'}pahina ${page}`;
3927
- }
3928
- if (type === 'first') {
3929
- return 'Pumunta sa unang pahina';
3930
- }
3931
- if (type === 'last') {
3932
- return 'Pumunta sa huling pahina';
3933
- }
3934
- if (type === 'next') {
3935
- return 'Pumunta sa susunod na pahina';
3936
- }
3937
- // if (type === 'previous') {
3938
- return 'Pumunta sa nakaraang pahina';
3939
- }
3940
- }
3941
- }
3942
- }
3943
- };
3944
- export const ukUA = {
3945
- components: {
3946
- MuiBreadcrumbs: {
3947
- defaultProps: {
3948
- expandText: 'Показати шлях сторінок'
3949
- }
3950
- },
3951
- MuiTablePagination: {
3952
- defaultProps: {
3953
- getItemAriaLabel: type => {
3954
- if (type === 'first') {
3955
- return 'Перейти на першу сторінку';
3956
- }
3957
- if (type === 'last') {
3958
- return 'Перейти на останню сторінку';
3959
- }
3960
- if (type === 'next') {
3961
- return 'Перейти на наступну сторінку';
3962
- }
3963
- // if (type === 'previous') {
3964
- return 'Перейти на попередню сторінку';
3965
- },
3966
- labelRowsPerPage: 'Рядків на сторінці:',
3967
- labelDisplayedRows: ({
3968
- from,
3969
- to,
3970
- count
3971
- }) => `${from}–${to} з ${count !== -1 ? count : `понад ${to}`}`
3972
- }
3973
- },
3974
- MuiRating: {
3975
- defaultProps: {
3976
- getLabelText: value => {
3977
- let pluralForm = 'Зірок';
3978
- const lastDigit = value % 10;
3979
- if (lastDigit > 1 && lastDigit < 5) {
3980
- pluralForm = 'Зірки';
3981
- } else if (lastDigit === 1) {
3982
- pluralForm = 'Зірка';
3983
- }
3984
- return `${value} ${pluralForm}`;
3985
- },
3986
- emptyLabelText: 'Рейтинг відсутній'
3987
- }
3988
- },
3989
- MuiAutocomplete: {
3990
- defaultProps: {
3991
- clearText: 'Очистити',
3992
- closeText: 'Згорнути',
3993
- loadingText: 'Завантаження…',
3994
- noOptionsText: 'Немає варіантів',
3995
- openText: 'Розгорнути'
3996
- }
3997
- },
3998
- MuiAlert: {
3999
- defaultProps: {
4000
- closeText: 'Згорнути'
4001
- }
4002
- },
4003
- MuiPagination: {
4004
- defaultProps: {
4005
- 'aria-label': 'Навігація сторінками',
4006
- getItemAriaLabel: (type, page, selected) => {
4007
- if (type === 'page') {
4008
- return `${selected ? '' : 'Перейти на '}сторінку ${page}`;
4009
- }
4010
- if (type === 'first') {
4011
- return 'Перейти на першу сторінку';
4012
- }
4013
- if (type === 'last') {
4014
- return 'Перейти на останню сторінку';
4015
- }
4016
- if (type === 'next') {
4017
- return 'Перейти на наступну сторінку';
4018
- }
4019
- // if (type === 'previous') {
4020
- return 'Перейти на попередню сторінку';
4021
- }
4022
- }
4023
- }
4024
- }
4025
- };
4026
- export const urPK = {
4027
- components: {
4028
- MuiBreadcrumbs: {
4029
- defaultProps: {
4030
- expandText: 'راستہ دکھائیں'
4031
- }
4032
- },
4033
- MuiTablePagination: {
4034
- defaultProps: {
4035
- getItemAriaLabel: type => {
4036
- if (type === 'first') {
4037
- return 'پہلے صفحے پر جائیں';
4038
- }
4039
- if (type === 'last') {
4040
- return 'آخری صفحے پر جائیں';
4041
- }
4042
- if (type === 'next') {
4043
- return 'اگلے صفحے پر جائیں';
4044
- }
4045
- // if (type === 'previous') {
4046
- return 'پچھلے صفحے پر جائیں';
4047
- },
4048
- labelRowsPerPage: 'ایک صفحے پر قطاریں:',
4049
- labelDisplayedRows: ({
4050
- from,
4051
- to,
4052
- count
4053
- }) => `${count !== -1 ? `${count} میں سے` : `${to} سے ذیادہ میں سے`} ${from} سے ${to} قطاریں`
4054
- }
4055
- },
4056
- MuiRating: {
4057
- defaultProps: {
4058
- getLabelText: value => `${value} ستار${value !== 1 ? 'ے' : 'ہ'}`,
4059
- emptyLabelText: 'خالی'
4060
- }
4061
- },
4062
- MuiAutocomplete: {
4063
- defaultProps: {
4064
- clearText: 'کلئیر',
4065
- closeText: 'بند کریں',
4066
- loadingText: 'لوڈ ہو رہا ہے۔۔۔',
4067
- noOptionsText: 'کوئی آپشن نہیں',
4068
- openText: 'کھولیں'
4069
- }
4070
- },
4071
- MuiAlert: {
4072
- defaultProps: {
4073
- closeText: 'بند کریں'
4074
- }
4075
- },
4076
- MuiPagination: {
4077
- defaultProps: {
4078
- 'aria-label': 'صفحات کی ترتیب',
4079
- getItemAriaLabel: (type, page, selected) => {
4080
- if (type === 'page') {
4081
- return `صفحہ نمبر ${page}${selected ? '' : ' پر جائیں'}`;
4082
- }
4083
- if (type === 'first') {
4084
- return 'پہلے صفحے پر جائیں';
4085
- }
4086
- if (type === 'last') {
4087
- return 'آخری صفحے پر جائیں';
4088
- }
4089
- if (type === 'next') {
4090
- return 'اگلے صفحے پر جائیں';
4091
- }
4092
- // if (type === 'previous') {
4093
- return 'پچھلے صفحے پر جائیں';
4094
- }
4095
- }
4096
- }
4097
- }
4098
- };
4099
- export const viVN = {
4100
- components: {
4101
- MuiBreadcrumbs: {
4102
- defaultProps: {
4103
- expandText: 'Mở ra'
4104
- }
4105
- },
4106
- MuiTablePagination: {
4107
- defaultProps: {
4108
- getItemAriaLabel: type => {
4109
- if (type === 'first') {
4110
- return 'Tới trang đầu tiên';
4111
- }
4112
- if (type === 'last') {
4113
- return 'Tới trang cuối cùng';
4114
- }
4115
- if (type === 'next') {
4116
- return 'Tới trang tiếp theo';
4117
- }
4118
- // if (type === 'previous') {
4119
- return 'Về trang trước đó';
4120
- },
4121
- labelRowsPerPage: 'Số hàng mỗi trang:',
4122
- labelDisplayedRows: ({
4123
- from,
4124
- to,
4125
- count
4126
- }) => `${from}–${to} trong ${count !== -1 ? count : `nhiều hơn ${to}`}`
4127
- }
4128
- },
4129
- MuiRating: {
4130
- defaultProps: {
4131
- getLabelText: value => `${value} sao`,
4132
- emptyLabelText: 'Không có dữ liệu'
4133
- }
4134
- },
4135
- MuiAutocomplete: {
4136
- defaultProps: {
4137
- clearText: 'Xóa',
4138
- closeText: 'Đóng',
4139
- loadingText: 'Đang tải…',
4140
- noOptionsText: 'Không có lựa chọn nào',
4141
- openText: 'Mở'
4142
- }
4143
- },
4144
- MuiAlert: {
4145
- defaultProps: {
4146
- closeText: 'Đóng'
4147
- }
4148
- },
4149
- MuiPagination: {
4150
- defaultProps: {
4151
- 'aria-label': 'Thanh điều khiển trang',
4152
- getItemAriaLabel: (type, page, selected) => {
4153
- if (type === 'page') {
4154
- return `${selected ? '' : 'Tới '}trang ${page}`;
4155
- }
4156
- if (type === 'first') {
4157
- return 'Tới trang đầu tiên';
4158
- }
4159
- if (type === 'last') {
4160
- return 'Tới trang cuối cùng';
4161
- }
4162
- if (type === 'next') {
4163
- return 'Tới trang tiếp theo';
4164
- }
4165
- // if (type === 'previous') {
4166
- return 'Về trang trước đó';
4167
- }
4168
- }
4169
- }
4170
- }
4171
- };
4172
- export const zhCN = {
4173
- components: {
4174
- MuiBreadcrumbs: {
4175
- defaultProps: {
4176
- expandText: '展开'
4177
- }
4178
- },
4179
- MuiTablePagination: {
4180
- defaultProps: {
4181
- getItemAriaLabel: type => {
4182
- if (type === 'first') {
4183
- return '第一页';
4184
- }
4185
- if (type === 'last') {
4186
- return '最后一页';
4187
- }
4188
- if (type === 'next') {
4189
- return '下一页';
4190
- }
4191
- return '上一页';
4192
- },
4193
- labelRowsPerPage: '每页行数:',
4194
- labelDisplayedRows: ({
4195
- from,
4196
- to,
4197
- count
4198
- }) => `第 ${from} 条到第 ${to} 条,${count !== -1 ? `共 ${count} 条` : `至少 ${to} 条`}`
4199
- }
4200
- },
4201
- MuiRating: {
4202
- defaultProps: {
4203
- getLabelText: value => `${value} 颗星`,
4204
- emptyLabelText: '无标签'
4205
- }
4206
- },
4207
- MuiAutocomplete: {
4208
- defaultProps: {
4209
- clearText: '清空',
4210
- closeText: '关闭',
4211
- loadingText: '加载中……',
4212
- noOptionsText: '没有可用选项',
4213
- openText: '打开'
4214
- }
4215
- },
4216
- MuiAlert: {
4217
- defaultProps: {
4218
- closeText: '关闭'
4219
- }
4220
- }
4221
- }
4222
- };
4223
- export const zhHK = {
4224
- components: {
4225
- MuiBreadcrumbs: {
4226
- defaultProps: {
4227
- expandText: '展開'
4228
- }
4229
- },
4230
- MuiTablePagination: {
4231
- defaultProps: {
4232
- getItemAriaLabel: type => {
4233
- if (type === 'first') {
4234
- return '第一頁';
4235
- }
4236
- if (type === 'last') {
4237
- return '最後一頁';
4238
- }
4239
- if (type === 'next') {
4240
- return '下一頁';
4241
- }
4242
- return '上一頁';
4243
- },
4244
- labelRowsPerPage: '每頁行數:',
4245
- labelDisplayedRows: ({
4246
- from,
4247
- to,
4248
- count
4249
- }) => `第 ${from} 項至第 ${to} 項,${count !== -1 ? `共 ${count} 項` : `超過 ${to} 項`}`
4250
- }
4251
- },
4252
- MuiRating: {
4253
- defaultProps: {
4254
- getLabelText: value => `${value} 粒星`,
4255
- emptyLabelText: '無標籤'
4256
- }
4257
- },
4258
- MuiAutocomplete: {
4259
- defaultProps: {
4260
- clearText: '清除',
4261
- closeText: '關閉',
4262
- loadingText: '載入中……',
4263
- noOptionsText: '沒有可用選項',
4264
- openText: '開啟'
4265
- }
4266
- },
4267
- MuiAlert: {
4268
- defaultProps: {
4269
- closeText: '關閉'
4270
- }
4271
- }
4272
- }
4273
- };
4274
- export const zhTW = {
4275
- components: {
4276
- MuiBreadcrumbs: {
4277
- defaultProps: {
4278
- expandText: '展開'
4279
- }
4280
- },
4281
- MuiTablePagination: {
4282
- defaultProps: {
4283
- getItemAriaLabel: type => {
4284
- if (type === 'first') {
4285
- return '第一頁';
4286
- }
4287
- if (type === 'last') {
4288
- return '最後一頁';
4289
- }
4290
- if (type === 'next') {
4291
- return '下一頁';
4292
- }
4293
- return '上一頁';
4294
- },
4295
- labelRowsPerPage: '每頁數量:',
4296
- labelDisplayedRows: ({
4297
- from,
4298
- to,
4299
- count
4300
- }) => `${from} ~ ${to} / ${count !== -1 ? count : `${to} 以上`}`
4301
- }
4302
- },
4303
- MuiRating: {
4304
- defaultProps: {
4305
- getLabelText: value => `${value} 顆星`,
4306
- emptyLabelText: '無標籤'
4307
- }
4308
- },
4309
- MuiAutocomplete: {
4310
- defaultProps: {
4311
- clearText: '清空',
4312
- closeText: '關閉',
4313
- loadingText: '載入中…',
4314
- noOptionsText: '沒有可用選項',
4315
- openText: '打開'
4316
- }
4317
- },
4318
- MuiAlert: {
4319
- defaultProps: {
4320
- closeText: '關閉'
4321
- }
4322
- }
4323
- }
4324
- };