@weing-dev/ui-kit-primitive 0.1.2 → 0.3.0

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 (108) hide show
  1. package/README.md +9 -0
  2. package/dist/components/Accordion/Accordion.d.ts +3 -3
  3. package/dist/components/Avatar/Avatar.d.ts +2 -2
  4. package/dist/components/Badge/Badge.d.ts +2 -2
  5. package/dist/components/Breadcrumb/Breadcrumb.d.ts +5 -5
  6. package/dist/components/Button/Button.d.ts +4 -4
  7. package/dist/components/Button/button.augment.d.ts +17 -0
  8. package/dist/components/Calendar/Calendar.d.ts +6 -6
  9. package/dist/components/Cascader/Cascader.d.ts +4 -4
  10. package/dist/components/Chips/Chips.d.ts +2 -2
  11. package/dist/components/Comment/Comment.d.ts +2 -2
  12. package/dist/components/Editor/Editor.context.d.ts +2 -0
  13. package/dist/components/Editor/Editor.d.ts +17 -1
  14. package/dist/components/Editor/constants/editor.constants.d.ts +73 -24
  15. package/dist/components/Form/CheckBox/CheckBox.d.ts +4 -4
  16. package/dist/components/Form/Dropdown/Dropdown.d.ts +4 -4
  17. package/dist/components/Form/OTPInput/OTPInput.d.ts +2 -2
  18. package/dist/components/Form/Radio/Radio.d.ts +4 -4
  19. package/dist/components/Form/Switch/Switch.d.ts +3 -3
  20. package/dist/components/Form/TextArea/TextArea.d.ts +6 -6
  21. package/dist/components/Form/TextInput/TextInput.d.ts +5 -5
  22. package/dist/components/GlobalStyle/GlobalStyle.d.ts +2 -0
  23. package/dist/components/HelperText/HelperText.d.ts +3 -2
  24. package/dist/components/Icon/Icon.constant.d.ts +6 -0
  25. package/dist/components/Icon/Icon.d.ts +12 -9
  26. package/dist/components/Icon/context/icon.context.d.ts +5 -0
  27. package/dist/components/Icon/context/icon.provider.d.ts +8 -0
  28. package/dist/components/Icon/context/icon.store.d.ts +16 -0
  29. package/dist/components/Icon/context/index.d.ts +3 -0
  30. package/dist/components/Icon/icon.augment.d.ts +17 -0
  31. package/dist/components/Icons/BackButton.d.ts +3 -0
  32. package/dist/components/Icons/FullScreen.d.ts +3 -0
  33. package/dist/components/Icons/FullScreenClose.d.ts +3 -0
  34. package/dist/components/Icons/Pause.d.ts +3 -0
  35. package/dist/components/Icons/PictureQuality.d.ts +3 -0
  36. package/dist/components/Icons/Pip.d.ts +3 -0
  37. package/dist/components/Icons/PipExit.d.ts +3 -0
  38. package/dist/components/Icons/Play.d.ts +3 -0
  39. package/dist/components/Icons/PlaybackSpeed.d.ts +3 -0
  40. package/dist/components/Icons/Share.d.ts +3 -0
  41. package/dist/components/Icons/SubtitleFilled.d.ts +3 -0
  42. package/dist/components/Icons/SubtitleOutlined.d.ts +3 -0
  43. package/dist/components/Icons/VolumeOff.d.ts +3 -0
  44. package/dist/components/Icons/VolumeUp.d.ts +3 -0
  45. package/dist/components/Icons/index.d.ts +14 -0
  46. package/dist/components/LNB/LNB.d.ts +4 -4
  47. package/dist/components/Label/Label.d.ts +2 -2
  48. package/dist/components/List/List.d.ts +3 -3
  49. package/dist/components/Pagination/Pagination.d.ts +5 -5
  50. package/dist/components/Tab/Tab.d.ts +5 -5
  51. package/dist/components/Table/Table.d.ts +6 -6
  52. package/dist/components/TimeInput/TimeInput.d.ts +8 -8
  53. package/dist/components/VideoPlayer/VideoPlayer.d.ts +125 -0
  54. package/dist/components/VideoPlayer/VideoPlayer.utils.d.ts +45 -0
  55. package/dist/components/VideoPlayer/components/Error/Error.d.ts +15 -0
  56. package/dist/components/VideoPlayer/components/Error/index.d.ts +1 -0
  57. package/dist/components/VideoPlayer/components/Frame/Frame.d.ts +6 -0
  58. package/dist/components/VideoPlayer/components/Frame/index.d.ts +2 -0
  59. package/dist/components/VideoPlayer/components/Loading/Loading.d.ts +11 -0
  60. package/dist/components/VideoPlayer/components/Loading/index.d.ts +1 -0
  61. package/dist/components/VideoPlayer/components/Player/Player.d.ts +6 -0
  62. package/dist/components/VideoPlayer/components/Player/index.d.ts +2 -0
  63. package/dist/components/VideoPlayer/components/Thumbnail/Thumbnail.d.ts +8 -0
  64. package/dist/components/VideoPlayer/components/Thumbnail/index.d.ts +2 -0
  65. package/dist/components/VideoPlayer/components/VideoOverlay/VideoOverlay.d.ts +35 -0
  66. package/dist/components/VideoPlayer/components/VideoOverlay/index.d.ts +2 -0
  67. package/dist/components/VideoPlayer/components/Widgets/Button/Button.d.ts +13 -0
  68. package/dist/components/VideoPlayer/components/Widgets/Button/index.d.ts +2 -0
  69. package/dist/components/VideoPlayer/components/Widgets/ProgressBar/ProgressBar.d.ts +18 -0
  70. package/dist/components/VideoPlayer/components/Widgets/ProgressBar/index.d.ts +2 -0
  71. package/dist/components/VideoPlayer/components/Widgets/SpeedControl/SpeedControl.d.ts +21 -0
  72. package/dist/components/VideoPlayer/components/Widgets/SpeedControl/index.d.ts +1 -0
  73. package/dist/components/VideoPlayer/components/Widgets/Time/Time.d.ts +15 -0
  74. package/dist/components/VideoPlayer/components/Widgets/Time/index.d.ts +2 -0
  75. package/dist/components/VideoPlayer/components/Widgets/VolumeControl/VolumeControl.d.ts +34 -0
  76. package/dist/components/VideoPlayer/components/Widgets/VolumeControl/index.d.ts +2 -0
  77. package/dist/components/VideoPlayer/components/Widgets/index.d.ts +29 -0
  78. package/dist/components/VideoPlayer/components/index.d.ts +10 -0
  79. package/dist/components/VideoPlayer/context/index.d.ts +4 -0
  80. package/dist/components/VideoPlayer/context/videoPlayer.context.d.ts +15 -0
  81. package/dist/components/VideoPlayer/context/videoPlayer.provider.d.ts +3 -0
  82. package/dist/components/VideoPlayer/context/videoPlayer.store.d.ts +27 -0
  83. package/dist/components/VideoPlayer/context/videoPlayer.types.d.ts +351 -0
  84. package/dist/components/VideoPlayer/index.d.ts +18 -0
  85. package/dist/components/VideoPlayer/videoPlayer.constants.d.ts +55 -0
  86. package/dist/entry/augmentations.d.ts +4 -0
  87. package/dist/entry/components.d.ts +90 -0
  88. package/dist/entry/types.d.ts +36 -0
  89. package/dist/{index-BL3MWQXq.js → index-CsNmTnCb.js} +29 -38
  90. package/dist/index.css +2 -2
  91. package/dist/index.d.ts +3 -47
  92. package/dist/index.js +14884 -12979
  93. package/dist/index.umd.cjs +51 -15
  94. package/dist/static/icon/PictureQuality.svg +5 -0
  95. package/dist/static/icon/back_button.svg +8 -0
  96. package/dist/static/icon/full_screen.svg +3 -0
  97. package/dist/static/icon/full_screen_close.svg +1 -0
  98. package/dist/static/icon/pause.svg +1 -0
  99. package/dist/static/icon/pip.svg +8 -0
  100. package/dist/static/icon/pip_exit.svg +8 -0
  101. package/dist/static/icon/play.svg +3 -0
  102. package/dist/static/icon/playback_speed.svg +5 -0
  103. package/dist/static/icon/share.svg +1 -0
  104. package/dist/static/icon/subtitle_filled.svg +1 -0
  105. package/dist/static/icon/subtitle_outlined.svg +1 -0
  106. package/dist/static/icon/volume_off.svg +1 -0
  107. package/dist/static/icon/volume_up.svg +1 -0
  108. package/package.json +20 -19
@@ -0,0 +1,5 @@
1
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24">
2
+ <path
3
+ d="M9 3C8.11 2.99 7.25 3.29 6.54 3.83C5.84 4.38 5.34 5.14 5.12 6H3C2.73 6 2.48 6.10 2.29 6.29C2.10 6.48 2 6.73 2 7C2 7.26 2.10 7.51 2.29 7.70C2.48 7.89 2.73 8 3 8H5.12C5.34 8.85 5.84 9.61 6.55 10.16C7.25 10.70 8.11 10.99 9 10.99C9.88 10.99 10.74 10.70 11.44 10.16C12.15 9.61 12.65 8.85 12.87 8H21C21.26 8 21.51 7.89 21.70 7.70C21.89 7.51 22 7.26 22 7C22 6.73 21.89 6.48 21.70 6.29C21.51 6.10 21.26 6 21 6H12.87C12.65 5.14 12.15 4.38 11.45 3.83C10.74 3.29 9.88 2.99 9 3ZM9 5C9.53 5 10.03 5.21 10.41 5.58C10.78 5.96 11 6.46 11 7C11 7.53 10.78 8.03 10.41 8.41C10.03 8.78 9.53 9 9 9C8.46 9 7.96 8.78 7.58 8.41C7.21 8.03 7 7.53 7 7C7 6.46 7.21 5.96 7.58 5.58C7.96 5.21 8.46 5 9 5ZM15 13C14.11 12.99 13.25 13.29 12.54 13.83C11.84 14.38 11.34 15.14 11.12 16H3C2.73 16 2.48 16.10 2.29 16.29C2.10 16.48 2 16.73 2 17C2 17.26 2.10 17.51 2.29 17.70C2.48 17.89 2.73 18 3 18H11.12C11.34 18.85 11.84 19.61 12.55 20.16C13.25 20.70 14.11 20.99 15 20.99C15.88 20.99 16.74 20.70 17.44 20.16C18.15 19.61 18.65 18.85 18.87 18H21C21.26 18 21.51 17.89 21.70 17.70C21.89 17.51 22 17.26 22 17C22 16.73 21.89 16.48 21.70 16.29C21.51 16.10 21.26 16 21 16H18.87C18.65 15.14 18.15 14.38 17.45 13.83C16.74 13.29 15.88 12.99 15 13ZM15 15C15.53 15 16.03 15.21 16.41 15.58C16.78 15.96 17 16.46 17 17C17 17.53 16.78 18.03 16.41 18.41C16.03 18.78 15.53 19 15 19C14.46 19 13.96 18.78 13.58 18.41C13.21 18.03 13 17.53 13 17C13 16.46 13.21 15.96 13.58 15.58C13.96 15.21 14.46 15 15 15Z"
4
+ fill="white"></path>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_1432_178280" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="8" y="8" width="24" height="24">
3
+ <rect x="8" y="8" width="24" height="24" fill="#D9D9D9"/>
4
+ </mask>
5
+ <g mask="url(#mask0_1432_178280)">
6
+ <path d="M18.4534 19.9997L22.5265 24.0728C22.6649 24.2112 22.7358 24.3852 22.739 24.5949C22.7422 24.8045 22.6713 24.9817 22.5265 25.1266C22.3816 25.2714 22.206 25.3439 21.9996 25.3439C21.7932 25.3439 21.6175 25.2714 21.4727 25.1266L16.9784 20.6323C16.8848 20.5388 16.8188 20.44 16.7804 20.3362C16.7419 20.2324 16.7227 20.1202 16.7227 19.9997C16.7227 19.8791 16.7419 19.767 16.7804 19.6631C16.8188 19.5593 16.8848 19.4606 16.9784 19.367L21.4727 14.8728C21.6111 14.7343 21.7851 14.6635 21.9948 14.6603C22.2044 14.657 22.3816 14.7279 22.5265 14.8728C22.6713 15.0176 22.7438 15.1933 22.7438 15.3997C22.7438 15.6061 22.6713 15.7817 22.5265 15.9266L18.4534 19.9997Z" fill="white"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 5V9H5V5H9V3H5C3.9 3 3 3.9 3 5ZM5 15H3V19C3 20.1 3.9 21 5 21H9V19H5V15ZM19 19H15V21H19C20.1 21 21 20.1 21 19V15H19V19ZM19 3H15V5H19V9H21V5C21 3.9 20.1 3 19 3Z" fill="#ffffff"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#ffffff"><path d="M240-120v-120H120v-80h200v200h-80Zm400 0v-200h200v80H720v120h-80ZM120-640v-80h120v-120h80v200H120Zm520 0v-200h80v120h120v80H640Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#FFFFFF"><path d="M588-252q-11 0-19.5-8.5T560-280v-400q0-11 8.5-19.5T588-708h78q11 0 19.5 8.5T694-680v400q0 11-8.5 19.5T666-252h-78Zm-294 0q-11 0-19.5-8.5T266-280v-400q0-11 8.5-19.5T294-708h78q11 0 19.5 8.5T400-680v400q0 11-8.5 19.5T372-252h-78Z"/></svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_5_7" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
3
+ <rect width="24" height="24" fill="#D9D9D9"/>
4
+ </mask>
5
+ <g mask="url(#mask0_5_7)">
6
+ <path d="M1.99999 11V8.99999H5.59999L1.29999 4.69999L2.69999 3.29999L6.99999 7.59999V3.99999H8.99999V11H1.99999ZM3.99999 20C3.44999 20 2.97915 19.8042 2.58749 19.4125C2.19582 19.0208 1.99999 18.55 1.99999 18V13H3.99999V18H12V20H3.99999ZM20 13V5.99999H11V3.99999H20C20.55 3.99999 21.0208 4.19582 21.4125 4.58749C21.8042 4.97915 22 5.44999 22 5.99999V13H20ZM14 20V15H22V20H14Z" fill="#1C1B1F"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_5_13" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
3
+ <rect width="24" height="24" fill="#D9D9D9"/>
4
+ </mask>
5
+ <g mask="url(#mask0_5_13)">
6
+ <path d="M4 20C3.45 20 2.97917 19.8042 2.5875 19.4125C2.19583 19.0208 2 18.55 2 18V11H4V18H20V6H11V4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H4ZM17.075 16.5L18.5 15.075L15.4 12H18V10H12V16H14V13.425L17.075 16.5ZM2 9V4H9V9H2Z" fill="#1C1B1F"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.4137 15.2917L14.0037 12.7017C14.3937 12.3117 14.3937 11.6817 14.0037 11.2917L11.4137 8.70168C10.7837 8.08168 9.70374 8.52168 9.70374 9.41168V14.5817C9.70374 15.4817 10.7837 15.9217 11.4137 15.2917Z" fill="#ffffff"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24">
2
+ <path
3
+ d="M12 1c1.44 0 2.87.28 4.21.83a11 11 0 0 1 3.45 2.27l-1.81 1.05A9 9 0 0 0 3 12a9 9 0 0 0 18-.00l-.01-.44a8.99 8.99 0 0 0-.14-1.20l1.81-1.05A11.00 11.00 0 0 1 10.51 22.9 11 11 0 0 1 12 1Zm7.08 6.25-7.96 3.25a1.74 1.74 0 1 0 1.73 2.99l6.8-5.26a.57.57 0 0 0-.56-.98Z">
4
+ </path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="40px" viewBox="0 -960 960 960" width="40px" fill="#ffffff"><path d="M680-80q-50 0-85-35t-35-85q0-6 3-28L282-392q-16 15-37 23.5t-45 8.5q-50 0-85-35t-35-85q0-50 35-85t85-35q24 0 45 8.5t37 23.5l281-164q-2-7-2.5-13.5T560-760q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35q-24 0-45-8.5T598-672L317-508q2 7 2.5 13.5t.5 14.5q0 8-.5 14.5T317-452l281 164q16-15 37-23.5t45-8.5q50 0 85 35t35 85q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T720-200q0-17-11.5-28.5T680-240q-17 0-28.5 11.5T640-200q0 17 11.5 28.5T680-160ZM200-440q17 0 28.5-11.5T240-480q0-17-11.5-28.5T200-520q-17 0-28.5 11.5T160-480q0 17 11.5 28.5T200-440Zm480-280q17 0 28.5-11.5T720-760q0-17-11.5-28.5T680-800q-17 0-28.5 11.5T640-760q0 17 11.5 28.5T680-720Zm0 520ZM200-480Zm480-280Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm80-160h320v-80H240v80Zm400 0h80v-80h-80v80ZM240-480h80v-80h-80v80Zm160 0h320v-80H400v80Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M240-320h320v-80H240v80Zm400 0h80v-80h-80v80ZM240-480h80v-80h-80v80Zm160 0h320v-80H400v80ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#ffffff"><path d="M792-56 671-177q-25 16-53 27.5T560-131v-82q14-5 27.5-10t25.5-12L480-368v208L280-360H120v-240h128L56-792l56-56 736 736-56 56Zm-8-232-58-58q17-31 25.5-65t8.5-70q0-94-55-168T560-749v-82q124 28 202 125.5T840-481q0 53-14.5 102T784-288ZM650-422l-90-90v-130q47 22 73.5 66t26.5 96q0 15-2.5 29.5T650-422ZM480-592 376-696l104-104v208Zm-80 238v-94l-72-72H200v80h114l86 86Zm-36-130Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#ffffff"><path d="M560-131v-82q90-26 145-100t55-168q0-94-55-168T560-749v-82q124 28 202 125.5T840-481q0 127-78 224.5T560-131ZM120-360v-240h160l200-200v640L280-360H120Zm440 40v-322q47 22 73.5 66t26.5 96q0 51-26.5 94.5T560-320ZM400-606l-86 86H200v80h114l86 86v-252ZM300-480Z"/></svg>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@weing-dev/ui-kit-primitive",
3
3
  "private": false,
4
- "version": "0.1.2",
4
+ "version": "0.3.0",
5
5
  "type": "module",
6
6
  "sideEffects": [
7
7
  "**/*.css"
@@ -20,6 +20,9 @@
20
20
  "dist"
21
21
  ],
22
22
  "peerDependencies": {
23
+ "@aws-sdk/client-s3": "^3.717.0",
24
+ "@aws-sdk/client-secrets-manager": "^3.716.0",
25
+ "@aws-sdk/s3-request-presigner": "^3.717.0",
23
26
  "@tanstack/react-table": "^8.20.6",
24
27
  "chart.js": "^4.4.7",
25
28
  "chartjs-adapter-luxon": "^1.3.1",
@@ -28,20 +31,17 @@
28
31
  "chartjs-plugin-datalabels": "^2.2.0",
29
32
  "classnames": "^2.5.1",
30
33
  "dayjs": "^1.11.13",
34
+ "framer-motion": "^11.15.0",
35
+ "luxon": "^3.5.0",
31
36
  "quill": "^2.0.3",
37
+ "quill-image-resize-module-react": "^3.0.0",
32
38
  "react": "^19.0.0",
33
39
  "react-chartjs-2": "^5.2.0",
34
40
  "react-dom": "^19.0.0",
35
- "react-quill": "^2.0.0",
36
41
  "react-quill-new": "^3.3.3",
37
42
  "styled-components": "^6.1.13",
38
- "luxon": "^3.5.0",
39
- "zustand": "^5.0.2",
40
- "quill-image-resize-module-react": "^3.0.0",
41
- "framer-motion": "^11.15.0",
42
- "@aws-sdk/client-s3": "^3.717.0",
43
- "@aws-sdk/client-secrets-manager": "^3.716.0",
44
- "@aws-sdk/s3-request-presigner": "^3.717.0"
43
+ "video.js": "^8.23.4",
44
+ "zustand": "^5.0.2"
45
45
  },
46
46
  "dependencies": {
47
47
  "@dnd-kit/core": "^6.3.1",
@@ -56,6 +56,9 @@
56
56
  "vite-tsconfig-paths": "^5.1.4"
57
57
  },
58
58
  "devDependencies": {
59
+ "@aws-sdk/client-s3": "^3.717.0",
60
+ "@aws-sdk/client-secrets-manager": "^3.716.0",
61
+ "@aws-sdk/s3-request-presigner": "^3.717.0",
59
62
  "@emotion/is-prop-valid": "^1.3.1",
60
63
  "@eslint/js": "^9.17.0",
61
64
  "@faker-js/faker": "^9.3.0",
@@ -63,7 +66,9 @@
63
66
  "@types/react": "^19.0.0",
64
67
  "@types/react-dom": "^19.0.0",
65
68
  "@types/uuid": "^10.0.0",
69
+ "@vitejs/plugin-react": "^5.1.3",
66
70
  "@vitejs/plugin-react-swc": "^3.7.2",
71
+ "babel-plugin-react-compiler": "^1.0.0",
67
72
  "chart.js": "^4.4.7",
68
73
  "chartjs-adapter-luxon": "^1.3.1",
69
74
  "chartjs-chart-funnel": "^4.2.4",
@@ -75,29 +80,25 @@
75
80
  "eslint-plugin-react-hooks": "^5.1.0",
76
81
  "eslint-plugin-react-refresh": "^0.4.16",
77
82
  "eslint-plugin-storybook": "^0.8.0",
83
+ "framer-motion": "^11.15.0",
78
84
  "globals": "^15.14.0",
85
+ "luxon": "^3.5.0",
79
86
  "quill": "^2.0.3",
87
+ "quill-image-resize-module-react": "^3.0.0",
80
88
  "react-chartjs-2": "^5.2.0",
81
- "react-quill": "^2.0.0",
82
- "react-quill-new": "^3.3.3",
83
89
  "rollup-plugin-visualizer": "^5.14.0",
84
90
  "typescript": "^5.7.2",
85
91
  "typescript-eslint": "^8.18.2",
86
92
  "vite": "^5.4.11",
87
93
  "vite-plugin-dts": "^4.4.0",
88
- "luxon": "^3.5.0",
89
- "zustand": "^5.0.2",
90
- "quill-image-resize-module-react": "^3.0.0",
91
- "framer-motion": "^11.15.0",
92
- "@aws-sdk/client-s3": "^3.717.0",
93
- "@aws-sdk/client-secrets-manager": "^3.716.0",
94
- "@aws-sdk/s3-request-presigner": "^3.717.0"
94
+ "zustand": "^5.0.2"
95
95
  },
96
96
  "scripts": {
97
97
  "dev": "vite",
98
98
  "build": "tsc -b && vite build",
99
99
  "lint": "eslint .",
100
100
  "preview": "vite preview",
101
- "icons:create": "npx @svgr/cli -d ./src/components/Icons ./public/static/icon --config-file ./scripts/icons/svgr-config.json --template ./scripts/icons/svg-template.cjs --svgo-config ./scripts/icons/svgo-config.json && node ./scripts/icons/setIcon.cjs"
101
+ "icons:create:legacy": "npx @svgr/cli -d ./src/components/Icons ./public/static/icon --config-file ./scripts/icons/svgr-config.json --template ./scripts/icons/svg-template.cjs --svgo-config ./scripts/icons/svgo-config.json && node ./scripts/icons/setIcon.cjs",
102
+ "icons:create": "npx @svgr/cli -d ./src/components/Icons ./public/static/icon --config-file ./scripts/icons/svgr-config.json --template ./scripts/icons/svg-template.cjs --svgo-config ./scripts/icons/svgo-config.json && node scripts/icons/generate-icon-names.cjs"
102
103
  }
103
104
  }