pds-dev-kit-web-test 2.5.443 → 2.5.444
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/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/services/i18n/resources/en.json +29 -1
- package/dist/src/common/services/i18n/resources/es.json +28 -1
- package/dist/src/common/services/i18n/resources/fil.json +28 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +194 -0
- package/dist/src/common/services/i18n/resources/ja.json +29 -1
- package/dist/src/common/services/i18n/resources/ko.json +29 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +29 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +29 -1
- package/dist/src/common/styles/colorSet/index.d.ts +2 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
- package/dist/src/common/utils/dateHelper.d.ts +3 -0
- package/dist/src/common/utils/dateHelper.js +37 -0
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +13 -0
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +48 -0
- package/dist/src/desktop/components/Calendar/Calendar.d.ts +4 -0
- package/dist/src/desktop/components/Calendar/Calendar.js +379 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +7 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +48 -0
- package/dist/src/desktop/components/Calendar/DailyView.d.ts +17 -0
- package/dist/src/desktop/components/Calendar/DailyView.js +82 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +26 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.js +222 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.js +49 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +21 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.js +100 -0
- package/dist/src/desktop/components/Calendar/YearlyView.d.ts +11 -0
- package/dist/src/desktop/components/Calendar/YearlyView.js +71 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +24 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.js +108 -0
- package/dist/src/desktop/components/Calendar/constants.d.ts +1 -0
- package/dist/src/desktop/components/Calendar/constants.js +31 -0
- package/dist/src/desktop/components/Calendar/index.d.ts +10 -0
- package/dist/src/desktop/components/Calendar/index.js +37 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.js +45 -0
- package/dist/src/desktop/components/Calendar/types.d.ts +60 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +1 -4
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +3 -5
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +27 -0
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +2 -3
- package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +0 -40
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +177 -36
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +4 -152
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +2 -150
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +1 -45
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +9 -262
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +0 -593
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +0 -253
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +1 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +3 -5
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +1 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +2 -9
- package/dist/src/sub/DynamicLayout/mocks.d.ts +960 -8
- package/dist/src/sub/DynamicLayout/mocks.js +6 -4286
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -13
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +2 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +3 -121
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +3 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +7 -31
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +1 -45
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/group.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +10 -27
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -52
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +0 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +16 -49
- package/package.json +2 -3
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +0 -21
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +0 -1133
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +0 -11
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +0 -45
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +0 -79
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +0 -47
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +0 -139
- package/dist/src/sub/DynamicLayout/compositionActionTypes.js +0 -2
- package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +0 -14
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +0 -3
- package/dist/src/sub/DynamicLayout/mock_composition.js +0 -1606
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +0 -1111
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +0 -1091
- package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +0 -96
- package/dist/src/sub/DynamicLayout/mock_queryData.js +0 -2639
- package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +0 -842
- package/dist/src/sub/DynamicLayout/mock_slideBanner.js +0 -854
- package/dist/src/sub/DynamicLayout/mock_video.d.ts +0 -368
- package/dist/src/sub/DynamicLayout/mock_video.js +0 -371
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +0 -61
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +0 -87
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +0 -849
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +0 -43
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +0 -162
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +0 -182
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +0 -25
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +0 -234
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +0 -46
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +0 -139
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +0 -190
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +0 -17
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +0 -85
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +0 -25
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +0 -183
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +0 -29
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +0 -128
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +0 -23
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +0 -230
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +0 -67
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +0 -138
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +0 -20
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +0 -173
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +0 -87
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +0 -849
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +0 -43
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +0 -162
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +0 -26
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +0 -235
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +0 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +0 -63
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +0 -46
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +0 -186
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +0 -163
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +0 -26
- /package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel → desktop/components/Calendar}/types.js +0 -0
|
@@ -66,7 +66,7 @@ function UseTooltip(_a) {
|
|
|
66
66
|
systemUIPosition: tooltipPosition,
|
|
67
67
|
distance: distance
|
|
68
68
|
});
|
|
69
|
-
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.
|
|
69
|
+
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.body) })) : ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}));
|
|
70
70
|
}
|
|
71
71
|
var S_TooltipWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ", "\n\n ", ";\n"], ["\n ", "\n\n ", ";\n"])), systemUI_1.TooltipWrapperStyle, function (_a) {
|
|
72
72
|
var tooltipPositionCss = _a.tooltipPositionCss;
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "All day",
|
|
38
|
+
"calendar_more_schedules": "more",
|
|
39
|
+
"calendar_today": "Today",
|
|
40
|
+
"calendar_month_1": "Jan",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Apr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Aug",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dec",
|
|
52
|
+
"calendar_time_am": "AM",
|
|
53
|
+
"calendar_time_pm": "PM",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_time_noon": "Noon",
|
|
56
|
+
"calendar_header_daily": "{{dayText}}, {{month}} {{day}}, {{year}}",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
59
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
60
|
+
"calendar_view_monthly": "Monthly",
|
|
61
|
+
"calendar_view_weekly": "Weekly",
|
|
62
|
+
"calendar_view_daily": "Daily",
|
|
63
|
+
"calendar_view_yearly": "Yearly",
|
|
64
|
+
"calendar_date_format": "{{day}} ({{dayText}})"
|
|
37
65
|
}
|
|
38
66
|
}
|
|
@@ -33,6 +33,33 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "Todo el día",
|
|
38
|
+
"calendar_more_schedules": "más",
|
|
39
|
+
"calendar_today": "Hoy",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dic",
|
|
52
|
+
"calendar_time_am": "AM",
|
|
53
|
+
"calendar_time_pm": "PM",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_time_noon": "Mediodía",
|
|
56
|
+
"calendar_header_daily": "{{dayText}}, {{day}} de {{month}}, {{year}}",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
59
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
60
|
+
"calendar_view_monthly": "Mensual",
|
|
61
|
+
"calendar_view_weekly": "Semanal",
|
|
62
|
+
"calendar_view_daily": "Diario",
|
|
63
|
+
"calendar_view_yearly": "Anual"
|
|
37
64
|
}
|
|
38
65
|
}
|
|
@@ -33,6 +33,33 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "Buong araw",
|
|
38
|
+
"calendar_more_schedules": "pa",
|
|
39
|
+
"calendar_today": "Ngayon",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Peb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Hun",
|
|
46
|
+
"calendar_month_7": "Hul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Set",
|
|
49
|
+
"calendar_month_10": "Okt",
|
|
50
|
+
"calendar_month_11": "Nob",
|
|
51
|
+
"calendar_month_12": "Dis",
|
|
52
|
+
"calendar_time_am": "NU",
|
|
53
|
+
"calendar_time_pm": "NH",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_time_noon": "Tanghali",
|
|
56
|
+
"calendar_header_daily": "{{dayText}}, {{month}} {{day}}, {{year}}",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
59
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
60
|
+
"calendar_view_monthly": "Buwanan",
|
|
61
|
+
"calendar_view_weekly": "Linggo",
|
|
62
|
+
"calendar_view_daily": "Araw-araw",
|
|
63
|
+
"calendar_view_yearly": "Taon"
|
|
37
64
|
}
|
|
38
65
|
}
|
|
@@ -35,6 +35,34 @@ declare const locale: {
|
|
|
35
35
|
str_3891: string;
|
|
36
36
|
str_3892: string;
|
|
37
37
|
str_3893: string;
|
|
38
|
+
calendar_all_day: string;
|
|
39
|
+
calendar_more_schedules: string;
|
|
40
|
+
calendar_today: string;
|
|
41
|
+
calendar_month_1: string;
|
|
42
|
+
calendar_month_2: string;
|
|
43
|
+
calendar_month_3: string;
|
|
44
|
+
calendar_month_4: string;
|
|
45
|
+
calendar_month_5: string;
|
|
46
|
+
calendar_month_6: string;
|
|
47
|
+
calendar_month_7: string;
|
|
48
|
+
calendar_month_8: string;
|
|
49
|
+
calendar_month_9: string;
|
|
50
|
+
calendar_month_10: string;
|
|
51
|
+
calendar_month_11: string;
|
|
52
|
+
calendar_month_12: string;
|
|
53
|
+
calendar_time_am: string;
|
|
54
|
+
calendar_time_pm: string;
|
|
55
|
+
calendar_time_hour: string;
|
|
56
|
+
calendar_time_noon: string;
|
|
57
|
+
calendar_header_daily: string;
|
|
58
|
+
calendar_header_weekly_same_month: string;
|
|
59
|
+
calendar_header_weekly_diff_month: string;
|
|
60
|
+
calendar_header_monthly: string;
|
|
61
|
+
calendar_view_monthly: string;
|
|
62
|
+
calendar_view_weekly: string;
|
|
63
|
+
calendar_view_daily: string;
|
|
64
|
+
calendar_view_yearly: string;
|
|
65
|
+
calendar_date_format: string;
|
|
38
66
|
};
|
|
39
67
|
};
|
|
40
68
|
readonly en: {
|
|
@@ -73,6 +101,34 @@ declare const locale: {
|
|
|
73
101
|
str_3891: string;
|
|
74
102
|
str_3892: string;
|
|
75
103
|
str_3893: string;
|
|
104
|
+
calendar_all_day: string;
|
|
105
|
+
calendar_more_schedules: string;
|
|
106
|
+
calendar_today: string;
|
|
107
|
+
calendar_month_1: string;
|
|
108
|
+
calendar_month_2: string;
|
|
109
|
+
calendar_month_3: string;
|
|
110
|
+
calendar_month_4: string;
|
|
111
|
+
calendar_month_5: string;
|
|
112
|
+
calendar_month_6: string;
|
|
113
|
+
calendar_month_7: string;
|
|
114
|
+
calendar_month_8: string;
|
|
115
|
+
calendar_month_9: string;
|
|
116
|
+
calendar_month_10: string;
|
|
117
|
+
calendar_month_11: string;
|
|
118
|
+
calendar_month_12: string;
|
|
119
|
+
calendar_time_am: string;
|
|
120
|
+
calendar_time_pm: string;
|
|
121
|
+
calendar_time_hour: string;
|
|
122
|
+
calendar_time_noon: string;
|
|
123
|
+
calendar_header_daily: string;
|
|
124
|
+
calendar_header_weekly_same_month: string;
|
|
125
|
+
calendar_header_weekly_diff_month: string;
|
|
126
|
+
calendar_header_monthly: string;
|
|
127
|
+
calendar_view_monthly: string;
|
|
128
|
+
calendar_view_weekly: string;
|
|
129
|
+
calendar_view_daily: string;
|
|
130
|
+
calendar_view_yearly: string;
|
|
131
|
+
calendar_date_format: string;
|
|
76
132
|
};
|
|
77
133
|
};
|
|
78
134
|
readonly ja: {
|
|
@@ -111,6 +167,34 @@ declare const locale: {
|
|
|
111
167
|
str_3891: string;
|
|
112
168
|
str_3892: string;
|
|
113
169
|
str_3893: string;
|
|
170
|
+
calendar_all_day: string;
|
|
171
|
+
calendar_more_schedules: string;
|
|
172
|
+
calendar_today: string;
|
|
173
|
+
calendar_month_1: string;
|
|
174
|
+
calendar_month_2: string;
|
|
175
|
+
calendar_month_3: string;
|
|
176
|
+
calendar_month_4: string;
|
|
177
|
+
calendar_month_5: string;
|
|
178
|
+
calendar_month_6: string;
|
|
179
|
+
calendar_month_7: string;
|
|
180
|
+
calendar_month_8: string;
|
|
181
|
+
calendar_month_9: string;
|
|
182
|
+
calendar_month_10: string;
|
|
183
|
+
calendar_month_11: string;
|
|
184
|
+
calendar_month_12: string;
|
|
185
|
+
calendar_time_am: string;
|
|
186
|
+
calendar_time_pm: string;
|
|
187
|
+
calendar_time_hour: string;
|
|
188
|
+
calendar_time_noon: string;
|
|
189
|
+
calendar_header_daily: string;
|
|
190
|
+
calendar_header_weekly_same_month: string;
|
|
191
|
+
calendar_header_weekly_diff_month: string;
|
|
192
|
+
calendar_header_monthly: string;
|
|
193
|
+
calendar_view_monthly: string;
|
|
194
|
+
calendar_view_weekly: string;
|
|
195
|
+
calendar_view_daily: string;
|
|
196
|
+
calendar_view_yearly: string;
|
|
197
|
+
calendar_date_format: string;
|
|
114
198
|
};
|
|
115
199
|
};
|
|
116
200
|
readonly es: {
|
|
@@ -149,6 +233,33 @@ declare const locale: {
|
|
|
149
233
|
str_3891: string;
|
|
150
234
|
str_3892: string;
|
|
151
235
|
str_3893: string;
|
|
236
|
+
calendar_all_day: string;
|
|
237
|
+
calendar_more_schedules: string;
|
|
238
|
+
calendar_today: string;
|
|
239
|
+
calendar_month_1: string;
|
|
240
|
+
calendar_month_2: string;
|
|
241
|
+
calendar_month_3: string;
|
|
242
|
+
calendar_month_4: string;
|
|
243
|
+
calendar_month_5: string;
|
|
244
|
+
calendar_month_6: string;
|
|
245
|
+
calendar_month_7: string;
|
|
246
|
+
calendar_month_8: string;
|
|
247
|
+
calendar_month_9: string;
|
|
248
|
+
calendar_month_10: string;
|
|
249
|
+
calendar_month_11: string;
|
|
250
|
+
calendar_month_12: string;
|
|
251
|
+
calendar_time_am: string;
|
|
252
|
+
calendar_time_pm: string;
|
|
253
|
+
calendar_time_hour: string;
|
|
254
|
+
calendar_time_noon: string;
|
|
255
|
+
calendar_header_daily: string;
|
|
256
|
+
calendar_header_weekly_same_month: string;
|
|
257
|
+
calendar_header_weekly_diff_month: string;
|
|
258
|
+
calendar_header_monthly: string;
|
|
259
|
+
calendar_view_monthly: string;
|
|
260
|
+
calendar_view_weekly: string;
|
|
261
|
+
calendar_view_daily: string;
|
|
262
|
+
calendar_view_yearly: string;
|
|
152
263
|
};
|
|
153
264
|
};
|
|
154
265
|
readonly 'zh-cn': {
|
|
@@ -187,6 +298,34 @@ declare const locale: {
|
|
|
187
298
|
str_3891: string;
|
|
188
299
|
str_3892: string;
|
|
189
300
|
str_3893: string;
|
|
301
|
+
calendar_all_day: string;
|
|
302
|
+
calendar_more_schedules: string;
|
|
303
|
+
calendar_today: string;
|
|
304
|
+
calendar_month_1: string;
|
|
305
|
+
calendar_month_2: string;
|
|
306
|
+
calendar_month_3: string;
|
|
307
|
+
calendar_month_4: string;
|
|
308
|
+
calendar_month_5: string;
|
|
309
|
+
calendar_month_6: string;
|
|
310
|
+
calendar_month_7: string;
|
|
311
|
+
calendar_month_8: string;
|
|
312
|
+
calendar_month_9: string;
|
|
313
|
+
calendar_month_10: string;
|
|
314
|
+
calendar_month_11: string;
|
|
315
|
+
calendar_month_12: string;
|
|
316
|
+
calendar_time_am: string;
|
|
317
|
+
calendar_time_pm: string;
|
|
318
|
+
calendar_time_hour: string;
|
|
319
|
+
calendar_time_noon: string;
|
|
320
|
+
calendar_header_daily: string;
|
|
321
|
+
calendar_header_weekly_same_month: string;
|
|
322
|
+
calendar_header_weekly_diff_month: string;
|
|
323
|
+
calendar_header_monthly: string;
|
|
324
|
+
calendar_view_monthly: string;
|
|
325
|
+
calendar_view_weekly: string;
|
|
326
|
+
calendar_view_daily: string;
|
|
327
|
+
calendar_view_yearly: string;
|
|
328
|
+
calendar_date_format: string;
|
|
190
329
|
};
|
|
191
330
|
};
|
|
192
331
|
readonly 'zh-tw': {
|
|
@@ -225,6 +364,34 @@ declare const locale: {
|
|
|
225
364
|
str_3891: string;
|
|
226
365
|
str_3892: string;
|
|
227
366
|
str_3893: string;
|
|
367
|
+
calendar_all_day: string;
|
|
368
|
+
calendar_more_schedules: string;
|
|
369
|
+
calendar_today: string;
|
|
370
|
+
calendar_month_1: string;
|
|
371
|
+
calendar_month_2: string;
|
|
372
|
+
calendar_month_3: string;
|
|
373
|
+
calendar_month_4: string;
|
|
374
|
+
calendar_month_5: string;
|
|
375
|
+
calendar_month_6: string;
|
|
376
|
+
calendar_month_7: string;
|
|
377
|
+
calendar_month_8: string;
|
|
378
|
+
calendar_month_9: string;
|
|
379
|
+
calendar_month_10: string;
|
|
380
|
+
calendar_month_11: string;
|
|
381
|
+
calendar_month_12: string;
|
|
382
|
+
calendar_time_am: string;
|
|
383
|
+
calendar_time_pm: string;
|
|
384
|
+
calendar_time_hour: string;
|
|
385
|
+
calendar_time_noon: string;
|
|
386
|
+
calendar_header_daily: string;
|
|
387
|
+
calendar_header_weekly_same_month: string;
|
|
388
|
+
calendar_header_weekly_diff_month: string;
|
|
389
|
+
calendar_header_monthly: string;
|
|
390
|
+
calendar_view_monthly: string;
|
|
391
|
+
calendar_view_weekly: string;
|
|
392
|
+
calendar_view_daily: string;
|
|
393
|
+
calendar_view_yearly: string;
|
|
394
|
+
calendar_date_format: string;
|
|
228
395
|
};
|
|
229
396
|
};
|
|
230
397
|
readonly fil: {
|
|
@@ -263,6 +430,33 @@ declare const locale: {
|
|
|
263
430
|
str_3891: string;
|
|
264
431
|
str_3892: string;
|
|
265
432
|
str_3893: string;
|
|
433
|
+
calendar_all_day: string;
|
|
434
|
+
calendar_more_schedules: string;
|
|
435
|
+
calendar_today: string;
|
|
436
|
+
calendar_month_1: string;
|
|
437
|
+
calendar_month_2: string;
|
|
438
|
+
calendar_month_3: string;
|
|
439
|
+
calendar_month_4: string;
|
|
440
|
+
calendar_month_5: string;
|
|
441
|
+
calendar_month_6: string;
|
|
442
|
+
calendar_month_7: string;
|
|
443
|
+
calendar_month_8: string;
|
|
444
|
+
calendar_month_9: string;
|
|
445
|
+
calendar_month_10: string;
|
|
446
|
+
calendar_month_11: string;
|
|
447
|
+
calendar_month_12: string;
|
|
448
|
+
calendar_time_am: string;
|
|
449
|
+
calendar_time_pm: string;
|
|
450
|
+
calendar_time_hour: string;
|
|
451
|
+
calendar_time_noon: string;
|
|
452
|
+
calendar_header_daily: string;
|
|
453
|
+
calendar_header_weekly_same_month: string;
|
|
454
|
+
calendar_header_weekly_diff_month: string;
|
|
455
|
+
calendar_header_monthly: string;
|
|
456
|
+
calendar_view_monthly: string;
|
|
457
|
+
calendar_view_weekly: string;
|
|
458
|
+
calendar_view_daily: string;
|
|
459
|
+
calendar_view_yearly: string;
|
|
266
460
|
};
|
|
267
461
|
};
|
|
268
462
|
};
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"str_3890": "木",
|
|
34
34
|
"str_3891": "金",
|
|
35
35
|
"str_3892": "土",
|
|
36
|
-
"str_3893": "日"
|
|
36
|
+
"str_3893": "日",
|
|
37
|
+
"calendar_all_day": "終日",
|
|
38
|
+
"calendar_more_schedules": "件以上",
|
|
39
|
+
"calendar_today": "今日",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"calendar_time_am": "午前",
|
|
53
|
+
"calendar_time_pm": "午後",
|
|
54
|
+
"calendar_time_hour": "時",
|
|
55
|
+
"calendar_time_noon": "昼",
|
|
56
|
+
"calendar_header_daily": "{{year}}年{{month}}{{day}}日 {{dayText}}曜日",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
59
|
+
"calendar_header_monthly": "{{year}}年{{month}}",
|
|
60
|
+
"calendar_view_monthly": "月",
|
|
61
|
+
"calendar_view_weekly": "週",
|
|
62
|
+
"calendar_view_daily": "日",
|
|
63
|
+
"calendar_view_yearly": "年",
|
|
64
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})"
|
|
37
65
|
}
|
|
38
66
|
}
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"str_3890": "목",
|
|
34
34
|
"str_3891": "금",
|
|
35
35
|
"str_3892": "토",
|
|
36
|
-
"str_3893": "일"
|
|
36
|
+
"str_3893": "일",
|
|
37
|
+
"calendar_all_day": "종일",
|
|
38
|
+
"calendar_more_schedules": "개 더보기",
|
|
39
|
+
"calendar_today": "오늘",
|
|
40
|
+
"calendar_month_1": "1월",
|
|
41
|
+
"calendar_month_2": "2월",
|
|
42
|
+
"calendar_month_3": "3월",
|
|
43
|
+
"calendar_month_4": "4월",
|
|
44
|
+
"calendar_month_5": "5월",
|
|
45
|
+
"calendar_month_6": "6월",
|
|
46
|
+
"calendar_month_7": "7월",
|
|
47
|
+
"calendar_month_8": "8월",
|
|
48
|
+
"calendar_month_9": "9월",
|
|
49
|
+
"calendar_month_10": "10월",
|
|
50
|
+
"calendar_month_11": "11월",
|
|
51
|
+
"calendar_month_12": "12월",
|
|
52
|
+
"calendar_time_am": "오전",
|
|
53
|
+
"calendar_time_pm": "오후",
|
|
54
|
+
"calendar_time_hour": "시",
|
|
55
|
+
"calendar_time_noon": "점심",
|
|
56
|
+
"calendar_header_daily": "{{year}}년 {{month}} {{day}}일 {{dayText}}요일",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}}일 - {{endDay}}일",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}}일 - {{endMonth}} {{endDay}}일",
|
|
59
|
+
"calendar_header_monthly": "{{year}}년 {{month}}",
|
|
60
|
+
"calendar_view_monthly": "월간",
|
|
61
|
+
"calendar_view_weekly": "주간",
|
|
62
|
+
"calendar_view_daily": "일간",
|
|
63
|
+
"calendar_view_yearly": "연간",
|
|
64
|
+
"calendar_date_format": "{{day}}일 ({{dayText}})"
|
|
37
65
|
}
|
|
38
66
|
}
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "全天",
|
|
38
|
+
"calendar_more_schedules": "更多",
|
|
39
|
+
"calendar_today": "今天",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"calendar_time_am": "上午",
|
|
53
|
+
"calendar_time_pm": "下午",
|
|
54
|
+
"calendar_time_hour": "时",
|
|
55
|
+
"calendar_time_noon": "中午",
|
|
56
|
+
"calendar_header_daily": "{{year}}年{{month}}{{day}}日 {{dayText}}",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
59
|
+
"calendar_header_monthly": "{{year}}年{{month}}",
|
|
60
|
+
"calendar_view_monthly": "月",
|
|
61
|
+
"calendar_view_weekly": "周",
|
|
62
|
+
"calendar_view_daily": "日",
|
|
63
|
+
"calendar_view_yearly": "年",
|
|
64
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})"
|
|
37
65
|
}
|
|
38
66
|
}
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "全天",
|
|
38
|
+
"calendar_more_schedules": "更多",
|
|
39
|
+
"calendar_today": "今天",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"calendar_time_am": "上午",
|
|
53
|
+
"calendar_time_pm": "下午",
|
|
54
|
+
"calendar_time_hour": "時",
|
|
55
|
+
"calendar_time_noon": "中午",
|
|
56
|
+
"calendar_header_daily": "{{year}}年{{month}}{{day}}日 {{dayText}}",
|
|
57
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
58
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
59
|
+
"calendar_header_monthly": "{{year}}年{{month}}",
|
|
60
|
+
"calendar_view_monthly": "月",
|
|
61
|
+
"calendar_view_weekly": "周",
|
|
62
|
+
"calendar_view_daily": "日",
|
|
63
|
+
"calendar_view_yearly": "年",
|
|
64
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})"
|
|
37
65
|
}
|
|
38
66
|
}
|
|
@@ -123,7 +123,7 @@ declare const colorSet: {
|
|
|
123
123
|
grey450: string;
|
|
124
124
|
darkgrey450: string;
|
|
125
125
|
};
|
|
126
|
-
readonly
|
|
126
|
+
readonly PaletteColor_light: {
|
|
127
127
|
sys_container_background_01: string;
|
|
128
128
|
sys_container_background_02: string;
|
|
129
129
|
sys_container_background_03: string;
|
|
@@ -503,7 +503,7 @@ declare const colorSet: {
|
|
|
503
503
|
sys_cpnt_sheet_base_54: string;
|
|
504
504
|
sys_component_border_01: string;
|
|
505
505
|
};
|
|
506
|
-
readonly
|
|
506
|
+
readonly PaletteColor_Dark: {
|
|
507
507
|
sys_container_background_01: string;
|
|
508
508
|
sys_container_background_02: string;
|
|
509
509
|
sys_container_background_03: string;
|
|
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
7
|
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
|
-
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
8
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
12
|
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
13
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
function hoverTypeSystemUICssGenerator(_a) {
|
|
11
11
|
var baseSize = _a.baseSize, sizeOffset = _a.sizeOffset, positionOffset = _a.positionOffset, systemUIPosition = _a.systemUIPosition, _b = _a.distance, distance = _b === void 0 ? 8 : _b;
|
|
12
12
|
if (!sizeOffset || !positionOffset) {
|
|
13
|
-
return '
|
|
13
|
+
return '';
|
|
14
14
|
}
|
|
15
15
|
var end = positionOffset.left, bottom = positionOffset.bottom, top = positionOffset.top;
|
|
16
16
|
var width = sizeOffset.width, height = sizeOffset.height;
|
|
@@ -10,4 +10,7 @@ export declare class DateHelper {
|
|
|
10
10
|
static addMonths(date: Date, diff: number): Date;
|
|
11
11
|
static addDays(date: Date, diff: number): Date;
|
|
12
12
|
static getCalendarDates(monthDate: Date, startOfWeek: 'sunday' | 'monday'): Date[];
|
|
13
|
+
static endOfMonth(date: Date): Date;
|
|
14
|
+
static getCalendarDatesForCalendar(monthDate: Date, startOfWeek: 'sunday' | 'monday'): Date[];
|
|
15
|
+
static getDatesInRange(startDate: Date, endDate: Date): Date[];
|
|
13
16
|
}
|
|
@@ -82,6 +82,43 @@ var DateHelper = /** @class */ (function () {
|
|
|
82
82
|
var calendarStart = this.addDays(start, -offset);
|
|
83
83
|
return Array.from({ length: 42 }, function (_, i) { return _this.addDays(calendarStart, i); });
|
|
84
84
|
};
|
|
85
|
+
/*
|
|
86
|
+
* 월의 마지막 날짜 반환
|
|
87
|
+
*/
|
|
88
|
+
DateHelper.endOfMonth = function (date) {
|
|
89
|
+
return new Date(date.getFullYear(), date.getMonth() + 1, 0);
|
|
90
|
+
};
|
|
91
|
+
/*
|
|
92
|
+
* 일반 캘린더처럼 현재 달의 날짜만 표시하고, 필요한 경우에만 이전/다음 달의 날짜를 포함
|
|
93
|
+
*/
|
|
94
|
+
DateHelper.getCalendarDatesForCalendar = function (monthDate, startOfWeek) {
|
|
95
|
+
var start = this.startOfMonth(monthDate);
|
|
96
|
+
var end = this.endOfMonth(monthDate);
|
|
97
|
+
var startIndex = startOfWeek === 'monday' ? 1 : 0;
|
|
98
|
+
// 시작 날짜의 요일 조정
|
|
99
|
+
var startOffset = (start.getDay() - startIndex + 7) % 7;
|
|
100
|
+
var calendarStart = this.addDays(start, -startOffset);
|
|
101
|
+
// 마지막 날짜의 요일 조정
|
|
102
|
+
var endOffset = (6 - end.getDay() + startIndex) % 7;
|
|
103
|
+
var calendarEnd = this.addDays(end, endOffset);
|
|
104
|
+
// 전체 날짜 배열 생성
|
|
105
|
+
var dates = [];
|
|
106
|
+
var currentDate = new Date(calendarStart);
|
|
107
|
+
while (currentDate <= calendarEnd) {
|
|
108
|
+
dates.push(new Date(currentDate));
|
|
109
|
+
currentDate = this.addDays(currentDate, 1);
|
|
110
|
+
}
|
|
111
|
+
return dates;
|
|
112
|
+
};
|
|
113
|
+
DateHelper.getDatesInRange = function (startDate, endDate) {
|
|
114
|
+
var dates = [];
|
|
115
|
+
var currentDate = new Date(startDate);
|
|
116
|
+
while (currentDate <= endDate) {
|
|
117
|
+
dates.push(new Date(currentDate));
|
|
118
|
+
currentDate.setDate(currentDate.getDate() + 1);
|
|
119
|
+
}
|
|
120
|
+
return dates;
|
|
121
|
+
};
|
|
85
122
|
return DateHelper;
|
|
86
123
|
}());
|
|
87
124
|
exports.DateHelper = DateHelper;
|
|
@@ -105,7 +105,7 @@ function BasicButtonGroup(_a) {
|
|
|
105
105
|
var isHoveredButton = index === hoveredButtonIndex;
|
|
106
106
|
return ((0, jsx_runtime_1.jsxs)(S_BasicButton, __assign({ size: size, onClick: function (e) { return onClick && onClick(e); }, onMouseDown: function (e) { return onMouseDown && onMouseDown(e); }, onPointerEnter: function () { return setHoveredButtonIndex(index); }, onPointerLeave: function () { return setHoveredButtonIndex(null); }, disabled: state === 'disabled' || buttonState === 'disabled', backgroundColorTheme: backgroundColorTheme }, { children: [(0, jsx_runtime_1.jsx)(components_1.Icon, { iconName: iconName, size: size === 'small' ? 20 : 24, fillType: iconFillType, colorKey: getColorKey(buttonState, iconColorTheme) }), tooltipText &&
|
|
107
107
|
isHoveredButton &&
|
|
108
|
-
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss, size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: tooltipText, colorOverride: "ui_cpnt_textlabel_button_tooltip", styleTheme: "caption2Regular", colorTheme: "sysTextSecondary" }) })), document.
|
|
108
|
+
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss, size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: tooltipText, colorOverride: "ui_cpnt_textlabel_button_tooltip", styleTheme: "caption2Regular", colorTheme: "sysTextSecondary" }) })), document.body)] }), iconName + index));
|
|
109
109
|
}) })));
|
|
110
110
|
}
|
|
111
111
|
var S_BasicButtonGroup = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n width: max-content;\n\n & > button:not(:last-child) {\n margin-right: ", ";\n }\n"], ["\n align-items: center;\n display: flex;\n width: max-content;\n\n & > button:not(:last-child) {\n margin-right: ", ";\n }\n"])), function (_a) {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Schedule, displayAllDayScheduleMode } from './types';
|
|
2
|
+
import type React from 'react';
|
|
3
|
+
interface AllDaySchedulesSectionProps {
|
|
4
|
+
calendarDates: Date[];
|
|
5
|
+
displayAllDayScheduleMode?: displayAllDayScheduleMode;
|
|
6
|
+
getSchedulesForDate: (date: Date) => Schedule[];
|
|
7
|
+
renderScheduleItem: (schedule: Schedule, extraProps?: any) => React.ReactNode;
|
|
8
|
+
handleDateDragOver: (date: Date, e: React.DragEvent) => void;
|
|
9
|
+
handleDateDragLeave: () => void;
|
|
10
|
+
handleDateDrop: (date: Date, e: React.DragEvent) => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const AllDaySchedulesSection: React.FC<AllDaySchedulesSectionProps>;
|
|
13
|
+
export {};
|