pds-dev-kit-web-test 2.5.444 → 2.5.445
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 +1 -29
- package/dist/src/common/services/i18n/resources/es.json +1 -28
- package/dist/src/common/services/i18n/resources/fil.json +1 -28
- package/dist/src/common/services/i18n/resources/index.d.ts +0 -194
- package/dist/src/common/services/i18n/resources/ja.json +1 -29
- package/dist/src/common/services/i18n/resources/ko.json +1 -29
- package/dist/src/common/services/i18n/resources/zh-cn.json +1 -29
- package/dist/src/common/services/i18n/resources/zh-tw.json +1 -29
- 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 +0 -3
- package/dist/src/common/utils/dateHelper.js +0 -37
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +21 -0
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +1133 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +4 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +5 -3
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +45 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +79 -0
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +3 -2
- package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +47 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +40 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +36 -177
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +152 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +150 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +45 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +262 -9
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +593 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +253 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +5 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +9 -2
- package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +139 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +14 -0
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/mock_composition.js +1606 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +1111 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +1091 -0
- package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +96 -0
- package/dist/src/sub/DynamicLayout/mock_queryData.js +2639 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +842 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.js +854 -0
- package/dist/src/sub/DynamicLayout/mock_video.d.ts +368 -0
- package/dist/src/sub/DynamicLayout/mock_video.js +371 -0
- package/dist/src/sub/DynamicLayout/mocks.d.ts +8 -960
- package/dist/src/sub/DynamicLayout/mocks.js +4286 -6
- 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 +13 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +18 -2
- 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 +121 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +61 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +87 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +849 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +162 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +182 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +25 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +234 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +139 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +190 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +17 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +85 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +25 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +183 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +29 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +128 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +23 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +230 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +67 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +39 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +138 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +20 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +173 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +87 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +849 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +162 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +26 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +235 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +63 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +186 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +163 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +31 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +45 -1
- 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 +27 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +3 -1
- 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/parseCompositionPlacement.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +26 -0
- 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 +52 -3
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +1 -0
- package/dist/src/sub/DynamicLayout/types.d.ts +49 -16
- package/package.json +3 -2
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +0 -13
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +0 -48
- package/dist/src/desktop/components/Calendar/Calendar.d.ts +0 -4
- package/dist/src/desktop/components/Calendar/Calendar.js +0 -379
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +0 -7
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +0 -48
- package/dist/src/desktop/components/Calendar/DailyView.d.ts +0 -17
- package/dist/src/desktop/components/Calendar/DailyView.js +0 -82
- package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +0 -26
- package/dist/src/desktop/components/Calendar/MonthlyView.js +0 -222
- package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +0 -16
- package/dist/src/desktop/components/Calendar/ScheduleItem.js +0 -49
- package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +0 -21
- package/dist/src/desktop/components/Calendar/WeeklyView.js +0 -100
- package/dist/src/desktop/components/Calendar/YearlyView.d.ts +0 -11
- package/dist/src/desktop/components/Calendar/YearlyView.js +0 -71
- package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +0 -24
- package/dist/src/desktop/components/Calendar/calendarUtils.js +0 -108
- package/dist/src/desktop/components/Calendar/constants.d.ts +0 -1
- package/dist/src/desktop/components/Calendar/constants.js +0 -31
- package/dist/src/desktop/components/Calendar/index.d.ts +0 -10
- package/dist/src/desktop/components/Calendar/index.js +0 -37
- package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +0 -16
- package/dist/src/desktop/components/Calendar/timeFormatUtils.js +0 -45
- package/dist/src/desktop/components/Calendar/types.d.ts +0 -60
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +0 -6
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +0 -27
- /package/dist/src/{desktop/components/Calendar/types.js → sub/DynamicLayout/compositionActionTypes.js} +0 -0
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.toUTC = exports.getHeaderText = exports.calculateDateRange = exports.calculateIsAllDay = void 0;
|
|
4
|
-
var dateHelper_1 = require("../../../common/utils/dateHelper");
|
|
5
|
-
/**
|
|
6
|
-
* 일정이 종일 일정인지 확인하는 함수
|
|
7
|
-
* @param startDate 시작 날짜
|
|
8
|
-
* @param endDate 종료 날짜
|
|
9
|
-
* @returns 종일 일정 여부
|
|
10
|
-
*/
|
|
11
|
-
var calculateIsAllDay = function (startDate, endDate) {
|
|
12
|
-
// 시작 시간이 00:00:00이고 종료 시간이 23:59:59인 경우를 체크
|
|
13
|
-
var isStartAtMidnight = startDate.getHours() === 0 && startDate.getMinutes() === 0 && startDate.getSeconds() === 0;
|
|
14
|
-
var isEndAtEndOfDay = endDate.getHours() === 23 && endDate.getMinutes() === 59 && endDate.getSeconds() === 59;
|
|
15
|
-
// 시작 시간이 00:00:00이고 종료 시간이 23:59:59인 경우를 전체일로 간주
|
|
16
|
-
return isStartAtMidnight && isEndAtEndOfDay;
|
|
17
|
-
};
|
|
18
|
-
exports.calculateIsAllDay = calculateIsAllDay;
|
|
19
|
-
var calculateDateRange = function (viewType, baseDate) {
|
|
20
|
-
switch (viewType) {
|
|
21
|
-
case 'DAILY':
|
|
22
|
-
return { startDate: baseDate, endDate: baseDate };
|
|
23
|
-
case 'WEEKLY': {
|
|
24
|
-
var start = new Date(baseDate);
|
|
25
|
-
start.setDate(baseDate.getDate() - baseDate.getDay());
|
|
26
|
-
var end = new Date(start);
|
|
27
|
-
end.setDate(start.getDate() + 6);
|
|
28
|
-
return { startDate: start, endDate: end };
|
|
29
|
-
}
|
|
30
|
-
case 'MONTHLY': {
|
|
31
|
-
var startDate = new Date(baseDate.getFullYear(), baseDate.getMonth(), 1);
|
|
32
|
-
// 실제 MonthlyView에서 보여지는 날짜 배열을 구함
|
|
33
|
-
var days = dateHelper_1.DateHelper.getCalendarDatesForCalendar(startDate, 'sunday');
|
|
34
|
-
return {
|
|
35
|
-
startDate: days[0],
|
|
36
|
-
endDate: days[days.length - 1]
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
case 'YEARLY':
|
|
40
|
-
return {
|
|
41
|
-
startDate: new Date(baseDate.getFullYear(), 0, 1),
|
|
42
|
-
endDate: new Date(baseDate.getFullYear(), 11, 31)
|
|
43
|
-
};
|
|
44
|
-
default:
|
|
45
|
-
return { startDate: baseDate, endDate: baseDate };
|
|
46
|
-
}
|
|
47
|
-
};
|
|
48
|
-
exports.calculateDateRange = calculateDateRange;
|
|
49
|
-
var getWeekRange = function (date) {
|
|
50
|
-
var start = new Date(date);
|
|
51
|
-
start.setDate(date.getDate() - date.getDay());
|
|
52
|
-
var end = new Date(start);
|
|
53
|
-
end.setDate(start.getDate() + 6);
|
|
54
|
-
return [start, end];
|
|
55
|
-
};
|
|
56
|
-
/**
|
|
57
|
-
* 뷰 타입에 따른 헤더 텍스트를 반환하는 함수
|
|
58
|
-
* @param viewType 캘린더 뷰 타입 (DAILY, WEEKLY, MONTHLY, YEARLY)
|
|
59
|
-
* @param selectedDate 선택된 날짜
|
|
60
|
-
* @param t 다국어 변환 함수 (i18next)
|
|
61
|
-
* @param monthNames 월 이름 배열 (예: ['1월', '2월', ...])
|
|
62
|
-
* @param getDayTextByDate 날짜에 따른 요일 텍스트 반환 함수
|
|
63
|
-
* @returns 헤더에 표시할 텍스트
|
|
64
|
-
*/
|
|
65
|
-
var getHeaderText = function (viewType, selectedDate, t, monthNames, getDayTextByDate) {
|
|
66
|
-
var year = selectedDate.getFullYear();
|
|
67
|
-
var month = monthNames[selectedDate.getMonth()];
|
|
68
|
-
var day = selectedDate.getDate();
|
|
69
|
-
var dayText = getDayTextByDate(selectedDate);
|
|
70
|
-
if (viewType === 'DAILY') {
|
|
71
|
-
return t('calendar_header_daily', { year: year, month: month, day: day, dayText: dayText });
|
|
72
|
-
}
|
|
73
|
-
if (viewType === 'WEEKLY') {
|
|
74
|
-
var _a = getWeekRange(selectedDate), weekStart = _a[0], weekEnd = _a[1];
|
|
75
|
-
var startDay = weekStart.getDate();
|
|
76
|
-
var endDay = weekEnd.getDate();
|
|
77
|
-
var startMonth = monthNames[weekStart.getMonth()];
|
|
78
|
-
var endMonth = monthNames[weekEnd.getMonth()];
|
|
79
|
-
if (weekStart.getMonth() === weekEnd.getMonth()) {
|
|
80
|
-
return t('calendar_header_weekly_same_month', {
|
|
81
|
-
month: startMonth,
|
|
82
|
-
startDay: startDay,
|
|
83
|
-
endDay: endDay
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
return t('calendar_header_weekly_diff_month', {
|
|
87
|
-
startMonth: startMonth,
|
|
88
|
-
startDay: startDay,
|
|
89
|
-
endMonth: endMonth,
|
|
90
|
-
endDay: endDay
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
|
-
if (viewType === 'MONTHLY') {
|
|
94
|
-
return t('calendar_header_monthly', { year: year, month: month });
|
|
95
|
-
}
|
|
96
|
-
if (viewType === 'YEARLY') {
|
|
97
|
-
return year.toString();
|
|
98
|
-
}
|
|
99
|
-
return '';
|
|
100
|
-
};
|
|
101
|
-
exports.getHeaderText = getHeaderText;
|
|
102
|
-
// Date를 UTC 시간으로 변환
|
|
103
|
-
var toUTC = function (date) {
|
|
104
|
-
if (!(date instanceof Date))
|
|
105
|
-
return null;
|
|
106
|
-
return date.toISOString();
|
|
107
|
-
};
|
|
108
|
-
exports.toUTC = toUTC;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const getLocaleFromLang: (lang: string) => string;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getLocaleFromLang = void 0;
|
|
4
|
-
// Map language codes to locales for toLocaleString
|
|
5
|
-
var getLocaleFromLang = function (lang) {
|
|
6
|
-
switch (lang.toLowerCase()) {
|
|
7
|
-
case 'ko':
|
|
8
|
-
case 'ko-kr':
|
|
9
|
-
return 'ko-KR';
|
|
10
|
-
case 'ja':
|
|
11
|
-
case 'ja-jp':
|
|
12
|
-
return 'ja-JP';
|
|
13
|
-
case 'zh':
|
|
14
|
-
case 'zh-cn':
|
|
15
|
-
return 'zh-CN';
|
|
16
|
-
case 'zh-tw':
|
|
17
|
-
return 'zh-TW';
|
|
18
|
-
case 'zh-hk':
|
|
19
|
-
return 'zh-HK';
|
|
20
|
-
case 'fil':
|
|
21
|
-
return 'fil-PH';
|
|
22
|
-
case 'es':
|
|
23
|
-
case 'es-es':
|
|
24
|
-
return 'es-ES';
|
|
25
|
-
case 'en':
|
|
26
|
-
case 'en-us':
|
|
27
|
-
default:
|
|
28
|
-
return 'en-US';
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
exports.getLocaleFromLang = getLocaleFromLang;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export { default as Calendar } from './Calendar';
|
|
2
|
-
export { AllDaySchedulesSection } from './AllDaySchedulesSection';
|
|
3
|
-
export { CurrentTimeIndicator } from './CurrentTimeIndicator';
|
|
4
|
-
export { MonthlyView } from './MonthlyView';
|
|
5
|
-
export { WeeklyView } from './WeeklyView';
|
|
6
|
-
export { DailyView } from './DailyView';
|
|
7
|
-
export { YearlyView } from './YearlyView';
|
|
8
|
-
export * from './timeFormatUtils';
|
|
9
|
-
export type { Schedule, CalendarViewType, CalendarProps, displayAllDayScheduleMode, StartOfWeek, TodayBtnMode } from './types';
|
|
10
|
-
export { getLocaleFromLang } from './constants';
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
-
};
|
|
19
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.getLocaleFromLang = exports.YearlyView = exports.DailyView = exports.WeeklyView = exports.MonthlyView = exports.CurrentTimeIndicator = exports.AllDaySchedulesSection = exports.Calendar = void 0;
|
|
21
|
-
var Calendar_1 = require("./Calendar");
|
|
22
|
-
Object.defineProperty(exports, "Calendar", { enumerable: true, get: function () { return __importDefault(Calendar_1).default; } });
|
|
23
|
-
var AllDaySchedulesSection_1 = require("./AllDaySchedulesSection");
|
|
24
|
-
Object.defineProperty(exports, "AllDaySchedulesSection", { enumerable: true, get: function () { return AllDaySchedulesSection_1.AllDaySchedulesSection; } });
|
|
25
|
-
var CurrentTimeIndicator_1 = require("./CurrentTimeIndicator");
|
|
26
|
-
Object.defineProperty(exports, "CurrentTimeIndicator", { enumerable: true, get: function () { return CurrentTimeIndicator_1.CurrentTimeIndicator; } });
|
|
27
|
-
var MonthlyView_1 = require("./MonthlyView");
|
|
28
|
-
Object.defineProperty(exports, "MonthlyView", { enumerable: true, get: function () { return MonthlyView_1.MonthlyView; } });
|
|
29
|
-
var WeeklyView_1 = require("./WeeklyView");
|
|
30
|
-
Object.defineProperty(exports, "WeeklyView", { enumerable: true, get: function () { return WeeklyView_1.WeeklyView; } });
|
|
31
|
-
var DailyView_1 = require("./DailyView");
|
|
32
|
-
Object.defineProperty(exports, "DailyView", { enumerable: true, get: function () { return DailyView_1.DailyView; } });
|
|
33
|
-
var YearlyView_1 = require("./YearlyView");
|
|
34
|
-
Object.defineProperty(exports, "YearlyView", { enumerable: true, get: function () { return YearlyView_1.YearlyView; } });
|
|
35
|
-
__exportStar(require("./timeFormatUtils"), exports);
|
|
36
|
-
var constants_1 = require("./constants");
|
|
37
|
-
Object.defineProperty(exports, "getLocaleFromLang", { enumerable: true, get: function () { return constants_1.getLocaleFromLang; } });
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { TFunction } from 'react-i18next';
|
|
2
|
-
/**
|
|
3
|
-
* 로케일에 따라 시간을 문자열로 포맷팅
|
|
4
|
-
* @param hour - 시간 (0-23)
|
|
5
|
-
* @param currentLang - 현재 언어 코드
|
|
6
|
-
* @returns 포맷팅된 시간 문자열
|
|
7
|
-
*/
|
|
8
|
-
export declare const formatHour: (hour: number, currentLang: string) => string;
|
|
9
|
-
/**
|
|
10
|
-
* 로케일별 텍스트로 시간 포맷팅 (한국어용)
|
|
11
|
-
* @param hour - 시간 (0-23)
|
|
12
|
-
* @param currentLang - 현재 언어 코드
|
|
13
|
-
* @param t - react-i18next의 번역 함수
|
|
14
|
-
* @returns 로케일별 텍스트가 포함된 포맷팅된 시간 문자열
|
|
15
|
-
*/
|
|
16
|
-
export declare const formatTimeWithLocale: (hour: number, currentLang: string, t: TFunction) => string;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.formatTimeWithLocale = exports.formatHour = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* 로케일에 따라 시간을 문자열로 포맷팅
|
|
6
|
-
* @param hour - 시간 (0-23)
|
|
7
|
-
* @param currentLang - 현재 언어 코드
|
|
8
|
-
* @returns 포맷팅된 시간 문자열
|
|
9
|
-
*/
|
|
10
|
-
var formatHour = function (hour, currentLang) {
|
|
11
|
-
var is24HourFormat = ['ko', 'ja', 'zh', 'zh-cn', 'zh-tw', 'es'].includes(currentLang);
|
|
12
|
-
if (is24HourFormat) {
|
|
13
|
-
return "".concat(hour, ":00");
|
|
14
|
-
}
|
|
15
|
-
if (hour === 0)
|
|
16
|
-
return '12:00 AM';
|
|
17
|
-
if (hour === 12)
|
|
18
|
-
return '12:00 PM';
|
|
19
|
-
if (hour < 12)
|
|
20
|
-
return "".concat(hour, ":00 AM");
|
|
21
|
-
return "".concat(hour - 12, ":00 PM");
|
|
22
|
-
};
|
|
23
|
-
exports.formatHour = formatHour;
|
|
24
|
-
/**
|
|
25
|
-
* 로케일별 텍스트로 시간 포맷팅 (한국어용)
|
|
26
|
-
* @param hour - 시간 (0-23)
|
|
27
|
-
* @param currentLang - 현재 언어 코드
|
|
28
|
-
* @param t - react-i18next의 번역 함수
|
|
29
|
-
* @returns 로케일별 텍스트가 포함된 포맷팅된 시간 문자열
|
|
30
|
-
*/
|
|
31
|
-
var formatTimeWithLocale = function (hour, currentLang, t) {
|
|
32
|
-
if (currentLang === 'ko') {
|
|
33
|
-
if (hour === 12)
|
|
34
|
-
return t('calendar_time_noon');
|
|
35
|
-
if (hour < 12) {
|
|
36
|
-
return hour === 0
|
|
37
|
-
? "".concat(t('calendar_time_am'), " 12").concat(t('calendar_time_hour'))
|
|
38
|
-
: "".concat(t('calendar_time_am'), " ").concat(hour).concat(t('calendar_time_hour'));
|
|
39
|
-
}
|
|
40
|
-
return "".concat(t('calendar_time_pm'), " ").concat(hour - 12).concat(t('calendar_time_hour'));
|
|
41
|
-
}
|
|
42
|
-
// 다른 언어의 경우 기본 formatHour 함수 사용
|
|
43
|
-
return (0, exports.formatHour)(hour, currentLang);
|
|
44
|
-
};
|
|
45
|
-
exports.formatTimeWithLocale = formatTimeWithLocale;
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export type CalendarViewType = 'MONTHLY' | 'WEEKLY' | 'DAILY' | 'YEARLY';
|
|
3
|
-
export type displayAllDayScheduleMode = 'none' | 'use';
|
|
4
|
-
export type StartOfWeek = 'sunday' | 'monday';
|
|
5
|
-
export type TodayBtnMode = 'none' | 'use';
|
|
6
|
-
export type ActionType = 'CLICK' | 'CLICK_WITH_SHIFT_KEY_DOWN' | 'DELETE_KEY_DOWN' | 'DRAG' | 'DOUBLE_CLICK';
|
|
7
|
-
export type TargetType = 'SCHEDULE' | 'DATE';
|
|
8
|
-
export type Action = {
|
|
9
|
-
action: ActionType;
|
|
10
|
-
target: TargetType;
|
|
11
|
-
date?: Date;
|
|
12
|
-
dates?: Date[];
|
|
13
|
-
schedule?: Schedule;
|
|
14
|
-
schedules?: Schedule[];
|
|
15
|
-
selectedDates?: Date[];
|
|
16
|
-
startDate?: string | undefined | null;
|
|
17
|
-
endDate?: string | undefined | null;
|
|
18
|
-
};
|
|
19
|
-
export type Config = {
|
|
20
|
-
action: ActionType;
|
|
21
|
-
target: TargetType;
|
|
22
|
-
trigger?: (action: Action) => void;
|
|
23
|
-
};
|
|
24
|
-
export type Schedule = {
|
|
25
|
-
id: number;
|
|
26
|
-
title: string;
|
|
27
|
-
startDate: Date;
|
|
28
|
-
endDate: Date;
|
|
29
|
-
isAllDay?: boolean;
|
|
30
|
-
[key: string]: any;
|
|
31
|
-
};
|
|
32
|
-
export type CalendarActionType = 'CALENDAR_TYPE_CHANGE' | 'PREV_BUTTON_CLICK' | 'NEXT_BUTTON_CLICK' | 'TODAY_BUTTON_CLICK';
|
|
33
|
-
export type CalendarAction = {
|
|
34
|
-
type: CalendarActionType;
|
|
35
|
-
payload: {
|
|
36
|
-
type?: CalendarViewType;
|
|
37
|
-
startDate: string | undefined | null;
|
|
38
|
-
endDate: string | undefined | null;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
export type CalendarProps = {
|
|
42
|
-
defaultViewType?: CalendarViewType;
|
|
43
|
-
viewTypes?: CalendarViewType[];
|
|
44
|
-
displayAllDayScheduleMode?: displayAllDayScheduleMode;
|
|
45
|
-
startOfWeek?: StartOfWeek;
|
|
46
|
-
todayBtnMode?: TodayBtnMode;
|
|
47
|
-
schedules?: Schedule[];
|
|
48
|
-
config?: Config;
|
|
49
|
-
onActionDispatch?: (action: CalendarAction) => void;
|
|
50
|
-
};
|
|
51
|
-
export type EventItemProps = {
|
|
52
|
-
event: Schedule;
|
|
53
|
-
date?: Date;
|
|
54
|
-
extraProps?: Record<string, any>;
|
|
55
|
-
onDragStart: (event: Schedule, e: React.DragEvent) => void;
|
|
56
|
-
onDragEnd: (e: React.DragEvent) => void;
|
|
57
|
-
onClick: (schedule: Schedule, e: React.MouseEvent) => void;
|
|
58
|
-
onDoubleClick: (schedule: Schedule) => void;
|
|
59
|
-
isSelected?: boolean;
|
|
60
|
-
};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
18
|
-
require("react");
|
|
19
|
-
var Composition_1 = __importDefault(require("./Composition"));
|
|
20
|
-
function CompositionRenderer(_a) {
|
|
21
|
-
var compositions = _a.compositions;
|
|
22
|
-
return ((0, jsx_runtime_1.jsx)("div", __assign({ style: {
|
|
23
|
-
width: '100%',
|
|
24
|
-
height: '100%'
|
|
25
|
-
} }, { children: compositions.map(function (composition) { return ((0, jsx_runtime_1.jsx)(Composition_1.default, __assign({}, composition), composition.id)); }) })));
|
|
26
|
-
}
|
|
27
|
-
exports.default = CompositionRenderer;
|
|
File without changes
|