pds-dev-kit-web 1.9.22 → 1.9.24

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 (75) hide show
  1. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  2. package/dist/src/common/styles/colorSet/index.d.ts +749 -748
  3. package/dist/src/common/styles/colorSet/index.js +3 -3
  4. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  5. package/dist/src/common/styles/movement/animationStyle.js +8 -8
  6. package/dist/src/desktop/components/AdminList/AdminList.js +1 -1
  7. package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +1 -0
  8. package/dist/src/desktop/components/BasicListItem/BasicListItem.js +10 -99
  9. package/dist/src/desktop/components/BasicListItem/Contents.d.ts +16 -0
  10. package/dist/src/desktop/components/BasicListItem/Contents.js +31 -0
  11. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  12. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.js +27 -0
  13. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  14. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  15. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  16. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.js +19 -0
  17. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  18. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.js +9 -0
  19. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  20. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  21. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  22. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.js +13 -0
  23. package/dist/src/desktop/components/BasicListItem/LeftBox/index.d.ts +2 -0
  24. package/dist/src/desktop/components/BasicListItem/LeftBox/index.js +8 -0
  25. package/dist/src/desktop/components/BasicListItem/RightBox/Description.d.ts +8 -0
  26. package/dist/src/desktop/components/BasicListItem/RightBox/Description.js +10 -0
  27. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  28. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.js +19 -0
  29. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  30. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +10 -0
  31. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  32. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.js +40 -0
  33. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  34. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +19 -0
  35. package/dist/src/desktop/components/BasicListItem/RightBox/index.d.ts +2 -0
  36. package/dist/src/desktop/components/BasicListItem/RightBox/index.js +8 -0
  37. package/dist/src/desktop/components/Radio/Radio.js +2 -2
  38. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.d.ts +1 -1
  39. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.js +2 -0
  40. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.d.ts +1 -1
  41. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +60 -9
  42. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.d.ts +1 -1
  43. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.js +4 -0
  44. package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +1 -0
  45. package/dist/src/mobile/components/BasicListItem/BasicListItem.js +10 -99
  46. package/dist/src/mobile/components/BasicListItem/Contents.d.ts +16 -0
  47. package/dist/src/mobile/components/BasicListItem/Contents.js +31 -0
  48. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  49. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.js +27 -0
  50. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  51. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  52. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  53. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.js +19 -0
  54. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  55. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.js +9 -0
  56. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  57. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  58. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  59. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.js +13 -0
  60. package/dist/src/mobile/components/BasicListItem/LeftBox/index.d.ts +2 -0
  61. package/dist/src/mobile/components/BasicListItem/LeftBox/index.js +8 -0
  62. package/dist/src/mobile/components/BasicListItem/RightBox/Description.d.ts +8 -0
  63. package/dist/src/mobile/components/BasicListItem/RightBox/Description.js +10 -0
  64. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  65. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.js +19 -0
  66. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  67. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +10 -0
  68. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  69. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.js +40 -0
  70. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  71. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +19 -0
  72. package/dist/src/mobile/components/BasicListItem/RightBox/index.d.ts +2 -0
  73. package/dist/src/mobile/components/BasicListItem/RightBox/index.js +8 -0
  74. package/package.json +1 -1
  75. package/release-note.md +8 -5
@@ -742,5 +742,6 @@
742
742
  "ui_93": "sys_storyboard_card_base_blue01",
743
743
  "ui_94": "sys_storyboard_card_base_red01",
744
744
  "ui_95": "sys_storyboard_card_base_green01",
745
- "ui_cpnt_icon_sys_brandsecondary_variant": "sys_brand_secondary_variant"
745
+ "ui_cpnt_icon_sys_brandsecondary_variant": "sys_brand_secondary_variant",
746
+ "ui_96": "sys_component_base_10"
746
747
  }