pds-dev-kit-web 2.0.9-alpha.4 → 2.0.9-alpha.6

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 (95) hide show
  1. package/dist/src/common/services/i18n/resources/en.json +19 -1
  2. package/dist/src/common/services/i18n/resources/es.json +19 -1
  3. package/dist/src/common/services/i18n/resources/fil.json +19 -1
  4. package/dist/src/common/services/i18n/resources/index.d.ts +126 -0
  5. package/dist/src/common/services/i18n/resources/ja.json +19 -1
  6. package/dist/src/common/services/i18n/resources/ko.json +19 -1
  7. package/dist/src/common/services/i18n/resources/zh-cn.json +19 -1
  8. package/dist/src/common/services/i18n/resources/zh-tw.json +19 -1
  9. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +3 -1
  10. package/dist/src/common/styles/colorSet/PaletteColor_light.json +3 -1
  11. package/dist/src/common/styles/colorSet/SemanticColor.json +5 -1
  12. package/dist/src/common/styles/colorSet/UIColor.json +3 -1
  13. package/dist/src/common/styles/colorSet/index.d.ts +12 -2
  14. package/dist/src/common/styles/colorSet/index.js +2 -2
  15. package/dist/src/common/styles/colorSet/ui-type.d.ts +2 -0
  16. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +1 -2
  17. package/dist/src/sub/DynamicLayout/mock_samplePage.js +19 -13
  18. package/dist/src/sub/DynamicLayout/mock_storybook.d.ts +3 -0
  19. package/dist/src/sub/DynamicLayout/mock_storybook.js +785 -12
  20. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/MembershipSection.js +29 -4
  21. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/TemplateA.d.ts +3 -1
  22. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/TemplateA.js +3 -2
  23. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/D_TemplateA.d.ts +2 -1
  24. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/D_TemplateA.js +4 -14
  25. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipPlanSheet.d.ts +7 -0
  26. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipPlanSheet.js +32 -0
  27. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipSheet.d.ts +3 -0
  28. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipSheet.js +35 -0
  29. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipBenefitInfo.js +1 -1
  30. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipPlanSheet.d.ts +3 -5
  31. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipPlanSheet.js +30 -2
  32. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipSheet.js +8 -6
  33. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/NarrowMembershipListView.js +3 -1
  34. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/SectionContents.js +16 -4
  35. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/WideMembershipListView.js +1 -4
  36. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/M_TemplateA.d.ts +2 -2
  37. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/M_TemplateA.js +5 -4
  38. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/EmptyMembershipSheet.d.ts +3 -0
  39. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/EmptyMembershipSheet.js +36 -0
  40. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipContents.js +4 -8
  41. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/SectionContents.js +19 -4
  42. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/TemplateB.d.ts +3 -1
  43. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/TemplateB.js +3 -2
  44. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/D_TemplateB.d.ts +2 -1
  45. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/D_TemplateB.js +4 -14
  46. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipPlanSheet.d.ts +7 -0
  47. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipPlanSheet.js +32 -0
  48. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipSheet.d.ts +3 -0
  49. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipSheet.js +35 -0
  50. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipBenefitInfo.js +2 -1
  51. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipCard.js +14 -12
  52. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipPlanSheet.js +28 -1
  53. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipSheet.js +3 -2
  54. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/SectionContents.js +15 -4
  55. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/M_TemplateB.js +12 -1
  56. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/EmptyMembershipSheet.d.ts +3 -0
  57. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/EmptyMembershipSheet.js +52 -0
  58. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipContents.js +5 -9
  59. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipSectionSheet.js +4 -6
  60. package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/SectionContents.js +2 -5
  61. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/D_TemplateA.js +1 -1
  62. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/components/SectionContents.js +16 -4
  63. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/M_TemplateA.d.ts +2 -2
  64. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/M_TemplateA.js +3 -3
  65. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/components/SectionContents.js +19 -4
  66. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/D_TemplateB.js +1 -1
  67. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/components/SectionContents.js +15 -4
  68. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/M_TemplateB.js +11 -1
  69. package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/components/SectionContents.js +2 -5
  70. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/MembershipSectionItem.d.ts +7 -5
  71. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/MembershipSectionItem.js +20 -15
  72. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/MembershipSectionItem.d.ts +5 -4
  73. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/MembershipSectionItem.js +17 -15
  74. package/dist/src/sub/DynamicLayout/sections/MembershipSection/constants.d.ts +8 -1
  75. package/dist/src/sub/DynamicLayout/sections/MembershipSection/constants.js +31 -3
  76. package/dist/src/sub/DynamicLayout/sections/MembershipSection/type.d.ts +1 -1
  77. package/dist/src/sub/DynamicLayout/types.d.ts +3 -3
  78. package/dist/src/sub/DynamicLayout/utils/formatCurrency.d.ts +8 -0
  79. package/dist/src/sub/DynamicLayout/utils/formatCurrency.js +27 -0
  80. package/package.json +1 -1
  81. package/release-note.md +2 -2
  82. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/GlobalFixedOverlay.d.ts +0 -7
  83. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/GlobalFixedOverlay.js +0 -43
  84. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlay.d.ts +0 -8
  85. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlay.js +0 -80
  86. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlayMembershipList.d.ts +0 -12
  87. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlayMembershipList.js +0 -27
  88. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlayPlanSheet.d.ts +0 -8
  89. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/MembershipSectionGlobalFixedOverlayPlanSheet.js +0 -39
  90. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/index.d.ts +0 -1
  91. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/MembershipSectionGlobalFixedOverlay/index.js +0 -8
  92. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/index.d.ts +0 -1
  93. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/GlobalFixedOverlay/index.js +0 -8
  94. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/index.d.ts +0 -1
  95. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/components/index.js +0 -5
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "{{itemSelected}} has been selected.",
5
5
  "str_dlayout_section": "Section",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "Coupon",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "Free Trial",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "One-time Payment",
23
+ "str_payment_option_subs_regularly": "Regular Payment",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "Start for Free"
8
26
  }
9
27
  }
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "{{itemSelected}} has been selected.",
5
5
  "str_dlayout_section": "Section",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "Coupon",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "Free Trial",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "One-time Payment",
23
+ "str_payment_option_subs_regularly": "Regular Payment",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "Start for Free"
8
26
  }
9
27
  }
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "{{itemSelected}} has been selected.",
5
5
  "str_dlayout_section": "Section",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "Kupon",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "Libreng subok",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "Isang beses na pagbayad",
23
+ "str_payment_option_subs_regularly": "Regular na Pagbabayad",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "Magsimula nang Libre"
8
26
  }
9
27
  }
@@ -6,6 +6,24 @@ declare const locale: {
6
6
  str_dlayout_section: string;
7
7
  str_4653: string;
8
8
  str_4657: string;
9
+ str_5299: string;
10
+ str_5300: string;
11
+ str_5350: string;
12
+ str_5351: string;
13
+ str_5352: string;
14
+ str_5353: string;
15
+ str_5354: string;
16
+ str_5339: string;
17
+ str_coupon: string;
18
+ str_payment_option_coupon_free_finite: string;
19
+ str_payment_option_coupon_free_infinite: string;
20
+ str_payment_option_coupon_one_time: string;
21
+ str_payment_option_subs_temporary_free: string;
22
+ str_payment_option_unlimited_free: string;
23
+ str_payment_option_one_time: string;
24
+ str_payment_option_subs_regularly: string;
25
+ str_5831: string;
26
+ str_1460: string;
9
27
  };
10
28
  };
11
29
  readonly en: {
@@ -15,6 +33,24 @@ declare const locale: {
15
33
  str_dlayout_section: string;
16
34
  str_4653: string;
17
35
  str_4657: string;
36
+ str_5299: string;
37
+ str_5300: string;
38
+ str_5350: string;
39
+ str_5351: string;
40
+ str_5352: string;
41
+ str_5353: string;
42
+ str_5354: string;
43
+ str_5339: string;
44
+ str_coupon: string;
45
+ str_payment_option_coupon_free_finite: string;
46
+ str_payment_option_coupon_free_infinite: string;
47
+ str_payment_option_coupon_one_time: string;
48
+ str_payment_option_subs_temporary_free: string;
49
+ str_payment_option_unlimited_free: string;
50
+ str_payment_option_one_time: string;
51
+ str_payment_option_subs_regularly: string;
52
+ str_5831: string;
53
+ str_1460: string;
18
54
  };
19
55
  };
20
56
  readonly ja: {
@@ -24,6 +60,24 @@ declare const locale: {
24
60
  str_dlayout_section: string;
25
61
  str_4653: string;
26
62
  str_4657: string;
63
+ str_5299: string;
64
+ str_5300: string;
65
+ str_5350: string;
66
+ str_5351: string;
67
+ str_5352: string;
68
+ str_5353: string;
69
+ str_5354: string;
70
+ str_5339: string;
71
+ str_coupon: string;
72
+ str_payment_option_coupon_free_finite: string;
73
+ str_payment_option_coupon_free_infinite: string;
74
+ str_payment_option_coupon_one_time: string;
75
+ str_payment_option_subs_temporary_free: string;
76
+ str_payment_option_unlimited_free: string;
77
+ str_payment_option_one_time: string;
78
+ str_payment_option_subs_regularly: string;
79
+ str_5831: string;
80
+ str_1460: string;
27
81
  };
28
82
  };
29
83
  readonly es: {
@@ -33,6 +87,24 @@ declare const locale: {
33
87
  str_dlayout_section: string;
34
88
  str_4653: string;
35
89
  str_4657: string;
90
+ str_5299: string;
91
+ str_5300: string;
92
+ str_5350: string;
93
+ str_5351: string;
94
+ str_5352: string;
95
+ str_5353: string;
96
+ str_5354: string;
97
+ str_5339: string;
98
+ str_coupon: string;
99
+ str_payment_option_coupon_free_finite: string;
100
+ str_payment_option_coupon_free_infinite: string;
101
+ str_payment_option_coupon_one_time: string;
102
+ str_payment_option_subs_temporary_free: string;
103
+ str_payment_option_unlimited_free: string;
104
+ str_payment_option_one_time: string;
105
+ str_payment_option_subs_regularly: string;
106
+ str_5831: string;
107
+ str_1460: string;
36
108
  };
37
109
  };
38
110
  readonly 'zh-cn': {
@@ -42,6 +114,24 @@ declare const locale: {
42
114
  str_dlayout_section: string;
43
115
  str_4653: string;
44
116
  str_4657: string;
117
+ str_5299: string;
118
+ str_5300: string;
119
+ str_5350: string;
120
+ str_5351: string;
121
+ str_5352: string;
122
+ str_5353: string;
123
+ str_5354: string;
124
+ str_5339: string;
125
+ str_coupon: string;
126
+ str_payment_option_coupon_free_finite: string;
127
+ str_payment_option_coupon_free_infinite: string;
128
+ str_payment_option_coupon_one_time: string;
129
+ str_payment_option_subs_temporary_free: string;
130
+ str_payment_option_unlimited_free: string;
131
+ str_payment_option_one_time: string;
132
+ str_payment_option_subs_regularly: string;
133
+ str_5831: string;
134
+ str_1460: string;
45
135
  };
46
136
  };
47
137
  readonly 'zh-tw': {
@@ -51,6 +141,24 @@ declare const locale: {
51
141
  str_dlayout_section: string;
52
142
  str_4653: string;
53
143
  str_4657: string;
144
+ str_5299: string;
145
+ str_5300: string;
146
+ str_5350: string;
147
+ str_5351: string;
148
+ str_5352: string;
149
+ str_5353: string;
150
+ str_5354: string;
151
+ str_5339: string;
152
+ str_coupon: string;
153
+ str_payment_option_coupon_free_finite: string;
154
+ str_payment_option_coupon_free_infinite: string;
155
+ str_payment_option_coupon_one_time: string;
156
+ str_payment_option_subs_temporary_free: string;
157
+ str_payment_option_unlimited_free: string;
158
+ str_payment_option_one_time: string;
159
+ str_payment_option_subs_regularly: string;
160
+ str_5831: string;
161
+ str_1460: string;
54
162
  };
55
163
  };
56
164
  readonly fil: {
@@ -60,6 +168,24 @@ declare const locale: {
60
168
  str_dlayout_section: string;
61
169
  str_4653: string;
62
170
  str_4657: string;
171
+ str_5299: string;
172
+ str_5300: string;
173
+ str_5350: string;
174
+ str_5351: string;
175
+ str_5352: string;
176
+ str_5353: string;
177
+ str_5354: string;
178
+ str_5339: string;
179
+ str_coupon: string;
180
+ str_payment_option_coupon_free_finite: string;
181
+ str_payment_option_coupon_free_infinite: string;
182
+ str_payment_option_coupon_one_time: string;
183
+ str_payment_option_subs_temporary_free: string;
184
+ str_payment_option_unlimited_free: string;
185
+ str_payment_option_one_time: string;
186
+ str_payment_option_subs_regularly: string;
187
+ str_5831: string;
188
+ str_1460: string;
63
189
  };
64
190
  };
65
191
  };
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "{{itemSelected}} has been selected.",
5
5
  "str_dlayout_section": "Section",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "Coupon",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "免费体验",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "One-time Payment",
23
+ "str_payment_option_subs_regularly": "Regular Payment",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "Start for Free"
8
26
  }
9
27
  }
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "{{itemSelected}}개 선택됨",
5
5
  "str_dlayout_section": "섹션",
6
6
  "str_4653": "$t(str_dlayout_section) 수정",
7
- "str_4657": "현재 수정 중"
7
+ "str_4657": "현재 수정 중",
8
+ "str_5299": "표시할 멤버십이 없습니다.",
9
+ "str_5300": "구매할 수 없는 멤버십입니다.",
10
+ "str_5350": "결제하기",
11
+ "str_5351": "구매하기",
12
+ "str_5352": "이용하기",
13
+ "str_5353": "지불하기",
14
+ "str_5354": "구입하기",
15
+ "str_5339": "{{price}} 원",
16
+ "str_coupon": "쿠폰",
17
+ "str_payment_option_coupon_free_finite": "기간제 무료 $t(str_coupon)",
18
+ "str_payment_option_coupon_free_infinite": "$t(str_coupon)형 무제한 무료",
19
+ "str_payment_option_coupon_one_time": "1회 결제 $t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "무료 체험",
21
+ "str_payment_option_unlimited_free": "무료",
22
+ "str_payment_option_one_time": "1회 결제",
23
+ "str_payment_option_subs_regularly": "정기 결제",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "무료로 시작하기"
8
26
  }
9
27
  }
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "已选择{{itemSelected}}个",
5
5
  "str_dlayout_section": "栏目",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "优惠券",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "免费体验",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "一次性付款",
23
+ "str_payment_option_subs_regularly": "定期付款",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "免费开始"
8
26
  }
9
27
  }
@@ -4,6 +4,24 @@
4
4
  "str_n_selected": "已選擇{{itemSelected}}個",
5
5
  "str_dlayout_section": "欄目",
6
6
  "str_4653": "Edit $t(str_dlayout_section)",
7
- "str_4657": "Currently editing"
7
+ "str_4657": "Currently editing",
8
+ "str_5299": "There are no memberships to display.",
9
+ "str_5300": "This membership cannot be purchased.",
10
+ "str_5350": "Checkout",
11
+ "str_5351": "Buy",
12
+ "str_5352": "Use",
13
+ "str_5353": "Pay",
14
+ "str_5354": "Purchase",
15
+ "str_5339": "{{price}} won",
16
+ "str_coupon": "Coupon",
17
+ "str_payment_option_coupon_free_finite": "Free Trial ($t(str_coupon))",
18
+ "str_payment_option_coupon_free_infinite": "Unlimited Free ($t(str_coupon))",
19
+ "str_payment_option_coupon_one_time": "$t(str_coupon)",
20
+ "str_payment_option_subs_temporary_free": "期限內免費",
21
+ "str_payment_option_unlimited_free": "Free Access",
22
+ "str_payment_option_one_time": "結算一次",
23
+ "str_payment_option_subs_regularly": "定期結算",
24
+ "str_5831": "{{price}} USD",
25
+ "str_1460": "免費開始"
8
26
  }
9
27
  }
@@ -295,5 +295,7 @@
295
295
  "sys_component_base_38": "darkorange300",
296
296
  "sys_plan_base_01": "darkpastelblue300/opacity60",
297
297
  "sys_plan_base_02": "darksoftpurple500/opacity60",
298
- "sys_plan_base_03": "darkcoolpink500/opacity60"
298
+ "sys_plan_base_03": "darkcoolpink500/opacity60",
299
+ "sys_text_warning_02": "darkbrown500",
300
+ "sys_component_base_39": "darkyellow300"
299
301
  }
@@ -295,5 +295,7 @@
295
295
  "sys_component_base_38": "orange300",
296
296
  "sys_plan_base_01": "pastelblue300/opacity60",
297
297
  "sys_plan_base_02": "softpurple500/opacity60",
298
- "sys_plan_base_03": "coolpink500/opacity60"
298
+ "sys_plan_base_03": "coolpink500/opacity60",
299
+ "sys_text_warning_02": "brown500",
300
+ "sys_component_base_39": "yellow300"
299
301
  }
@@ -108,5 +108,9 @@
108
108
  "softpurple500": "#A58CFF",
109
109
  "darksoftpurple500": "#9B80FC",
110
110
  "coolpink500": "#FF85FC",
111
- "darkcoolpink500": "#EF7AEC"
111
+ "darkcoolpink500": "#EF7AEC",
112
+ "brown500": "#97500D",
113
+ "darkbrown500": "#C87323",
114
+ "yellow300": "#FFFAE6",
115
+ "darkyellow300": "#FFF3C1"
112
116
  }
@@ -764,5 +764,7 @@
764
764
  "ui_plan_base_01": "sys_plan_base_01",
765
765
  "ui_plan_base_02": "sys_plan_base_02",
766
766
  "ui_plan_base_03": "sys_plan_base_03",
767
- "ui_cpnt_sheet_border_08": "sys_border_line_05"
767
+ "ui_cpnt_sheet_border_08": "sys_border_line_05",
768
+ "ui_cpnt_textlabel_sys_warning_2": "sys_text_warning_02",
769
+ "ui_cpnt_sheet_base_20": "sys_component_base_39"
768
770
  }
@@ -110,8 +110,12 @@ declare const colorSet: {
110
110
  darksoftpurple500: string;
111
111
  coolpink500: string;
112
112
  darkcoolpink500: string;
113
+ brown500: string;
114
+ darkbrown500: string;
115
+ yellow300: string;
116
+ darkyellow300: string;
113
117
  };
114
- readonly PaletteColor_light: {
118
+ readonly PaletteColor_Dark: {
115
119
  sys_container_background_01: string;
116
120
  sys_container_background_02: string;
117
121
  sys_container_background_03: string;
@@ -409,8 +413,10 @@ declare const colorSet: {
409
413
  sys_plan_base_01: string;
410
414
  sys_plan_base_02: string;
411
415
  sys_plan_base_03: string;
416
+ sys_text_warning_02: string;
417
+ sys_component_base_39: string;
412
418
  };
413
- readonly PaletteColor_Dark: {
419
+ readonly PaletteColor_light: {
414
420
  sys_container_background_01: string;
415
421
  sys_container_background_02: string;
416
422
  sys_container_background_03: string;
@@ -708,6 +714,8 @@ declare const colorSet: {
708
714
  sys_plan_base_01: string;
709
715
  sys_plan_base_02: string;
710
716
  sys_plan_base_03: string;
717
+ sys_text_warning_02: string;
718
+ sys_component_base_39: string;
711
719
  };
712
720
  readonly UIColor: {
713
721
  ui_cpnt_button_fill_base_primary: string;
@@ -1476,6 +1484,8 @@ declare const colorSet: {
1476
1484
  ui_plan_base_02: string;
1477
1485
  ui_plan_base_03: string;
1478
1486
  ui_cpnt_sheet_border_08: string;
1487
+ ui_cpnt_textlabel_sys_warning_2: string;
1488
+ ui_cpnt_sheet_base_20: string;
1479
1489
  };
1480
1490
  };
1481
1491
  export default colorSet;
@@ -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_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
9
8
  var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
9
+ var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
10
10
  var UIColor_json_1 = __importDefault(require("./UIColor.json"));
11
11
  var colorSet = {
12
12
  SemanticColor: SemanticColor_json_1.default,
13
- PaletteColor_light: PaletteColor_light_json_1.default,
14
13
  PaletteColor_Dark: PaletteColor_Dark_json_1.default,
14
+ PaletteColor_light: PaletteColor_light_json_1.default,
15
15
  UIColor: UIColor_json_1.default
16
16
  };
17
17
  exports.default = colorSet;
@@ -765,4 +765,6 @@ export interface UITheme {
765
765
  ui_plan_base_02: string;
766
766
  ui_plan_base_03: string;
767
767
  ui_cpnt_sheet_border_08: string;
768
+ ui_cpnt_textlabel_sys_warning_2: string;
769
+ ui_cpnt_sheet_base_20: string;
768
770
  }
@@ -27,12 +27,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
27
27
  Object.defineProperty(exports, "__esModule", { value: true });
28
28
  var jsx_runtime_1 = require("react/jsx-runtime");
29
29
  var sections_1 = require("../../../DynamicLayout/sections");
30
- var GlobalFixedOverlay_1 = __importDefault(require("./components/GlobalFixedOverlay/GlobalFixedOverlay"));
31
30
  var SectionBox_1 = __importDefault(require("./SectionBox"));
32
31
  function EditModeSectionMatcher(_a) {
33
32
  var filteredSortedSection = _a.filteredSortedSection, scrollDownTargetSectionId = _a.scrollDownTargetSectionId, editingSectionId = _a.editingSectionId, onClickEditSection = _a.onClickEditSection;
34
33
  var iframeSection = filteredSortedSection.find(function (section) { return section.manifest.schema === 'EXP_IFRAME' && section.display; });
35
- return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [iframeSection ? ((0, jsx_runtime_1.jsx)(SectionBox_1.default, __assign({ isIframeSection: true, isEditing: editingSectionId === iframeSection.id, scrollIntoThisSection: iframeSection.id === scrollDownTargetSectionId, onClick: function () { return onClickEditSection(iframeSection); } }, { children: (0, jsx_runtime_1.jsx)(Matcher, __assign({}, iframeSection), void 0) }), iframeSection.id)) : (filteredSortedSection.map(function (section) { return ((0, jsx_runtime_1.jsx)(SectionBox_1.default, __assign({ isEditing: editingSectionId === section.id, scrollIntoThisSection: section.id === scrollDownTargetSectionId, onClick: function () { return onClickEditSection(section); } }, { children: (0, jsx_runtime_1.jsx)(Matcher, __assign({}, section), void 0) }), section.id)); })), (0, jsx_runtime_1.jsx)(GlobalFixedOverlay_1.default, { filteredSortedSection: filteredSortedSection }, void 0)] }, void 0));
34
+ return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: iframeSection ? ((0, jsx_runtime_1.jsx)(SectionBox_1.default, __assign({ isIframeSection: true, isEditing: editingSectionId === iframeSection.id, scrollIntoThisSection: iframeSection.id === scrollDownTargetSectionId, onClick: function () { return onClickEditSection(iframeSection); } }, { children: (0, jsx_runtime_1.jsx)(Matcher, __assign({}, iframeSection), void 0) }), iframeSection.id)) : (filteredSortedSection.map(function (section) { return ((0, jsx_runtime_1.jsx)(SectionBox_1.default, __assign({ isEditing: editingSectionId === section.id, scrollIntoThisSection: section.id === scrollDownTargetSectionId, onClick: function () { return onClickEditSection(section); } }, { children: (0, jsx_runtime_1.jsx)(Matcher, __assign({}, section), void 0) }), section.id)); })) }, void 0));
36
35
  }
37
36
  exports.default = EditModeSectionMatcher;
38
37
  function Matcher(_a) {
@@ -1114,7 +1114,7 @@ exports.samplePageMembershipSection = {
1114
1114
  itemToneType: 'LIGHT',
1115
1115
  programmedItemActionButtonTextType: 'A'
1116
1116
  },
1117
- template: 'PRG_MEMBERSHIP_DISPLAY_A',
1117
+ template: 'PRG_MEMBERSHIP_DISPLAY_B',
1118
1118
  programData: {
1119
1119
  mdid: 'mdid',
1120
1120
  preview: {
@@ -1160,23 +1160,27 @@ exports.samplePageMembershipSection = {
1160
1160
  id: i + 1,
1161
1161
  type: 'GENERAL',
1162
1162
  mid: "MEMBERSHIP_" + alphabet[i] + "_MID",
1163
- title: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
1163
+ title: i % 2
1164
+ ? '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!'
1165
+ : '짧은 제목',
1164
1166
  insertedAt: '2023-01-06T09:05:45',
1165
1167
  updatedAt: '2023-01-06T09:05:45',
1166
1168
  membershipCardTemplate: {
1167
1169
  backgroundImageSrc: cardImage[i],
1168
1170
  logoImageSrc: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/e11d1a92-a1c0-4faa-b341-13a32f21828d_image',
1169
1171
  overlayType: getOverlayType(),
1170
- overlayColorPrimary: '#FFC0CB',
1171
- overlayColorSecondary: '#313131',
1172
+ overlayColorPrimary: '#FFC0CB49',
1173
+ overlayColorSecondary: '#31313149',
1172
1174
  designSchema: getDesignSchema()
1173
1175
  },
1174
1176
  membershipBenefitInfo: {
1175
- benefitAlpha: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
1176
- benefitBravo: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
1177
- benefitCharlie: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
1178
- benefitDelta: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
1179
- benefitEcho: 'Lorem ipsum dolor sit amet. Et magnam molestiae.'
1177
+ benefitAlpha: i % 2
1178
+ ? '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!'
1179
+ : 'shortDesc',
1180
+ benefitBravo: i % 2 ? 'Lorem ipsum dolor sit amet. Et magnam molestiae.' : 'shortDesc',
1181
+ benefitCharlie: i % 2 ? 'Lorem ipsum dolor sit amet. Et magnam molestiae.' : 'shortDesc',
1182
+ benefitDelta: i % 2 ? 'Lorem ipsum dolor sit amet. Et magnam molestiae.' : 'shortDesc',
1183
+ benefitEcho: i % 2 ? 'Lorem ipsum dolor sit amet. Et magnam molestiae.' : 'shortDesc'
1180
1184
  },
1181
1185
  totalSubscriptionProducts: 3
1182
1186
  },
@@ -1188,14 +1192,16 @@ exports.samplePageMembershipSection = {
1188
1192
  subscriptionProductId: i + 1,
1189
1193
  subscriptionProduct: {
1190
1194
  id: i + 1,
1191
- type: 'COUPON_ONCE_FINITE',
1192
- title: '청춘이 황금시대를 우리의 같은 무엇을',
1193
- alias: "CONNECTED_SUBSCRIPTION_PRODUCTS_" + alphabet[i] + "_ALIAS",
1195
+ type: 'COUPON_FREE_FINITE',
1196
+ title: i % 2 ? '청춘이 황금시대를 우리의 같은 무엇을' : '짧은 제목',
1197
+ alias: i % 2
1198
+ ? "CONNECTED_SUBSCRIPTION_PRODUCTS_" + alphabet[i] + "_ALIAS"
1199
+ : 'shortAlias',
1194
1200
  expiryPeriodInDays: 7,
1195
1201
  isDeactivated: i % 2 === 0,
1196
1202
  fee: {
1197
1203
  currency: 'KRW',
1198
- amount: '10,000'
1204
+ amount: 10000
1199
1205
  },
1200
1206
  insertedAt: '2023-01-06T09:05:45',
1201
1207
  updatedAt: '2023-01-06T09:05:45'
@@ -2,3 +2,6 @@
2
2
  import type DynamicLayout from './DynamicLayout';
3
3
  export declare const SampleSectionsMock: React.ComponentProps<typeof DynamicLayout>['sections'];
4
4
  export declare const MembershipSectionsMock: React.ComponentProps<typeof DynamicLayout>['sections'];
5
+ export declare const MembershipSectionsMockWithoutMembership: React.ComponentProps<typeof DynamicLayout>['sections'];
6
+ export declare const MembershipSectionsMockWithoutConnectedSubscriptionProducts: React.ComponentProps<typeof DynamicLayout>['sections'];
7
+ export declare const MembershipSectionsMockOnlyOneConnectedSubscriptionProduct: React.ComponentProps<typeof DynamicLayout>['sections'];