@antscorp/antsomi-ui 1.3.5-beta.7 → 1.3.5-beta.71
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.
- package/es/assets/images/background/skeleton-background.png +0 -0
- package/es/assets/images/components/PreviewModal/Banner/skeletonBackground.png +0 -0
- package/es/assets/images/components/PreviewModal/Information/buttonText.png +0 -0
- package/es/assets/images/components/PreviewModal/Information/clickButton.png +0 -0
- package/es/assets/images/components/PreviewModal/Information/description.png +0 -0
- package/es/assets/images/components/PreviewModal/Information/deviceRadio.png +0 -0
- package/es/assets/images/components/PreviewModal/Information/itemName.png +0 -0
- package/es/assets/images/components/PreviewModal/banner.png +0 -0
- package/es/assets/images/components/PreviewModal/information.png +0 -0
- package/es/assets/images/components/PreviewModal/similarTemplate.png +0 -0
- package/es/assets/images/components/PreviewModal/thumbnails.png +0 -0
- package/es/assets/images/components/TemplateListing/blankTemplate.png +0 -0
- package/es/assets/images/components/TemplateListing/categoryListing.png +0 -0
- package/es/assets/images/components/TemplateListing/empty.png +0 -0
- package/es/assets/images/components/TemplateListing/previewModal.png +0 -0
- package/es/assets/images/components/TemplateListing/templateItem.png +0 -0
- package/es/assets/images/components/TemplateListing/templates.png +0 -0
- package/es/assets/images/profile.png +0 -0
- package/es/assets/images/skeleton_bg.png +0 -0
- package/es/assets/images/tail.png +0 -0
- package/es/assets/svg/mobile-frame.svg +3 -0
- package/es/components/atoms/MobileFrame/MobileFrame.d.ts +2 -0
- package/es/components/atoms/MobileFrame/MobileFrame.js +1 -1
- package/es/components/atoms/MobileFrame/styled.d.ts +2 -1
- package/es/components/atoms/MobileFrame/styled.js +11 -6
- package/es/components/atoms/SlideBar/SlideBar.js +1 -1
- package/es/components/atoms/Spin/Spin.js +2 -2
- package/es/components/common/ConfigProvider/ConfigProvider.js +4 -3
- package/es/components/common/ConfigProvider/GlobalStyle.js +85 -16
- package/es/components/molecules/AddDynamicContent/AddDynamicContent.js +3 -2
- package/es/components/molecules/CalendarSelection/CalendarSelection.d.ts +3 -0
- package/es/components/molecules/CalendarSelection/CalendarSelection.js +45 -0
- package/es/components/molecules/CalendarSelection/actions.d.ts +55 -0
- package/es/components/molecules/CalendarSelection/actions.js +39 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/AutoUpdateTo.d.ts +7 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/AutoUpdateTo.js +24 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/styled.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/AutoUpdateTo/styled.js +10 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/CustomPicker.d.ts +3 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/CustomPicker.js +108 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/styled.d.ts +6 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/styled.js +152 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/types.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/CustomPicker/types.js +1 -0
- package/es/components/molecules/CalendarSelection/components/Footer/Footer.d.ts +2 -0
- package/es/components/molecules/CalendarSelection/components/Footer/Footer.js +11 -0
- package/es/components/molecules/CalendarSelection/components/Footer/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/Footer/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/Footer/styled.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/Footer/styled.js +6 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/RangePicker.d.ts +5 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/RangePicker.js +4 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/styled.d.ts +5 -0
- package/es/components/molecules/CalendarSelection/components/RangePicker/styled.js +13 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/RangeSelectOptions.d.ts +3 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/RangeSelectOptions.js +23 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/NumOfDaysRanges/NumOfDaysRanges.d.ts +2 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/NumOfDaysRanges/NumOfDaysRanges.js +41 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/NumOfDaysRanges/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/NumOfDaysRanges/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/Option.d.ts +11 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/Option.js +40 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/styled.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/Option/styled.js +29 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/index.d.ts +2 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/components/index.js +2 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/index.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/index.js +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/styled.d.ts +3 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/styled.js +34 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/types.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/RangeSelectOptions/types.js +1 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/TimeRangeDisplay.d.ts +8 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/TimeRangeDisplay.js +49 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/index.d.ts +2 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/index.js +2 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/styled.d.ts +1 -0
- package/es/components/molecules/CalendarSelection/components/TimeRangeDisplay/styled.js +70 -0
- package/es/components/molecules/CalendarSelection/components/index.d.ts +5 -0
- package/es/components/molecules/CalendarSelection/components/index.js +5 -0
- package/es/components/molecules/CalendarSelection/constants.d.ts +97 -0
- package/es/components/molecules/CalendarSelection/constants.js +183 -0
- package/es/components/molecules/CalendarSelection/context.d.ts +4 -0
- package/es/components/molecules/CalendarSelection/context.js +6 -0
- package/es/components/molecules/CalendarSelection/hooks/index.d.ts +2 -0
- package/es/components/molecules/CalendarSelection/hooks/index.js +2 -0
- package/es/components/molecules/CalendarSelection/hooks/useStateContext.d.ts +4 -0
- package/es/components/molecules/CalendarSelection/hooks/useStateContext.js +13 -0
- package/es/components/molecules/CalendarSelection/hooks/useTriggerOut.d.ts +9 -0
- package/es/components/molecules/CalendarSelection/hooks/useTriggerOut.js +19 -0
- package/es/components/molecules/CalendarSelection/index.d.ts +25 -0
- package/es/components/molecules/CalendarSelection/index.js +6 -0
- package/es/components/molecules/CalendarSelection/reducer.d.ts +3 -0
- package/es/components/molecules/CalendarSelection/reducer.js +121 -0
- package/es/components/molecules/CalendarSelection/styled.d.ts +6 -0
- package/es/components/molecules/CalendarSelection/styled.js +13 -0
- package/es/components/molecules/CalendarSelection/types.d.ts +98 -0
- package/es/components/molecules/CalendarSelection/types.js +1 -0
- package/es/components/molecules/CalendarSelection/utils.d.ts +52 -0
- package/es/components/molecules/CalendarSelection/utils.js +304 -0
- package/es/components/molecules/ColorPicker/CustomPicker/index.js +3 -3
- package/es/components/molecules/ColorPicker/index.d.ts +1 -0
- package/es/components/molecules/ColorPicker/index.js +3 -2
- package/es/components/molecules/DatePicker/components/AdvancedPicker/AdvancedPicker.js +20 -16
- package/es/components/molecules/DatePicker/components/AdvancedPicker/styled.d.ts +3 -0
- package/es/components/molecules/DatePicker/components/AdvancedPicker/styled.js +23 -0
- package/es/components/molecules/DatePicker/components/AdvancedPicker/utils.d.ts +1 -1
- package/es/components/molecules/DatePicker/components/AdvancedPicker/utils.js +2 -2
- package/es/components/molecules/DatePicker/components/AdvancedRangePicker/AdvancedRangePicker.d.ts +1 -0
- package/es/components/molecules/DatePicker/components/AdvancedRangePicker/AdvancedRangePicker.js +3 -3
- package/es/components/molecules/DatePicker/components/DropdownLabel/DropdownLabel.js +2 -2
- package/es/components/molecules/ModalV2/styled.js +4 -0
- package/es/components/molecules/ResizeGrid/ResizeGrid.js +10 -2
- package/es/components/molecules/ResizeGrid/types.d.ts +1 -0
- package/es/components/molecules/RichMenu/RichMenuBlock/RichMenuBlock.d.ts +1 -0
- package/es/components/molecules/RichMenu/RichMenuBlock/RichMenuBlock.js +2 -2
- package/es/components/molecules/RichMenu/RichMenuChatBar/RichMenuChatBar.d.ts +1 -0
- package/es/components/molecules/RichMenu/RichMenuChatBar/RichMenuChatBar.js +4 -3
- package/es/components/molecules/RichMenu/RichMenuChatBar/styled.d.ts +1 -0
- package/es/components/molecules/RichMenu/RichMenuChatBar/styled.js +1 -1
- package/es/components/molecules/RichMenu/RichMenuMobileView/RichMenuMobileView.d.ts +7 -0
- package/es/components/molecules/RichMenu/RichMenuMobileView/RichMenuMobileView.js +25 -6
- package/es/components/molecules/RichMenu/RichMenuMobileView/styled.d.ts +5 -0
- package/es/components/molecules/RichMenu/RichMenuMobileView/styled.js +31 -0
- package/es/components/molecules/ShareAccess/components/GeneralAccess/GeneralAccess.js +2 -2
- package/es/components/molecules/ShareAccess/components/GeneralAccess/styled.js +1 -0
- package/es/components/molecules/ShareAccess/components/LayoutContent/LayoutContent.js +2 -2
- package/es/components/molecules/ShareAccess/components/PeopleAccess/PeopleAccess.js +1 -1
- package/es/components/molecules/ShareAccess/index.d.ts +2 -3
- package/es/components/molecules/ShareAccess/index.js +2 -3
- package/es/components/molecules/ShareAccess/types.d.ts +2 -0
- package/es/components/molecules/ShareAccess/utils.d.ts +2 -1
- package/es/components/molecules/ShareAccess/utils.js +9 -0
- package/es/components/molecules/TemplateSaveAs/TemplateSaveAs.d.ts +79 -0
- package/es/components/molecules/TemplateSaveAs/TemplateSaveAs.js +184 -0
- package/es/components/molecules/TemplateSaveAs/TemplateSaveAsModal.d.ts +10 -0
- package/es/components/molecules/TemplateSaveAs/TemplateSaveAsModal.js +50 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/ImageSlider.d.ts +20 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/ImageSlider.js +57 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/index.d.ts +1 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/index.js +1 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/styled.d.ts +9 -0
- package/es/components/molecules/TemplateSaveAs/components/ImageSlider/styled.js +182 -0
- package/es/components/molecules/TemplateSaveAs/components/index.d.ts +1 -0
- package/es/components/molecules/TemplateSaveAs/components/index.js +1 -0
- package/es/components/molecules/TemplateSaveAs/hooks/useTemplateSave.d.ts +65 -0
- package/es/components/molecules/TemplateSaveAs/hooks/useTemplateSave.js +121 -0
- package/es/components/molecules/TemplateSaveAs/index.d.ts +4 -0
- package/es/components/molecules/TemplateSaveAs/index.js +3 -0
- package/es/components/molecules/TemplateSaveAs/styled.d.ts +4 -0
- package/es/components/molecules/TemplateSaveAs/styled.js +73 -0
- package/es/components/molecules/ThumbnailCard/ThumbnailCard.js +29 -13
- package/es/components/molecules/ThumbnailCard/constants.d.ts +2 -2
- package/es/components/molecules/ThumbnailCard/constants.js +2 -2
- package/es/components/molecules/ThumbnailCard/styled.js +2 -1
- package/es/components/molecules/ThumbnailCard/types.d.ts +12 -6
- package/es/components/molecules/UploadImage/index.js +1 -1
- package/es/components/molecules/index.d.ts +3 -0
- package/es/components/molecules/index.js +2 -0
- package/es/components/organism/Help/Help.js +30 -1
- package/es/components/organism/Menu/Menu.d.ts +2 -0
- package/es/components/organism/Menu/Menu.js +2 -0
- package/es/components/organism/Menu/index.d.ts +1 -0
- package/es/components/organism/Menu/index.js +1 -0
- package/es/components/organism/PreviewTemplateModal/components/Banner/index.d.ts +3 -0
- package/es/components/organism/PreviewTemplateModal/components/Banner/index.js +13 -0
- package/es/components/organism/PreviewTemplateModal/components/Banner/styled.d.ts +4 -0
- package/es/components/organism/PreviewTemplateModal/components/Banner/styled.js +98 -0
- package/es/components/organism/PreviewTemplateModal/components/Information/index.d.ts +3 -0
- package/es/components/organism/PreviewTemplateModal/components/Information/index.js +29 -0
- package/es/components/organism/PreviewTemplateModal/components/Information/styled.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/components/Information/styled.js +41 -0
- package/es/components/organism/PreviewTemplateModal/components/SimilarTemplate/index.d.ts +3 -0
- package/es/components/organism/PreviewTemplateModal/components/SimilarTemplate/index.js +32 -0
- package/es/components/organism/PreviewTemplateModal/components/SimilarTemplate/styled.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/components/SimilarTemplate/styled.js +12 -0
- package/es/components/organism/PreviewTemplateModal/components/ThumbnailSlider/index.d.ts +6 -0
- package/es/components/organism/PreviewTemplateModal/components/ThumbnailSlider/index.js +77 -0
- package/es/components/organism/PreviewTemplateModal/components/ThumbnailSlider/styled.d.ts +3 -0
- package/es/components/organism/PreviewTemplateModal/components/ThumbnailSlider/styled.js +62 -0
- package/es/components/organism/PreviewTemplateModal/components/index.d.ts +4 -0
- package/es/components/organism/PreviewTemplateModal/components/index.js +4 -0
- package/es/components/organism/PreviewTemplateModal/constants/dataSample.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/constants/dataSample.js +9 -0
- package/es/components/organism/PreviewTemplateModal/constants/defaultProps.d.ts +8 -0
- package/es/components/organism/PreviewTemplateModal/constants/defaultProps.js +12 -0
- package/es/components/organism/PreviewTemplateModal/constants/html.d.ts +1 -0
- package/es/components/organism/PreviewTemplateModal/constants/html.js +1 -0
- package/es/components/organism/PreviewTemplateModal/constants/index.d.ts +4 -0
- package/es/components/organism/PreviewTemplateModal/constants/index.js +4 -0
- package/es/components/organism/PreviewTemplateModal/constants/variables.d.ts +12 -0
- package/es/components/organism/PreviewTemplateModal/constants/variables.js +12 -0
- package/es/components/organism/PreviewTemplateModal/index.d.ts +3 -0
- package/es/components/organism/PreviewTemplateModal/index.js +34 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/BannerPropsTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/BannerPropsTable/index.js +34 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/DataTypeTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/DataTypeTable/index.js +62 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/InformationPropsTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/InformationPropsTable/index.js +76 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/SimilarTemplatePropsTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/SimilarTemplatePropsTable/index.js +40 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/TThumbnailTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/TThumbnailTable/index.js +30 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/ThumbnailPropsTable/index.d.ts +2 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/ThumbnailPropsTable/index.js +46 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/index.d.ts +6 -0
- package/es/components/organism/PreviewTemplateModal/stories/dataTypes/components/index.js +6 -0
- package/es/components/organism/PreviewTemplateModal/styled.d.ts +4 -0
- package/es/components/organism/PreviewTemplateModal/styled.js +26 -0
- package/es/components/organism/PreviewTemplateModal/types.d.ts +38 -0
- package/es/components/organism/PreviewTemplateModal/types.js +1 -0
- package/es/components/organism/index.d.ts +1 -0
- package/es/components/organism/index.js +1 -0
- package/es/components/template/TemplateListing/Loadable.d.ts +6 -0
- package/es/components/template/TemplateListing/Loadable.js +7 -0
- package/es/components/template/TemplateListing/components/BlankTemplate/index.js +3 -1
- package/es/components/template/TemplateListing/components/CategoryListing/index.js +19 -10
- package/es/components/template/TemplateListing/components/CategoryListing/styled.d.ts +2 -0
- package/es/components/template/TemplateListing/components/CategoryListing/styled.js +50 -8
- package/es/components/template/TemplateListing/components/Empty/index.d.ts +3 -0
- package/es/components/template/TemplateListing/components/Empty/index.js +18 -0
- package/es/components/template/TemplateListing/components/Empty/styled.d.ts +3 -0
- package/es/components/template/TemplateListing/components/Empty/styled.js +35 -0
- package/es/components/template/TemplateListing/components/index.d.ts +1 -0
- package/es/components/template/TemplateListing/components/index.js +1 -0
- package/es/components/template/TemplateListing/constants/defaultProps.d.ts +5 -3
- package/es/components/template/TemplateListing/constants/defaultProps.js +8 -7
- package/es/components/template/TemplateListing/hooks/index.d.ts +1 -0
- package/es/components/template/TemplateListing/hooks/index.js +1 -0
- package/es/components/template/TemplateListing/hooks/useTemplateListing.d.ts +62 -0
- package/es/components/template/TemplateListing/hooks/useTemplateListing.js +230 -0
- package/es/components/template/TemplateListing/index.js +75 -14
- package/es/components/template/TemplateListing/stories/dataTypes/components/BlankTemplatePropsTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/BlankTemplatePropsTable/index.js +46 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/CategoryListingPropsTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/CategoryListingPropsTable/index.js +57 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/DataTypeTables/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/DataTypeTables/index.js +78 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/EmptyPropsTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/EmptyPropsTable/index.js +30 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TCategoryItemTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TCategoryItemTable/index.js +46 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TTemplateItemTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TTemplateItemTable/index.js +38 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TemplatesPropsTable/index.d.ts +2 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/TemplatesPropsTable/index.js +50 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/index.d.ts +7 -0
- package/es/components/template/TemplateListing/stories/dataTypes/components/index.js +7 -0
- package/es/components/template/TemplateListing/stories/demo/styled.d.ts +1 -0
- package/es/components/template/TemplateListing/stories/demo/styled.js +7 -0
- package/es/components/template/TemplateListing/styled/index.d.ts +1 -0
- package/es/components/template/TemplateListing/styled/index.js +24 -5
- package/es/components/template/TemplateListing/types/BlankTemplate.d.ts +1 -1
- package/es/components/template/TemplateListing/types/CategoryListing.d.ts +5 -2
- package/es/components/template/TemplateListing/types/Empty.d.ts +5 -0
- package/es/components/template/TemplateListing/types/Empty.js +1 -0
- package/es/components/template/TemplateListing/types/TemplateListing.d.ts +16 -6
- package/es/components/template/index.d.ts +2 -1
- package/es/components/template/index.js +5 -1
- package/es/constants/datetime.d.ts +8 -0
- package/es/constants/datetime.js +1594 -0
- package/es/constants/index.d.ts +5 -1
- package/es/constants/index.js +5 -1
- package/es/constants/queries.d.ts +4 -0
- package/es/constants/queries.js +5 -0
- package/es/constants/templateListing.d.ts +50 -0
- package/es/constants/templateListing.js +52 -0
- package/es/constants/theme.js +1 -1
- package/es/constants/variables.d.ts +19 -0
- package/es/constants/variables.js +19 -0
- package/es/hooks/index.d.ts +4 -0
- package/es/hooks/index.js +4 -0
- package/es/hooks/useEffectOnlyOnce.d.ts +2 -0
- package/es/hooks/useEffectOnlyOnce.js +12 -0
- package/es/hooks/useForceUpdate.d.ts +1 -0
- package/es/hooks/useForceUpdate.js +5 -0
- package/es/hooks/useIntersectionObserver.d.ts +57 -0
- package/es/hooks/useIntersectionObserver.js +97 -0
- package/es/hooks/useListingItemResize.d.ts +12 -0
- package/es/hooks/useListingItemResize.js +58 -0
- package/es/hooks/useScrollToEnd.d.ts +1 -0
- package/es/hooks/useScrollToEnd.js +30 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/es/locales/en/translation.json +9 -1
- package/es/locales/i18n.d.ts +16 -0
- package/es/locales/translations.d.ts +8 -0
- package/es/locales/vi/translation.json +9 -1
- package/es/models/ObjectTemplate.d.ts +56 -0
- package/es/models/ObjectTemplate.js +82 -0
- package/es/models/TemplateCategory.d.ts +13 -0
- package/es/models/TemplateCategory.js +28 -0
- package/es/queries/CustomFunction/useCustomFunction.js +35 -35
- package/es/queries/TemplateListing/index.d.ts +52 -0
- package/es/queries/TemplateListing/index.js +105 -0
- package/es/queries/index.d.ts +1 -0
- package/es/queries/index.js +1 -0
- package/es/services/TemplateListing/index.d.ts +70 -0
- package/es/services/TemplateListing/index.js +161 -0
- package/es/test.js +65 -11
- package/es/types/index.d.ts +5 -0
- package/es/types/index.js +3 -0
- package/es/types/service.d.ts +22 -0
- package/es/types/service.js +1 -0
- package/es/types/share-access.d.ts +18 -0
- package/es/types/share-access.js +1 -0
- package/es/types/templateListing.d.ts +13 -0
- package/es/types/templateListing.js +1 -0
- package/es/types/variables.d.ts +3 -0
- package/es/utils/common.d.ts +4 -0
- package/es/utils/common.js +38 -0
- package/es/utils/commonComponent.d.ts +7 -0
- package/es/utils/commonComponent.js +28 -0
- package/es/utils/index.d.ts +1 -0
- package/es/utils/index.js +1 -0
- package/es/utils/templateListing.d.ts +2 -0
- package/es/utils/templateListing.js +12 -0
- package/package.json +6 -1
|
@@ -0,0 +1,1594 @@
|
|
|
1
|
+
export const TIME_ZONES = [
|
|
2
|
+
{
|
|
3
|
+
label: "Visitor's Local Time",
|
|
4
|
+
value: '',
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
label: 'Eastern Standard Time (EST)',
|
|
8
|
+
value: 'America/New_York',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
label: 'Central Standard Time (CST)',
|
|
12
|
+
value: 'America/Chicago',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
label: 'Mountain Standard Time (MST)',
|
|
16
|
+
value: 'America/Denver',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
label: 'Mountain Daylight Time (MDT)',
|
|
20
|
+
value: 'America/Phoenix',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
label: 'Pacific Standard Time (PST)',
|
|
24
|
+
value: 'America/Los_Angeles',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
label: 'Alaska Standard Time (AKST)',
|
|
28
|
+
value: 'America/Anchorage',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
label: 'Abidjan (+00:00)',
|
|
32
|
+
value: 'Africa/Abidjan',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
label: 'Accra (+00:00)',
|
|
36
|
+
value: 'Africa/Accra',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
label: 'Addis Ababa (+03:00)',
|
|
40
|
+
value: 'Africa/Addis_Ababa',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
label: 'Algiers (+01:00)',
|
|
44
|
+
value: 'Africa/Algiers',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
label: 'Asmara (+03:00)',
|
|
48
|
+
value: 'Africa/Asmara',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
label: 'Australian Western Standard Time (AWST)',
|
|
52
|
+
value: 'Australia/Perth',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
label: 'Australian Central Western Standard Time (ACWST)',
|
|
56
|
+
value: 'Australia/Eucla',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
label: 'Australian Central Standard Time (ACST)',
|
|
60
|
+
value: 'Australia/Darwin',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
label: 'Australian Eastern Standard Time (AEST)',
|
|
64
|
+
value: 'Australia/Brisbane',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
label: 'Australian Central Daylight Time (ACDT)',
|
|
68
|
+
value: 'Australia/Adelaide',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
label: 'Australian Eastern Daylight Time (AEDT)',
|
|
72
|
+
value: 'Australia/Sydney',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
label: 'Bamako (+00:00)',
|
|
76
|
+
value: 'Africa/Bamako',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
label: 'Bangui (+01:00)',
|
|
80
|
+
value: 'Africa/Bangui',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
label: 'Banjul (+00:00)',
|
|
84
|
+
value: 'Africa/Banjul',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
label: 'Bissau (+00:00)',
|
|
88
|
+
value: 'Africa/Bissau',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
label: 'Blantyre (+02:00)',
|
|
92
|
+
value: 'Africa/Blantyre',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
label: 'Brazzaville (+01:00)',
|
|
96
|
+
value: 'Africa/Brazzaville',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
label: 'Bujumbura (+02:00)',
|
|
100
|
+
value: 'Africa/Bujumbura',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
label: 'Cairo (+02:00)',
|
|
104
|
+
value: 'Africa/Cairo',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
label: 'Casablanca (+00:00)',
|
|
108
|
+
value: 'Africa/Casablanca',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
label: 'Ceuta (+01:00)',
|
|
112
|
+
value: 'Africa/Ceuta',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
label: 'Conakry (+00:00)',
|
|
116
|
+
value: 'Africa/Conakry',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
label: 'Dakar (+00:00)',
|
|
120
|
+
value: 'Africa/Dakar',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
label: 'Dar es Salaam (+03:00)',
|
|
124
|
+
value: 'Africa/Dar_es_Salaam',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
label: 'Djibouti (+03:00)',
|
|
128
|
+
value: 'Africa/Djibouti',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
label: 'Douala (+01:00)',
|
|
132
|
+
value: 'Africa/Douala',
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
label: 'El Aaiun (+00:00)',
|
|
136
|
+
value: 'Africa/El_Aaiun',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
label: 'Freetown (+00:00)',
|
|
140
|
+
value: 'Africa/Freetown',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
label: 'Gaborone (+02:00)',
|
|
144
|
+
value: 'Africa/Gaborone',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
label: 'Harare (+02:00)',
|
|
148
|
+
value: 'Africa/Harare',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
label: 'Johannesburg (+02:00)',
|
|
152
|
+
value: 'Africa/Johannesburg',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
label: 'Juba (+03:00)',
|
|
156
|
+
value: 'Africa/Juba',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
label: 'Kampala (+03:00)',
|
|
160
|
+
value: 'Africa/Kampala',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
label: 'Khartoum (+02:00)',
|
|
164
|
+
value: 'Africa/Khartoum',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
label: 'Kigali (+02:00)',
|
|
168
|
+
value: 'Africa/Kigali',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
label: 'Kinshasa (+01:00)',
|
|
172
|
+
value: 'Africa/Kinshasa',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
label: 'Lagos (+01:00)',
|
|
176
|
+
value: 'Africa/Lagos',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
label: 'Libreville (+01:00)',
|
|
180
|
+
value: 'Africa/Libreville',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
label: 'Lome (+00:00)',
|
|
184
|
+
value: 'Africa/Lome',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
label: 'Luanda (+01:00)',
|
|
188
|
+
value: 'Africa/Luanda',
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
label: 'Lubumbashi (+02:00)',
|
|
192
|
+
value: 'Africa/Lubumbashi',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
label: 'Lusaka (+02:00)',
|
|
196
|
+
value: 'Africa/Lusaka',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
label: 'Malabo (+01:00)',
|
|
200
|
+
value: 'Africa/Malabo',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
label: 'Maputo (+02:00)',
|
|
204
|
+
value: 'Africa/Maputo',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
label: 'Maseru (+02:00)',
|
|
208
|
+
value: 'Africa/Maseru',
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
label: 'Mbabane (+02:00)',
|
|
212
|
+
value: 'Africa/Mbabane',
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
label: 'Mogadishu (+03:00)',
|
|
216
|
+
value: 'Africa/Mogadishu',
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
label: 'Monrovia (+00:00)',
|
|
220
|
+
value: 'Africa/Monrovia',
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
label: 'Nairobi (+03:00)',
|
|
224
|
+
value: 'Africa/Nairobi',
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
label: 'Ndjamena (+01:00)',
|
|
228
|
+
value: 'Africa/Ndjamena',
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
label: 'Niamey (+01:00)',
|
|
232
|
+
value: 'Africa/Niamey',
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
label: 'Nouakchott (+00:00)',
|
|
236
|
+
value: 'Africa/Nouakchott',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
label: 'Ouagadougou (+00:00)',
|
|
240
|
+
value: 'Africa/Ouagadougou',
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
label: 'Porto-Novo (+01:00)',
|
|
244
|
+
value: 'Africa/Porto-Novo',
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
label: 'Sao Tome (+00:00)',
|
|
248
|
+
value: 'Africa/Sao_Tome',
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
label: 'Tripoli (+02:00)',
|
|
252
|
+
value: 'Africa/Tripoli',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
label: 'Tunis (+01:00)',
|
|
256
|
+
value: 'Africa/Tunis',
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
label: 'Windhoek (+02:00)',
|
|
260
|
+
value: 'Africa/Windhoek',
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
label: 'Adak (-10:00)',
|
|
264
|
+
value: 'America/Adak',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
label: 'Anguilla (-04:00)',
|
|
268
|
+
value: 'America/Anguilla',
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
label: 'Antigua (-04:00)',
|
|
272
|
+
value: 'America/Antigua',
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
label: 'Araguaina (-03:00)',
|
|
276
|
+
value: 'America/Araguaina',
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
label: 'Argentina (-03:00)',
|
|
280
|
+
value: 'America/Argentina/Buenos_Aires',
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
label: 'Aruba (-04:00)',
|
|
284
|
+
value: 'America/Aruba',
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
label: 'Asuncion (-03:00)',
|
|
288
|
+
value: 'America/Asuncion',
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
label: 'Atikokan (-05:00)',
|
|
292
|
+
value: 'America/Atikokan',
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
label: 'Bahia (-03:00)',
|
|
296
|
+
value: 'America/Bahia',
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
label: 'Bahia Banderas (-06:00)',
|
|
300
|
+
value: 'America/Bahia_Banderas',
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
label: 'Barbados (-04:00)',
|
|
304
|
+
value: 'America/Barbados',
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
label: 'Belem (-03:00)',
|
|
308
|
+
value: 'America/Belem',
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
label: 'Belize (-06:00)',
|
|
312
|
+
value: 'America/Belize',
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
label: 'Blanc-Sablon (-04:00)',
|
|
316
|
+
value: 'America/Blanc-Sablon',
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
label: 'Boa Vista (-04:00)',
|
|
320
|
+
value: 'America/Boa_Vista',
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
label: 'Bogota (-05:00)',
|
|
324
|
+
value: 'America/Bogota',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
label: 'Boise (-07:00)',
|
|
328
|
+
value: 'America/Boise',
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
label: 'Cambridge Bay (-07:00)',
|
|
332
|
+
value: 'America/Cambridge_Bay',
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
label: 'Campo Grande (-04:00)',
|
|
336
|
+
value: 'America/Campo_Grande',
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
label: 'Cancun (-05:00)',
|
|
340
|
+
value: 'America/Cancun',
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
label: 'Caracas (-04:00)',
|
|
344
|
+
value: 'America/Caracas',
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
label: 'Cayenne (-03:00)',
|
|
348
|
+
value: 'America/Cayenne',
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
label: 'Cayman (-05:00)',
|
|
352
|
+
value: 'America/Cayman',
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
label: 'Chihuahua (-07:00)',
|
|
356
|
+
value: 'America/Chihuahua',
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
label: 'Costa Rica (-06:00)',
|
|
360
|
+
value: 'America/Costa_Rica',
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
label: 'Creston (-07:00)',
|
|
364
|
+
value: 'America/Creston',
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
label: 'Cuiaba (-04:00)',
|
|
368
|
+
value: 'America/Cuiaba',
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
label: 'Curacao (-04:00)',
|
|
372
|
+
value: 'America/Curacao',
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
label: 'Danmarkshavn (+00:00)',
|
|
376
|
+
value: 'America/Danmarkshavn',
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
label: 'Dawson (-08:00)',
|
|
380
|
+
value: 'America/Dawson',
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
label: 'Dawson Creek (-07:00)',
|
|
384
|
+
value: 'America/Dawson_Creek',
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
label: 'Detroit (-05:00)',
|
|
388
|
+
value: 'America/Detroit',
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
label: 'Dominica (-04:00)',
|
|
392
|
+
value: 'America/Dominica',
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
label: 'Edmonton (-07:00)',
|
|
396
|
+
value: 'America/Edmonton',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
label: 'Eirunepe (-05:00)',
|
|
400
|
+
value: 'America/Eirunepe',
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
label: 'El Salvador (-06:00)',
|
|
404
|
+
value: 'America/El_Salvador',
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
label: 'Fort Nelson (-07:00)',
|
|
408
|
+
value: 'America/Fort_Nelson',
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
label: 'Fortaleza (-03:00)',
|
|
412
|
+
value: 'America/Fortaleza',
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
label: 'Glace Bay (-04:00)',
|
|
416
|
+
value: 'America/Glace_Bay',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
label: 'Godthab (-03:00)',
|
|
420
|
+
value: 'America/Godthab',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
label: 'Goose Bay (-04:00)',
|
|
424
|
+
value: 'America/Goose_Bay',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
label: 'Grand Turk (-04:00)',
|
|
428
|
+
value: 'America/Grand_Turk',
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
label: 'Grenada (-04:00)',
|
|
432
|
+
value: 'America/Grenada',
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
label: 'Guadeloupe (-04:00)',
|
|
436
|
+
value: 'America/Guadeloupe',
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
label: 'Guatemala (-06:00)',
|
|
440
|
+
value: 'America/Guatemala',
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
label: 'Guayaquil (-05:00)',
|
|
444
|
+
value: 'America/Guayaquil',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
label: 'Guyana (-04:00)',
|
|
448
|
+
value: 'America/Guyana',
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
label: 'Halifax (-04:00)',
|
|
452
|
+
value: 'America/Halifax',
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
label: 'Havana (-05:00)',
|
|
456
|
+
value: 'America/Havana',
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
label: 'Hermosillo (-07:00)',
|
|
460
|
+
value: 'America/Hermosillo',
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
label: 'Indiana (-05:00)',
|
|
464
|
+
value: 'America/Indiana/Indianapolis',
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
label: 'Inuvik (-07:00)',
|
|
468
|
+
value: 'America/Inuvik',
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
label: 'Iqaluit (-05:00)',
|
|
472
|
+
value: 'America/Iqaluit',
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
label: 'Jamaica (-05:00)',
|
|
476
|
+
value: 'America/Jamaica',
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
label: 'Juneau (-09:00)',
|
|
480
|
+
value: 'America/Juneau',
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
label: 'Kentucky (-05:00)',
|
|
484
|
+
value: 'America/Kentucky/Louisville',
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
label: 'Kralendijk (-04:00)',
|
|
488
|
+
value: 'America/Kralendijk',
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
label: 'La Paz (-04:00)',
|
|
492
|
+
value: 'America/La_Paz',
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
label: 'Lima (-05:00)',
|
|
496
|
+
value: 'America/Lima',
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
label: 'Lower Princes (-04:00)',
|
|
500
|
+
value: 'America/Lower_Princes',
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
label: 'Maceio (-03:00)',
|
|
504
|
+
value: 'America/Maceio',
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
label: 'Managua (-06:00)',
|
|
508
|
+
value: 'America/Managua',
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
label: 'Manaus (-04:00)',
|
|
512
|
+
value: 'America/Manaus',
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
label: 'Marigot (-04:00)',
|
|
516
|
+
value: 'America/Marigot',
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
label: 'Martinique (-04:00)',
|
|
520
|
+
value: 'America/Martinique',
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
label: 'Matamoros (-06:00)',
|
|
524
|
+
value: 'America/Matamoros',
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
label: 'Mazatlan (-07:00)',
|
|
528
|
+
value: 'America/Mazatlan',
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
label: 'Menominee (-06:00)',
|
|
532
|
+
value: 'America/Menominee',
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
label: 'Merida (-06:00)',
|
|
536
|
+
value: 'America/Merida',
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
label: 'Metlakatla (-09:00)',
|
|
540
|
+
value: 'America/Metlakatla',
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
label: 'Mexico City (-06:00)',
|
|
544
|
+
value: 'America/Mexico_City',
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
label: 'Miquelon (-03:00)',
|
|
548
|
+
value: 'America/Miquelon',
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
label: 'Moncton (-04:00)',
|
|
552
|
+
value: 'America/Moncton',
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
label: 'Monterrey (-06:00)',
|
|
556
|
+
value: 'America/Monterrey',
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
label: 'Montevideo (-03:00)',
|
|
560
|
+
value: 'America/Montevideo',
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
label: 'Montserrat (-04:00)',
|
|
564
|
+
value: 'America/Montserrat',
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
label: 'Nassau (-05:00)',
|
|
568
|
+
value: 'America/Nassau',
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
label: 'Nipigon (-05:00)',
|
|
572
|
+
value: 'America/Nipigon',
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
label: 'Nome (-09:00)',
|
|
576
|
+
value: 'America/Nome',
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
label: 'Noronha (-02:00)',
|
|
580
|
+
value: 'America/Noronha',
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
label: 'North Dakota (-06:00)',
|
|
584
|
+
value: 'America/North_Dakota/Beulah',
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
label: 'Ojinaga (-07:00)',
|
|
588
|
+
value: 'America/Ojinaga',
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
label: 'Panama (-05:00)',
|
|
592
|
+
value: 'America/Panama',
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
label: 'Pangnirtung (-05:00)',
|
|
596
|
+
value: 'America/Pangnirtung',
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
label: 'Paramaribo (-03:00)',
|
|
600
|
+
value: 'America/Paramaribo',
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
label: 'Port-au-Prince (-05:00)',
|
|
604
|
+
value: 'America/Port-au-Prince',
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
label: 'Port of Spain (-04:00)',
|
|
608
|
+
value: 'America/Port_of_Spain',
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
label: 'Porto Velho (-04:00)',
|
|
612
|
+
value: 'America/Porto_Velho',
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
label: 'Puerto Rico (-04:00)',
|
|
616
|
+
value: 'America/Puerto_Rico',
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
label: 'Punta Arenas (-03:00)',
|
|
620
|
+
value: 'America/Punta_Arenas',
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
label: 'Rainy River (-06:00)',
|
|
624
|
+
value: 'America/Rainy_River',
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
label: 'Rankin Inlet (-06:00)',
|
|
628
|
+
value: 'America/Rankin_Inlet',
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
label: 'Recife (-03:00)',
|
|
632
|
+
value: 'America/Recife',
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
label: 'Regina (-06:00)',
|
|
636
|
+
value: 'America/Regina',
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
label: 'Resolute (-06:00)',
|
|
640
|
+
value: 'America/Resolute',
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
label: 'Rio Branco (-05:00)',
|
|
644
|
+
value: 'America/Rio_Branco',
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
label: 'Santarem (-03:00)',
|
|
648
|
+
value: 'America/Santarem',
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
label: 'Santiago (-03:00)',
|
|
652
|
+
value: 'America/Santiago',
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
label: 'Santo Domingo (-04:00)',
|
|
656
|
+
value: 'America/Santo_Domingo',
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
label: 'Sao Paulo (-03:00)',
|
|
660
|
+
value: 'America/Sao_Paulo',
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
label: 'Scoresbysund (-01:00)',
|
|
664
|
+
value: 'America/Scoresbysund',
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
label: 'Sitka (-09:00)',
|
|
668
|
+
value: 'America/Sitka',
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
label: 'St Barthelemy (-04:00)',
|
|
672
|
+
value: 'America/St_Barthelemy',
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
label: 'St Johns (-03:30)',
|
|
676
|
+
value: 'America/St_Johns',
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
label: 'St Kitts (-04:00)',
|
|
680
|
+
value: 'America/St_Kitts',
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
label: 'St Lucia (-04:00)',
|
|
684
|
+
value: 'America/St_Lucia',
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
label: 'St Thomas (-04:00)',
|
|
688
|
+
value: 'America/St_Thomas',
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
label: 'St Vincent (-04:00)',
|
|
692
|
+
value: 'America/St_Vincent',
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
label: 'Swift Current (-06:00)',
|
|
696
|
+
value: 'America/Swift_Current',
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
label: 'Tegucigalpa (-06:00)',
|
|
700
|
+
value: 'America/Tegucigalpa',
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
label: 'Thule (-04:00)',
|
|
704
|
+
value: 'America/Thule',
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
label: 'Thunder Bay (-05:00)',
|
|
708
|
+
value: 'America/Thunder_Bay',
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
label: 'Tijuana (-08:00)',
|
|
712
|
+
value: 'America/Tijuana',
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
label: 'Toronto (-05:00)',
|
|
716
|
+
value: 'America/Toronto',
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
label: 'Tortola (-04:00)',
|
|
720
|
+
value: 'America/Tortola',
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
label: 'Vancouver (-08:00)',
|
|
724
|
+
value: 'America/Vancouver',
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
label: 'Whitehorse (-08:00)',
|
|
728
|
+
value: 'America/Whitehorse',
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
label: 'Winnipeg (-06:00)',
|
|
732
|
+
value: 'America/Winnipeg',
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
label: 'Yakutat (-09:00)',
|
|
736
|
+
value: 'America/Yakutat',
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
label: 'Yellowknife (-07:00)',
|
|
740
|
+
value: 'America/Yellowknife',
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
label: 'Casey (+11:00)',
|
|
744
|
+
value: 'Antarctica/Casey',
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
label: 'Davis (+07:00)',
|
|
748
|
+
value: 'Antarctica/Davis',
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
label: 'DumontDUrville (+10:00)',
|
|
752
|
+
value: 'Antarctica/DumontDUrville',
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
label: 'Macquarie (+11:00)',
|
|
756
|
+
value: 'Antarctica/Macquarie',
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
label: 'Mawson (+05:00)',
|
|
760
|
+
value: 'Antarctica/Mawson',
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
label: 'McMurdo (+13:00)',
|
|
764
|
+
value: 'Antarctica/McMurdo',
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
label: 'Palmer (-03:00)',
|
|
768
|
+
value: 'Antarctica/Palmer',
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
label: 'Rothera (-03:00)',
|
|
772
|
+
value: 'Antarctica/Rothera',
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
label: 'Syowa (+03:00)',
|
|
776
|
+
value: 'Antarctica/Syowa',
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
label: 'Troll (+00:00)',
|
|
780
|
+
value: 'Antarctica/Troll',
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
label: 'Vostok (+06:00)',
|
|
784
|
+
value: 'Antarctica/Vostok',
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
label: 'Aden (+03:00)',
|
|
788
|
+
value: 'Asia/Aden',
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
label: 'Almaty (+06:00)',
|
|
792
|
+
value: 'Asia/Almaty',
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
label: 'Amman (+02:00)',
|
|
796
|
+
value: 'Asia/Amman',
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
label: 'Anadyr (+12:00)',
|
|
800
|
+
value: 'Asia/Anadyr',
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
label: 'Aqtau (+05:00)',
|
|
804
|
+
value: 'Asia/Aqtau',
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
label: 'Aqtobe (+05:00)',
|
|
808
|
+
value: 'Asia/Aqtobe',
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
label: 'Ashgabat (+05:00)',
|
|
812
|
+
value: 'Asia/Ashgabat',
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
label: 'Atyrau (+05:00)',
|
|
816
|
+
value: 'Asia/Atyrau',
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
label: 'Baghdad (+03:00)',
|
|
820
|
+
value: 'Asia/Baghdad',
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
label: 'Bahrain (+03:00)',
|
|
824
|
+
value: 'Asia/Bahrain',
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
label: 'Baku (+04:00)',
|
|
828
|
+
value: 'Asia/Baku',
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
label: 'Bangkok (+07:00)',
|
|
832
|
+
value: 'Asia/Bangkok',
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
label: 'Barnaul (+07:00)',
|
|
836
|
+
value: 'Asia/Barnaul',
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
label: 'Beirut (+02:00)',
|
|
840
|
+
value: 'Asia/Beirut',
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
label: 'Bishkek (+06:00)',
|
|
844
|
+
value: 'Asia/Bishkek',
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
label: 'Brunei (+08:00)',
|
|
848
|
+
value: 'Asia/Brunei',
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
label: 'Chita (+09:00)',
|
|
852
|
+
value: 'Asia/Chita',
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
label: 'Choibalsan (+08:00)',
|
|
856
|
+
value: 'Asia/Choibalsan',
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
label: 'Colombo (+05:30)',
|
|
860
|
+
value: 'Asia/Colombo',
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
label: 'Damascus (+02:00)',
|
|
864
|
+
value: 'Asia/Damascus',
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
label: 'Dhaka (+06:00)',
|
|
868
|
+
value: 'Asia/Dhaka',
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
label: 'Dili (+09:00)',
|
|
872
|
+
value: 'Asia/Dili',
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
label: 'Dubai (+04:00)',
|
|
876
|
+
value: 'Asia/Dubai',
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
label: 'Dushanbe (+05:00)',
|
|
880
|
+
value: 'Asia/Dushanbe',
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
label: 'Famagusta (+02:00)',
|
|
884
|
+
value: 'Asia/Famagusta',
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
label: 'Gaza (+02:00)',
|
|
888
|
+
value: 'Asia/Gaza',
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
label: 'Hebron (+02:00)',
|
|
892
|
+
value: 'Asia/Hebron',
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
label: 'Ho Chi Minh (+07:00)',
|
|
896
|
+
value: 'Asia/Ho_Chi_Minh',
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
label: 'Hong Kong (+08:00)',
|
|
900
|
+
value: 'Asia/Hong_Kong',
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
label: 'Hovd (+07:00)',
|
|
904
|
+
value: 'Asia/Hovd',
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
label: 'Irkutsk (+08:00)',
|
|
908
|
+
value: 'Asia/Irkutsk',
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
label: 'Jakarta (+07:00)',
|
|
912
|
+
value: 'Asia/Jakarta',
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
label: 'Jayapura (+09:00)',
|
|
916
|
+
value: 'Asia/Jayapura',
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
label: 'Jerusalem (+02:00)',
|
|
920
|
+
value: 'Asia/Jerusalem',
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
label: 'Kabul (+04:30)',
|
|
924
|
+
value: 'Asia/Kabul',
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
label: 'Kamchatka (+12:00)',
|
|
928
|
+
value: 'Asia/Kamchatka',
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
label: 'Karachi (+05:00)',
|
|
932
|
+
value: 'Asia/Karachi',
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
label: 'Kathmandu (+05:45)',
|
|
936
|
+
value: 'Asia/Kathmandu',
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
label: 'Khandyga (+09:00)',
|
|
940
|
+
value: 'Asia/Khandyga',
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
label: 'Kolkata (+05:30)',
|
|
944
|
+
value: 'Asia/Kolkata',
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
label: 'Krasnoyarsk (+07:00)',
|
|
948
|
+
value: 'Asia/Krasnoyarsk',
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
label: 'Kuala Lumpur (+08:00)',
|
|
952
|
+
value: 'Asia/Kuala_Lumpur',
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
label: 'Kuching (+08:00)',
|
|
956
|
+
value: 'Asia/Kuching',
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
label: 'Kuwait (+03:00)',
|
|
960
|
+
value: 'Asia/Kuwait',
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
label: 'Macau (+08:00)',
|
|
964
|
+
value: 'Asia/Macau',
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
label: 'Magadan (+11:00)',
|
|
968
|
+
value: 'Asia/Magadan',
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
label: 'Makassar (+08:00)',
|
|
972
|
+
value: 'Asia/Makassar',
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
label: 'Manila (+08:00)',
|
|
976
|
+
value: 'Asia/Manila',
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
label: 'Muscat (+04:00)',
|
|
980
|
+
value: 'Asia/Muscat',
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
label: 'Nicosia (+02:00)',
|
|
984
|
+
value: 'Asia/Nicosia',
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
label: 'Novokuznetsk (+07:00)',
|
|
988
|
+
value: 'Asia/Novokuznetsk',
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
label: 'Novosibirsk (+07:00)',
|
|
992
|
+
value: 'Asia/Novosibirsk',
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
label: 'Omsk (+06:00)',
|
|
996
|
+
value: 'Asia/Omsk',
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
label: 'Oral (+05:00)',
|
|
1000
|
+
value: 'Asia/Oral',
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
label: 'Phnom Penh (+07:00)',
|
|
1004
|
+
value: 'Asia/Phnom_Penh',
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
label: 'Pontianak (+07:00)',
|
|
1008
|
+
value: 'Asia/Pontianak',
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
label: 'Pyongyang (+08:30)',
|
|
1012
|
+
value: 'Asia/Pyongyang',
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
label: 'Qatar (+03:00)',
|
|
1016
|
+
value: 'Asia/Qatar',
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
label: 'Qyzylorda (+06:00)',
|
|
1020
|
+
value: 'Asia/Qyzylorda',
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
label: 'Riyadh (+03:00)',
|
|
1024
|
+
value: 'Asia/Riyadh',
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
label: 'Sakhalin (+11:00)',
|
|
1028
|
+
value: 'Asia/Sakhalin',
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
label: 'Samarkand (+05:00)',
|
|
1032
|
+
value: 'Asia/Samarkand',
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
label: 'Seoul (+09:00)',
|
|
1036
|
+
value: 'Asia/Seoul',
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
label: 'Shanghai (+08:00)',
|
|
1040
|
+
value: 'Asia/Shanghai',
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
label: 'Singapore (+08:00)',
|
|
1044
|
+
value: 'Asia/Singapore',
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
label: 'Srednekolymsk (+11:00)',
|
|
1048
|
+
value: 'Asia/Srednekolymsk',
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
label: 'Taipei (+08:00)',
|
|
1052
|
+
value: 'Asia/Taipei',
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
label: 'Tashkent (+05:00)',
|
|
1056
|
+
value: 'Asia/Tashkent',
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
label: 'Tbilisi (+04:00)',
|
|
1060
|
+
value: 'Asia/Tbilisi',
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
label: 'Tehran (+03:30)',
|
|
1064
|
+
value: 'Asia/Tehran',
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
label: 'Thimphu (+06:00)',
|
|
1068
|
+
value: 'Asia/Thimphu',
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
label: 'Tokyo (+09:00)',
|
|
1072
|
+
value: 'Asia/Tokyo',
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
label: 'Tomsk (+07:00)',
|
|
1076
|
+
value: 'Asia/Tomsk',
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
label: 'Ulaanbaatar (+08:00)',
|
|
1080
|
+
value: 'Asia/Ulaanbaatar',
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
label: 'Urumqi (+06:00)',
|
|
1084
|
+
value: 'Asia/Urumqi',
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
label: 'Ust-Nera (+10:00)',
|
|
1088
|
+
value: 'Asia/Ust-Nera',
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
label: 'Vientiane (+07:00)',
|
|
1092
|
+
value: 'Asia/Vientiane',
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
label: 'Vladivostok (+10:00)',
|
|
1096
|
+
value: 'Asia/Vladivostok',
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
label: 'Yakutsk (+09:00)',
|
|
1100
|
+
value: 'Asia/Yakutsk',
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
label: 'Yangon (+06:30)',
|
|
1104
|
+
value: 'Asia/Yangon',
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
label: 'Yekaterinburg (+05:00)',
|
|
1108
|
+
value: 'Asia/Yekaterinburg',
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
label: 'Yerevan (+04:00)',
|
|
1112
|
+
value: 'Asia/Yerevan',
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
label: 'Azores (-01:00)',
|
|
1116
|
+
value: 'Atlantic/Azores',
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
label: 'Bermuda (-04:00)',
|
|
1120
|
+
value: 'Atlantic/Bermuda',
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
label: 'Canary (+00:00)',
|
|
1124
|
+
value: 'Atlantic/Canary',
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
label: 'Cape Verde (-01:00)',
|
|
1128
|
+
value: 'Atlantic/Cape_Verde',
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
label: 'Faroe (+00:00)',
|
|
1132
|
+
value: 'Atlantic/Faroe',
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
label: 'Madeira (+00:00)',
|
|
1136
|
+
value: 'Atlantic/Madeira',
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
label: 'Reykjavik (+00:00)',
|
|
1140
|
+
value: 'Atlantic/Reykjavik',
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
label: 'South Georgia (-02:00)',
|
|
1144
|
+
value: 'Atlantic/South_Georgia',
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
label: 'St Helena (+00:00)',
|
|
1148
|
+
value: 'Atlantic/St_Helena',
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
label: 'Stanley (-03:00)',
|
|
1152
|
+
value: 'Atlantic/Stanley',
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
label: 'Amsterdam (+01:00)',
|
|
1156
|
+
value: 'Europe/Amsterdam',
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
label: 'Andorra (+01:00)',
|
|
1160
|
+
value: 'Europe/Andorra',
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
label: 'Astrakhan (+04:00)',
|
|
1164
|
+
value: 'Europe/Astrakhan',
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
label: 'Athens (+02:00)',
|
|
1168
|
+
value: 'Europe/Athens',
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
label: 'Belgrade (+01:00)',
|
|
1172
|
+
value: 'Europe/Belgrade',
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
label: 'Berlin (+01:00)',
|
|
1176
|
+
value: 'Europe/Berlin',
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
label: 'Bratislava (+01:00)',
|
|
1180
|
+
value: 'Europe/Bratislava',
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
label: 'Brussels (+01:00)',
|
|
1184
|
+
value: 'Europe/Brussels',
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
label: 'Bucharest (+02:00)',
|
|
1188
|
+
value: 'Europe/Bucharest',
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
label: 'Budapest (+01:00)',
|
|
1192
|
+
value: 'Europe/Budapest',
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
label: 'Busingen (+01:00)',
|
|
1196
|
+
value: 'Europe/Busingen',
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
label: 'Chisinau (+02:00)',
|
|
1200
|
+
value: 'Europe/Chisinau',
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
label: 'Copenhagen (+01:00)',
|
|
1204
|
+
value: 'Europe/Copenhagen',
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
label: 'Dublin (+00:00)',
|
|
1208
|
+
value: 'Europe/Dublin',
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
label: 'Gibraltar (+01:00)',
|
|
1212
|
+
value: 'Europe/Gibraltar',
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
label: 'Guernsey (+00:00)',
|
|
1216
|
+
value: 'Europe/Guernsey',
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
label: 'Helsinki (+02:00)',
|
|
1220
|
+
value: 'Europe/Helsinki',
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
label: 'Isle of Man (+00:00)',
|
|
1224
|
+
value: 'Europe/Isle_of_Man',
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
label: 'Istanbul (+03:00)',
|
|
1228
|
+
value: 'Europe/Istanbul',
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
label: 'Jersey (+00:00)',
|
|
1232
|
+
value: 'Europe/Jersey',
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
label: 'Kaliningrad (+02:00)',
|
|
1236
|
+
value: 'Europe/Kaliningrad',
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
label: 'Kiev (+02:00)',
|
|
1240
|
+
value: 'Europe/Kiev',
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
label: 'Kirov (+03:00)',
|
|
1244
|
+
value: 'Europe/Kirov',
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
label: 'Lisbon (+00:00)',
|
|
1248
|
+
value: 'Europe/Lisbon',
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
label: 'Ljubljana (+01:00)',
|
|
1252
|
+
value: 'Europe/Ljubljana',
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
label: 'London (+00:00)',
|
|
1256
|
+
value: 'Europe/London',
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
label: 'Luxembourg (+01:00)',
|
|
1260
|
+
value: 'Europe/Luxembourg',
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
label: 'Madrid (+01:00)',
|
|
1264
|
+
value: 'Europe/Madrid',
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
label: 'Malta (+01:00)',
|
|
1268
|
+
value: 'Europe/Malta',
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
label: 'Mariehamn (+02:00)',
|
|
1272
|
+
value: 'Europe/Mariehamn',
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
label: 'Minsk (+03:00)',
|
|
1276
|
+
value: 'Europe/Minsk',
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
label: 'Monaco (+01:00)',
|
|
1280
|
+
value: 'Europe/Monaco',
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
label: 'Moscow (+03:00)',
|
|
1284
|
+
value: 'Europe/Moscow',
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
label: 'Oslo (+01:00)',
|
|
1288
|
+
value: 'Europe/Oslo',
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
label: 'Paris (+01:00)',
|
|
1292
|
+
value: 'Europe/Paris',
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
label: 'Podgorica (+01:00)',
|
|
1296
|
+
value: 'Europe/Podgorica',
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
label: 'Prague (+01:00)',
|
|
1300
|
+
value: 'Europe/Prague',
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
label: 'Riga (+02:00)',
|
|
1304
|
+
value: 'Europe/Riga',
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
label: 'Rome (+01:00)',
|
|
1308
|
+
value: 'Europe/Rome',
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
label: 'Samara (+04:00)',
|
|
1312
|
+
value: 'Europe/Samara',
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
label: 'San Marino (+01:00)',
|
|
1316
|
+
value: 'Europe/San_Marino',
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
label: 'Sarajevo (+01:00)',
|
|
1320
|
+
value: 'Europe/Sarajevo',
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
label: 'Saratov (+04:00)',
|
|
1324
|
+
value: 'Europe/Saratov',
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
label: 'Simferopol (+03:00)',
|
|
1328
|
+
value: 'Europe/Simferopol',
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
label: 'Skopje (+01:00)',
|
|
1332
|
+
value: 'Europe/Skopje',
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
label: 'Sofia (+02:00)',
|
|
1336
|
+
value: 'Europe/Sofia',
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
label: 'Stockholm (+01:00)',
|
|
1340
|
+
value: 'Europe/Stockholm',
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
label: 'Tallinn (+02:00)',
|
|
1344
|
+
value: 'Europe/Tallinn',
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
label: 'Tirane (+01:00)',
|
|
1348
|
+
value: 'Europe/Tirane',
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
label: 'Ulyanovsk (+04:00)',
|
|
1352
|
+
value: 'Europe/Ulyanovsk',
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
label: 'Uzhgorod (+02:00)',
|
|
1356
|
+
value: 'Europe/Uzhgorod',
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
label: 'Vaduz (+01:00)',
|
|
1360
|
+
value: 'Europe/Vaduz',
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
label: 'Vatican (+01:00)',
|
|
1364
|
+
value: 'Europe/Vatican',
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
label: 'Vienna (+01:00)',
|
|
1368
|
+
value: 'Europe/Vienna',
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
label: 'Vilnius (+02:00)',
|
|
1372
|
+
value: 'Europe/Vilnius',
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
label: 'Volgograd (+03:00)',
|
|
1376
|
+
value: 'Europe/Volgograd',
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
label: 'Warsaw (+01:00)',
|
|
1380
|
+
value: 'Europe/Warsaw',
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
label: 'Zagreb (+01:00)',
|
|
1384
|
+
value: 'Europe/Zagreb',
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
label: 'Zaporozhye (+02:00)',
|
|
1388
|
+
value: 'Europe/Zaporozhye',
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
label: 'Zurich (+01:00)',
|
|
1392
|
+
value: 'Europe/Zurich',
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
label: 'Antananarivo (+03:00)',
|
|
1396
|
+
value: 'Indian/Antananarivo',
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
label: 'Chagos (+06:00)',
|
|
1400
|
+
value: 'Indian/Chagos',
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
label: 'Christmas (+07:00)',
|
|
1404
|
+
value: 'Indian/Christmas',
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
label: 'Cocos (+06:30)',
|
|
1408
|
+
value: 'Indian/Cocos',
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
label: 'Comoro (+03:00)',
|
|
1412
|
+
value: 'Indian/Comoro',
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
label: 'Kerguelen (+05:00)',
|
|
1416
|
+
value: 'Indian/Kerguelen',
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
label: 'Mahe (+04:00)',
|
|
1420
|
+
value: 'Indian/Mahe',
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
label: 'Maldives (+05:00)',
|
|
1424
|
+
value: 'Indian/Maldives',
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
label: 'Mauritius (+04:00)',
|
|
1428
|
+
value: 'Indian/Mauritius',
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
label: 'Mayotte (+03:00)',
|
|
1432
|
+
value: 'Indian/Mayotte',
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
label: 'Reunion (+04:00)',
|
|
1436
|
+
value: 'Indian/Reunion',
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
label: 'Apia (+14:00)',
|
|
1440
|
+
value: 'Pacific/Apia',
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
label: 'Auckland (+13:00)',
|
|
1444
|
+
value: 'Pacific/Auckland',
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
label: 'Bougainville (+11:00)',
|
|
1448
|
+
value: 'Pacific/Bougainville',
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
label: 'Chatham (+13:45)',
|
|
1452
|
+
value: 'Pacific/Chatham',
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
label: 'Chuuk (+10:00)',
|
|
1456
|
+
value: 'Pacific/Chuuk',
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
label: 'Easter (-05:00)',
|
|
1460
|
+
value: 'Pacific/Easter',
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
label: 'Efate (+11:00)',
|
|
1464
|
+
value: 'Pacific/Efate',
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
label: 'Enderbury (+13:00)',
|
|
1468
|
+
value: 'Pacific/Enderbury',
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
label: 'Fakaofo (+13:00)',
|
|
1472
|
+
value: 'Pacific/Fakaofo',
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
label: 'Fiji (+12:00)',
|
|
1476
|
+
value: 'Pacific/Fiji',
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
label: 'Funafuti (+12:00)',
|
|
1480
|
+
value: 'Pacific/Funafuti',
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
label: 'Galapagos (-06:00)',
|
|
1484
|
+
value: 'Pacific/Galapagos',
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
label: 'Gambier (-09:00)',
|
|
1488
|
+
value: 'Pacific/Gambier',
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
label: 'Guadalcanal (+11:00)',
|
|
1492
|
+
value: 'Pacific/Guadalcanal',
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
label: 'Guam (+10:00)',
|
|
1496
|
+
value: 'Pacific/Guam',
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
label: 'Honolulu (-10:00)',
|
|
1500
|
+
value: 'Pacific/Honolulu',
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
label: 'Kiritimati (+14:00)',
|
|
1504
|
+
value: 'Pacific/Kiritimati',
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
label: 'Kosrae (+11:00)',
|
|
1508
|
+
value: 'Pacific/Kosrae',
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
label: 'Kwajalein (+12:00)',
|
|
1512
|
+
value: 'Pacific/Kwajalein',
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
label: 'Majuro (+12:00)',
|
|
1516
|
+
value: 'Pacific/Majuro',
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
label: 'Marquesas (-09:30)',
|
|
1520
|
+
value: 'Pacific/Marquesas',
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
label: 'Midway (-11:00)',
|
|
1524
|
+
value: 'Pacific/Midway',
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
label: 'Nauru (+12:00)',
|
|
1528
|
+
value: 'Pacific/Nauru',
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
label: 'Niue (-11:00)',
|
|
1532
|
+
value: 'Pacific/Niue',
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
label: 'Norfolk (+11:00)',
|
|
1536
|
+
value: 'Pacific/Norfolk',
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
label: 'Noumea (+11:00)',
|
|
1540
|
+
value: 'Pacific/Noumea',
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
label: 'Pago Pago (-11:00)',
|
|
1544
|
+
value: 'Pacific/Pago_Pago',
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
label: 'Palau (+09:00)',
|
|
1548
|
+
value: 'Pacific/Palau',
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
label: 'Pitcairn (-08:00)',
|
|
1552
|
+
value: 'Pacific/Pitcairn',
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
label: 'Pohnpei (+11:00)',
|
|
1556
|
+
value: 'Pacific/Pohnpei',
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
label: 'Port Moresby (+10:00)',
|
|
1560
|
+
value: 'Pacific/Port_Moresby',
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
label: 'Rarotonga (-10:00)',
|
|
1564
|
+
value: 'Pacific/Rarotonga',
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
label: 'Saipan (+10:00)',
|
|
1568
|
+
value: 'Pacific/Saipan',
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
label: 'Tahiti (-10:00)',
|
|
1572
|
+
value: 'Pacific/Tahiti',
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
label: 'Tarawa (+12:00)',
|
|
1576
|
+
value: 'Pacific/Tarawa',
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
label: 'Tongatapu (+13:00)',
|
|
1580
|
+
value: 'Pacific/Tongatapu',
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
label: 'Wake (+12:00)',
|
|
1584
|
+
value: 'Pacific/Wake',
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
label: 'Wallis (+12:00)',
|
|
1588
|
+
value: 'Pacific/Wallis',
|
|
1589
|
+
},
|
|
1590
|
+
];
|
|
1591
|
+
export const DATE_TIME_FORMAT = {
|
|
1592
|
+
TITLE_DATE_TIME: 'YYYY-MM-DD HH:mm:ss',
|
|
1593
|
+
DATE_TIME: 'DD/MM/YYYY - HH:mm:ss',
|
|
1594
|
+
};
|