pds-dev-kit-web-test 2.5.440 → 2.5.442

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/dist/src/common/hooks/useTooltip.js +1 -1
  2. package/dist/src/common/services/i18n/resources/en.json +1 -29
  3. package/dist/src/common/services/i18n/resources/es.json +1 -28
  4. package/dist/src/common/services/i18n/resources/fil.json +1 -28
  5. package/dist/src/common/services/i18n/resources/index.d.ts +0 -194
  6. package/dist/src/common/services/i18n/resources/ja.json +1 -29
  7. package/dist/src/common/services/i18n/resources/ko.json +1 -29
  8. package/dist/src/common/services/i18n/resources/zh-cn.json +1 -29
  9. package/dist/src/common/services/i18n/resources/zh-tw.json +1 -29
  10. package/dist/src/common/styles/colorSet/index.d.ts +2 -2
  11. package/dist/src/common/styles/colorSet/index.js +2 -2
  12. package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
  13. package/dist/src/common/utils/dateHelper.d.ts +0 -3
  14. package/dist/src/common/utils/dateHelper.js +0 -37
  15. package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
  16. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +21 -0
  17. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +1133 -0
  18. package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +4 -1
  19. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +5 -3
  20. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
  21. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +11 -0
  22. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +45 -0
  23. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +10 -0
  24. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +79 -0
  25. package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
  26. package/dist/src/sub/DynamicLayout/DynamicLayout.js +3 -2
  27. package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
  28. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +12 -0
  29. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +76 -0
  30. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +4 -0
  31. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +47 -0
  32. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +12 -0
  33. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +76 -0
  34. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +12 -0
  35. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +76 -0
  36. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +12 -0
  37. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +76 -0
  38. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +40 -0
  39. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +36 -177
  40. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +152 -4
  41. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +150 -2
  42. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +45 -1
  43. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +262 -9
  44. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +593 -0
  45. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +253 -0
  46. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +3 -1
  47. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +5 -3
  48. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +2 -1
  49. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +9 -2
  50. package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +139 -0
  51. package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +8 -0
  52. package/dist/src/sub/DynamicLayout/compositionQueryContext.js +14 -0
  53. package/dist/src/sub/DynamicLayout/mock_composition.d.ts +3 -0
  54. package/dist/src/sub/DynamicLayout/mock_composition.js +1606 -0
  55. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +1 -0
  56. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +1111 -0
  57. package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +1 -0
  58. package/dist/src/sub/DynamicLayout/mock_contentsList.js +1091 -0
  59. package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +96 -0
  60. package/dist/src/sub/DynamicLayout/mock_queryData.js +2639 -0
  61. package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +842 -0
  62. package/dist/src/sub/DynamicLayout/mock_slideBanner.js +854 -0
  63. package/dist/src/sub/DynamicLayout/mock_video.d.ts +368 -0
  64. package/dist/src/sub/DynamicLayout/mock_video.js +371 -0
  65. package/dist/src/sub/DynamicLayout/mocks.d.ts +8 -960
  66. package/dist/src/sub/DynamicLayout/mocks.js +4286 -6
  67. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -4
  68. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -1
  69. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +4 -4
  70. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +13 -3
  71. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +18 -2
  72. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -4
  73. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +121 -3
  74. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +12 -0
  75. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +61 -0
  76. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +15 -0
  77. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +69 -0
  78. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +15 -0
  79. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +69 -0
  80. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +9 -0
  81. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +87 -0
  82. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +4 -0
  83. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +849 -0
  84. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +43 -0
  85. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +162 -0
  86. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +39 -0
  87. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +182 -0
  88. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +25 -0
  89. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +234 -0
  90. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +14 -0
  91. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +46 -0
  92. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +1 -0
  93. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +8 -0
  94. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +139 -0
  95. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.js +2 -0
  96. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +8 -0
  97. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +190 -0
  98. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +17 -0
  99. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +39 -0
  100. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +10 -0
  101. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +85 -0
  102. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +25 -0
  103. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +183 -0
  104. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +29 -0
  105. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +128 -0
  106. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +23 -0
  107. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +230 -0
  108. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +1 -0
  109. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.js +8 -0
  110. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +67 -0
  111. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +2 -0
  112. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +39 -3
  113. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +8 -0
  114. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +138 -0
  115. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +12 -0
  116. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +39 -0
  117. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +15 -0
  118. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +69 -0
  119. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +15 -0
  120. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +69 -0
  121. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +20 -0
  122. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +173 -0
  123. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +9 -0
  124. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +87 -0
  125. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +4 -0
  126. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +849 -0
  127. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +43 -0
  128. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +162 -0
  129. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +26 -0
  130. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +235 -0
  131. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +16 -0
  132. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +63 -0
  133. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +1 -0
  134. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.js +8 -0
  135. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +46 -0
  136. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +186 -0
  137. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +163 -0
  138. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +2 -0
  139. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +31 -7
  140. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +45 -1
  141. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/group.d.ts +1 -1
  142. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
  143. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +27 -10
  144. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +3 -1
  145. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
  146. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
  147. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +14 -0
  148. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +26 -0
  149. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
  150. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +1 -1
  151. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +2 -2
  152. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
  153. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +52 -3
  154. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
  155. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +1 -0
  156. package/dist/src/sub/DynamicLayout/types.d.ts +49 -16
  157. package/package.json +3 -2
  158. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +0 -13
  159. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +0 -48
  160. package/dist/src/desktop/components/Calendar/Calendar.d.ts +0 -4
  161. package/dist/src/desktop/components/Calendar/Calendar.js +0 -365
  162. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +0 -7
  163. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +0 -48
  164. package/dist/src/desktop/components/Calendar/DailyView.d.ts +0 -17
  165. package/dist/src/desktop/components/Calendar/DailyView.js +0 -82
  166. package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +0 -26
  167. package/dist/src/desktop/components/Calendar/MonthlyView.js +0 -222
  168. package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +0 -16
  169. package/dist/src/desktop/components/Calendar/ScheduleItem.js +0 -49
  170. package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +0 -21
  171. package/dist/src/desktop/components/Calendar/WeeklyView.js +0 -100
  172. package/dist/src/desktop/components/Calendar/YearlyView.d.ts +0 -11
  173. package/dist/src/desktop/components/Calendar/YearlyView.js +0 -71
  174. package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +0 -23
  175. package/dist/src/desktop/components/Calendar/calendarUtils.js +0 -101
  176. package/dist/src/desktop/components/Calendar/constants.d.ts +0 -1
  177. package/dist/src/desktop/components/Calendar/constants.js +0 -31
  178. package/dist/src/desktop/components/Calendar/index.d.ts +0 -10
  179. package/dist/src/desktop/components/Calendar/index.js +0 -37
  180. package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +0 -16
  181. package/dist/src/desktop/components/Calendar/timeFormatUtils.js +0 -45
  182. package/dist/src/desktop/components/Calendar/types.d.ts +0 -60
  183. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +0 -6
  184. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +0 -27
  185. /package/dist/src/{desktop/components/Calendar/types.js → sub/DynamicLayout/compositionActionTypes.js} +0 -0
@@ -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?: Date;
17
- endDate?: Date;
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
- start_date: Date;
28
- end_date: 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: Date;
38
- endDate: Date;
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,6 +0,0 @@
1
- /// <reference types="react" />
2
- import type { IComposition } from '../../DynamicLayout/types';
3
- declare function CompositionRenderer({ compositions }: {
4
- compositions: IComposition[];
5
- }): JSX.Element;
6
- export default CompositionRenderer;
@@ -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;