pds-dev-kit-web 1.9.0-beta.3 → 1.9.0-beta.5

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 (100) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/dist/index.js +14 -0
  3. package/dist/src/common/assets/icons/fill/ArrowDown.js +1 -1
  4. package/dist/src/common/assets/icons/fill/ArrowUp.js +1 -1
  5. package/dist/src/common/services/i18n/resources/en.json +4625 -1466
  6. package/dist/src/common/services/i18n/resources/es.json +6082 -2923
  7. package/dist/src/common/services/i18n/resources/index.d.ts +18961 -7
  8. package/dist/src/common/services/i18n/resources/index.js +2 -2
  9. package/dist/src/common/services/i18n/resources/jp.json +6091 -2932
  10. package/dist/src/common/services/i18n/resources/ko.json +3353 -194
  11. package/dist/src/common/services/i18n/resources/zh-tw.json +4000 -841
  12. package/dist/src/common/services/i18n/resources/zh-zh.json +6844 -0
  13. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +9 -2
  14. package/dist/src/common/styles/colorSet/PaletteColor_light.json +9 -2
  15. package/dist/src/common/styles/colorSet/SemanticColor.json +5 -1
  16. package/dist/src/common/styles/colorSet/UIColor.json +15 -3
  17. package/dist/src/common/styles/colorSet/index.d.ts +32 -2
  18. package/dist/src/common/styles/colorSet/index.js +2 -2
  19. package/dist/src/common/styles/colorSet/ui-type.d.ts +12 -0
  20. package/dist/src/common/styles/movement/animationStyle.d.ts +8 -0
  21. package/dist/src/common/styles/movement/animationStyle.js +18 -0
  22. package/dist/src/common/styles/movement/keyframes.d.ts +14 -0
  23. package/dist/src/common/styles/movement/keyframes.js +23 -0
  24. package/dist/src/common/styles/movement/transitionStyle.d.ts +3 -0
  25. package/dist/src/common/styles/movement/transitionStyle.js +12 -0
  26. package/dist/src/desktop/components/AdminListItem/AdminListItem.js +4 -3
  27. package/dist/src/desktop/components/DesktopAlertDialog/DesktopAlertDialog.js +5 -4
  28. package/dist/src/desktop/components/Dropdown/Dropdown.js +34 -3
  29. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +15 -4
  30. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +5 -4
  31. package/dist/src/desktop/components/IconButton/IconButton.js +7 -6
  32. package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.js +4 -3
  33. package/dist/src/desktop/components/MainButton/MainButton.d.ts +1 -1
  34. package/dist/src/desktop/components/MainButton/MainButton.js +129 -41
  35. package/dist/src/desktop/components/ReactionButton/ReactionButton.js +5 -1
  36. package/dist/src/desktop/components/Select/Select.js +29 -2
  37. package/dist/src/desktop/components/TextButton/TextButton.js +3 -2
  38. package/dist/src/desktop/components/TextField/TextField.js +35 -4
  39. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +7 -6
  40. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +1 -1
  41. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +141 -49
  42. package/dist/src/desktop/components/UploadMainButton/types.d.ts +0 -10
  43. package/dist/src/desktop/components/UploadMainButton/types.js +1 -11
  44. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +3 -2
  45. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +1 -1
  46. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +1 -1
  47. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +2 -2
  48. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +2 -2
  49. package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.d.ts +3 -2
  50. package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.js +35 -18
  51. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +8 -7
  52. package/dist/src/mobile/components/Dropdown/Dropdown.js +21 -3
  53. package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.js +4 -3
  54. package/dist/src/mobile/components/IconButton/IconButton.js +6 -5
  55. package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.js +3 -2
  56. package/dist/src/mobile/components/MainButton/MainButton.d.ts +1 -1
  57. package/dist/src/mobile/components/MainButton/MainButton.js +122 -37
  58. package/dist/src/mobile/components/MobileAlertDialog/MobileAlertDialog.js +5 -4
  59. package/dist/src/mobile/components/Select/Select.js +18 -2
  60. package/dist/src/mobile/components/TextButton/TextButton.js +2 -1
  61. package/dist/src/mobile/components/TextField/TextField.js +22 -4
  62. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +6 -5
  63. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +1 -1
  64. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +134 -42
  65. package/dist/src/mobile/components/UploadMainButton/types.d.ts +0 -10
  66. package/dist/src/mobile/components/UploadMainButton/types.js +1 -11
  67. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +3 -2
  68. package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.js +5 -4
  69. package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
  70. package/dist/src/sub/DynamicLayout/DynamicLayout.js +2 -2
  71. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.d.ts +2 -1
  72. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +2 -2
  73. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/OverlayBorders.d.ts +6 -0
  74. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/OverlayBorders.js +49 -0
  75. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.d.ts +2 -1
  76. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.js +23 -8
  77. package/dist/src/sub/DynamicLayout/hooks/useLazyUnmount/index.d.ts +1 -0
  78. package/dist/src/sub/DynamicLayout/hooks/useLazyUnmount/index.js +8 -0
  79. package/dist/src/sub/DynamicLayout/hooks/useLazyUnmount/useLazyUnmount.d.ts +5 -0
  80. package/dist/src/sub/DynamicLayout/hooks/useLazyUnmount/useLazyUnmount.js +61 -0
  81. package/dist/src/sub/DynamicLayout/types.d.ts +2 -1
  82. package/dist/storybook-static/{0.73af3e66.iframe.bundle.d.ts → 0.2023c95c.iframe.bundle.d.ts} +0 -0
  83. package/dist/storybook-static/{0.73af3e66.iframe.bundle.js → 0.2023c95c.iframe.bundle.js} +8 -8
  84. package/dist/storybook-static/{4.d7ecdbf4.iframe.bundle.d.ts → 4.d1de0501.iframe.bundle.d.ts} +0 -0
  85. package/dist/storybook-static/{4.d7ecdbf4.iframe.bundle.js → 4.d1de0501.iframe.bundle.js} +71 -71
  86. package/dist/storybook-static/{5.dc1e4c72.iframe.bundle.d.ts → 5.2f192ddf.iframe.bundle.d.ts} +0 -0
  87. package/dist/storybook-static/{5.dc1e4c72.iframe.bundle.js → 5.2f192ddf.iframe.bundle.js} +13 -13
  88. package/dist/storybook-static/{6.e668ed7b.iframe.bundle.d.ts → 6.62fc7663.iframe.bundle.d.ts} +0 -0
  89. package/dist/storybook-static/{6.e668ed7b.iframe.bundle.js → 6.62fc7663.iframe.bundle.js} +6 -6
  90. package/dist/storybook-static/{7.9af8f518.iframe.bundle.d.ts → 7.3518bf24.iframe.bundle.d.ts} +0 -0
  91. package/dist/storybook-static/{7.9af8f518.iframe.bundle.js → 7.3518bf24.iframe.bundle.js} +3 -3
  92. package/dist/storybook-static/{main.7e8e72d0.iframe.bundle.d.ts → main.bea0ee46.iframe.bundle.d.ts} +740 -860
  93. package/dist/storybook-static/{main.7e8e72d0.iframe.bundle.js → main.bea0ee46.iframe.bundle.js} +1343 -1112
  94. package/dist/storybook-static/{runtime~main.1b62987c.iframe.bundle.d.ts → runtime~main.54fba058.iframe.bundle.d.ts} +0 -0
  95. package/dist/storybook-static/{runtime~main.1b62987c.iframe.bundle.js → runtime~main.54fba058.iframe.bundle.js} +1 -1
  96. package/dist/storybook-static/{vendors~main.4e754259.iframe.bundle.d.ts → vendors~main.dd7c8d3f.iframe.bundle.d.ts} +0 -0
  97. package/dist/storybook-static/{vendors~main.4e754259.iframe.bundle.js → vendors~main.dd7c8d3f.iframe.bundle.js} +829 -829
  98. package/package.json +1 -1
  99. package/release-note.md +91 -10
  100. package/dist/src/common/services/i18n/resources/zh-cn.json +0 -3685

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.