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