pds-dev-kit-web-test 2.6.19 → 2.6.21
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/services/i18n/i18n.js +3 -1
- package/dist/src/common/services/i18n/resources/en.json +3 -3
- package/dist/src/common/services/i18n/resources/es.json +5 -5
- package/dist/src/common/services/i18n/resources/fil.json +13 -13
- package/dist/src/common/services/i18n/resources/index.d.ts +10 -11
- package/dist/src/common/services/i18n/resources/ja.json +14 -14
- package/dist/src/common/services/i18n/resources/ko.json +3 -4
- package/dist/src/common/services/i18n/resources/zh-cn.json +14 -14
- package/dist/src/common/services/i18n/resources/zh-tw.json +13 -13
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +1 -0
- package/dist/src/desktop/components/AdminList/AdminList.js +1 -0
- package/dist/src/desktop/components/AdminList/BulkActionBar.js +1 -1
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.d.ts +1 -0
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.js +1 -0
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.js +1 -1
- package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +1 -0
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +1 -0
- package/dist/src/desktop/components/Calendar/Calendar.js +1 -1
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +1 -1
- package/dist/src/desktop/components/Calendar/DailyView.js +1 -1
- package/dist/src/desktop/components/Calendar/MonthlyView.js +1 -1
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +1 -1
- package/dist/src/desktop/components/Calendar/WeeklyView.js +1 -1
- package/dist/src/desktop/components/Calendar/YearlyView.js +1 -1
- package/dist/src/desktop/components/PriceTextField/PriceTextField.js +1 -1
- package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.js +1 -1
- package/dist/src/desktop/components/RichTextEditor/RichTextEditor.js +1 -1
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +1 -1
- package/dist/src/mobile/components/PriceTextField/PriceTextField.js +1 -1
- package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.js +1 -1
- package/dist/src/mobile/components/RichTextEditor/RichTextEditor.js +1 -1
- package/dist/src/sub/AdminList/AdminList/AdminList.d.ts +3 -1
- package/dist/src/sub/AdminList/AdminList/AdminList.js +7 -7
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.js +1 -1
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.js +1 -1
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.js +1 -1
- package/dist/src/sub/DynamicLayout/gleStyles.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +2 -2
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipPlanSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/UnavailableMembershipPlanSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/EmptyMembershipSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipPlanSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/UnavailableMembershipPlanSheet.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/EmptyMembershipSheet.js +1 -1
- package/package.json +3 -3
- package/release-note.md +2 -2
@@ -19,7 +19,7 @@ var Section_1 = require("../../../../../../../../DynamicLayout/components/Sectio
|
|
19
19
|
var components_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/components");
|
20
20
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
21
21
|
function EmptyMembershipSheet() {
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
24
24
|
if (!section) {
|
25
25
|
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
|
@@ -29,7 +29,7 @@ var formatCurrency_1 = __importDefault(require("../../../../../../../../DynamicL
|
|
29
29
|
var styled_components_1 = __importDefault(require("styled-components"));
|
30
30
|
function MembershipPlanSheet(_a) {
|
31
31
|
var connectedSubscriptionProducts = _a.connectedSubscriptionProducts, sectionStyles = _a.sectionStyles;
|
32
|
-
var t = (0, react_i18next_1.useTranslation)(
|
32
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
33
33
|
var subscriptionProduct = connectedSubscriptionProducts.subscriptionProduct;
|
34
34
|
var type = subscriptionProduct.type, alias = subscriptionProduct.alias, fee = subscriptionProduct.fee, isDeactivated = subscriptionProduct.isDeactivated;
|
35
35
|
var itemToneType = sectionStyles.itemToneType, itemHighlightingColorInHex = sectionStyles.itemHighlightingColorInHex, programmedItemActionButtonTextType = sectionStyles.programmedItemActionButtonTextType;
|
@@ -19,7 +19,7 @@ var components_2 = require("../../../../../../../../DynamicLayout/sections/Membe
|
|
19
19
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
20
20
|
function UnavailableMembershipPlanSheet(_a) {
|
21
21
|
var sectionStyles = _a.sectionStyles;
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var itemToneType = sectionStyles.itemToneType, programmedItemActionButtonTextType = sectionStyles.programmedItemActionButtonTextType;
|
24
24
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_g" }), (0, jsx_runtime_1.jsx)(panels_1.ContentSheet, __assign({ width: "100%", height: "auto", shapeType: "round", overrideCSS: {
|
25
25
|
display: 'flex',
|
@@ -19,7 +19,7 @@ var Section_1 = require("../../../../../../../../DynamicLayout/components/Sectio
|
|
19
19
|
var components_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/components");
|
20
20
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
21
21
|
function MembershipSheet() {
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
24
24
|
if (!section) {
|
25
25
|
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
|
@@ -19,7 +19,7 @@ var Section_1 = require("../../../../../../../../DynamicLayout/components/Sectio
|
|
19
19
|
var components_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/components");
|
20
20
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
21
21
|
function EmptyMembershipSheet() {
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
24
24
|
if (!section) {
|
25
25
|
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
|
@@ -29,7 +29,7 @@ var formatCurrency_1 = __importDefault(require("../../../../../../../../DynamicL
|
|
29
29
|
var styled_components_1 = __importDefault(require("styled-components"));
|
30
30
|
function MembershipPlanSheet(_a) {
|
31
31
|
var connectedSubscriptionProduct = _a.connectedSubscriptionProduct, sectionStyles = _a.sectionStyles;
|
32
|
-
var t = (0, react_i18next_1.useTranslation)(
|
32
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
33
33
|
var subscriptionProduct = connectedSubscriptionProduct.subscriptionProduct;
|
34
34
|
var type = subscriptionProduct.type, alias = subscriptionProduct.alias, fee = subscriptionProduct.fee, isDeactivated = subscriptionProduct.isDeactivated;
|
35
35
|
var itemToneType = sectionStyles.itemToneType, itemHighlightingColorInHex = sectionStyles.itemHighlightingColorInHex, programmedItemActionButtonTextType = sectionStyles.programmedItemActionButtonTextType;
|
@@ -19,7 +19,7 @@ var components_2 = require("../../../../../../../../DynamicLayout/sections/Membe
|
|
19
19
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
20
20
|
function UnavailableMembershipPlanSheet(_a) {
|
21
21
|
var sectionStyles = _a.sectionStyles;
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var itemToneType = sectionStyles.itemToneType, programmedItemActionButtonTextType = sectionStyles.programmedItemActionButtonTextType;
|
24
24
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_g" }), (0, jsx_runtime_1.jsx)(panels_1.ContentSheet, __assign({ width: "100%", height: "auto", shapeType: "round", overrideCSS: {
|
25
25
|
display: 'flex',
|
@@ -19,7 +19,7 @@ var Section_1 = require("../../../../../../../../DynamicLayout/components/Sectio
|
|
19
19
|
var components_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/components");
|
20
20
|
var constants_1 = require("../../../../../../../../DynamicLayout/sections/MembershipSection/constants");
|
21
21
|
function MembershipSheet() {
|
22
|
-
var t = (0, react_i18next_1.useTranslation)(
|
22
|
+
var t = (0, react_i18next_1.useTranslation)().t;
|
23
23
|
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
24
24
|
if (!section) {
|
25
25
|
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pds-dev-kit-web-test",
|
3
|
-
"version": "2.6.
|
3
|
+
"version": "2.6.21",
|
4
4
|
"license": "MIT",
|
5
5
|
"private": false,
|
6
6
|
"main": "dist/index.js",
|
@@ -18,14 +18,13 @@
|
|
18
18
|
"@types/react-dom": "^17.0.9",
|
19
19
|
"@types/uuid": "^8.3.4",
|
20
20
|
"dotenv": "^8.2.0",
|
21
|
-
"google-spreadsheet": "^3.
|
21
|
+
"google-spreadsheet": "^3.3.0",
|
22
22
|
"i18next": "^21.3.2",
|
23
23
|
"i18next-browser-languagedetector": "^6.1.2",
|
24
24
|
"i18next-intervalplural-postprocessor": "^3.0.0",
|
25
25
|
"lottie-react": "^2.3.1",
|
26
26
|
"nuka-carousel": "^4.8.4",
|
27
27
|
"publ-echo": "^0.0.119",
|
28
|
-
"publ-echo-test": "^0.0.339",
|
29
28
|
"react-hook-form": "^7.28.1",
|
30
29
|
"react-i18next": "^11.12.0",
|
31
30
|
"react-router-dom": "^5.2.0",
|
@@ -43,6 +42,7 @@
|
|
43
42
|
"copy:tinymce": "node scripts/copy-tinymce.js",
|
44
43
|
"prepare": "npm run build | husky install",
|
45
44
|
"sync:color": "dotenv -e env/.env node syncColor.ts",
|
45
|
+
"sync:i18n": "dotenv -e env/.env node syncI18n.ts",
|
46
46
|
"storybook": "start-storybook -p 6006",
|
47
47
|
"build:storybook": "build-storybook",
|
48
48
|
"chromatic": "chromatic --project-token=f76344f57b83"
|
package/release-note.md
CHANGED