@m4l/components 9.3.2-B04082025-beta.3 → 9.3.2-B11082025-beta.1

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 (205) hide show
  1. package/@types/types.d.ts +33 -3
  2. package/components/Card/Card.d.ts +7 -0
  3. package/components/Card/Card.styles.d.ts +2 -0
  4. package/components/Card/constants.d.ts +7 -0
  5. package/components/Card/helpers/getSizeSpacing.d.ts +7 -0
  6. package/components/Card/index.d.ts +1 -0
  7. package/components/Card/slots/CardEnum.d.ts +3 -0
  8. package/components/Card/slots/CardSlots.d.ts +3 -0
  9. package/components/Card/types.d.ts +59 -0
  10. package/components/DynamicFilter/DynamicFilter.styles.js +3 -1
  11. package/components/DynamicSort/DynamicSort.styles.js +3 -1
  12. package/components/ImageText/ImageText.d.ts +7 -0
  13. package/components/ImageText/ImageText.js +62 -0
  14. package/components/ImageText/ImageText.styles.d.ts +2 -0
  15. package/components/ImageText/{components/NoItemPrivileges/NoItemPrivilegesStyles.js → ImageText.styles.js} +21 -4
  16. package/components/ImageText/constants.d.ts +16 -0
  17. package/components/ImageText/constants.js +10 -0
  18. package/components/ImageText/index.d.ts +1 -3
  19. package/components/ImageText/slots/ImageTextEnum.d.ts +8 -0
  20. package/components/ImageText/slots/ImageTextEnum.js +12 -0
  21. package/components/ImageText/slots/ImageTextSlots.d.ts +18 -0
  22. package/components/ImageText/slots/ImageTextSlots.js +38 -0
  23. package/components/ImageText/types.d.ts +40 -0
  24. package/components/NoItemPrivileges/NoItemPrivileges.js +33 -0
  25. package/components/NoItemPrivileges/NoItemPrivilegesStyles.js +6 -0
  26. package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/constants.d.ts +0 -1
  27. package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/constants.js +3 -4
  28. package/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.d.ts +3 -0
  29. package/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.js +7 -0
  30. package/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.d.ts +3 -0
  31. package/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.js +12 -0
  32. package/components/NoItemPrivileges/test/NoItemPrivileges.test.d.ts +1 -0
  33. package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/types.d.ts +1 -1
  34. package/components/NoItemSelected/NoItemSelected.js +34 -0
  35. package/components/NoItemSelected/NoItemSelected.styles.js +6 -0
  36. package/components/NoItemSelected/constant.d.ts +2 -0
  37. package/components/NoItemSelected/constant.js +8 -0
  38. package/components/{ImageText/components/NoItemSelected → NoItemSelected}/dictionary.d.ts +0 -2
  39. package/components/NoItemSelected/dictionary.js +12 -0
  40. package/components/NoItemSelected/slots/NoItemSelectedEnum.d.ts +3 -0
  41. package/components/NoItemSelected/slots/NoItemSelectedEnum.js +7 -0
  42. package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +3 -0
  43. package/components/NoItemSelected/slots/NoItemSelectedSlots.js +12 -0
  44. package/components/NoItemSelected/test/NoItemSelected.test.d.ts +1 -0
  45. package/components/{ImageText/components/NoItemSelected → NoItemSelected}/types.d.ts +6 -7
  46. package/components/NumberInput/NumberInput.styles.js +1 -0
  47. package/components/ObjectLogs/helpers/Fields/filterFields.d.ts +1 -1
  48. package/components/ObjectLogs/hooks/useDetailFormatter.js +1 -1
  49. package/components/ObjectLogs/hooks/useFilterAndSort.js +2 -1
  50. package/components/PaperForm/PaperForm.js +1 -2
  51. package/components/PaperForm/components/Header.js +1 -10
  52. package/components/PaperForm/styles.js +1 -4
  53. package/components/PropertyValue/PropertyValue.js +1 -1
  54. package/components/SettingsLayout/SettingsLayout.d.ts +5 -0
  55. package/components/SettingsLayout/SettingsLayout.js +34 -0
  56. package/components/SettingsLayout/SettingsLayout.styles.d.ts +2 -0
  57. package/components/SettingsLayout/SettingsLayout.styles.js +270 -0
  58. package/components/SettingsLayout/constants.d.ts +7 -0
  59. package/components/SettingsLayout/constants.js +10 -0
  60. package/components/SettingsLayout/dictionary.d.ts +8 -0
  61. package/components/SettingsLayout/dictionary.js +11 -0
  62. package/components/SettingsLayout/icons.d.ts +14 -0
  63. package/components/SettingsLayout/icons.js +17 -0
  64. package/components/SettingsLayout/index.d.ts +2 -0
  65. package/components/SettingsLayout/slots/SettingsLayoutEnum.d.ts +17 -0
  66. package/components/SettingsLayout/slots/SettingsLayoutEnum.js +21 -0
  67. package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +47 -0
  68. package/components/SettingsLayout/slots/SettingsLayoutSlots.js +83 -0
  69. package/components/SettingsLayout/subcomponents/SettingColorPresets/SettingColorPresets.d.ts +5 -0
  70. package/components/SettingsLayout/subcomponents/SettingColorPresets/SettingColorPresets.js +37 -0
  71. package/components/SettingsLayout/subcomponents/SettingColorPresets/index.d.ts +1 -0
  72. package/components/SettingsLayout/subcomponents/SettingColorPresets/types.d.ts +3 -0
  73. package/components/SettingsLayout/subcomponents/SettingDirection/SettingDirection.d.ts +5 -0
  74. package/components/SettingsLayout/subcomponents/SettingDirection/SettingDirection.js +37 -0
  75. package/components/SettingsLayout/subcomponents/SettingDirection/index.d.ts +1 -0
  76. package/components/SettingsLayout/subcomponents/SettingDirection/types.d.ts +3 -0
  77. package/components/SettingsLayout/subcomponents/SettingFullscreen/SettingFullscreen.d.ts +5 -0
  78. package/components/SettingsLayout/subcomponents/SettingFullscreen/SettingFullscreen.js +40 -0
  79. package/components/SettingsLayout/subcomponents/SettingFullscreen/index.d.ts +1 -0
  80. package/components/SettingsLayout/subcomponents/SettingFullscreen/index.js +1 -0
  81. package/components/SettingsLayout/subcomponents/SettingFullscreen/types.d.ts +3 -0
  82. package/components/SettingsLayout/subcomponents/SettingItem/SettingItem.d.ts +8 -0
  83. package/components/SettingsLayout/subcomponents/SettingItem/SettingItem.js +23 -0
  84. package/components/SettingsLayout/subcomponents/SettingItem/index.d.ts +1 -0
  85. package/components/SettingsLayout/subcomponents/SettingItem/index.js +1 -0
  86. package/components/SettingsLayout/subcomponents/SettingItem/types.d.ts +5 -0
  87. package/components/SettingsLayout/subcomponents/SettingItemColor/SettingItemColor.d.ts +8 -0
  88. package/components/SettingsLayout/subcomponents/SettingItemColor/SettingItemColor.js +24 -0
  89. package/components/SettingsLayout/subcomponents/SettingItemColor/index.d.ts +1 -0
  90. package/components/SettingsLayout/subcomponents/SettingItemColor/index.js +1 -0
  91. package/components/SettingsLayout/subcomponents/SettingItemColor/types.d.ts +6 -0
  92. package/components/SettingsLayout/subcomponents/SettingMode/SettingMode.d.ts +5 -0
  93. package/components/SettingsLayout/subcomponents/SettingMode/SettingMode.js +36 -0
  94. package/components/SettingsLayout/subcomponents/SettingMode/index.d.ts +1 -0
  95. package/components/SettingsLayout/subcomponents/SettingMode/index.js +1 -0
  96. package/components/SettingsLayout/subcomponents/SettingMode/types.d.ts +3 -0
  97. package/components/SettingsLayout/subcomponents/SettingsLayoutBase/SettingsLayoutBase.d.ts +5 -0
  98. package/components/SettingsLayout/subcomponents/SettingsLayoutBase/SettingsLayoutBase.js +76 -0
  99. package/components/SettingsLayout/subcomponents/SettingsLayoutBase/index.d.ts +1 -0
  100. package/components/SettingsLayout/subcomponents/SettingsLayoutBase/index.js +1 -0
  101. package/components/SettingsLayout/subcomponents/SettingsLayoutBase/types.d.ts +5 -0
  102. package/components/SettingsLayout/test/SettingsLayout.test.d.ts +18 -0
  103. package/components/SettingsLayout/types.d.ts +47 -0
  104. package/components/SideBar/subcomponents/ContentComponent/style.js +3 -0
  105. package/components/ToastContainer/ToastContainer.js +0 -1
  106. package/components/ToastContainer/ToastContainer.styles.js +126 -122
  107. package/components/ToastContainer/constants.d.ts +670 -0
  108. package/components/ToastContainer/constants.js +672 -1
  109. package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.js +2 -1
  110. package/components/hook-form/RHFDateTime/RHFDateTime.styles.js +2 -1
  111. package/components/hook-form/RHFNumberInput/RHFNumberInput.styles.js +2 -1
  112. package/components/hook-form/RHFPeriod/RHFPeriod.styles.js +2 -5
  113. package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.d.ts +1 -1
  114. package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js +1 -1
  115. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
  116. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js +6 -6
  117. package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +13 -11
  118. package/components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js +1 -1
  119. package/components/hook-form/RHFPeriod/subcomponents/Period/types.d.ts +2 -2
  120. package/components/hook-form/RHFSelect/RHFSelect.styles.js +2 -1
  121. package/components/hook-form/RHFTextField/RHFTextField.js +5 -3
  122. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  123. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +63 -55
  124. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +1 -1
  125. package/components/index.d.ts +3 -0
  126. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
  127. package/components/mui_extended/Button/ButtonStyles.js +2 -1
  128. package/components/mui_extended/IconButton/IconButton.styles.js +1 -1
  129. package/components/mui_extended/MenuItem/MenuItem.styles.js +2 -1
  130. package/components/mui_extended/TextField/TextField.js +6 -8
  131. package/components/mui_extended/TextField/TextField.styles.js +1 -0
  132. package/components/mui_extended/TextField/constants.d.ts +5 -5
  133. package/components/mui_extended/TextField/constants.js +2 -2
  134. package/components/mui_extended/TextField/index.d.ts +1 -0
  135. package/components/mui_extended/TextField/slots/TextFieldEnum.d.ts +1 -1
  136. package/components/mui_extended/TextField/slots/TextFieldEnum.js +8 -8
  137. package/components/mui_extended/TextField/types.d.ts +1 -1
  138. package/hooks/index.d.ts +1 -0
  139. package/hooks/useIsVisible/index.d.ts +1 -0
  140. package/hooks/useIsVisible/index.js +1 -0
  141. package/hooks/useIsVisible/useIsVisible.d.ts +8 -0
  142. package/{components/ImageText/hooks/useIsVisible/index.js → hooks/useIsVisible/useIsVisible.js} +3 -3
  143. package/index.js +21 -17
  144. package/package.json +3 -3
  145. package/storybook/components/Card/Card.stories.d.ts +45 -0
  146. package/storybook/components/Card/subcomponents/ContentCard.d.ts +8 -0
  147. package/storybook/components/Card/subcomponents/constants.d.ts +9 -0
  148. package/storybook/components/NoItemPrivileges/NoItemPrivileges.stories.d.ts +1 -1
  149. package/storybook/components/NoItemSelect/NoItemSelect.stories.d.ts +1 -1
  150. package/storybook/components/SettingsLayout/SettingsLayout.stories.d.ts +6 -0
  151. package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/SettingsLayoutsRender.d.ts +5 -0
  152. package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/index.d.ts +1 -0
  153. package/storybook/components/extended/mui/TextField/TextFieldText.stories.d.ts +1 -1
  154. package/storybook/components/paperForm/PaperForm.stories.d.ts +4 -0
  155. package/storybook/hook-form/RHFTextField/RHFTextField.stories.d.ts +4 -0
  156. package/storybook/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.stories.d.ts +19 -0
  157. package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/getLimitCharacters.d.ts +2 -2
  158. package/utils/getLimitCharacters/index.js +1 -0
  159. package/utils/getLimitCharacters/test/getLimitCharacters.test.d.ts +1 -0
  160. package/utils/getLimitCharacters/types.d.ts +11 -0
  161. package/components/ImageText/components/ImageTextContainer/ImageTextContainer.d.ts +0 -7
  162. package/components/ImageText/components/ImageTextContainer/ImageTextContainer.js +0 -25
  163. package/components/ImageText/components/ImageTextContainer/ImageTextContainerStyle.d.ts +0 -2
  164. package/components/ImageText/components/ImageTextContainer/ImageTextContainerStyle.js +0 -22
  165. package/components/ImageText/components/ImageTextContainer/constants.d.ts +0 -8
  166. package/components/ImageText/components/ImageTextContainer/constants.js +0 -8
  167. package/components/ImageText/components/ImageTextContainer/index.d.ts +0 -1
  168. package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerEnum.d.ts +0 -3
  169. package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerEnum.js +0 -7
  170. package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerSlots.d.ts +0 -3
  171. package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerSlots.js +0 -12
  172. package/components/ImageText/components/ImageTextContainer/types.d.ts +0 -22
  173. package/components/ImageText/components/NoItemPrivileges/NoItemPrivileges.js +0 -65
  174. package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.d.ts +0 -7
  175. package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.js +0 -11
  176. package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.d.ts +0 -15
  177. package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.js +0 -33
  178. package/components/ImageText/components/NoItemSelected/NoItemSelected.js +0 -62
  179. package/components/ImageText/components/NoItemSelected/NoItemSelected.styles.js +0 -89
  180. package/components/ImageText/components/NoItemSelected/constant.d.ts +0 -2
  181. package/components/ImageText/components/NoItemSelected/constant.js +0 -8
  182. package/components/ImageText/components/NoItemSelected/dictionary.js +0 -11
  183. package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedEnum.d.ts +0 -8
  184. package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedEnum.js +0 -12
  185. package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +0 -18
  186. package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedSlots.js +0 -39
  187. package/components/ImageText/hooks/useIsVisible/index.d.ts +0 -6
  188. package/components/hook-form/RHFDateTime/styles.d.ts +0 -1
  189. package/components/mui_extended/TextField/helpers/getLimitCharacters/types.d.ts +0 -5
  190. /package/components/{ImageText/components/NoItemPrivileges/test/NoItemPrivileges.test.d.ts → Card/helpers/getSizeSpacing.test.d.ts} +0 -0
  191. /package/components/{mui_extended/TextField/helpers/getLimitCharacters/test/getLimitCharacters.test.d.ts → Card/test/Card.test.d.ts} +0 -0
  192. /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/NoItemPrivileges.d.ts +0 -0
  193. /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/NoItemPrivilegesStyles.d.ts +0 -0
  194. /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.d.ts +0 -0
  195. /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.js +0 -0
  196. /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/index.d.ts +0 -0
  197. /package/components/{ImageText/components/ImageTextContainer → NoItemPrivileges}/index.js +0 -0
  198. /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/NoItemSelected.d.ts +0 -0
  199. /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/NoItemSelected.styles.d.ts +0 -0
  200. /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/index.d.ts +0 -0
  201. /package/components/{ImageText/components/NoItemPrivileges → NoItemSelected}/index.js +0 -0
  202. /package/components/{ImageText/components/NoItemSelected → SettingsLayout}/index.js +0 -0
  203. /package/components/{mui_extended/TextField/helpers/getLimitCharacters → SettingsLayout/subcomponents/SettingColorPresets}/index.js +0 -0
  204. /package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/getLimitCharacters.js +0 -0
  205. /package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/index.d.ts +0 -0
@@ -1,8 +1,679 @@
1
1
  const TOAST_KEY_COMPONENT = "M4LToastContainer";
2
2
  const DEFAULT_CLOSE_TIME = 3e4;
3
3
  const ICONS_PATH = "frontend/components/toast/assets/icons";
4
+ const TOAST_NATIVE_STYLES = {
5
+ "&": {
6
+ "--toastify-color-light": "#fff",
7
+ "--toastify-color-dark": "#121212",
8
+ "--toastify-color-info": "#3498db",
9
+ "--toastify-color-success": "#07bc0c",
10
+ "--toastify-color-warning": "#f1c40f",
11
+ "--toastify-color-error": "#e74c3c",
12
+ "--toastify-color-transparent": "hsla(0, 0%, 100%, 0.7)",
13
+ "--toastify-icon-color-info": "var(--toastify-color-info)",
14
+ "--toastify-icon-color-success": "var(--toastify-color-success)",
15
+ "--toastify-icon-color-warning": "var(--toastify-color-warning)",
16
+ "--toastify-icon-color-error": "var(--toastify-color-error)",
17
+ "--toastify-toast-width": "320px",
18
+ "--toastify-toast-offset": "16px",
19
+ "--toastify-toast-top": "max(var(--toastify-toast-offset), env(safe-area-inset-top))",
20
+ "--toastify-toast-right": "max(var(--toastify-toast-offset), env(safe-area-inset-right))",
21
+ "--toastify-toast-left": "max(var(--toastify-toast-offset), env(safe-area-inset-left))",
22
+ "--toastify-toast-bottom": "max(var(--toastify-toast-offset), env(safe-area-inset-bottom))",
23
+ "--toastify-toast-background": "#fff",
24
+ "--toastify-toast-min-height": "64px",
25
+ "--toastify-toast-max-height": "800px",
26
+ "--toastify-toast-bd-radius": "6px",
27
+ "--toastify-font-family": "sans-serif",
28
+ "--toastify-z-index": "9999",
29
+ "--toastify-text-color-light": "#757575",
30
+ "--toastify-text-color-dark": "#fff",
31
+ "--toastify-text-color-info": "#fff",
32
+ "--toastify-text-color-success": "#fff",
33
+ "--toastify-text-color-warning": "#fff",
34
+ "--toastify-text-color-error": "#fff",
35
+ "--toastify-spinner-color": "#616161",
36
+ "--toastify-spinner-color-empty-area": "#e0e0e0",
37
+ "--toastify-color-progress-light": "linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55)",
38
+ "--toastify-color-progress-dark": "#bb86fc",
39
+ "--toastify-color-progress-info": "var(--toastify-color-info)",
40
+ "--toastify-color-progress-success": "var(--toastify-color-success)",
41
+ "--toastify-color-progress-warning": "var(--toastify-color-warning)",
42
+ "--toastify-color-progress-error": "var(--toastify-color-error)",
43
+ "--toastify-color-progress-bgo": "0.2"
44
+ },
45
+ ".Toastify__toast-container": {
46
+ zIndex: "var(--toastify-z-index)",
47
+ position: "fixed",
48
+ padding: "4px",
49
+ width: "var(--toastify-toast-width)",
50
+ boxSizing: "border-box",
51
+ color: "#fff"
52
+ },
53
+ ".Toastify__toast-container--top-left": {
54
+ top: "var(--toastify-toast-top)",
55
+ left: "var(--toastify-toast-left)"
56
+ },
57
+ ".Toastify__toast-container--top-center": {
58
+ top: "var(--toastify-toast-top)",
59
+ left: "50%",
60
+ transform: "translateX(-50%)"
61
+ },
62
+ ".Toastify__toast-container--top-right": {
63
+ top: "var(--toastify-toast-top)",
64
+ right: "var(--toastify-toast-right)"
65
+ },
66
+ ".Toastify__toast-container--bottom-left": {
67
+ bottom: "var(--toastify-toast-bottom)",
68
+ left: "var(--toastify-toast-left)"
69
+ },
70
+ ".Toastify__toast-container--bottom-center": {
71
+ bottom: "var(--toastify-toast-bottom)",
72
+ left: "50%",
73
+ transform: "translateX(-50%)"
74
+ },
75
+ ".Toastify__toast-container--bottom-right": {
76
+ bottom: "var(--toastify-toast-bottom)",
77
+ right: "var(--toastify-toast-right)"
78
+ },
79
+ "@media only screen and (max-width: 480px)": {
80
+ ".Toastify__toast": {
81
+ marginBottom: 0,
82
+ borderRadius: 0
83
+ },
84
+ ".Toastify__toast-container": {
85
+ width: "100vw",
86
+ padding: "0",
87
+ left: "env(safe-area-inset-left)",
88
+ margin: "0"
89
+ },
90
+ ".Toastify__toast-container--top-center, .Toastify__toast-container--top-left, .Toastify__toast-container--top-right": {
91
+ top: "env(safe-area-inset-top)",
92
+ transform: "translateX(0)"
93
+ },
94
+ ".Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-right": {
95
+ bottom: "env(safe-area-inset-bottom)",
96
+ transform: "translateX(0)"
97
+ },
98
+ ".Toastify__toast-container--rtl": {
99
+ right: "env(safe-area-inset-right)",
100
+ left: "auto"
101
+ }
102
+ },
103
+ ".Toastify__toast": {
104
+ "--y": "0",
105
+ position: "relative",
106
+ msTouchAction: "none",
107
+ touchAction: "none",
108
+ minHeight: "var(--toastify-toast-min-height)",
109
+ boxSizing: "border-box",
110
+ marginBottom: "1rem",
111
+ padding: "8px",
112
+ borderRadius: "var(--toastify-toast-bd-radius)",
113
+ boxShadow: "0 4px 12px rgba(0, 0, 0, 0.1)",
114
+ display: "flex",
115
+ msFlexPack: "justify",
116
+ justifyContent: "space-between",
117
+ maxHeight: "var(--toastify-toast-max-height)",
118
+ fontFamily: "var(--toastify-font-family)",
119
+ cursor: "default",
120
+ direction: "ltr",
121
+ zIndex: 0,
122
+ overflow: "hidden"
123
+ },
124
+ ".Toastify__toast--stacked": {
125
+ position: "absolute",
126
+ width: "100%",
127
+ transform: "translate3d(0, var(--y), 0) scale(var(--s))",
128
+ transition: "transform 0.3s"
129
+ },
130
+ ".Toastify__toast--stacked[data-collapsed] .Toastify__close-button, .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body": {
131
+ transition: "opacity 0.1s"
132
+ },
133
+ '.Toastify__toast--stacked[data-collapsed="false"]': {
134
+ overflow: "visible"
135
+ },
136
+ '.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > *': {
137
+ opacity: 0
138
+ },
139
+ ".Toastify__toast--stacked:after": {
140
+ content: '""',
141
+ position: "absolute",
142
+ left: 0,
143
+ right: 0,
144
+ height: "calc(var(--g) * 1px)",
145
+ bottom: "100%",
146
+ test: "bruce"
147
+ },
148
+ '.Toastify__toast--stacked[data-pos="top"]': {
149
+ top: 0
150
+ },
151
+ '.Toastify__toast--stacked[data-pos="bot"]': {
152
+ bottom: 0
153
+ },
154
+ '.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before': {
155
+ transformOrigin: "top"
156
+ },
157
+ '.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before': {
158
+ transformOrigin: "bottom"
159
+ },
160
+ ".Toastify__toast--stacked:before": {
161
+ content: '""',
162
+ position: "absolute",
163
+ left: 0,
164
+ right: 0,
165
+ bottom: 0,
166
+ height: "100%",
167
+ transform: "scaleY(3)",
168
+ zIndex: -1
169
+ },
170
+ ".Toastify__toast--rtl": {
171
+ direction: "rtl"
172
+ },
173
+ ".Toastify__toast--close-on-click": {
174
+ cursor: "pointer"
175
+ },
176
+ ".Toastify__toast-body": {
177
+ margin: "auto 0",
178
+ msFlex: "1 1 auto",
179
+ flex: "1 1 auto",
180
+ padding: "6px",
181
+ display: "flex",
182
+ msFlexAlign: "center",
183
+ alignItems: "center"
184
+ },
185
+ ".Toastify__toast-body > div:last-child": {
186
+ wordBreak: "break-word",
187
+ msFlex: "1",
188
+ flex: "1"
189
+ },
190
+ ".Toastify__toast-icon": {
191
+ marginInlineEnd: "10px",
192
+ width: "20px",
193
+ msFlexNegative: 0,
194
+ flexShrink: 0,
195
+ display: "flex"
196
+ },
197
+ ".Toastify--animate": {
198
+ animationFillMode: "both",
199
+ animationDuration: "0.5s"
200
+ },
201
+ ".Toastify--animate-icon": {
202
+ animationFillMode: "both",
203
+ animationDuration: "0.3s"
204
+ },
205
+ ".Toastify__toast-theme--dark": {
206
+ background: "var(--toastify-color-dark)",
207
+ color: "var(--toastify-text-color-dark)"
208
+ },
209
+ ".Toastify__toast-theme--colored.Toastify__toast--default, .Toastify__toast-theme--light": {
210
+ background: "var(--toastify-color-light)",
211
+ color: "var(--toastify-text-color-light)"
212
+ },
213
+ ".Toastify__toast-theme--colored.Toastify__toast--info": {
214
+ color: "var(--toastify-text-color-info)",
215
+ background: "var(--toastify-color-info)"
216
+ },
217
+ ".Toastify__toast-theme--colored.Toastify__toast--success": {
218
+ color: "var(--toastify-text-color-success)",
219
+ background: "var(--toastify-color-success)"
220
+ },
221
+ ".Toastify__toast-theme--colored.Toastify__toast--warning": {
222
+ color: "var(--toastify-text-color-warning)",
223
+ background: "var(--toastify-color-warning)"
224
+ },
225
+ ".Toastify__toast-theme--colored.Toastify__toast--error": {
226
+ color: "var(--toastify-text-color-error)",
227
+ background: "var(--toastify-color-error)"
228
+ },
229
+ ".Toastify__progress-bar-theme--light": {
230
+ background: "var(--toastify-color-progress-light)"
231
+ },
232
+ ".Toastify__progress-bar-theme--dark": {
233
+ background: "var(--toastify-color-progress-dark)"
234
+ },
235
+ ".Toastify__progress-bar--info": {
236
+ background: "var(--toastify-color-progress-info)"
237
+ },
238
+ ".Toastify__progress-bar--success": {
239
+ background: "var(--toastify-color-progress-success)"
240
+ },
241
+ ".Toastify__progress-bar--warning": {
242
+ background: "var(--toastify-color-progress-warning)"
243
+ },
244
+ ".Toastify__progress-bar--error": {
245
+ background: "var(--toastify-color-progress-error)"
246
+ },
247
+ ".Toastify__progress-bar-theme--colored.Toastify__progress-bar--error, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning": {
248
+ background: "var(--toastify-color-transparent)"
249
+ },
250
+ ".Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning": {
251
+ background: "var(--toastify-color-transparent)"
252
+ },
253
+ ".Toastify__close-button": {
254
+ color: "#fff",
255
+ background: "transparent",
256
+ outline: "none",
257
+ border: "none",
258
+ padding: "0",
259
+ cursor: "pointer",
260
+ opacity: 0.7,
261
+ transition: "0.3s ease",
262
+ msFlexItemAlign: "start",
263
+ alignSelf: "flex-start",
264
+ zIndex: 1
265
+ },
266
+ ".Toastify__close-button--light": {
267
+ color: "#000",
268
+ opacity: 0.3
269
+ },
270
+ ".Toastify__close-button > svg": {
271
+ fill: "currentColor",
272
+ height: "16px",
273
+ width: "14px"
274
+ },
275
+ ".Toastify__close-button:focus, .Toastify__close-button:hover": {
276
+ opacity: 1
277
+ },
278
+ "@keyframes Toastify__trackProgress": {
279
+ "0%": {
280
+ transform: "scaleX(1)"
281
+ },
282
+ "to": {
283
+ transform: "scaleX(0)"
284
+ }
285
+ },
286
+ ".Toastify__progress-bar": {
287
+ position: "absolute",
288
+ bottom: "0",
289
+ left: "0",
290
+ width: "100%",
291
+ height: "100%",
292
+ zIndex: "var(--toastify-z-index)",
293
+ opacity: 0.7,
294
+ transformOrigin: "left",
295
+ borderBottomLeftRadius: "var(--toastify-toast-bd-radius)"
296
+ },
297
+ ".Toastify__progress-bar--animated": {
298
+ animation: "Toastify__trackProgress linear 1 forwards"
299
+ },
300
+ ".Toastify__progress-bar--controlled": {
301
+ transition: "transform 0.2s"
302
+ },
303
+ ".Toastify__progress-bar--rtl": {
304
+ right: 0,
305
+ left: "auto",
306
+ transformOrigin: "right",
307
+ borderBottomLeftRadius: 0,
308
+ borderBottomRightRadius: "var(--toastify-toast-bd-radius)"
309
+ },
310
+ ".Toastify__progress-bar--wrp": {
311
+ position: "absolute",
312
+ bottom: 0,
313
+ left: 0,
314
+ width: "100%",
315
+ height: "5px",
316
+ borderBottomLeftRadius: "var(--toastify-toast-bd-radius)"
317
+ },
318
+ '.Toastify__progress-bar--wrp[data-hidden="true"]': {
319
+ opacity: 0
320
+ },
321
+ ".Toastify__progress-bar--bg": {
322
+ opacity: "var(--toastify-color-progress-bgo)",
323
+ width: "100%",
324
+ height: "100%"
325
+ },
326
+ ".Toastify__spinner": {
327
+ width: "20px",
328
+ height: "20px",
329
+ boxSizing: "border-box",
330
+ border: "2px solid",
331
+ borderRadius: "100%",
332
+ borderColor: "var(--toastify-spinner-color-empty-area)",
333
+ borderRightColor: "var(--toastify-spinner-color)",
334
+ animation: "Toastify__spin 0.65s linear infinite"
335
+ },
336
+ "@keyframes Toastify__bounceInRight": {
337
+ "0%, 60%, 75%, 90%, to": {
338
+ animationTimingFunction: "cubic-bezier(0.215, 0.61, 0.355, 1)"
339
+ },
340
+ "0%": {
341
+ opacity: 0,
342
+ transform: "translate3d(3000px, 0, 0)"
343
+ },
344
+ "60%": {
345
+ opacity: 1,
346
+ transform: "translate3d(-25px, 0, 0)"
347
+ },
348
+ "75%": {
349
+ transform: "translate3d(10px, 0, 0)"
350
+ },
351
+ "90%": {
352
+ transform: "translate3d(-5px, 0, 0)"
353
+ },
354
+ "to": {
355
+ transform: "none"
356
+ }
357
+ },
358
+ "@keyframes Toastify__bounceOutRight": {
359
+ "20%": {
360
+ opacity: 1,
361
+ transform: "translate3d(-20px, var(--y), 0)"
362
+ },
363
+ "to": {
364
+ opacity: 0,
365
+ transform: "translate3d(2000px, var(--y), 0)"
366
+ }
367
+ },
368
+ "@keyframes Toastify__bounceInLeft": {
369
+ "0%, 60%, 75%, 90%, to": {
370
+ animationTimingFunction: "cubic-bezier(0.215, 0.61, 0.355, 1)"
371
+ },
372
+ "0%": {
373
+ opacity: 0,
374
+ transform: "translate3d(-3000px, 0, 0)"
375
+ },
376
+ "60%": {
377
+ opacity: 1,
378
+ transform: "translate3d(25px, 0, 0)"
379
+ },
380
+ "75%": {
381
+ transform: "translate3d(-10px, 0, 0)"
382
+ },
383
+ "90%": {
384
+ transform: "translate3d(5px, 0, 0)"
385
+ },
386
+ "to": {
387
+ transform: "none"
388
+ }
389
+ },
390
+ "@keyframes Toastify__bounceOutLeft": {
391
+ "20%": {
392
+ opacity: 1,
393
+ transform: "translate3d(20px, var(--y), 0)"
394
+ },
395
+ "to": {
396
+ opacity: 0,
397
+ transform: "translate3d(-2000px, var(--y), 0)"
398
+ }
399
+ },
400
+ "@keyframes Toastify__bounceInUp": {
401
+ "0%, 60%, 75%, 90%, to": {
402
+ animationTimingFunction: "cubic-bezier(0.215, 0.61, 0.355, 1)"
403
+ },
404
+ "0%": {
405
+ opacity: 0,
406
+ transform: "translate3d(0, 3000px, 0)"
407
+ },
408
+ "60%": {
409
+ opacity: 1,
410
+ transform: "translate3d(0, -20px, 0)"
411
+ },
412
+ "75%": {
413
+ transform: "translate3d(0, 10px, 0)"
414
+ },
415
+ "90%": {
416
+ transform: "translate3d(0, -5px, 0)"
417
+ },
418
+ "to": {
419
+ transform: "translateZ(0)"
420
+ }
421
+ },
422
+ "@keyframes Toastify__bounceOutUp": {
423
+ "20%": {
424
+ transform: "translate3d(0, calc(var(--y) - 10px), 0)"
425
+ },
426
+ "40%, 45%": {
427
+ opacity: 1,
428
+ transform: "translate3d(0, calc(var(--y) + 20px), 0)"
429
+ },
430
+ "to": {
431
+ opacity: 0,
432
+ transform: "translate3d(0, -2000px, 0)"
433
+ }
434
+ },
435
+ "@keyframes Toastify__bounceInDown": {
436
+ "0%, 60%, 75%, 90%, to": {
437
+ animationTimingFunction: "cubic-bezier(0.215, 0.61, 0.355, 1)"
438
+ },
439
+ "0%": {
440
+ opacity: 0,
441
+ transform: "translate3d(0, -3000px, 0)"
442
+ },
443
+ "60%": {
444
+ opacity: 1,
445
+ transform: "translate3d(0, 25px, 0)"
446
+ },
447
+ "75%": {
448
+ transform: "translate3d(0, -10px, 0)"
449
+ },
450
+ "90%": {
451
+ transform: "translate3d(0, 5px, 0)"
452
+ },
453
+ "to": {
454
+ transform: "none"
455
+ }
456
+ },
457
+ "@keyframes Toastify__bounceOutDown": {
458
+ "20%": {
459
+ transform: "translate3d(0, calc(var(--y) - 10px), 0)"
460
+ },
461
+ "40%, 45%": {
462
+ opacity: 1,
463
+ transform: "translate3d(0, calc(var(--y) + 20px), 0)"
464
+ },
465
+ "to": {
466
+ opacity: 0,
467
+ transform: "translate3d(0, 2000px, 0)"
468
+ }
469
+ },
470
+ ".Toastify__bounce-enter--bottom-left, .Toastify__bounce-enter--top-left": {
471
+ animationName: "Toastify__bounceInLeft"
472
+ },
473
+ ".Toastify__bounce-enter--bottom-right, .Toastify__bounce-enter--top-right": {
474
+ animationName: "Toastify__bounceInRight"
475
+ },
476
+ ".Toastify__bounce-enter--top-center": {
477
+ animationName: "Toastify__bounceInDown"
478
+ },
479
+ ".Toastify__bounce-enter--bottom-center": {
480
+ animationName: "Toastify__bounceInUp"
481
+ },
482
+ ".Toastify__bounce-exit--bottom-left, .Toastify__bounce-exit--top-left": {
483
+ animationName: "Toastify__bounceOutLeft"
484
+ },
485
+ ".Toastify__bounce-exit--bottom-right, .Toastify__bounce-exit--top-right": {
486
+ animationName: "Toastify__bounceOutRight"
487
+ },
488
+ ".Toastify__bounce-exit--top-center": {
489
+ animationName: "Toastify__bounceOutUp"
490
+ },
491
+ ".Toastify__bounce-exit--bottom-center": {
492
+ animationName: "Toastify__bounceOutDown"
493
+ },
494
+ "@keyframes Toastify__zoomIn": {
495
+ "0%": {
496
+ opacity: 0,
497
+ transform: "scale3d(0.3, 0.3, 0.3)"
498
+ },
499
+ "50%": {
500
+ opacity: 1
501
+ }
502
+ },
503
+ "@keyframes Toastify__zoomOut": {
504
+ "0%": {
505
+ opacity: 1
506
+ },
507
+ "50%": {
508
+ opacity: 0,
509
+ transform: "translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3)"
510
+ },
511
+ "to": {
512
+ opacity: 0
513
+ }
514
+ },
515
+ ".Toastify__zoom-enter": {
516
+ animationName: "Toastify__zoomIn"
517
+ },
518
+ ".Toastify__zoom-exit": {
519
+ animationName: "Toastify__zoomOut"
520
+ },
521
+ "@keyframes Toastify__flipIn": {
522
+ "0%": {
523
+ transform: "perspective(400px) rotateX(90deg)",
524
+ animationTimingFunction: "ease-in",
525
+ opacity: 0
526
+ },
527
+ "40%": {
528
+ transform: "perspective(400px) rotateX(-20deg)",
529
+ animationTimingFunction: "ease-in"
530
+ },
531
+ "60%": {
532
+ transform: "perspective(400px) rotateX(10deg)",
533
+ opacity: 1
534
+ },
535
+ "80%": {
536
+ transform: "perspective(400px) rotateX(-5deg)"
537
+ },
538
+ "to": {
539
+ transform: "perspective(400px)"
540
+ }
541
+ },
542
+ "@keyframes Toastify__flipOut": {
543
+ "0%": {
544
+ transform: "translate3d(0, var(--y), 0) perspective(400px)"
545
+ },
546
+ "30%": {
547
+ transform: "translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg)",
548
+ opacity: 1
549
+ },
550
+ "to": {
551
+ transform: "translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg)",
552
+ opacity: 0
553
+ }
554
+ },
555
+ ".Toastify__flip-enter": {
556
+ animationName: "Toastify__flipIn"
557
+ },
558
+ ".Toastify__flip-exit": {
559
+ animationName: "Toastify__flipOut"
560
+ },
561
+ "@keyframes Toastify__slideInRight": {
562
+ "0%": {
563
+ transform: "translate3d(110%, 0, 0)",
564
+ visibility: "visible"
565
+ },
566
+ "to": {
567
+ transform: "translate3d(0, var(--y), 0)"
568
+ }
569
+ },
570
+ "@keyframes Toastify__slideInLeft": {
571
+ "0%": {
572
+ transform: "translate3d(-110%, 0, 0)",
573
+ visibility: "visible"
574
+ },
575
+ "to": {
576
+ transform: "translate3d(0, var(--y), 0)"
577
+ }
578
+ },
579
+ "@keyframes Toastify__slideInUp": {
580
+ "0%": {
581
+ transform: "translate3d(0, 110%, 0)",
582
+ visibility: "visible"
583
+ },
584
+ "to": {
585
+ transform: "translate3d(0, var(--y), 0)"
586
+ }
587
+ },
588
+ "@keyframes Toastify__slideInDown": {
589
+ "0%": {
590
+ transform: "translate3d(0, -110%, 0)",
591
+ visibility: "visible"
592
+ },
593
+ "to": {
594
+ transform: "translate3d(0, var(--y), 0)"
595
+ }
596
+ },
597
+ "@keyframes Toastify__slideOutRight": {
598
+ "0%": {
599
+ transform: "translate3d(0, var(--y), 0)"
600
+ },
601
+ "to": {
602
+ visibility: "hidden",
603
+ transform: "translate3d(110%, var(--y), 0)"
604
+ }
605
+ },
606
+ "@keyframes Toastify__slideOutLeft": {
607
+ "0%": {
608
+ transform: "translate3d(0, var(--y), 0)"
609
+ },
610
+ "to": {
611
+ visibility: "hidden",
612
+ transform: "translate3d(-110%, var(--y), 0)"
613
+ }
614
+ },
615
+ "@keyframes Toastify__slideOutDown": {
616
+ "0%": {
617
+ transform: "translate3d(0, var(--y), 0)"
618
+ },
619
+ "to": {
620
+ visibility: "hidden",
621
+ transform: "translate3d(0, 500px, 0)"
622
+ }
623
+ },
624
+ "@keyframes Toastify__slideOutUp": {
625
+ "0%": {
626
+ transform: "translate3d(0, var(--y), 0)"
627
+ },
628
+ "to": {
629
+ visibility: "hidden",
630
+ transform: "translate3d(0, -500px, 0)"
631
+ }
632
+ },
633
+ ".Toastify__slide-enter--bottom-left, .Toastify__slide-enter--top-left": {
634
+ animationName: "Toastify__slideInLeft"
635
+ },
636
+ ".Toastify__slide-enter--bottom-right, .Toastify__slide-enter--top-right": {
637
+ animationName: "Toastify__slideInRight"
638
+ },
639
+ ".Toastify__slide-enter--top-center": {
640
+ animationName: "Toastify__slideInDown"
641
+ },
642
+ ".Toastify__slide-enter--bottom-center": {
643
+ animationName: "Toastify__slideInUp"
644
+ },
645
+ ".Toastify__slide-exit--bottom-left, .Toastify__slide-exit--top-left": {
646
+ animationName: "Toastify__slideOutLeft",
647
+ animationTimingFunction: "ease-in",
648
+ animationDuration: "0.3s"
649
+ },
650
+ ".Toastify__slide-exit--bottom-right, .Toastify__slide-exit--top-right": {
651
+ animationName: "Toastify__slideOutRight",
652
+ animationTimingFunction: "ease-in",
653
+ animationDuration: "0.3s"
654
+ },
655
+ ".Toastify__slide-exit--top-center": {
656
+ animationName: "Toastify__slideOutUp",
657
+ animationTimingFunction: "ease-in",
658
+ animationDuration: "0.3s"
659
+ },
660
+ ".Toastify__slide-exit--bottom-center": {
661
+ animationName: "Toastify__slideOutDown",
662
+ animationTimingFunction: "ease-in",
663
+ animationDuration: "0.3s"
664
+ },
665
+ "@keyframes Toastify__spin": {
666
+ "0%": {
667
+ transform: "rotate(0deg)"
668
+ },
669
+ "to": {
670
+ transform: "rotate(1turn)"
671
+ }
672
+ }
673
+ };
4
674
  export {
5
675
  DEFAULT_CLOSE_TIME as D,
6
676
  ICONS_PATH as I,
7
- TOAST_KEY_COMPONENT as T
677
+ TOAST_KEY_COMPONENT as T,
678
+ TOAST_NATIVE_STYLES as a
8
679
  };
@@ -6,7 +6,8 @@ const rhfcolorPickerStyles = {
6
6
  root: ({ theme }) => ({
7
7
  display: "flex",
8
8
  flexDirection: "column",
9
- gap: theme.vars.size.baseSpacings["sp0-5"]
9
+ gap: theme.vars.size.baseSpacings["sp0-5"],
10
+ width: "100%"
10
11
  })
11
12
  };
12
13
  export {
@@ -5,7 +5,8 @@ const rhfDateTimeStyles = {
5
5
  root: ({ theme }) => ({
6
6
  display: "flex",
7
7
  flexDirection: "column",
8
- gap: theme.vars.size.baseSpacings["sp0-5"]
8
+ gap: theme.vars.size.baseSpacings["sp0-5"],
9
+ width: "100%"
9
10
  })
10
11
  };
11
12
  export {
@@ -8,7 +8,8 @@ const rhfNumberInputStyles = {
8
8
  root: ({ theme }) => ({
9
9
  display: "flex",
10
10
  flexDirection: "column",
11
- gap: theme.vars.size.baseSpacings.sp1
11
+ gap: theme.vars.size.baseSpacings.sp1,
12
+ width: "100%"
12
13
  })
13
14
  };
14
15
  export {