@carbon/react 0.17.0-rc.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (763) hide show
  1. package/README.md +1 -1
  2. package/es/_virtual/ResizeObserver.es.js +13 -0
  3. package/es/_virtual/_commonjsHelpers.js +29 -0
  4. package/es/_virtual/_rollupPluginBabelHelpers.js +354 -0
  5. package/es/{prefix.js → _virtual/index.js} +2 -2
  6. package/es/_virtual/rangePlugin.js +10 -0
  7. package/es/components/Accordion/Accordion.Skeleton.js +97 -0
  8. package/es/components/Accordion/Accordion.js +68 -0
  9. package/es/components/Accordion/AccordionItem.js +176 -0
  10. package/es/components/Accordion/index.js +9 -0
  11. package/es/components/AccordionItem/index.js +11 -0
  12. package/es/components/AspectRatio/AspectRatio.js +67 -0
  13. package/es/components/Breadcrumb/Breadcrumb.Skeleton.js +45 -0
  14. package/es/components/Breadcrumb/Breadcrumb.js +58 -0
  15. package/es/components/Breadcrumb/BreadcrumbItem.js +94 -0
  16. package/es/components/Button/Button.Skeleton.js +69 -0
  17. package/es/components/Button/Button.js +289 -0
  18. package/es/components/ButtonSet/ButtonSet.js +48 -0
  19. package/es/components/Checkbox/Checkbox.Skeleton.js +36 -0
  20. package/es/components/Checkbox/Checkbox.js +123 -0
  21. package/es/components/CodeSnippet/CodeSnippet.Skeleton.js +58 -0
  22. package/es/components/CodeSnippet/CodeSnippet.js +364 -0
  23. package/es/components/ComboBox/ComboBox.js +530 -0
  24. package/es/components/ComboBox/tools/filter.js +20 -0
  25. package/es/components/ComposedModal/ComposedModal.js +630 -0
  26. package/es/components/ComposedModal/index.js +19 -0
  27. package/es/components/ComposedModal/next/ComposedModal.js +223 -0
  28. package/es/components/ComposedModal/next/ModalFooter.js +213 -0
  29. package/es/components/ComposedModal/next/ModalHeader.js +127 -0
  30. package/es/components/ContentSwitcher/ContentSwitcher.js +185 -0
  31. package/es/components/ContentSwitcher/index.js +13 -0
  32. package/es/components/ContextMenu/useContextMenu.js +57 -0
  33. package/es/components/Copy/Copy.js +124 -0
  34. package/es/components/CopyButton/CopyButton.js +67 -0
  35. package/es/components/DangerButton/DangerButton.js +20 -0
  36. package/es/components/DataTable/DataTable.js +629 -0
  37. package/es/components/DataTable/Table.js +82 -0
  38. package/es/components/DataTable/TableActionList.js +17 -0
  39. package/es/components/DataTable/TableBatchAction.js +46 -0
  40. package/es/components/DataTable/TableBatchActions.js +110 -0
  41. package/es/components/DataTable/TableBody.js +37 -0
  42. package/es/components/DataTable/TableCell.js +16 -0
  43. package/es/components/DataTable/TableContainer.js +66 -0
  44. package/es/components/DataTable/TableExpandHeader.js +86 -0
  45. package/es/components/DataTable/TableExpandRow.js +93 -0
  46. package/es/components/DataTable/TableExpandedRow.js +75 -0
  47. package/es/components/DataTable/TableHead.js +16 -0
  48. package/es/components/DataTable/TableHeader.js +187 -0
  49. package/es/components/DataTable/TableRow.js +41 -0
  50. package/es/components/DataTable/TableSelectAll.js +84 -0
  51. package/es/components/DataTable/TableSelectRow.js +97 -0
  52. package/es/components/DataTable/TableToolbar.js +47 -0
  53. package/es/components/DataTable/TableToolbarAction.js +31 -0
  54. package/es/components/DataTable/TableToolbarContent.js +17 -0
  55. package/es/components/DataTable/TableToolbarMenu.js +61 -0
  56. package/es/components/DataTable/TableToolbarSearch.js +233 -0
  57. package/es/components/DataTable/index.js +72 -0
  58. package/es/components/DataTable/state/getDerivedStateFromProps.js +52 -0
  59. package/es/components/DataTable/state/sortStates.js +19 -0
  60. package/es/components/DataTable/state/sorting.js +93 -0
  61. package/es/components/DataTable/tools/cells.js +21 -0
  62. package/es/components/DataTable/tools/denormalize.js +43 -0
  63. package/es/components/DataTable/tools/filter.js +42 -0
  64. package/es/components/DataTable/tools/instanceId.js +21 -0
  65. package/es/components/DataTable/tools/normalize.js +78 -0
  66. package/es/components/DataTable/tools/sorting.js +110 -0
  67. package/es/components/DataTableSkeleton/DataTableSkeleton.js +133 -0
  68. package/es/components/DatePicker/DatePicker.Skeleton.js +69 -0
  69. package/es/components/DatePicker/DatePicker.js +622 -0
  70. package/es/components/DatePicker/index.js +15 -0
  71. package/es/components/DatePicker/next/DatePicker.js +558 -0
  72. package/es/components/DatePicker/plugins/appendToPlugin.js +58 -0
  73. package/es/components/DatePicker/plugins/fixEventsPlugin.js +89 -0
  74. package/es/components/DatePicker/plugins/rangePlugin.js +51 -0
  75. package/es/components/DatePickerInput/DatePickerInput.js +271 -0
  76. package/es/components/DatePickerInput/index.js +15 -0
  77. package/es/components/DatePickerInput/next/DatePickerInput.js +244 -0
  78. package/es/components/Dropdown/Dropdown.Skeleton.js +46 -0
  79. package/es/components/Dropdown/Dropdown.js +322 -0
  80. package/es/components/ErrorBoundary/ErrorBoundary.js +96 -0
  81. package/es/components/ErrorBoundary/ErrorBoundaryContext.js +16 -0
  82. package/es/components/ExpandableSearch/ExpandableSearch.js +61 -0
  83. package/es/components/ExpandableSearch/index.js +9 -0
  84. package/es/components/FeatureFlags/index.js +169 -0
  85. package/es/components/FileUploader/FileUploader.Skeleton.js +43 -0
  86. package/es/components/FileUploader/FileUploader.js +284 -0
  87. package/es/components/FileUploader/FileUploaderButton.js +198 -0
  88. package/es/components/FileUploader/FileUploaderDropContainer.js +223 -0
  89. package/es/components/FileUploader/FileUploaderItem.js +130 -0
  90. package/es/components/FileUploader/Filename.js +82 -0
  91. package/es/components/FileUploader/index.js +14 -0
  92. package/es/components/FluidForm/FluidForm.js +46 -0
  93. package/es/components/FluidForm/FormContext.js +14 -0
  94. package/es/components/Form/Form.js +41 -0
  95. package/es/components/FormGroup/FormGroup.js +87 -0
  96. package/es/components/FormItem/FormItem.js +41 -0
  97. package/es/components/FormLabel/FormLabel.js +48 -0
  98. package/es/components/Grid/CSSGrid.js +139 -0
  99. package/es/components/Grid/Column.js +363 -0
  100. package/es/components/Grid/ColumnHang.js +51 -0
  101. package/es/components/Grid/FlexGrid.js +76 -0
  102. package/es/components/Grid/Grid.js +63 -0
  103. package/es/components/Grid/GridContext.js +60 -0
  104. package/es/components/Grid/Row.js +65 -0
  105. package/es/components/Heading/index.js +62 -0
  106. package/es/components/Icon/Icon.Skeleton.js +45 -0
  107. package/es/components/IconButton/index.js +88 -0
  108. package/es/components/InlineCheckbox/InlineCheckbox.js +122 -0
  109. package/es/components/InlineLoading/InlineLoading.js +111 -0
  110. package/es/components/Layer/LayerContext.js +12 -0
  111. package/es/components/Layer/index.js +62 -0
  112. package/es/components/Link/Link.js +95 -0
  113. package/es/components/ListBox/ListBox.js +139 -0
  114. package/es/components/ListBox/ListBoxField.js +62 -0
  115. package/es/components/ListBox/ListBoxMenu.js +56 -0
  116. package/es/components/ListBox/ListBoxMenuIcon.js +61 -0
  117. package/es/components/ListBox/ListBoxMenuItem.js +87 -0
  118. package/es/components/ListBox/ListBoxPropTypes.js +14 -0
  119. package/es/components/ListBox/ListBoxSelection.js +148 -0
  120. package/es/components/ListBox/index.js +20 -0
  121. package/es/components/ListBox/next/ListBoxSelection.js +155 -0
  122. package/es/components/ListBox/next/ListBoxTrigger.js +68 -0
  123. package/es/components/ListItem/ListItem.js +41 -0
  124. package/es/components/Loading/Loading.js +102 -0
  125. package/es/components/Menu/Menu.js +328 -0
  126. package/es/components/Menu/MenuDivider.js +19 -0
  127. package/es/components/Menu/MenuGroup.js +34 -0
  128. package/es/components/Menu/MenuItem.js +58 -0
  129. package/es/components/Menu/MenuOption.js +250 -0
  130. package/es/components/Menu/MenuRadioGroup.js +50 -0
  131. package/es/components/Menu/MenuRadioGroupOptions.js +64 -0
  132. package/es/components/Menu/MenuSelectableItem.js +57 -0
  133. package/es/components/Menu/_utils.js +177 -0
  134. package/es/components/Menu/index.js +25 -0
  135. package/es/components/Modal/Modal.js +343 -0
  136. package/es/components/Modal/index.js +15 -0
  137. package/es/components/Modal/next/Modal.js +274 -0
  138. package/es/components/ModalWrapper/ModalWrapper.js +164 -0
  139. package/es/components/MultiSelect/FilterableMultiSelect.js +575 -0
  140. package/es/components/MultiSelect/MultiSelect.js +467 -0
  141. package/es/components/MultiSelect/MultiSelectPropTypes.js +41 -0
  142. package/es/components/MultiSelect/index.js +23 -0
  143. package/es/components/MultiSelect/next/FilterableMultiSelect.js +531 -0
  144. package/es/components/MultiSelect/tools/itemToString.js +24 -0
  145. package/es/components/MultiSelect/tools/sorting.js +53 -0
  146. package/es/components/Notification/Notification.js +530 -0
  147. package/es/components/Notification/index.js +42 -0
  148. package/es/components/Notification/next/Notification.js +663 -0
  149. package/es/components/NumberInput/NumberInput.Skeleton.js +44 -0
  150. package/es/components/NumberInput/NumberInput.js +515 -0
  151. package/es/components/OrderedList/OrderedList.js +66 -0
  152. package/es/components/OverflowMenu/OverflowMenu.js +516 -0
  153. package/es/components/OverflowMenu/index.js +14 -0
  154. package/es/components/OverflowMenuItem/OverflowMenuItem.js +213 -0
  155. package/es/components/OverflowMenuItem/index.js +12 -0
  156. package/es/components/OverflowMenuV2/index.js +137 -0
  157. package/es/components/Pagination/Pagination.Skeleton.js +48 -0
  158. package/es/components/Pagination/Pagination.js +420 -0
  159. package/es/components/Pagination/experimental/PageSelector.js +81 -0
  160. package/es/components/Pagination/experimental/Pagination.js +281 -0
  161. package/es/components/Pagination/index.js +14 -0
  162. package/es/components/Pagination/next/Pagination.js +401 -0
  163. package/es/components/PaginationNav/PaginationNav.js +436 -0
  164. package/es/components/Popover/index.js +118 -0
  165. package/es/components/PrimaryButton/PrimaryButton.js +20 -0
  166. package/es/components/ProgressBar/ProgressBar.js +110 -0
  167. package/es/components/ProgressIndicator/ProgressIndicator.Skeleton.js +50 -0
  168. package/es/components/ProgressIndicator/ProgressIndicator.js +323 -0
  169. package/es/components/ProgressIndicator/index.js +15 -0
  170. package/es/components/ProgressIndicator/next/ProgressIndicator.js +117 -0
  171. package/es/components/RadioButton/RadioButton.Skeleton.js +37 -0
  172. package/es/components/RadioButton/RadioButton.js +172 -0
  173. package/es/components/RadioButton/index.js +15 -0
  174. package/es/components/RadioButton/next/RadioButton.js +128 -0
  175. package/es/components/RadioButtonGroup/RadioButtonGroup.js +190 -0
  176. package/es/components/RadioButtonGroup/index.js +15 -0
  177. package/es/components/RadioButtonGroup/next/RadioButtonGroup.js +141 -0
  178. package/es/components/RadioTile/RadioTile.js +140 -0
  179. package/es/components/Search/Search.Skeleton.js +50 -0
  180. package/es/components/Search/Search.js +289 -0
  181. package/es/components/Search/index.js +15 -0
  182. package/es/components/Search/next/Search.js +268 -0
  183. package/es/components/SearchFilterButton/SearchFilterButton.js +61 -0
  184. package/es/components/SearchLayoutButton/SearchLayoutButton.js +151 -0
  185. package/es/components/SecondaryButton/SecondaryButton.js +20 -0
  186. package/es/components/Select/Select.Skeleton.js +46 -0
  187. package/es/components/Select/Select.js +203 -0
  188. package/es/components/SelectItem/SelectItem.js +70 -0
  189. package/es/components/SelectItemGroup/SelectItemGroup.js +60 -0
  190. package/es/components/SkeletonIcon/SkeletonIcon.js +42 -0
  191. package/es/components/SkeletonPlaceholder/SkeletonPlaceholder.js +37 -0
  192. package/es/components/SkeletonText/SkeletonText.js +114 -0
  193. package/es/components/Slider/Slider.Skeleton.js +56 -0
  194. package/es/components/Slider/Slider.js +639 -0
  195. package/es/components/Slider/index.js +14 -0
  196. package/es/components/Stack/Stack.js +102 -0
  197. package/es/components/Stack/index.js +26 -0
  198. package/es/components/StructuredList/StructuredList.Skeleton.js +82 -0
  199. package/es/components/StructuredList/StructuredList.js +307 -0
  200. package/es/components/StructuredList/index.js +43 -0
  201. package/es/components/StructuredList/next/StructuredList.js +326 -0
  202. package/es/components/Switch/Switch.js +124 -0
  203. package/es/components/Tab/Tab.js +191 -0
  204. package/es/components/Tab/index.js +15 -0
  205. package/es/components/TabContent/TabContent.js +77 -0
  206. package/es/components/Tabs/Tabs.Skeleton.js +53 -0
  207. package/es/components/Tabs/Tabs.js +618 -0
  208. package/es/components/Tabs/index.js +19 -0
  209. package/es/components/Tabs/next/Tabs.Skeleton.js +53 -0
  210. package/es/components/Tabs/next/Tabs.js +648 -0
  211. package/es/components/Tabs/next/usePressable.js +145 -0
  212. package/es/components/Tag/Tag.Skeleton.js +40 -0
  213. package/es/components/Tag/Tag.js +146 -0
  214. package/es/components/Text/Text.js +98 -0
  215. package/es/components/Text/TextDirectionContext.js +12 -0
  216. package/es/components/Text/createTextComponent.js +33 -0
  217. package/es/components/Text/index.js +13 -0
  218. package/es/components/TextArea/TextArea.Skeleton.js +44 -0
  219. package/es/components/TextArea/TextArea.js +220 -0
  220. package/es/components/TextInput/ControlledPasswordInput.js +234 -0
  221. package/es/components/TextInput/PasswordInput.js +286 -0
  222. package/es/components/TextInput/TextInput.Skeleton.js +44 -0
  223. package/es/components/TextInput/TextInput.js +239 -0
  224. package/es/components/TextInput/index.js +20 -0
  225. package/es/components/TextInput/util.js +33 -0
  226. package/es/components/Theme/index.js +103 -0
  227. package/es/components/Tile/Tile.js +767 -0
  228. package/es/components/Tile/index.js +19 -0
  229. package/es/components/Tile/next/Tile.js +608 -0
  230. package/es/components/TileGroup/TileGroup.js +164 -0
  231. package/es/components/TileGroup/index.js +13 -0
  232. package/es/components/TimePicker/TimePicker.js +256 -0
  233. package/es/components/TimePicker/index.js +15 -0
  234. package/es/components/TimePicker/next/TimePicker.js +218 -0
  235. package/es/components/TimePickerSelect/TimePickerSelect.js +82 -0
  236. package/es/components/TimePickerSelect/index.js +15 -0
  237. package/es/components/TimePickerSelect/next/TimePickerSelect.js +71 -0
  238. package/es/components/Toggle/Toggle.Skeleton.js +74 -0
  239. package/es/components/Toggle/Toggle.js +120 -0
  240. package/es/components/Toggle/index.js +19 -0
  241. package/es/components/Toggle/next/Toggle.js +158 -0
  242. package/es/components/ToggleSmall/ToggleSmall.Skeleton.js +71 -0
  243. package/es/components/ToggleSmall/ToggleSmall.js +104 -0
  244. package/es/components/Toolbar/Toolbar.js +121 -0
  245. package/es/components/ToolbarSearch/ToolbarSearch.js +168 -0
  246. package/es/components/Tooltip/next/DefinitionTooltip.js +122 -0
  247. package/es/components/Tooltip/next/Tooltip.js +154 -0
  248. package/es/components/TreeView/TreeNode.js +325 -0
  249. package/es/components/TreeView/TreeView.js +252 -0
  250. package/es/components/TreeView/index.js +13 -0
  251. package/es/components/UIShell/Content.js +50 -0
  252. package/es/components/UIShell/Header.js +37 -0
  253. package/es/components/UIShell/HeaderContainer.js +44 -0
  254. package/es/components/UIShell/HeaderGlobalAction.js +87 -0
  255. package/es/components/UIShell/HeaderGlobalBar.js +20 -0
  256. package/es/components/UIShell/HeaderMenu.js +240 -0
  257. package/es/components/UIShell/HeaderMenuButton.js +69 -0
  258. package/es/components/UIShell/HeaderMenuItem.js +73 -0
  259. package/es/components/UIShell/HeaderName.js +62 -0
  260. package/es/components/UIShell/HeaderNavigation.js +100 -0
  261. package/es/components/UIShell/HeaderPanel.js +52 -0
  262. package/es/components/UIShell/HeaderSideNavItems.js +50 -0
  263. package/es/components/UIShell/Link.js +49 -0
  264. package/es/components/UIShell/SideNav.js +227 -0
  265. package/es/components/UIShell/SideNavDetails.js +46 -0
  266. package/es/components/UIShell/SideNavDivider.js +30 -0
  267. package/es/components/UIShell/SideNavFooter.js +78 -0
  268. package/es/components/UIShell/SideNavHeader.js +50 -0
  269. package/es/components/UIShell/SideNavIcon.js +49 -0
  270. package/es/components/UIShell/SideNavItem.js +47 -0
  271. package/es/components/UIShell/SideNavItems.js +56 -0
  272. package/es/components/UIShell/SideNavLink.js +74 -0
  273. package/es/components/UIShell/SideNavLinkText.js +41 -0
  274. package/es/components/UIShell/SideNavMenu.js +198 -0
  275. package/es/components/UIShell/SideNavMenuItem.js +57 -0
  276. package/es/components/UIShell/SideNavSwitcher.js +80 -0
  277. package/es/components/UIShell/SkipToContent.js +57 -0
  278. package/es/components/UIShell/Switcher.js +45 -0
  279. package/es/components/UIShell/SwitcherDivider.js +35 -0
  280. package/es/components/UIShell/SwitcherItem.js +62 -0
  281. package/es/components/UIShell/_utils.js +10 -0
  282. package/es/components/UIShell/index.js +17 -0
  283. package/es/components/UIShell/next/HeaderNavigation.js +52 -0
  284. package/es/components/UIShell/next/SideNavMenu.js +160 -0
  285. package/es/components/UnorderedList/UnorderedList.js +59 -0
  286. package/es/index.js +188 -2
  287. package/es/internal/ClickListener.js +101 -0
  288. package/es/internal/ComponentToggle.js +43 -0
  289. package/es/internal/FeatureFlags.js +52 -0
  290. package/es/internal/FloatingMenu.js +483 -0
  291. package/es/internal/OptimizedResize.js +65 -0
  292. package/es/internal/Selection.js +243 -0
  293. package/es/internal/createClassWrapper.js +31 -0
  294. package/es/internal/deprecateFieldOnObject.js +26 -0
  295. package/es/internal/environment.js +15 -0
  296. package/es/internal/focus/index.js +16 -0
  297. package/es/internal/keyboard/keys.js +65 -0
  298. package/es/internal/keyboard/match.js +82 -0
  299. package/es/internal/keyboard/navigation.js +61 -0
  300. package/es/internal/useControllableState.js +86 -0
  301. package/es/internal/useDelayedState.js +54 -0
  302. package/es/internal/useEffectOnce.js +31 -0
  303. package/es/internal/useId.js +59 -0
  304. package/es/internal/useIsomorphicEffect.js +13 -0
  305. package/es/internal/useMatchMedia.js +51 -0
  306. package/es/internal/useMergedRefs.js +31 -0
  307. package/es/internal/useNoInteractiveChildren.js +92 -0
  308. package/es/internal/useNormalizedInputProps.js +88 -0
  309. package/es/internal/usePrefix.js +15 -0
  310. package/es/internal/useSavedCallback.js +32 -0
  311. package/es/internal/warning.js +28 -0
  312. package/es/internal/wrapFocus.js +75 -0
  313. package/es/node_modules/flatpickr/dist/l10n/index.js +1423 -0
  314. package/es/node_modules/flatpickr/dist/plugins/rangePlugin.js +196 -0
  315. package/es/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +1112 -0
  316. package/es/node_modules/use-resize-observer/polyfilled.js +112 -0
  317. package/es/prop-types/AriaPropTypes.js +16 -0
  318. package/es/prop-types/deprecate.js +33 -0
  319. package/es/prop-types/isRequiredOneOf.js +47 -0
  320. package/es/prop-types/requiredIfGivenPropIsTruthy.js +29 -0
  321. package/es/prop-types/requiredIfValueExists.js +32 -0
  322. package/es/prop-types/types.js +10 -0
  323. package/es/tools/array.js +32 -0
  324. package/es/tools/events.js +35 -0
  325. package/es/tools/mergeRefs.js +31 -0
  326. package/es/tools/setupGetInstanceId.js +19 -0
  327. package/es/tools/toggleClass.js +14 -0
  328. package/es/tools/uniqueId.js +15 -0
  329. package/es/tools/wrapComponent.js +42 -0
  330. package/icons/es/index.js +1 -1
  331. package/icons/lib/index.js +7 -1952
  332. package/index.scss +1 -0
  333. package/lib/_virtual/ResizeObserver.es.js +17 -0
  334. package/lib/_virtual/_commonjsHelpers.js +35 -0
  335. package/lib/_virtual/_rollupPluginBabelHelpers.js +383 -0
  336. package/lib/{prefix.js → _virtual/index.js} +4 -2
  337. package/lib/_virtual/rangePlugin.js +14 -0
  338. package/lib/components/Accordion/Accordion.Skeleton.js +107 -0
  339. package/lib/components/Accordion/Accordion.js +97 -0
  340. package/lib/components/Accordion/AccordionItem.js +186 -0
  341. package/lib/components/Accordion/index.js +16 -0
  342. package/lib/components/AccordionItem/index.js +16 -0
  343. package/lib/components/AspectRatio/AspectRatio.js +77 -0
  344. package/lib/components/Breadcrumb/Breadcrumb.Skeleton.js +55 -0
  345. package/lib/components/Breadcrumb/Breadcrumb.js +68 -0
  346. package/lib/components/Breadcrumb/BreadcrumbItem.js +104 -0
  347. package/lib/components/Button/Button.Skeleton.js +98 -0
  348. package/lib/components/Button/Button.js +299 -0
  349. package/lib/components/ButtonSet/ButtonSet.js +58 -0
  350. package/lib/components/Checkbox/Checkbox.Skeleton.js +46 -0
  351. package/lib/components/Checkbox/Checkbox.js +133 -0
  352. package/lib/components/CodeSnippet/CodeSnippet.Skeleton.js +68 -0
  353. package/lib/components/CodeSnippet/CodeSnippet.js +375 -0
  354. package/lib/components/ComboBox/ComboBox.js +541 -0
  355. package/lib/components/ComboBox/tools/filter.js +24 -0
  356. package/lib/components/ComposedModal/ComposedModal.js +643 -0
  357. package/lib/components/ComposedModal/index.js +45 -0
  358. package/lib/components/ComposedModal/next/ComposedModal.js +234 -0
  359. package/lib/components/ComposedModal/next/ModalFooter.js +223 -0
  360. package/lib/components/ComposedModal/next/ModalHeader.js +137 -0
  361. package/lib/components/ContentSwitcher/ContentSwitcher.js +195 -0
  362. package/lib/components/ContentSwitcher/index.js +17 -0
  363. package/lib/components/ContextMenu/useContextMenu.js +61 -0
  364. package/lib/components/Copy/Copy.js +154 -0
  365. package/lib/components/CopyButton/CopyButton.js +77 -0
  366. package/lib/components/DangerButton/DangerButton.js +28 -0
  367. package/lib/components/DataTable/DataTable.js +639 -0
  368. package/lib/components/DataTable/Table.js +93 -0
  369. package/lib/components/DataTable/TableActionList.js +21 -0
  370. package/lib/components/DataTable/TableBatchAction.js +55 -0
  371. package/lib/components/DataTable/TableBatchActions.js +120 -0
  372. package/lib/components/DataTable/TableBody.js +46 -0
  373. package/lib/components/DataTable/TableCell.js +20 -0
  374. package/lib/components/DataTable/TableContainer.js +76 -0
  375. package/lib/components/DataTable/TableExpandHeader.js +96 -0
  376. package/lib/components/DataTable/TableExpandRow.js +103 -0
  377. package/lib/components/DataTable/TableExpandedRow.js +85 -0
  378. package/lib/components/DataTable/TableHead.js +20 -0
  379. package/lib/components/DataTable/TableHeader.js +197 -0
  380. package/lib/components/DataTable/TableRow.js +52 -0
  381. package/lib/components/DataTable/TableSelectAll.js +94 -0
  382. package/lib/components/DataTable/TableSelectRow.js +107 -0
  383. package/lib/components/DataTable/TableToolbar.js +57 -0
  384. package/lib/components/DataTable/TableToolbarAction.js +40 -0
  385. package/lib/components/DataTable/TableToolbarContent.js +21 -0
  386. package/lib/components/DataTable/TableToolbarMenu.js +71 -0
  387. package/lib/components/DataTable/TableToolbarSearch.js +243 -0
  388. package/lib/components/DataTable/index.js +76 -0
  389. package/lib/components/DataTable/state/getDerivedStateFromProps.js +56 -0
  390. package/lib/components/DataTable/state/sortStates.js +23 -0
  391. package/lib/components/DataTable/state/sorting.js +100 -0
  392. package/lib/components/DataTable/tools/cells.js +25 -0
  393. package/lib/components/DataTable/tools/denormalize.js +47 -0
  394. package/lib/components/DataTable/tools/filter.js +46 -0
  395. package/lib/components/DataTable/tools/instanceId.js +25 -0
  396. package/lib/components/DataTable/tools/normalize.js +82 -0
  397. package/lib/components/DataTable/tools/sorting.js +117 -0
  398. package/lib/components/DataTableSkeleton/DataTableSkeleton.js +143 -0
  399. package/lib/components/DatePicker/DatePicker.Skeleton.js +79 -0
  400. package/lib/components/DatePicker/DatePicker.js +633 -0
  401. package/lib/components/DatePicker/index.js +39 -0
  402. package/lib/components/DatePicker/next/DatePicker.js +569 -0
  403. package/lib/components/DatePicker/plugins/appendToPlugin.js +62 -0
  404. package/lib/components/DatePicker/plugins/fixEventsPlugin.js +93 -0
  405. package/lib/components/DatePicker/plugins/rangePlugin.js +55 -0
  406. package/lib/components/DatePickerInput/DatePickerInput.js +281 -0
  407. package/lib/components/DatePickerInput/index.js +39 -0
  408. package/lib/components/DatePickerInput/next/DatePickerInput.js +254 -0
  409. package/lib/components/Dropdown/Dropdown.Skeleton.js +56 -0
  410. package/lib/components/Dropdown/Dropdown.js +332 -0
  411. package/lib/components/ErrorBoundary/ErrorBoundary.js +105 -0
  412. package/lib/components/ErrorBoundary/ErrorBoundaryContext.js +20 -0
  413. package/lib/components/ExpandableSearch/ExpandableSearch.js +70 -0
  414. package/lib/components/ExpandableSearch/index.js +16 -0
  415. package/lib/components/FeatureFlags/index.js +181 -0
  416. package/lib/components/FileUploader/FileUploader.Skeleton.js +53 -0
  417. package/lib/components/FileUploader/FileUploader.js +313 -0
  418. package/lib/components/FileUploader/FileUploaderButton.js +227 -0
  419. package/lib/components/FileUploader/FileUploaderDropContainer.js +233 -0
  420. package/lib/components/FileUploader/FileUploaderItem.js +159 -0
  421. package/lib/components/FileUploader/Filename.js +91 -0
  422. package/lib/components/FileUploader/index.js +38 -0
  423. package/lib/components/FluidForm/FluidForm.js +56 -0
  424. package/lib/components/FluidForm/FormContext.js +18 -0
  425. package/lib/components/Form/Form.js +51 -0
  426. package/lib/components/FormGroup/FormGroup.js +97 -0
  427. package/lib/components/FormItem/FormItem.js +51 -0
  428. package/lib/components/FormLabel/FormLabel.js +77 -0
  429. package/lib/components/Grid/CSSGrid.js +149 -0
  430. package/lib/components/Grid/Column.js +392 -0
  431. package/lib/components/Grid/ColumnHang.js +61 -0
  432. package/lib/components/Grid/FlexGrid.js +86 -0
  433. package/lib/components/Grid/Grid.js +72 -0
  434. package/lib/components/Grid/GridContext.js +88 -0
  435. package/lib/components/Grid/Row.js +75 -0
  436. package/lib/components/Heading/index.js +72 -0
  437. package/lib/components/Icon/Icon.Skeleton.js +55 -0
  438. package/lib/components/IconButton/index.js +97 -0
  439. package/lib/components/InlineCheckbox/InlineCheckbox.js +131 -0
  440. package/lib/components/InlineLoading/InlineLoading.js +121 -0
  441. package/lib/components/Layer/LayerContext.js +20 -0
  442. package/lib/components/Layer/index.js +72 -0
  443. package/lib/components/Link/Link.js +105 -0
  444. package/lib/components/ListBox/ListBox.js +149 -0
  445. package/lib/components/ListBox/ListBoxField.js +71 -0
  446. package/lib/components/ListBox/ListBoxMenu.js +65 -0
  447. package/lib/components/ListBox/ListBoxMenuIcon.js +72 -0
  448. package/lib/components/ListBox/ListBoxMenuItem.js +97 -0
  449. package/lib/components/ListBox/ListBoxPropTypes.js +42 -0
  450. package/lib/components/ListBox/ListBoxSelection.js +159 -0
  451. package/lib/components/ListBox/index.js +25 -0
  452. package/lib/components/ListBox/next/ListBoxSelection.js +166 -0
  453. package/lib/components/ListBox/next/ListBoxTrigger.js +79 -0
  454. package/lib/components/ListItem/ListItem.js +51 -0
  455. package/lib/components/Loading/Loading.js +112 -0
  456. package/lib/components/Menu/Menu.js +339 -0
  457. package/lib/components/Menu/MenuDivider.js +27 -0
  458. package/lib/components/Menu/MenuGroup.js +43 -0
  459. package/lib/components/Menu/MenuItem.js +67 -0
  460. package/lib/components/Menu/MenuOption.js +260 -0
  461. package/lib/components/Menu/MenuRadioGroup.js +59 -0
  462. package/lib/components/Menu/MenuRadioGroupOptions.js +73 -0
  463. package/lib/components/Menu/MenuSelectableItem.js +66 -0
  464. package/lib/components/Menu/_utils.js +191 -0
  465. package/lib/components/Menu/index.js +30 -0
  466. package/lib/components/Modal/Modal.js +353 -0
  467. package/lib/components/Modal/index.js +39 -0
  468. package/lib/components/Modal/next/Modal.js +284 -0
  469. package/lib/components/ModalWrapper/ModalWrapper.js +173 -0
  470. package/lib/components/MultiSelect/FilterableMultiSelect.js +587 -0
  471. package/lib/components/MultiSelect/MultiSelect.js +479 -0
  472. package/lib/components/MultiSelect/MultiSelectPropTypes.js +49 -0
  473. package/lib/components/MultiSelect/index.js +47 -0
  474. package/lib/components/MultiSelect/next/FilterableMultiSelect.js +543 -0
  475. package/lib/components/MultiSelect/tools/itemToString.js +32 -0
  476. package/lib/components/MultiSelect/tools/sorting.js +58 -0
  477. package/lib/components/Notification/Notification.js +544 -0
  478. package/lib/components/Notification/index.js +51 -0
  479. package/lib/components/Notification/next/Notification.js +677 -0
  480. package/lib/components/NumberInput/NumberInput.Skeleton.js +54 -0
  481. package/lib/components/NumberInput/NumberInput.js +546 -0
  482. package/lib/components/OrderedList/OrderedList.js +76 -0
  483. package/lib/components/OverflowMenu/OverflowMenu.js +547 -0
  484. package/lib/components/OverflowMenu/index.js +38 -0
  485. package/lib/components/OverflowMenuItem/OverflowMenuItem.js +242 -0
  486. package/lib/components/OverflowMenuItem/index.js +16 -0
  487. package/lib/components/OverflowMenuV2/index.js +147 -0
  488. package/lib/components/Pagination/Pagination.Skeleton.js +58 -0
  489. package/lib/components/Pagination/Pagination.js +430 -0
  490. package/lib/components/Pagination/experimental/PageSelector.js +91 -0
  491. package/lib/components/Pagination/experimental/Pagination.js +310 -0
  492. package/lib/components/Pagination/index.js +38 -0
  493. package/lib/components/Pagination/next/Pagination.js +411 -0
  494. package/lib/components/PaginationNav/PaginationNav.js +465 -0
  495. package/lib/components/Popover/index.js +129 -0
  496. package/lib/components/PrimaryButton/PrimaryButton.js +28 -0
  497. package/lib/components/ProgressBar/ProgressBar.js +120 -0
  498. package/lib/components/ProgressIndicator/ProgressIndicator.Skeleton.js +60 -0
  499. package/lib/components/ProgressIndicator/ProgressIndicator.js +334 -0
  500. package/lib/components/ProgressIndicator/index.js +39 -0
  501. package/lib/components/ProgressIndicator/next/ProgressIndicator.js +127 -0
  502. package/lib/components/RadioButton/RadioButton.Skeleton.js +47 -0
  503. package/lib/components/RadioButton/RadioButton.js +183 -0
  504. package/lib/components/RadioButton/index.js +39 -0
  505. package/lib/components/RadioButton/next/RadioButton.js +138 -0
  506. package/lib/components/RadioButtonGroup/RadioButtonGroup.js +200 -0
  507. package/lib/components/RadioButtonGroup/index.js +39 -0
  508. package/lib/components/RadioButtonGroup/next/RadioButtonGroup.js +151 -0
  509. package/lib/components/RadioTile/RadioTile.js +150 -0
  510. package/lib/components/Search/Search.Skeleton.js +60 -0
  511. package/lib/components/Search/Search.js +299 -0
  512. package/lib/components/Search/index.js +39 -0
  513. package/lib/components/Search/next/Search.js +278 -0
  514. package/lib/components/SearchFilterButton/SearchFilterButton.js +70 -0
  515. package/lib/components/SearchLayoutButton/SearchLayoutButton.js +160 -0
  516. package/lib/components/SecondaryButton/SecondaryButton.js +28 -0
  517. package/lib/components/Select/Select.Skeleton.js +56 -0
  518. package/lib/components/Select/Select.js +213 -0
  519. package/lib/components/SelectItem/SelectItem.js +80 -0
  520. package/lib/components/SelectItemGroup/SelectItemGroup.js +89 -0
  521. package/lib/components/SkeletonIcon/SkeletonIcon.js +52 -0
  522. package/lib/components/SkeletonPlaceholder/SkeletonPlaceholder.js +47 -0
  523. package/lib/components/SkeletonText/SkeletonText.js +124 -0
  524. package/lib/components/Slider/Slider.Skeleton.js +66 -0
  525. package/lib/components/Slider/Slider.js +669 -0
  526. package/lib/components/Slider/index.js +38 -0
  527. package/lib/components/Stack/Stack.js +112 -0
  528. package/lib/components/Stack/index.js +35 -0
  529. package/lib/components/StructuredList/StructuredList.Skeleton.js +92 -0
  530. package/lib/components/StructuredList/StructuredList.js +322 -0
  531. package/lib/components/StructuredList/index.js +52 -0
  532. package/lib/components/StructuredList/next/StructuredList.js +341 -0
  533. package/lib/components/Switch/Switch.js +134 -0
  534. package/lib/components/Tab/Tab.js +220 -0
  535. package/lib/components/Tab/index.js +39 -0
  536. package/lib/components/TabContent/TabContent.js +87 -0
  537. package/lib/components/Tabs/Tabs.Skeleton.js +63 -0
  538. package/lib/components/Tabs/Tabs.js +629 -0
  539. package/lib/components/Tabs/index.js +47 -0
  540. package/lib/components/Tabs/next/Tabs.Skeleton.js +63 -0
  541. package/lib/components/Tabs/next/Tabs.js +664 -0
  542. package/lib/components/Tabs/next/usePressable.js +149 -0
  543. package/lib/components/Tag/Tag.Skeleton.js +50 -0
  544. package/lib/components/Tag/Tag.js +156 -0
  545. package/lib/components/Text/Text.js +107 -0
  546. package/lib/components/Text/TextDirectionContext.js +16 -0
  547. package/lib/components/Text/createTextComponent.js +41 -0
  548. package/lib/components/Text/index.js +17 -0
  549. package/lib/components/TextArea/TextArea.Skeleton.js +54 -0
  550. package/lib/components/TextArea/TextArea.js +230 -0
  551. package/lib/components/TextInput/ControlledPasswordInput.js +244 -0
  552. package/lib/components/TextInput/PasswordInput.js +315 -0
  553. package/lib/components/TextInput/TextInput.Skeleton.js +54 -0
  554. package/lib/components/TextInput/TextInput.js +268 -0
  555. package/lib/components/TextInput/index.js +25 -0
  556. package/lib/components/TextInput/util.js +37 -0
  557. package/lib/components/Theme/index.js +116 -0
  558. package/lib/components/Tile/Tile.js +782 -0
  559. package/lib/components/Tile/index.js +48 -0
  560. package/lib/components/Tile/next/Tile.js +623 -0
  561. package/lib/components/TileGroup/TileGroup.js +173 -0
  562. package/lib/components/TileGroup/index.js +17 -0
  563. package/lib/components/TimePicker/TimePicker.js +266 -0
  564. package/lib/components/TimePicker/index.js +39 -0
  565. package/lib/components/TimePicker/next/TimePicker.js +228 -0
  566. package/lib/components/TimePickerSelect/TimePickerSelect.js +92 -0
  567. package/lib/components/TimePickerSelect/index.js +39 -0
  568. package/lib/components/TimePickerSelect/next/TimePickerSelect.js +81 -0
  569. package/lib/components/Toggle/Toggle.Skeleton.js +84 -0
  570. package/lib/components/Toggle/Toggle.js +130 -0
  571. package/lib/components/Toggle/index.js +23 -0
  572. package/lib/components/Toggle/next/Toggle.js +169 -0
  573. package/lib/components/ToggleSmall/ToggleSmall.Skeleton.js +81 -0
  574. package/lib/components/ToggleSmall/ToggleSmall.js +114 -0
  575. package/lib/components/Toolbar/Toolbar.js +135 -0
  576. package/lib/components/ToolbarSearch/ToolbarSearch.js +178 -0
  577. package/lib/components/Tooltip/next/DefinitionTooltip.js +132 -0
  578. package/lib/components/Tooltip/next/Tooltip.js +164 -0
  579. package/lib/components/TreeView/TreeNode.js +335 -0
  580. package/lib/components/TreeView/TreeView.js +281 -0
  581. package/lib/components/TreeView/index.js +18 -0
  582. package/lib/components/UIShell/Content.js +60 -0
  583. package/lib/components/UIShell/Header.js +47 -0
  584. package/lib/components/UIShell/HeaderContainer.js +53 -0
  585. package/lib/components/UIShell/HeaderGlobalAction.js +97 -0
  586. package/lib/components/UIShell/HeaderGlobalBar.js +24 -0
  587. package/lib/components/UIShell/HeaderMenu.js +250 -0
  588. package/lib/components/UIShell/HeaderMenuButton.js +79 -0
  589. package/lib/components/UIShell/HeaderMenuItem.js +83 -0
  590. package/lib/components/UIShell/HeaderName.js +72 -0
  591. package/lib/components/UIShell/HeaderNavigation.js +110 -0
  592. package/lib/components/UIShell/HeaderPanel.js +62 -0
  593. package/lib/components/UIShell/HeaderSideNavItems.js +60 -0
  594. package/lib/components/UIShell/Link.js +59 -0
  595. package/lib/components/UIShell/SideNav.js +237 -0
  596. package/lib/components/UIShell/SideNavDetails.js +56 -0
  597. package/lib/components/UIShell/SideNavDivider.js +40 -0
  598. package/lib/components/UIShell/SideNavFooter.js +88 -0
  599. package/lib/components/UIShell/SideNavHeader.js +60 -0
  600. package/lib/components/UIShell/SideNavIcon.js +59 -0
  601. package/lib/components/UIShell/SideNavItem.js +57 -0
  602. package/lib/components/UIShell/SideNavItems.js +66 -0
  603. package/lib/components/UIShell/SideNavLink.js +84 -0
  604. package/lib/components/UIShell/SideNavLinkText.js +51 -0
  605. package/lib/components/UIShell/SideNavMenu.js +209 -0
  606. package/lib/components/UIShell/SideNavMenuItem.js +67 -0
  607. package/lib/components/UIShell/SideNavSwitcher.js +90 -0
  608. package/lib/components/UIShell/SkipToContent.js +67 -0
  609. package/lib/components/UIShell/Switcher.js +55 -0
  610. package/lib/components/UIShell/SwitcherDivider.js +45 -0
  611. package/lib/components/UIShell/SwitcherItem.js +72 -0
  612. package/lib/components/UIShell/_utils.js +14 -0
  613. package/lib/components/UIShell/index.js +42 -0
  614. package/lib/components/UIShell/next/HeaderNavigation.js +62 -0
  615. package/lib/components/UIShell/next/SideNavMenu.js +170 -0
  616. package/lib/components/UnorderedList/UnorderedList.js +69 -0
  617. package/lib/index.js +405 -858
  618. package/lib/internal/ClickListener.js +110 -0
  619. package/lib/internal/ComponentToggle.js +51 -0
  620. package/lib/internal/FeatureFlags.js +56 -0
  621. package/lib/internal/FloatingMenu.js +498 -0
  622. package/lib/internal/OptimizedResize.js +73 -0
  623. package/lib/internal/Selection.js +254 -0
  624. package/lib/internal/createClassWrapper.js +39 -0
  625. package/lib/internal/deprecateFieldOnObject.js +30 -0
  626. package/lib/internal/environment.js +19 -0
  627. package/lib/internal/focus/index.js +20 -0
  628. package/lib/internal/keyboard/keys.js +79 -0
  629. package/lib/internal/keyboard/match.js +87 -0
  630. package/lib/internal/keyboard/navigation.js +69 -0
  631. package/lib/internal/useControllableState.js +90 -0
  632. package/lib/internal/useDelayedState.js +58 -0
  633. package/lib/internal/useEffectOnce.js +35 -0
  634. package/lib/internal/useId.js +64 -0
  635. package/lib/internal/useIsomorphicEffect.js +17 -0
  636. package/lib/internal/useMatchMedia.js +55 -0
  637. package/lib/internal/useMergedRefs.js +35 -0
  638. package/lib/internal/useNoInteractiveChildren.js +97 -0
  639. package/lib/internal/useNormalizedInputProps.js +96 -0
  640. package/lib/internal/usePrefix.js +24 -0
  641. package/lib/internal/useSavedCallback.js +36 -0
  642. package/lib/internal/warning.js +32 -0
  643. package/lib/internal/wrapFocus.js +84 -0
  644. package/lib/node_modules/flatpickr/dist/l10n/index.js +1427 -0
  645. package/lib/node_modules/flatpickr/dist/plugins/rangePlugin.js +200 -0
  646. package/lib/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +1116 -0
  647. package/lib/node_modules/use-resize-observer/polyfilled.js +120 -0
  648. package/lib/prop-types/AriaPropTypes.js +24 -0
  649. package/lib/prop-types/deprecate.js +37 -0
  650. package/lib/prop-types/isRequiredOneOf.js +51 -0
  651. package/lib/prop-types/requiredIfGivenPropIsTruthy.js +33 -0
  652. package/lib/prop-types/requiredIfValueExists.js +36 -0
  653. package/lib/prop-types/types.js +14 -0
  654. package/lib/tools/array.js +36 -0
  655. package/lib/tools/events.js +39 -0
  656. package/lib/tools/mergeRefs.js +35 -0
  657. package/lib/tools/setupGetInstanceId.js +23 -0
  658. package/lib/tools/toggleClass.js +18 -0
  659. package/lib/tools/uniqueId.js +19 -0
  660. package/lib/tools/wrapComponent.js +52 -0
  661. package/package.json +49 -18
  662. package/scss/{grid/_config.scss → components/_index.scss} +1 -1
  663. package/scss/components/accordion/_accordion.scss +9 -0
  664. package/scss/components/aspect-ratio/_aspect-ratio.scss +9 -0
  665. package/scss/components/breadcrumb/_breadcrumb.scss +9 -0
  666. package/scss/components/button/_button.scss +9 -0
  667. package/scss/components/button/_tokens.scss +9 -0
  668. package/scss/components/checkbox/_checkbox.scss +9 -0
  669. package/scss/components/code-snippet/_code-snippet.scss +9 -0
  670. package/scss/components/combo-box/_combo-box.scss +9 -0
  671. package/scss/components/content-switcher/_content-switcher.scss +9 -0
  672. package/scss/components/copy-button/_copy-button.scss +9 -0
  673. package/scss/components/data-table/_data-table.scss +9 -0
  674. package/scss/components/data-table/action/_data-table-action.scss +9 -0
  675. package/scss/components/data-table/action/_index.scss +9 -0
  676. package/scss/components/data-table/expandable/_data-table-expandable.scss +9 -0
  677. package/scss/components/data-table/expandable/_index.scss +9 -0
  678. package/scss/components/data-table/skeleton/_data-table-skeleton.scss +9 -0
  679. package/scss/components/data-table/skeleton/_index.scss +9 -0
  680. package/scss/components/data-table/sort/_data-table-sort.scss +9 -0
  681. package/scss/components/data-table/sort/_index.scss +9 -0
  682. package/scss/components/date-picker/_date-picker.scss +9 -0
  683. package/scss/components/dropdown/_dropdown.scss +9 -0
  684. package/scss/components/file-uploader/_file-uploader.scss +9 -0
  685. package/scss/components/form/_form.scss +9 -0
  686. package/scss/components/inline-loading/_inline-loading.scss +9 -0
  687. package/scss/components/link/_link.scss +9 -0
  688. package/scss/components/list/_list.scss +9 -0
  689. package/scss/components/list-box/_index.scss +9 -0
  690. package/scss/components/list-box/_list-box.scss +9 -0
  691. package/scss/components/loading/_loading.scss +9 -0
  692. package/scss/components/menu/_menu.scss +9 -0
  693. package/scss/components/modal/_modal.scss +9 -0
  694. package/scss/components/multiselect/_multiselect.scss +9 -0
  695. package/scss/components/notification/_actionable-notification.scss +9 -0
  696. package/scss/components/notification/_inline-notification.scss +9 -0
  697. package/scss/components/notification/_toast-notification.scss +9 -0
  698. package/scss/components/notification/_tokens.scss +9 -0
  699. package/scss/components/number-input/_number-input.scss +9 -0
  700. package/scss/components/overflow-menu/_overflow-menu.scss +9 -0
  701. package/scss/components/pagination/_pagination.scss +9 -0
  702. package/scss/components/pagination/_unstable_pagination.scss +9 -0
  703. package/scss/components/pagination-nav/_pagination-nav.scss +9 -0
  704. package/scss/components/popover/_index.scss +9 -0
  705. package/scss/components/popover/_popover.scss +9 -0
  706. package/scss/components/progress-bar/_index.scss +9 -0
  707. package/scss/components/progress-bar/_progress-bar.scss +9 -0
  708. package/scss/components/progress-indicator/_progress-indicator.scss +9 -0
  709. package/scss/components/radio-button/_radio-button.scss +9 -0
  710. package/scss/components/search/_search.scss +9 -0
  711. package/scss/components/select/_select.scss +9 -0
  712. package/scss/components/skeleton-styles/_index.scss +9 -0
  713. package/scss/components/skeleton-styles/_skeleton-styles.scss +9 -0
  714. package/scss/components/slider/_slider.scss +9 -0
  715. package/scss/components/stack/_stack.scss +9 -0
  716. package/scss/components/structured-list/_structured-list.scss +9 -0
  717. package/scss/components/tabs/_tabs.scss +9 -0
  718. package/scss/components/tag/_tag.scss +9 -0
  719. package/scss/components/tag/_tokens.scss +9 -0
  720. package/scss/components/text-area/_text-area.scss +9 -0
  721. package/scss/components/text-input/_text-input.scss +9 -0
  722. package/scss/components/tile/_tile.scss +9 -0
  723. package/scss/components/time-picker/_time-picker.scss +9 -0
  724. package/scss/components/toggle/_toggle.scss +9 -0
  725. package/scss/components/toggletip/_index.scss +9 -0
  726. package/scss/components/toggletip/_toggletip.scss +9 -0
  727. package/scss/components/tooltip/_tooltip.scss +9 -0
  728. package/scss/components/treeview/_treeview.scss +9 -0
  729. package/scss/components/ui-shell/_ui-shell.scss +9 -0
  730. package/scss/components/ui-shell/content/_content.scss +9 -0
  731. package/scss/components/ui-shell/content/_index.scss +9 -0
  732. package/scss/components/ui-shell/header/_header.scss +9 -0
  733. package/scss/components/ui-shell/header/_index.scss +9 -0
  734. package/scss/components/ui-shell/header-panel/_header-panel.scss +9 -0
  735. package/scss/components/ui-shell/header-panel/_index.scss +9 -0
  736. package/scss/components/ui-shell/side-nav/_index.scss +9 -0
  737. package/scss/components/ui-shell/side-nav/_side-nav.scss +9 -0
  738. package/scss/components/ui-shell/switcher/_index.scss +9 -0
  739. package/scss/components/ui-shell/switcher/_switcher.scss +9 -0
  740. package/scss/fonts/_src.scss +9 -0
  741. package/scss/grid/_css-grid.scss +9 -0
  742. package/scss/grid/_mixins.scss +9 -0
  743. package/scss/type/_index.scss +9 -0
  744. package/scss/type/_reset.scss +9 -0
  745. package/scss/utilities/_box-shadow.scss +9 -0
  746. package/scss/utilities/_button-reset.scss +9 -0
  747. package/scss/utilities/_component-reset.scss +9 -0
  748. package/scss/utilities/_component-tokens.scss +9 -0
  749. package/scss/utilities/_custom-property.scss +9 -0
  750. package/scss/utilities/_focus-outline.scss +9 -0
  751. package/scss/utilities/_high-contrast-mode.scss +9 -0
  752. package/scss/utilities/_index.scss +9 -0
  753. package/scss/utilities/_keyframes.scss +9 -0
  754. package/scss/utilities/_placeholder-colors.scss +9 -0
  755. package/scss/utilities/_rotate.scss +9 -0
  756. package/scss/utilities/_skeleton.scss +9 -0
  757. package/scss/utilities/_text-overflow.scss +9 -0
  758. package/scss/utilities/_text-truncate.scss +9 -0
  759. package/scss/utilities/_visually-hidden.scss +9 -0
  760. package/icons/es/icon-helpers/es/index.js +0 -141
  761. package/icons/es/icons-react/next/index.esm.js +0 -14
  762. package/icons/lib/icon-helpers/es/index.js +0 -146
  763. package/icons/lib/icons-react/next/index.esm.js +0 -1973
@@ -0,0 +1,1427 @@
1
+ /**
2
+ * Copyright IBM Corp. 2016, 2021
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ 'use strict';
9
+
10
+ Object.defineProperty(exports, '__esModule', { value: true });
11
+
12
+ var _commonjsHelpers = require('../../../../_virtual/_commonjsHelpers.js');
13
+ var index = require('../../../../_virtual/index.js');
14
+
15
+ (function (module, exports) {
16
+ (function (global, factory) {
17
+ factory(exports) ;
18
+ })(_commonjsHelpers.commonjsGlobal, function (exports) {
19
+ /*! *****************************************************************************
20
+ Copyright (c) Microsoft Corporation.
21
+ Permission to use, copy, modify, and/or distribute this software for any
22
+ purpose with or without fee is hereby granted.
23
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
24
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
25
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
26
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
27
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
28
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
29
+ PERFORMANCE OF THIS SOFTWARE.
30
+ ***************************************************************************** */
31
+
32
+ var _assign = function __assign() {
33
+ _assign = Object.assign || function __assign(t) {
34
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
35
+ s = arguments[i];
36
+
37
+ for (var p in s) {
38
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
39
+ }
40
+ }
41
+
42
+ return t;
43
+ };
44
+
45
+ return _assign.apply(this, arguments);
46
+ };
47
+
48
+ var fp = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
49
+ l10ns: {}
50
+ };
51
+ var Arabic = {
52
+ weekdays: {
53
+ shorthand: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت"],
54
+ longhand: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت"]
55
+ },
56
+ months: {
57
+ shorthand: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
58
+ longhand: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"]
59
+ },
60
+ rangeSeparator: " - "
61
+ };
62
+ fp.l10ns.ar = Arabic;
63
+ fp.l10ns;
64
+ var fp$1 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
65
+ l10ns: {}
66
+ };
67
+ var Austria = {
68
+ weekdays: {
69
+ shorthand: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
70
+ longhand: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]
71
+ },
72
+ months: {
73
+ shorthand: ["Jän", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
74
+ longhand: ["Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"]
75
+ },
76
+ firstDayOfWeek: 1,
77
+ weekAbbreviation: "KW",
78
+ rangeSeparator: " bis ",
79
+ scrollTitle: "Zum Ändern scrollen",
80
+ toggleTitle: "Zum Umschalten klicken"
81
+ };
82
+ fp$1.l10ns.at = Austria;
83
+ fp$1.l10ns;
84
+ var fp$2 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
85
+ l10ns: {}
86
+ };
87
+ var Azerbaijan = {
88
+ weekdays: {
89
+ shorthand: ["B.", "B.e.", "Ç.a.", "Ç.", "C.a.", "C.", "Ş."],
90
+ longhand: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə"]
91
+ },
92
+ months: {
93
+ shorthand: ["Yan", "Fev", "Mar", "Apr", "May", "İyn", "İyl", "Avq", "Sen", "Okt", "Noy", "Dek"],
94
+ longhand: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"]
95
+ },
96
+ firstDayOfWeek: 1,
97
+ ordinal: function ordinal() {
98
+ return ".";
99
+ },
100
+ rangeSeparator: " - ",
101
+ weekAbbreviation: "Hf",
102
+ scrollTitle: "Artırmaq üçün sürüşdürün",
103
+ toggleTitle: "Aç / Bağla",
104
+ amPM: ["GƏ", "GS"],
105
+ time_24hr: true
106
+ };
107
+ fp$2.l10ns.az = Azerbaijan;
108
+ fp$2.l10ns;
109
+ var fp$3 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
110
+ l10ns: {}
111
+ };
112
+ var Belarusian = {
113
+ weekdays: {
114
+ shorthand: ["Нд", "Пн", "Аў", "Ср", "Чц", "Пт", "Сб"],
115
+ longhand: ["Нядзеля", "Панядзелак", "Аўторак", "Серада", "Чацвер", "Пятніца", "Субота"]
116
+ },
117
+ months: {
118
+ shorthand: ["Сту", "Лют", "Сак", "Кра", "Тра", "Чэр", "Ліп", "Жні", "Вер", "Кас", "Ліс", "Сне"],
119
+ longhand: ["Студзень", "Люты", "Сакавік", "Красавік", "Травень", "Чэрвень", "Ліпень", "Жнівень", "Верасень", "Кастрычнік", "Лістапад", "Снежань"]
120
+ },
121
+ firstDayOfWeek: 1,
122
+ ordinal: function ordinal() {
123
+ return "";
124
+ },
125
+ rangeSeparator: " — ",
126
+ weekAbbreviation: "Тыд.",
127
+ scrollTitle: "Пракруціце для павелічэння",
128
+ toggleTitle: "Націсніце для пераключэння",
129
+ amPM: ["ДП", "ПП"],
130
+ yearAriaLabel: "Год",
131
+ time_24hr: true
132
+ };
133
+ fp$3.l10ns.be = Belarusian;
134
+ fp$3.l10ns;
135
+ var fp$4 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
136
+ l10ns: {}
137
+ };
138
+ var Bosnian = {
139
+ firstDayOfWeek: 1,
140
+ weekdays: {
141
+ shorthand: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"],
142
+ longhand: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"]
143
+ },
144
+ months: {
145
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"],
146
+ longhand: ["Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"]
147
+ },
148
+ time_24hr: true
149
+ };
150
+ fp$4.l10ns.bs = Bosnian;
151
+ fp$4.l10ns;
152
+ var fp$5 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
153
+ l10ns: {}
154
+ };
155
+ var Bulgarian = {
156
+ weekdays: {
157
+ shorthand: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
158
+ longhand: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота"]
159
+ },
160
+ months: {
161
+ shorthand: ["Яну", "Фев", "Март", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"],
162
+ longhand: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"]
163
+ },
164
+ time_24hr: true,
165
+ firstDayOfWeek: 1
166
+ };
167
+ fp$5.l10ns.bg = Bulgarian;
168
+ fp$5.l10ns;
169
+ var fp$6 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
170
+ l10ns: {}
171
+ };
172
+ var Bangla = {
173
+ weekdays: {
174
+ shorthand: ["রবি", "সোম", "মঙ্গল", "বুধ", "বৃহস্পতি", "শুক্র", "শনি"],
175
+ longhand: ["রবিবার", "সোমবার", "মঙ্গলবার", "বুধবার", "বৃহস্পতিবার", "শুক্রবার", "শনিবার"]
176
+ },
177
+ months: {
178
+ shorthand: ["জানু", "ফেব্রু", "মার্চ", "এপ্রিল", "মে", "জুন", "জুলাই", "আগ", "সেপ্টে", "অক্টো", "নভে", "ডিসে"],
179
+ longhand: ["জানুয়ারী", "ফেব্রুয়ারী", "মার্চ", "এপ্রিল", "মে", "জুন", "জুলাই", "আগস্ট", "সেপ্টেম্বর", "অক্টোবর", "নভেম্বর", "ডিসেম্বর"]
180
+ }
181
+ };
182
+ fp$6.l10ns.bn = Bangla;
183
+ fp$6.l10ns;
184
+ var fp$7 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
185
+ l10ns: {}
186
+ };
187
+ var Catalan = {
188
+ weekdays: {
189
+ shorthand: ["Dg", "Dl", "Dt", "Dc", "Dj", "Dv", "Ds"],
190
+ longhand: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte"]
191
+ },
192
+ months: {
193
+ shorthand: ["Gen", "Febr", "Març", "Abr", "Maig", "Juny", "Jul", "Ag", "Set", "Oct", "Nov", "Des"],
194
+ longhand: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"]
195
+ },
196
+ ordinal: function ordinal(nth) {
197
+ var s = nth % 100;
198
+ if (s > 3 && s < 21) return "è";
199
+
200
+ switch (s % 10) {
201
+ case 1:
202
+ return "r";
203
+
204
+ case 2:
205
+ return "n";
206
+
207
+ case 3:
208
+ return "r";
209
+
210
+ case 4:
211
+ return "t";
212
+
213
+ default:
214
+ return "è";
215
+ }
216
+ },
217
+ firstDayOfWeek: 1,
218
+ time_24hr: true
219
+ };
220
+ fp$7.l10ns.cat = fp$7.l10ns.ca = Catalan;
221
+ fp$7.l10ns;
222
+ var fp$8 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
223
+ l10ns: {}
224
+ };
225
+ var Czech = {
226
+ weekdays: {
227
+ shorthand: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"],
228
+ longhand: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"]
229
+ },
230
+ months: {
231
+ shorthand: ["Led", "Ún", "Bře", "Dub", "Kvě", "Čer", "Čvc", "Srp", "Zář", "Říj", "Lis", "Pro"],
232
+ longhand: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"]
233
+ },
234
+ firstDayOfWeek: 1,
235
+ ordinal: function ordinal() {
236
+ return ".";
237
+ },
238
+ rangeSeparator: " do ",
239
+ weekAbbreviation: "Týd.",
240
+ scrollTitle: "Rolujte pro změnu",
241
+ toggleTitle: "Přepnout dopoledne/odpoledne",
242
+ amPM: ["dop.", "odp."],
243
+ yearAriaLabel: "Rok",
244
+ time_24hr: true
245
+ };
246
+ fp$8.l10ns.cs = Czech;
247
+ fp$8.l10ns;
248
+ var fp$9 = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
249
+ l10ns: {}
250
+ };
251
+ var Welsh = {
252
+ weekdays: {
253
+ shorthand: ["Sul", "Llun", "Maw", "Mer", "Iau", "Gwe", "Sad"],
254
+ longhand: ["Dydd Sul", "Dydd Llun", "Dydd Mawrth", "Dydd Mercher", "Dydd Iau", "Dydd Gwener", "Dydd Sadwrn"]
255
+ },
256
+ months: {
257
+ shorthand: ["Ion", "Chwef", "Maw", "Ebr", "Mai", "Meh", "Gorff", "Awst", "Medi", "Hyd", "Tach", "Rhag"],
258
+ longhand: ["Ionawr", "Chwefror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorffennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"]
259
+ },
260
+ firstDayOfWeek: 1,
261
+ ordinal: function ordinal(nth) {
262
+ if (nth === 1) return "af";
263
+ if (nth === 2) return "ail";
264
+ if (nth === 3 || nth === 4) return "ydd";
265
+ if (nth === 5 || nth === 6) return "ed";
266
+ if (nth >= 7 && nth <= 10 || nth == 12 || nth == 15 || nth == 18 || nth == 20) return "fed";
267
+ if (nth == 11 || nth == 13 || nth == 14 || nth == 16 || nth == 17 || nth == 19) return "eg";
268
+ if (nth >= 21 && nth <= 39) return "ain"; // Inconclusive.
269
+
270
+ return "";
271
+ },
272
+ time_24hr: true
273
+ };
274
+ fp$9.l10ns.cy = Welsh;
275
+ fp$9.l10ns;
276
+ var fp$a = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
277
+ l10ns: {}
278
+ };
279
+ var Danish = {
280
+ weekdays: {
281
+ shorthand: ["søn", "man", "tir", "ons", "tors", "fre", "lør"],
282
+ longhand: ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"]
283
+ },
284
+ months: {
285
+ shorthand: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"],
286
+ longhand: ["januar", "februar", "marts", "april", "maj", "juni", "juli", "august", "september", "oktober", "november", "december"]
287
+ },
288
+ ordinal: function ordinal() {
289
+ return ".";
290
+ },
291
+ firstDayOfWeek: 1,
292
+ rangeSeparator: " til ",
293
+ weekAbbreviation: "uge",
294
+ time_24hr: true
295
+ };
296
+ fp$a.l10ns.da = Danish;
297
+ fp$a.l10ns;
298
+ var fp$b = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
299
+ l10ns: {}
300
+ };
301
+ var German = {
302
+ weekdays: {
303
+ shorthand: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
304
+ longhand: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]
305
+ },
306
+ months: {
307
+ shorthand: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
308
+ longhand: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"]
309
+ },
310
+ firstDayOfWeek: 1,
311
+ weekAbbreviation: "KW",
312
+ rangeSeparator: " bis ",
313
+ scrollTitle: "Zum Ändern scrollen",
314
+ toggleTitle: "Zum Umschalten klicken",
315
+ time_24hr: true
316
+ };
317
+ fp$b.l10ns.de = German;
318
+ fp$b.l10ns;
319
+ var english = {
320
+ weekdays: {
321
+ shorthand: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
322
+ longhand: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
323
+ },
324
+ months: {
325
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
326
+ longhand: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
327
+ },
328
+ daysInMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
329
+ firstDayOfWeek: 0,
330
+ ordinal: function ordinal(nth) {
331
+ var s = nth % 100;
332
+ if (s > 3 && s < 21) return "th";
333
+
334
+ switch (s % 10) {
335
+ case 1:
336
+ return "st";
337
+
338
+ case 2:
339
+ return "nd";
340
+
341
+ case 3:
342
+ return "rd";
343
+
344
+ default:
345
+ return "th";
346
+ }
347
+ },
348
+ rangeSeparator: " to ",
349
+ weekAbbreviation: "Wk",
350
+ scrollTitle: "Scroll to increment",
351
+ toggleTitle: "Click to toggle",
352
+ amPM: ["AM", "PM"],
353
+ yearAriaLabel: "Year",
354
+ monthAriaLabel: "Month",
355
+ hourAriaLabel: "Hour",
356
+ minuteAriaLabel: "Minute",
357
+ time_24hr: false
358
+ };
359
+ var fp$c = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
360
+ l10ns: {}
361
+ };
362
+ var Esperanto = {
363
+ firstDayOfWeek: 1,
364
+ rangeSeparator: " ĝis ",
365
+ weekAbbreviation: "Sem",
366
+ scrollTitle: "Rulumu por pligrandigi la valoron",
367
+ toggleTitle: "Klaku por ŝalti",
368
+ weekdays: {
369
+ shorthand: ["Dim", "Lun", "Mar", "Mer", "Ĵaŭ", "Ven", "Sab"],
370
+ longhand: ["dimanĉo", "lundo", "mardo", "merkredo", "ĵaŭdo", "vendredo", "sabato"]
371
+ },
372
+ months: {
373
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aŭg", "Sep", "Okt", "Nov", "Dec"],
374
+ longhand: ["januaro", "februaro", "marto", "aprilo", "majo", "junio", "julio", "aŭgusto", "septembro", "oktobro", "novembro", "decembro"]
375
+ },
376
+ ordinal: function ordinal() {
377
+ return "-a";
378
+ },
379
+ time_24hr: true
380
+ };
381
+ fp$c.l10ns.eo = Esperanto;
382
+ fp$c.l10ns;
383
+ var fp$d = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
384
+ l10ns: {}
385
+ };
386
+ var Spanish = {
387
+ weekdays: {
388
+ shorthand: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"],
389
+ longhand: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"]
390
+ },
391
+ months: {
392
+ shorthand: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
393
+ longhand: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"]
394
+ },
395
+ ordinal: function ordinal() {
396
+ return "º";
397
+ },
398
+ firstDayOfWeek: 1,
399
+ rangeSeparator: " a ",
400
+ time_24hr: true
401
+ };
402
+ fp$d.l10ns.es = Spanish;
403
+ fp$d.l10ns;
404
+ var fp$e = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
405
+ l10ns: {}
406
+ };
407
+ var Estonian = {
408
+ weekdays: {
409
+ shorthand: ["P", "E", "T", "K", "N", "R", "L"],
410
+ longhand: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev"]
411
+ },
412
+ months: {
413
+ shorthand: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"],
414
+ longhand: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"]
415
+ },
416
+ firstDayOfWeek: 1,
417
+ ordinal: function ordinal() {
418
+ return ".";
419
+ },
420
+ weekAbbreviation: "Näd",
421
+ rangeSeparator: " kuni ",
422
+ scrollTitle: "Keri, et suurendada",
423
+ toggleTitle: "Klõpsa, et vahetada",
424
+ time_24hr: true
425
+ };
426
+ fp$e.l10ns.et = Estonian;
427
+ fp$e.l10ns;
428
+ var fp$f = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
429
+ l10ns: {}
430
+ };
431
+ var Persian = {
432
+ weekdays: {
433
+ shorthand: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه"],
434
+ longhand: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنچ‌شنبه", "جمعه", "شنبه"]
435
+ },
436
+ months: {
437
+ shorthand: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"],
438
+ longhand: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"]
439
+ },
440
+ firstDayOfWeek: 6,
441
+ ordinal: function ordinal() {
442
+ return "";
443
+ }
444
+ };
445
+ fp$f.l10ns.fa = Persian;
446
+ fp$f.l10ns;
447
+ var fp$g = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
448
+ l10ns: {}
449
+ };
450
+ var Finnish = {
451
+ firstDayOfWeek: 1,
452
+ weekdays: {
453
+ shorthand: ["Su", "Ma", "Ti", "Ke", "To", "Pe", "La"],
454
+ longhand: ["Sunnuntai", "Maanantai", "Tiistai", "Keskiviikko", "Torstai", "Perjantai", "Lauantai"]
455
+ },
456
+ months: {
457
+ shorthand: ["Tammi", "Helmi", "Maalis", "Huhti", "Touko", "Kesä", "Heinä", "Elo", "Syys", "Loka", "Marras", "Joulu"],
458
+ longhand: ["Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kesäkuu", "Heinäkuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu"]
459
+ },
460
+ ordinal: function ordinal() {
461
+ return ".";
462
+ },
463
+ time_24hr: true
464
+ };
465
+ fp$g.l10ns.fi = Finnish;
466
+ fp$g.l10ns;
467
+ var fp$h = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
468
+ l10ns: {}
469
+ };
470
+ var Faroese = {
471
+ weekdays: {
472
+ shorthand: ["Sun", "Mán", "Týs", "Mik", "Hós", "Frí", "Ley"],
473
+ longhand: ["Sunnudagur", "Mánadagur", "Týsdagur", "Mikudagur", "Hósdagur", "Fríggjadagur", "Leygardagur"]
474
+ },
475
+ months: {
476
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"],
477
+ longhand: ["Januar", "Februar", "Mars", "Apríl", "Mai", "Juni", "Juli", "August", "Septembur", "Oktobur", "Novembur", "Desembur"]
478
+ },
479
+ ordinal: function ordinal() {
480
+ return ".";
481
+ },
482
+ firstDayOfWeek: 1,
483
+ rangeSeparator: " til ",
484
+ weekAbbreviation: "vika",
485
+ scrollTitle: "Rulla fyri at broyta",
486
+ toggleTitle: "Trýst fyri at skifta",
487
+ yearAriaLabel: "Ár",
488
+ time_24hr: true
489
+ };
490
+ fp$h.l10ns.fo = Faroese;
491
+ fp$h.l10ns;
492
+ var fp$i = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
493
+ l10ns: {}
494
+ };
495
+ var French = {
496
+ firstDayOfWeek: 1,
497
+ weekdays: {
498
+ shorthand: ["dim", "lun", "mar", "mer", "jeu", "ven", "sam"],
499
+ longhand: ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]
500
+ },
501
+ months: {
502
+ shorthand: ["janv", "févr", "mars", "avr", "mai", "juin", "juil", "août", "sept", "oct", "nov", "déc"],
503
+ longhand: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"]
504
+ },
505
+ ordinal: function ordinal(nth) {
506
+ if (nth > 1) return "";
507
+ return "er";
508
+ },
509
+ rangeSeparator: " au ",
510
+ weekAbbreviation: "Sem",
511
+ scrollTitle: "Défiler pour augmenter la valeur",
512
+ toggleTitle: "Cliquer pour basculer",
513
+ time_24hr: true
514
+ };
515
+ fp$i.l10ns.fr = French;
516
+ fp$i.l10ns;
517
+ var fp$j = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
518
+ l10ns: {}
519
+ };
520
+ var Greek = {
521
+ weekdays: {
522
+ shorthand: ["Κυ", "Δε", "Τρ", "Τε", "Πέ", "Πα", "Σά"],
523
+ longhand: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο"]
524
+ },
525
+ months: {
526
+ shorthand: ["Ιαν", "Φεβ", "Μάρ", "Απρ", "Μάι", "Ιού", "Ιού", "Αύγ", "Σεπ", "Οκτ", "Νοέ", "Δεκ"],
527
+ longhand: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"]
528
+ },
529
+ firstDayOfWeek: 1,
530
+ ordinal: function ordinal() {
531
+ return "";
532
+ },
533
+ weekAbbreviation: "Εβδ",
534
+ rangeSeparator: " έως ",
535
+ scrollTitle: "Μετακυλήστε για προσαύξηση",
536
+ toggleTitle: "Κάντε κλικ για αλλαγή",
537
+ amPM: ["ΠΜ", "ΜΜ"]
538
+ };
539
+ fp$j.l10ns.gr = Greek;
540
+ fp$j.l10ns;
541
+ var fp$k = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
542
+ l10ns: {}
543
+ };
544
+ var Hebrew = {
545
+ weekdays: {
546
+ shorthand: ["א", "ב", "ג", "ד", "ה", "ו", "ש"],
547
+ longhand: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת"]
548
+ },
549
+ months: {
550
+ shorthand: ["ינו׳", "פבר׳", "מרץ", "אפר׳", "מאי", "יוני", "יולי", "אוג׳", "ספט׳", "אוק׳", "נוב׳", "דצמ׳"],
551
+ longhand: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"]
552
+ },
553
+ rangeSeparator: " אל ",
554
+ time_24hr: true
555
+ };
556
+ fp$k.l10ns.he = Hebrew;
557
+ fp$k.l10ns;
558
+ var fp$l = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
559
+ l10ns: {}
560
+ };
561
+ var Hindi = {
562
+ weekdays: {
563
+ shorthand: ["रवि", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि"],
564
+ longhand: ["रविवार", "सोमवार", "मंगलवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार"]
565
+ },
566
+ months: {
567
+ shorthand: ["जन", "फर", "मार्च", "अप्रेल", "मई", "जून", "जूलाई", "अग", "सित", "अक्ट", "नव", "दि"],
568
+ longhand: ["जनवरी ", "फरवरी", "मार्च", "अप्रेल", "मई", "जून", "जूलाई", "अगस्त ", "सितम्बर", "अक्टूबर", "नवम्बर", "दिसम्बर"]
569
+ }
570
+ };
571
+ fp$l.l10ns.hi = Hindi;
572
+ fp$l.l10ns;
573
+ var fp$m = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
574
+ l10ns: {}
575
+ };
576
+ var Croatian = {
577
+ firstDayOfWeek: 1,
578
+ weekdays: {
579
+ shorthand: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"],
580
+ longhand: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"]
581
+ },
582
+ months: {
583
+ shorthand: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"],
584
+ longhand: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"]
585
+ },
586
+ time_24hr: true
587
+ };
588
+ fp$m.l10ns.hr = Croatian;
589
+ fp$m.l10ns;
590
+ var fp$n = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
591
+ l10ns: {}
592
+ };
593
+ var Hungarian = {
594
+ firstDayOfWeek: 1,
595
+ weekdays: {
596
+ shorthand: ["V", "H", "K", "Sz", "Cs", "P", "Szo"],
597
+ longhand: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat"]
598
+ },
599
+ months: {
600
+ shorthand: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Szep", "Okt", "Nov", "Dec"],
601
+ longhand: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"]
602
+ },
603
+ ordinal: function ordinal() {
604
+ return ".";
605
+ },
606
+ weekAbbreviation: "Hét",
607
+ scrollTitle: "Görgessen",
608
+ toggleTitle: "Kattintson a váltáshoz",
609
+ rangeSeparator: " - ",
610
+ time_24hr: true
611
+ };
612
+ fp$n.l10ns.hu = Hungarian;
613
+ fp$n.l10ns;
614
+ var fp$o = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
615
+ l10ns: {}
616
+ };
617
+ var Indonesian = {
618
+ weekdays: {
619
+ shorthand: ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"],
620
+ longhand: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"]
621
+ },
622
+ months: {
623
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"],
624
+ longhand: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"]
625
+ },
626
+ firstDayOfWeek: 1,
627
+ ordinal: function ordinal() {
628
+ return "";
629
+ },
630
+ time_24hr: true,
631
+ rangeSeparator: " - "
632
+ };
633
+ fp$o.l10ns.id = Indonesian;
634
+ fp$o.l10ns;
635
+ var fp$p = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
636
+ l10ns: {}
637
+ };
638
+ var Icelandic = {
639
+ weekdays: {
640
+ shorthand: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau"],
641
+ longhand: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur"]
642
+ },
643
+ months: {
644
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"],
645
+ longhand: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"]
646
+ },
647
+ ordinal: function ordinal() {
648
+ return ".";
649
+ },
650
+ firstDayOfWeek: 1,
651
+ rangeSeparator: " til ",
652
+ weekAbbreviation: "vika",
653
+ yearAriaLabel: "Ár",
654
+ time_24hr: true
655
+ };
656
+ fp$p.l10ns.is = Icelandic;
657
+ fp$p.l10ns;
658
+ var fp$q = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
659
+ l10ns: {}
660
+ };
661
+ var Italian = {
662
+ weekdays: {
663
+ shorthand: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"],
664
+ longhand: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"]
665
+ },
666
+ months: {
667
+ shorthand: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"],
668
+ longhand: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"]
669
+ },
670
+ firstDayOfWeek: 1,
671
+ ordinal: function ordinal() {
672
+ return "°";
673
+ },
674
+ rangeSeparator: " al ",
675
+ weekAbbreviation: "Se",
676
+ scrollTitle: "Scrolla per aumentare",
677
+ toggleTitle: "Clicca per cambiare",
678
+ time_24hr: true
679
+ };
680
+ fp$q.l10ns.it = Italian;
681
+ fp$q.l10ns;
682
+ var fp$r = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
683
+ l10ns: {}
684
+ };
685
+ var Japanese = {
686
+ weekdays: {
687
+ shorthand: ["日", "月", "火", "水", "木", "金", "土"],
688
+ longhand: ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"]
689
+ },
690
+ months: {
691
+ shorthand: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
692
+ longhand: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"]
693
+ },
694
+ time_24hr: true,
695
+ rangeSeparator: " から ",
696
+ monthAriaLabel: "月",
697
+ amPM: ["午前", "午後"],
698
+ yearAriaLabel: "年",
699
+ hourAriaLabel: "時間",
700
+ minuteAriaLabel: "分"
701
+ };
702
+ fp$r.l10ns.ja = Japanese;
703
+ fp$r.l10ns;
704
+ var fp$s = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
705
+ l10ns: {}
706
+ };
707
+ var Georgian = {
708
+ weekdays: {
709
+ shorthand: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა"],
710
+ longhand: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი"]
711
+ },
712
+ months: {
713
+ shorthand: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"],
714
+ longhand: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომბერი", "ნოემბერი", "დეკემბერი"]
715
+ },
716
+ firstDayOfWeek: 1,
717
+ ordinal: function ordinal() {
718
+ return "";
719
+ },
720
+ rangeSeparator: " — ",
721
+ weekAbbreviation: "კვ.",
722
+ scrollTitle: "დასქროლეთ გასადიდებლად",
723
+ toggleTitle: "დააკლიკეთ გადართვისთვის",
724
+ amPM: ["AM", "PM"],
725
+ yearAriaLabel: "წელი",
726
+ time_24hr: true
727
+ };
728
+ fp$s.l10ns.ka = Georgian;
729
+ fp$s.l10ns;
730
+ var fp$t = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
731
+ l10ns: {}
732
+ };
733
+ var Korean = {
734
+ weekdays: {
735
+ shorthand: ["일", "월", "화", "수", "목", "금", "토"],
736
+ longhand: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"]
737
+ },
738
+ months: {
739
+ shorthand: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"],
740
+ longhand: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"]
741
+ },
742
+ ordinal: function ordinal() {
743
+ return "일";
744
+ },
745
+ rangeSeparator: " ~ "
746
+ };
747
+ fp$t.l10ns.ko = Korean;
748
+ fp$t.l10ns;
749
+ var fp$u = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
750
+ l10ns: {}
751
+ };
752
+ var Khmer = {
753
+ weekdays: {
754
+ shorthand: ["អាទិត្យ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រហស.", "សុក្រ", "សៅរ៍"],
755
+ longhand: ["អាទិត្យ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"]
756
+ },
757
+ months: {
758
+ shorthand: ["មករា", "កុម្ភះ", "មីនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"],
759
+ longhand: ["មករា", "កុម្ភះ", "មីនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"]
760
+ },
761
+ ordinal: function ordinal() {
762
+ return "";
763
+ },
764
+ firstDayOfWeek: 1,
765
+ rangeSeparator: " ដល់ ",
766
+ weekAbbreviation: "សប្តាហ៍",
767
+ scrollTitle: "រំកិលដើម្បីបង្កើន",
768
+ toggleTitle: "ចុចដើម្បីផ្លាស់ប្ដូរ",
769
+ yearAriaLabel: "ឆ្នាំ",
770
+ time_24hr: true
771
+ };
772
+ fp$u.l10ns.km = Khmer;
773
+ fp$u.l10ns;
774
+ var fp$v = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
775
+ l10ns: {}
776
+ };
777
+ var Kazakh = {
778
+ weekdays: {
779
+ shorthand: ["Жс", "Дс", "Сc", "Ср", "Бс", "Жм", "Сб"],
780
+ longhand: ["Жексенбi", "Дүйсенбi", "Сейсенбi", "Сәрсенбi", "Бейсенбi", "Жұма", "Сенбi"]
781
+ },
782
+ months: {
783
+ shorthand: ["Қаң", "Ақп", "Нау", "Сәу", "Мам", "Мау", "Шiл", "Там", "Қыр", "Қаз", "Қар", "Жел"],
784
+ longhand: ["Қаңтар", "Ақпан", "Наурыз", "Сәуiр", "Мамыр", "Маусым", "Шiлде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"]
785
+ },
786
+ firstDayOfWeek: 1,
787
+ ordinal: function ordinal() {
788
+ return "";
789
+ },
790
+ rangeSeparator: " — ",
791
+ weekAbbreviation: "Апта",
792
+ scrollTitle: "Үлкейту үшін айналдырыңыз",
793
+ toggleTitle: "Ауыстыру үшін басыңыз",
794
+ amPM: ["ТД", "ТК"],
795
+ yearAriaLabel: "Жыл"
796
+ };
797
+ fp$v.l10ns.kz = Kazakh;
798
+ fp$v.l10ns;
799
+ var fp$w = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
800
+ l10ns: {}
801
+ };
802
+ var Lithuanian = {
803
+ weekdays: {
804
+ shorthand: ["S", "Pr", "A", "T", "K", "Pn", "Š"],
805
+ longhand: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis"]
806
+ },
807
+ months: {
808
+ shorthand: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rgp", "Rgs", "Spl", "Lap", "Grd"],
809
+ longhand: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"]
810
+ },
811
+ firstDayOfWeek: 1,
812
+ ordinal: function ordinal() {
813
+ return "-a";
814
+ },
815
+ rangeSeparator: " iki ",
816
+ weekAbbreviation: "Sav",
817
+ scrollTitle: "Keisti laiką pelės rateliu",
818
+ toggleTitle: "Perjungti laiko formatą",
819
+ time_24hr: true
820
+ };
821
+ fp$w.l10ns.lt = Lithuanian;
822
+ fp$w.l10ns;
823
+ var fp$x = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
824
+ l10ns: {}
825
+ };
826
+ var Latvian = {
827
+ firstDayOfWeek: 1,
828
+ weekdays: {
829
+ shorthand: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se"],
830
+ longhand: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena"]
831
+ },
832
+ months: {
833
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"],
834
+ longhand: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"]
835
+ },
836
+ rangeSeparator: " līdz ",
837
+ time_24hr: true
838
+ };
839
+ fp$x.l10ns.lv = Latvian;
840
+ fp$x.l10ns;
841
+ var fp$y = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
842
+ l10ns: {}
843
+ };
844
+ var Macedonian = {
845
+ weekdays: {
846
+ shorthand: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са"],
847
+ longhand: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота"]
848
+ },
849
+ months: {
850
+ shorthand: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"],
851
+ longhand: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"]
852
+ },
853
+ firstDayOfWeek: 1,
854
+ weekAbbreviation: "Нед.",
855
+ rangeSeparator: " до ",
856
+ time_24hr: true
857
+ };
858
+ fp$y.l10ns.mk = Macedonian;
859
+ fp$y.l10ns;
860
+ var fp$z = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
861
+ l10ns: {}
862
+ };
863
+ var Mongolian = {
864
+ firstDayOfWeek: 1,
865
+ weekdays: {
866
+ shorthand: ["Да", "Мя", "Лх", "Пү", "Ба", "Бя", "Ня"],
867
+ longhand: ["Даваа", "Мягмар", "Лхагва", "Пүрэв", "Баасан", "Бямба", "Ням"]
868
+ },
869
+ months: {
870
+ shorthand: ["1-р сар", "2-р сар", "3-р сар", "4-р сар", "5-р сар", "6-р сар", "7-р сар", "8-р сар", "9-р сар", "10-р сар", "11-р сар", "12-р сар"],
871
+ longhand: ["Нэгдүгээр сар", "Хоёрдугаар сар", "Гуравдугаар сар", "Дөрөвдүгээр сар", "Тавдугаар сар", "Зургаадугаар сар", "Долдугаар сар", "Наймдугаар сар", "Есдүгээр сар", "Аравдугаар сар", "Арваннэгдүгээр сар", "Арванхоёрдугаар сар"]
872
+ },
873
+ rangeSeparator: "-с ",
874
+ time_24hr: true
875
+ };
876
+ fp$z.l10ns.mn = Mongolian;
877
+ fp$z.l10ns;
878
+ var fp$A = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
879
+ l10ns: {}
880
+ };
881
+ var Malaysian = {
882
+ weekdays: {
883
+ shorthand: ["Min", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"],
884
+ longhand: ["Minggu", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"]
885
+ },
886
+ months: {
887
+ shorthand: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"],
888
+ longhand: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"]
889
+ },
890
+ firstDayOfWeek: 1,
891
+ ordinal: function ordinal() {
892
+ return "";
893
+ }
894
+ };
895
+ fp$A.l10ns;
896
+ var fp$B = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
897
+ l10ns: {}
898
+ };
899
+ var Burmese = {
900
+ weekdays: {
901
+ shorthand: ["နွေ", "လာ", "ဂါ", "ဟူး", "ကြာ", "သော", "နေ"],
902
+ longhand: ["တနင်္ဂနွေ", "တနင်္လာ", "အင်္ဂါ", "ဗုဒ္ဓဟူး", "ကြာသပတေး", "သောကြာ", "စနေ"]
903
+ },
904
+ months: {
905
+ shorthand: ["ဇန်", "ဖေ", "မတ်", "ပြီ", "မေ", "ဇွန်", "လိုင်", "သြ", "စက်", "အောက်", "နို", "ဒီ"],
906
+ longhand: ["ဇန်နဝါရီ", "ဖေဖော်ဝါရီ", "မတ်", "ဧပြီ", "မေ", "ဇွန်", "ဇူလိုင်", "သြဂုတ်", "စက်တင်ဘာ", "အောက်တိုဘာ", "နိုဝင်ဘာ", "ဒီဇင်ဘာ"]
907
+ },
908
+ firstDayOfWeek: 1,
909
+ ordinal: function ordinal() {
910
+ return "";
911
+ },
912
+ time_24hr: true
913
+ };
914
+ fp$B.l10ns.my = Burmese;
915
+ fp$B.l10ns;
916
+ var fp$C = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
917
+ l10ns: {}
918
+ };
919
+ var Dutch = {
920
+ weekdays: {
921
+ shorthand: ["zo", "ma", "di", "wo", "do", "vr", "za"],
922
+ longhand: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"]
923
+ },
924
+ months: {
925
+ shorthand: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sept", "okt", "nov", "dec"],
926
+ longhand: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"]
927
+ },
928
+ firstDayOfWeek: 1,
929
+ weekAbbreviation: "wk",
930
+ rangeSeparator: " t/m ",
931
+ scrollTitle: "Scroll voor volgende / vorige",
932
+ toggleTitle: "Klik om te wisselen",
933
+ time_24hr: true,
934
+ ordinal: function ordinal(nth) {
935
+ if (nth === 1 || nth === 8 || nth >= 20) return "ste";
936
+ return "de";
937
+ }
938
+ };
939
+ fp$C.l10ns.nl = Dutch;
940
+ fp$C.l10ns;
941
+ var fp$D = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
942
+ l10ns: {}
943
+ };
944
+ var Norwegian = {
945
+ weekdays: {
946
+ shorthand: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"],
947
+ longhand: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"]
948
+ },
949
+ months: {
950
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"],
951
+ longhand: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"]
952
+ },
953
+ firstDayOfWeek: 1,
954
+ rangeSeparator: " til ",
955
+ weekAbbreviation: "Uke",
956
+ scrollTitle: "Scroll for å endre",
957
+ toggleTitle: "Klikk for å veksle",
958
+ time_24hr: true,
959
+ ordinal: function ordinal() {
960
+ return ".";
961
+ }
962
+ };
963
+ fp$D.l10ns.no = Norwegian;
964
+ fp$D.l10ns;
965
+ var fp$E = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
966
+ l10ns: {}
967
+ };
968
+ var Punjabi = {
969
+ weekdays: {
970
+ shorthand: ["ਐਤ", "ਸੋਮ", "ਮੰਗਲ", "ਬੁੱਧ", "ਵੀਰ", "ਸ਼ੁੱਕਰ", "ਸ਼ਨਿੱਚਰ"],
971
+ longhand: ["ਐਤਵਾਰ", "ਸੋਮਵਾਰ", "ਮੰਗਲਵਾਰ", "ਬੁੱਧਵਾਰ", "ਵੀਰਵਾਰ", "ਸ਼ੁੱਕਰਵਾਰ", "ਸ਼ਨਿੱਚਰਵਾਰ"]
972
+ },
973
+ months: {
974
+ shorthand: ["ਜਨ", "ਫ਼ਰ", "ਮਾਰ", "ਅਪ੍ਰੈ", "ਮਈ", "ਜੂਨ", "ਜੁਲਾ", "ਅਗ", "ਸਤੰ", "ਅਕ", "ਨਵੰ", "ਦਸੰ"],
975
+ longhand: ["ਜਨਵਰੀ", "ਫ਼ਰਵਰੀ", "ਮਾਰਚ", "ਅਪ੍ਰੈਲ", "ਮਈ", "ਜੂਨ", "ਜੁਲਾਈ", "ਅਗਸਤ", "ਸਤੰਬਰ", "ਅਕਤੂਬਰ", "ਨਵੰਬਰ", "ਦਸੰਬਰ"]
976
+ },
977
+ time_24hr: true
978
+ };
979
+ fp$E.l10ns.pa = Punjabi;
980
+ fp$E.l10ns;
981
+ var fp$F = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
982
+ l10ns: {}
983
+ };
984
+ var Polish = {
985
+ weekdays: {
986
+ shorthand: ["Nd", "Pn", "Wt", "Śr", "Cz", "Pt", "So"],
987
+ longhand: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"]
988
+ },
989
+ months: {
990
+ shorthand: ["Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru"],
991
+ longhand: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"]
992
+ },
993
+ rangeSeparator: " do ",
994
+ weekAbbreviation: "tydz.",
995
+ scrollTitle: "Przewiń, aby zwiększyć",
996
+ toggleTitle: "Kliknij, aby przełączyć",
997
+ firstDayOfWeek: 1,
998
+ time_24hr: true,
999
+ ordinal: function ordinal() {
1000
+ return ".";
1001
+ }
1002
+ };
1003
+ fp$F.l10ns.pl = Polish;
1004
+ fp$F.l10ns;
1005
+ var fp$G = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1006
+ l10ns: {}
1007
+ };
1008
+ var Portuguese = {
1009
+ weekdays: {
1010
+ shorthand: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"],
1011
+ longhand: ["Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"]
1012
+ },
1013
+ months: {
1014
+ shorthand: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"],
1015
+ longhand: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"]
1016
+ },
1017
+ rangeSeparator: " até ",
1018
+ time_24hr: true
1019
+ };
1020
+ fp$G.l10ns.pt = Portuguese;
1021
+ fp$G.l10ns;
1022
+ var fp$H = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1023
+ l10ns: {}
1024
+ };
1025
+ var Romanian = {
1026
+ weekdays: {
1027
+ shorthand: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm"],
1028
+ longhand: ["Duminică", "Luni", "Marți", "Miercuri", "Joi", "Vineri", "Sâmbătă"]
1029
+ },
1030
+ months: {
1031
+ shorthand: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Noi", "Dec"],
1032
+ longhand: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"]
1033
+ },
1034
+ firstDayOfWeek: 1,
1035
+ time_24hr: true,
1036
+ ordinal: function ordinal() {
1037
+ return "";
1038
+ }
1039
+ };
1040
+ fp$H.l10ns.ro = Romanian;
1041
+ fp$H.l10ns;
1042
+ var fp$I = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1043
+ l10ns: {}
1044
+ };
1045
+ var Russian = {
1046
+ weekdays: {
1047
+ shorthand: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
1048
+ longhand: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"]
1049
+ },
1050
+ months: {
1051
+ shorthand: ["Янв", "Фев", "Март", "Апр", "Май", "Июнь", "Июль", "Авг", "Сен", "Окт", "Ноя", "Дек"],
1052
+ longhand: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"]
1053
+ },
1054
+ firstDayOfWeek: 1,
1055
+ ordinal: function ordinal() {
1056
+ return "";
1057
+ },
1058
+ rangeSeparator: " — ",
1059
+ weekAbbreviation: "Нед.",
1060
+ scrollTitle: "Прокрутите для увеличения",
1061
+ toggleTitle: "Нажмите для переключения",
1062
+ amPM: ["ДП", "ПП"],
1063
+ yearAriaLabel: "Год",
1064
+ time_24hr: true
1065
+ };
1066
+ fp$I.l10ns.ru = Russian;
1067
+ fp$I.l10ns;
1068
+ var fp$J = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1069
+ l10ns: {}
1070
+ };
1071
+ var Sinhala = {
1072
+ weekdays: {
1073
+ shorthand: ["ඉ", "ස", "අ", "බ", "බ්‍ර", "සි", "සෙ"],
1074
+ longhand: ["ඉරිදා", "සඳුදා", "අඟහරුවාදා", "බදාදා", "බ්‍රහස්පතින්දා", "සිකුරාදා", "සෙනසුරාදා"]
1075
+ },
1076
+ months: {
1077
+ shorthand: ["ජන", "පෙබ", "මාර්", "අප්‍රේ", "මැයි", "ජුනි", "ජූලි", "අගෝ", "සැප්", "ඔක්", "නොවැ", "දෙසැ"],
1078
+ longhand: ["ජනවාරි", "පෙබරවාරි", "මාර්තු", "අප්‍රේල්", "මැයි", "ජුනි", "ජූලි", "අගෝස්තු", "සැප්තැම්බර්", "ඔක්තෝබර්", "නොවැම්බර්", "දෙසැම්බර්"]
1079
+ },
1080
+ time_24hr: true
1081
+ };
1082
+ fp$J.l10ns.si = Sinhala;
1083
+ fp$J.l10ns;
1084
+ var fp$K = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1085
+ l10ns: {}
1086
+ };
1087
+ var Slovak = {
1088
+ weekdays: {
1089
+ shorthand: ["Ned", "Pon", "Ut", "Str", "Štv", "Pia", "Sob"],
1090
+ longhand: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota"]
1091
+ },
1092
+ months: {
1093
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"],
1094
+ longhand: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"]
1095
+ },
1096
+ firstDayOfWeek: 1,
1097
+ rangeSeparator: " do ",
1098
+ time_24hr: true,
1099
+ ordinal: function ordinal() {
1100
+ return ".";
1101
+ }
1102
+ };
1103
+ fp$K.l10ns.sk = Slovak;
1104
+ fp$K.l10ns;
1105
+ var fp$L = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1106
+ l10ns: {}
1107
+ };
1108
+ var Slovenian = {
1109
+ weekdays: {
1110
+ shorthand: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob"],
1111
+ longhand: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota"]
1112
+ },
1113
+ months: {
1114
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"],
1115
+ longhand: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"]
1116
+ },
1117
+ firstDayOfWeek: 1,
1118
+ rangeSeparator: " do ",
1119
+ time_24hr: true,
1120
+ ordinal: function ordinal() {
1121
+ return ".";
1122
+ }
1123
+ };
1124
+ fp$L.l10ns.sl = Slovenian;
1125
+ fp$L.l10ns;
1126
+ var fp$M = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1127
+ l10ns: {}
1128
+ };
1129
+ var Albanian = {
1130
+ weekdays: {
1131
+ shorthand: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sh"],
1132
+ longhand: ["E Diel", "E Hënë", "E Martë", "E Mërkurë", "E Enjte", "E Premte", "E Shtunë"]
1133
+ },
1134
+ months: {
1135
+ shorthand: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Kor", "Gus", "Sht", "Tet", "Nën", "Dhj"],
1136
+ longhand: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"]
1137
+ },
1138
+ time_24hr: true
1139
+ };
1140
+ fp$M.l10ns.sq = Albanian;
1141
+ fp$M.l10ns;
1142
+ var fp$N = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1143
+ l10ns: {}
1144
+ };
1145
+ var Serbian = {
1146
+ weekdays: {
1147
+ shorthand: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub"],
1148
+ longhand: ["Nedelja", "Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota"]
1149
+ },
1150
+ months: {
1151
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"],
1152
+ longhand: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"]
1153
+ },
1154
+ firstDayOfWeek: 1,
1155
+ weekAbbreviation: "Ned.",
1156
+ rangeSeparator: " do ",
1157
+ time_24hr: true
1158
+ };
1159
+ fp$N.l10ns.sr = Serbian;
1160
+ fp$N.l10ns;
1161
+ var fp$O = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1162
+ l10ns: {}
1163
+ };
1164
+ var Swedish = {
1165
+ firstDayOfWeek: 1,
1166
+ weekAbbreviation: "v",
1167
+ weekdays: {
1168
+ shorthand: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör"],
1169
+ longhand: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag"]
1170
+ },
1171
+ months: {
1172
+ shorthand: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
1173
+ longhand: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"]
1174
+ },
1175
+ time_24hr: true,
1176
+ ordinal: function ordinal() {
1177
+ return ".";
1178
+ }
1179
+ };
1180
+ fp$O.l10ns.sv = Swedish;
1181
+ fp$O.l10ns;
1182
+ var fp$P = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1183
+ l10ns: {}
1184
+ };
1185
+ var Thai = {
1186
+ weekdays: {
1187
+ shorthand: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส"],
1188
+ longhand: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัสบดี", "ศุกร์", "เสาร์"]
1189
+ },
1190
+ months: {
1191
+ shorthand: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."],
1192
+ longhand: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"]
1193
+ },
1194
+ firstDayOfWeek: 1,
1195
+ rangeSeparator: " ถึง ",
1196
+ scrollTitle: "เลื่อนเพื่อเพิ่มหรือลด",
1197
+ toggleTitle: "คลิกเพื่อเปลี่ยน",
1198
+ time_24hr: true,
1199
+ ordinal: function ordinal() {
1200
+ return "";
1201
+ }
1202
+ };
1203
+ fp$P.l10ns.th = Thai;
1204
+ fp$P.l10ns;
1205
+ var fp$Q = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1206
+ l10ns: {}
1207
+ };
1208
+ var Turkish = {
1209
+ weekdays: {
1210
+ shorthand: ["Paz", "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt"],
1211
+ longhand: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"]
1212
+ },
1213
+ months: {
1214
+ shorthand: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"],
1215
+ longhand: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"]
1216
+ },
1217
+ firstDayOfWeek: 1,
1218
+ ordinal: function ordinal() {
1219
+ return ".";
1220
+ },
1221
+ rangeSeparator: " - ",
1222
+ weekAbbreviation: "Hf",
1223
+ scrollTitle: "Artırmak için kaydırın",
1224
+ toggleTitle: "Aç/Kapa",
1225
+ amPM: ["ÖÖ", "ÖS"],
1226
+ time_24hr: true
1227
+ };
1228
+ fp$Q.l10ns.tr = Turkish;
1229
+ fp$Q.l10ns;
1230
+ var fp$R = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1231
+ l10ns: {}
1232
+ };
1233
+ var Ukrainian = {
1234
+ firstDayOfWeek: 1,
1235
+ weekdays: {
1236
+ shorthand: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
1237
+ longhand: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятниця", "Субота"]
1238
+ },
1239
+ months: {
1240
+ shorthand: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"],
1241
+ longhand: ["Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"]
1242
+ },
1243
+ time_24hr: true
1244
+ };
1245
+ fp$R.l10ns.uk = Ukrainian;
1246
+ fp$R.l10ns;
1247
+ var fp$S = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1248
+ l10ns: {}
1249
+ };
1250
+ var Uzbek = {
1251
+ weekdays: {
1252
+ shorthand: ["Якш", "Душ", "Сеш", "Чор", "Пай", "Жум", "Шан"],
1253
+ longhand: ["Якшанба", "Душанба", "Сешанба", "Чоршанба", "Пайшанба", "Жума", "Шанба"]
1254
+ },
1255
+ months: {
1256
+ shorthand: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"],
1257
+ longhand: ["Январ", "Феврал", "Март", "Апрел", "Май", "Июн", "Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр"]
1258
+ },
1259
+ firstDayOfWeek: 1,
1260
+ ordinal: function ordinal() {
1261
+ return "";
1262
+ },
1263
+ rangeSeparator: " — ",
1264
+ weekAbbreviation: "Ҳафта",
1265
+ scrollTitle: "Катталаштириш учун айлантиринг",
1266
+ toggleTitle: "Ўтиш учун босинг",
1267
+ amPM: ["AM", "PM"],
1268
+ yearAriaLabel: "Йил",
1269
+ time_24hr: true
1270
+ };
1271
+ fp$S.l10ns.uz = Uzbek;
1272
+ fp$S.l10ns;
1273
+ var fp$T = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1274
+ l10ns: {}
1275
+ };
1276
+ var UzbekLatin = {
1277
+ weekdays: {
1278
+ shorthand: ["Ya", "Du", "Se", "Cho", "Pa", "Ju", "Sha"],
1279
+ longhand: ["Yakshanba", "Dushanba", "Seshanba", "Chorshanba", "Payshanba", "Juma", "Shanba"]
1280
+ },
1281
+ months: {
1282
+ shorthand: ["Yan", "Fev", "Mar", "Apr", "May", "Iyun", "Iyul", "Avg", "Sen", "Okt", "Noy", "Dek"],
1283
+ longhand: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "Iyun", "Iyul", "Avgust", "Sentabr", "Oktabr", "Noyabr", "Dekabr"]
1284
+ },
1285
+ firstDayOfWeek: 1,
1286
+ ordinal: function ordinal() {
1287
+ return "";
1288
+ },
1289
+ rangeSeparator: " — ",
1290
+ weekAbbreviation: "Hafta",
1291
+ scrollTitle: "Kattalashtirish uchun aylantiring",
1292
+ toggleTitle: "O‘tish uchun bosing",
1293
+ amPM: ["AM", "PM"],
1294
+ yearAriaLabel: "Yil",
1295
+ time_24hr: true
1296
+ };
1297
+ fp$T.l10ns["uz_latn"] = UzbekLatin;
1298
+ fp$T.l10ns;
1299
+ var fp$U = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1300
+ l10ns: {}
1301
+ };
1302
+ var Vietnamese = {
1303
+ weekdays: {
1304
+ shorthand: ["CN", "T2", "T3", "T4", "T5", "T6", "T7"],
1305
+ longhand: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
1306
+ },
1307
+ months: {
1308
+ shorthand: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"],
1309
+ longhand: ["Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"]
1310
+ },
1311
+ firstDayOfWeek: 1,
1312
+ rangeSeparator: " đến "
1313
+ };
1314
+ fp$U.l10ns.vn = Vietnamese;
1315
+ fp$U.l10ns;
1316
+ var fp$V = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1317
+ l10ns: {}
1318
+ };
1319
+ var Mandarin = {
1320
+ weekdays: {
1321
+ shorthand: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
1322
+ longhand: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
1323
+ },
1324
+ months: {
1325
+ shorthand: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
1326
+ longhand: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]
1327
+ },
1328
+ rangeSeparator: " 至 ",
1329
+ weekAbbreviation: "周",
1330
+ scrollTitle: "滚动切换",
1331
+ toggleTitle: "点击切换 12/24 小时时制"
1332
+ };
1333
+ fp$V.l10ns.zh = Mandarin;
1334
+ fp$V.l10ns;
1335
+ var fp$W = typeof window !== "undefined" && window.flatpickr !== undefined ? window.flatpickr : {
1336
+ l10ns: {}
1337
+ };
1338
+ var MandarinTraditional = {
1339
+ weekdays: {
1340
+ shorthand: ["週日", "週一", "週二", "週三", "週四", "週五", "週六"],
1341
+ longhand: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
1342
+ },
1343
+ months: {
1344
+ shorthand: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
1345
+ longhand: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]
1346
+ },
1347
+ rangeSeparator: " 至 ",
1348
+ weekAbbreviation: "週",
1349
+ scrollTitle: "滾動切換",
1350
+ toggleTitle: "點擊切換 12/24 小時時制"
1351
+ };
1352
+ fp$W.l10ns.zh_tw = MandarinTraditional;
1353
+ fp$W.l10ns;
1354
+ var l10n = {
1355
+ ar: Arabic,
1356
+ at: Austria,
1357
+ az: Azerbaijan,
1358
+ be: Belarusian,
1359
+ bg: Bulgarian,
1360
+ bn: Bangla,
1361
+ bs: Bosnian,
1362
+ ca: Catalan,
1363
+ cat: Catalan,
1364
+ cs: Czech,
1365
+ cy: Welsh,
1366
+ da: Danish,
1367
+ de: German,
1368
+ default: _assign({}, english),
1369
+ en: english,
1370
+ eo: Esperanto,
1371
+ es: Spanish,
1372
+ et: Estonian,
1373
+ fa: Persian,
1374
+ fi: Finnish,
1375
+ fo: Faroese,
1376
+ fr: French,
1377
+ gr: Greek,
1378
+ he: Hebrew,
1379
+ hi: Hindi,
1380
+ hr: Croatian,
1381
+ hu: Hungarian,
1382
+ id: Indonesian,
1383
+ is: Icelandic,
1384
+ it: Italian,
1385
+ ja: Japanese,
1386
+ ka: Georgian,
1387
+ ko: Korean,
1388
+ km: Khmer,
1389
+ kz: Kazakh,
1390
+ lt: Lithuanian,
1391
+ lv: Latvian,
1392
+ mk: Macedonian,
1393
+ mn: Mongolian,
1394
+ ms: Malaysian,
1395
+ my: Burmese,
1396
+ nl: Dutch,
1397
+ no: Norwegian,
1398
+ pa: Punjabi,
1399
+ pl: Polish,
1400
+ pt: Portuguese,
1401
+ ro: Romanian,
1402
+ ru: Russian,
1403
+ si: Sinhala,
1404
+ sk: Slovak,
1405
+ sl: Slovenian,
1406
+ sq: Albanian,
1407
+ sr: Serbian,
1408
+ sv: Swedish,
1409
+ th: Thai,
1410
+ tr: Turkish,
1411
+ uk: Ukrainian,
1412
+ vn: Vietnamese,
1413
+ zh: Mandarin,
1414
+ zh_tw: MandarinTraditional,
1415
+ uz: Uzbek,
1416
+ uz_latn: UzbekLatin
1417
+ };
1418
+ exports.default = l10n;
1419
+ Object.defineProperty(exports, '__esModule', {
1420
+ value: true
1421
+ });
1422
+ });
1423
+ })(index.l10n, index.l10n.exports);
1424
+
1425
+ var l10n = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(index.l10n.exports);
1426
+
1427
+ exports["default"] = l10n;