pds-dev-kit-web 1.9.4 → 1.9.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 (49) hide show
  1. package/dist/src/common/services/i18n/i18n.js +10 -4
  2. package/dist/src/common/services/i18n/resources/en.json +0 -6835
  3. package/dist/src/common/services/i18n/resources/es.json +0 -6835
  4. package/dist/src/common/services/i18n/resources/fil.json +9 -0
  5. package/dist/src/common/services/i18n/resources/index.d.ts +11 -41012
  6. package/dist/src/common/services/i18n/resources/index.js +8 -5
  7. package/dist/src/common/services/i18n/resources/ja.json +9 -0
  8. package/dist/src/common/services/i18n/resources/ko.json +0 -6835
  9. package/dist/src/common/services/i18n/resources/zh-cn.json +9 -0
  10. package/dist/src/common/services/i18n/resources/zh-tw.json +0 -6835
  11. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +3 -1
  12. package/dist/src/common/styles/colorSet/PaletteColor_light.json +3 -1
  13. package/dist/src/common/styles/colorSet/UIColor.json +4 -1
  14. package/dist/src/common/styles/colorSet/index.d.ts +9 -2
  15. package/dist/src/common/styles/colorSet/index.js +2 -2
  16. package/dist/src/common/styles/colorSet/ui-type.d.ts +3 -0
  17. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +6 -2
  18. package/dist/src/desktop/components/AdminList/BulkActionBar.js +1 -2
  19. package/dist/src/desktop/components/AdminListHeader/HeaderBar.js +1 -1
  20. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +6 -4
  21. package/dist/src/desktop/components/TextButton/TextButton.d.ts +1 -1
  22. package/dist/src/desktop/components/TextButton/TextButton.js +38 -12
  23. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  24. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +39 -9
  25. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +6 -2
  26. package/dist/src/mobile/components/TextButton/TextButton.d.ts +1 -1
  27. package/dist/src/mobile/components/TextButton/TextButton.js +29 -7
  28. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  29. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +30 -6
  30. package/dist/storybook-static/{0.69b174ef.iframe.bundle.d.ts → 0.bdf0f29c.iframe.bundle.d.ts} +0 -0
  31. package/dist/storybook-static/{0.69b174ef.iframe.bundle.js → 0.bdf0f29c.iframe.bundle.js} +5 -5
  32. package/dist/storybook-static/{4.32dc09b1.iframe.bundle.d.ts → 4.62b599f9.iframe.bundle.d.ts} +0 -0
  33. package/dist/storybook-static/{4.32dc09b1.iframe.bundle.js → 4.62b599f9.iframe.bundle.js} +68 -68
  34. package/dist/storybook-static/{5.c1637fa3.iframe.bundle.d.ts → 5.ee42a9b1.iframe.bundle.d.ts} +0 -0
  35. package/dist/storybook-static/{5.c1637fa3.iframe.bundle.js → 5.ee42a9b1.iframe.bundle.js} +12 -12
  36. package/dist/storybook-static/{6.9d79e5b5.iframe.bundle.d.ts → 6.580084b5.iframe.bundle.d.ts} +0 -0
  37. package/dist/storybook-static/{6.9d79e5b5.iframe.bundle.js → 6.580084b5.iframe.bundle.js} +5 -5
  38. package/dist/storybook-static/{7.b309bb58.iframe.bundle.d.ts → 7.6c647d87.iframe.bundle.d.ts} +0 -0
  39. package/dist/storybook-static/{7.b309bb58.iframe.bundle.js → 7.6c647d87.iframe.bundle.js} +1 -1
  40. package/dist/storybook-static/{main.9a5b3a3c.iframe.bundle.d.ts → main.efb83dbc.iframe.bundle.d.ts} +38 -36
  41. package/dist/storybook-static/{main.9a5b3a3c.iframe.bundle.js → main.efb83dbc.iframe.bundle.js} +730 -627
  42. package/dist/storybook-static/{runtime~main.b6fc2c86.iframe.bundle.d.ts → runtime~main.316ecc0a.iframe.bundle.d.ts} +0 -0
  43. package/dist/storybook-static/{runtime~main.b6fc2c86.iframe.bundle.js → runtime~main.316ecc0a.iframe.bundle.js} +1 -1
  44. package/dist/storybook-static/{vendors~main.0fbc3a5b.iframe.bundle.d.ts → vendors~main.d952545a.iframe.bundle.d.ts} +0 -0
  45. package/dist/storybook-static/{vendors~main.0fbc3a5b.iframe.bundle.js → vendors~main.d952545a.iframe.bundle.js} +340 -340
  46. package/package.json +1 -2
  47. package/release-note.md +10 -4
  48. package/dist/src/common/services/i18n/resources/jp.json +0 -6844
  49. package/dist/src/common/services/i18n/resources/zh-zh.json +0 -6844
@@ -3,19 +3,22 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ /* eslint-disable prettier/prettier */
6
7
  /* eslint-disable import/order */
7
8
  var ko_json_1 = __importDefault(require("./ko.json"));
8
9
  var en_json_1 = __importDefault(require("./en.json"));
9
- var jp_json_1 = __importDefault(require("./jp.json"));
10
+ var ja_json_1 = __importDefault(require("./ja.json"));
10
11
  var es_json_1 = __importDefault(require("./es.json"));
11
- var zh_zh_json_1 = __importDefault(require("./zh-zh.json"));
12
+ var zh_cn_json_1 = __importDefault(require("./zh-cn.json"));
12
13
  var zh_tw_json_1 = __importDefault(require("./zh-tw.json"));
14
+ var fil_json_1 = __importDefault(require("./fil.json"));
13
15
  var locale = {
14
16
  ko: ko_json_1.default,
15
17
  en: en_json_1.default,
16
- jp: jp_json_1.default,
18
+ ja: ja_json_1.default,
17
19
  es: es_json_1.default,
18
- 'zh-zh': zh_zh_json_1.default,
19
- 'zh-tw': zh_tw_json_1.default
20
+ 'zh-cn': zh_cn_json_1.default,
21
+ 'zh-tw': zh_tw_json_1.default,
22
+ fil: fil_json_1.default
20
23
  };
21
24
  exports.default = locale;
@@ -0,0 +1,9 @@
1
+ {
2
+ "translation": {
3
+ "str_rows_per_page": "Entry per page",
4
+ "str_n_selected": "{{itemSelected}} has been selected.",
5
+ "str_dlayout_section": "Section",
6
+ "str_4653": "Edit $t(str_dlayout_section)",
7
+ "str_4657": "Currently editing"
8
+ }
9
+ }