@zydon/common 2.5.90 → 2.5.92

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 (58) hide show
  1. package/dist/{chunk-VATTN5CP.js → chunk-6AOD6RDY.js} +1 -1
  2. package/dist/{chunk-2KKOITAB.js → chunk-7XPVH2FH.js} +3 -3
  3. package/dist/{chunk-5G5ZYPIR.js → chunk-BGP32EV2.js} +3 -3
  4. package/dist/chunk-GQF6XCE2.js +8 -0
  5. package/dist/chunk-N23NY6P2.js +15 -0
  6. package/dist/chunk-PYIK2DE5.js +6 -0
  7. package/dist/{chunk-D27ND54J.js → chunk-SNZT4HH2.js} +3 -3
  8. package/dist/{chunk-ISYQXE75.js → chunk-VX5PCLBR.js} +2 -2
  9. package/dist/chunk-XRCLODBQ.js +43 -0
  10. package/dist/chunk-XRSTULW3.js +15 -0
  11. package/dist/chunk-YADTHERX.js +8 -0
  12. package/dist/{chunk-UA7OPAW7.js → chunk-YBXBZBVR.js} +1 -1
  13. package/dist/{chunk-VJFHPD6R.js → chunk-ZSQOZI55.js} +4 -4
  14. package/dist/components/Avatar/index.d.ts +2 -2
  15. package/dist/components/Common/index.js +11 -10
  16. package/dist/components/DataCards/index.js +2 -2
  17. package/dist/components/DataGrid/index.js +3 -3
  18. package/dist/components/DataView/index.d.ts +8 -8
  19. package/dist/components/DataView/index.js +3 -3
  20. package/dist/components/DragButton/index.d.ts +1 -1
  21. package/dist/components/DragContainer/index.d.ts +1 -1
  22. package/dist/components/EmptyContent/index.js +2 -2
  23. package/dist/components/Label/index.js +2 -2
  24. package/dist/components/ListBundles/index.js +2 -2
  25. package/dist/components/SplashScreen/index.js +2 -2
  26. package/dist/components/WebhookCard/index.js +2 -2
  27. package/dist/components/carousel/index.d.ts +3 -3
  28. package/dist/components/carousel/index.js +2 -2
  29. package/dist/components/form/UploadAvatarWithCrop/index.js +3 -3
  30. package/dist/components/form/UploadWithCrop/index.js +3 -3
  31. package/dist/components/upload/index.js +5 -5
  32. package/dist/hooks/useDatagrid.d.ts +1 -1
  33. package/dist/hooks/useIsomorphicLayoutEffect.d.ts +2 -2
  34. package/dist/hooks/useResponsive.d.ts +1 -1
  35. package/dist/index-e650f573.d.ts +1113 -0
  36. package/dist/index.d.ts +26 -2
  37. package/dist/index.js +17 -2
  38. package/dist/locales/all-langs.d.ts +1 -1
  39. package/dist/theme/core/index.d.ts +15 -1126
  40. package/dist/theme/core/index.js +3 -3
  41. package/dist/theme/settings-provider.d.ts +3 -4
  42. package/dist/theme/settings-provider.js +2 -1
  43. package/dist/theme/styles/index.d.ts +293 -268
  44. package/dist/theme/styles/index.js +1 -1
  45. package/dist/theme/theme-provider.d.ts +4 -17
  46. package/dist/theme/theme-provider.js +7 -6
  47. package/dist/theme/with-settings/index.d.ts +1 -1
  48. package/dist/theme/with-settings/index.js +3 -3
  49. package/dist/theme-provider-3b94bc04.d.ts +13 -0
  50. package/dist/{types-dd2ed906.d.ts → types-2a4efc17.d.ts} +5 -1
  51. package/package.json +1 -1
  52. package/dist/chunk-3TSHJRP7.js +0 -8
  53. package/dist/chunk-42S2A5ST.js +0 -7
  54. package/dist/chunk-HJVMPO5T.js +0 -15
  55. package/dist/chunk-JZEKOBXV.js +0 -43
  56. package/dist/chunk-P2OSCCFI.js +0 -6
  57. package/dist/chunk-R64N6MSL.js +0 -15
  58. package/dist/shadows-3015ebf3.d.ts +0 -20
@@ -1,3 +1,3 @@
1
- export { b as defaultFont, c as primaryFont, d as secondaryFont, a as shadows, e as typography } from '../../chunk-P2OSCCFI.js';
2
- export { m as action, k as background, l as baseAction, n as basePalette, q as colorSchemes, i as common, a as components, r as createShadowColor, s as customShadows, p as darkPalette, h as error, b as grey, e as info, o as lightPalette, c as primary, d as secondary, f as success, j as text, g as warning } from '../../chunk-JZEKOBXV.js';
3
- import '../../chunk-D27ND54J.js';
1
+ export { b as defaultFont, c as primaryFont, d as secondaryFont, a as shadows, e as typography } from '../../chunk-PYIK2DE5.js';
2
+ export { l as action, k as background, m as basePalette, p as colorSchemes, i as common, a as components, q as createShadowColor, r as customShadows, o as darkPalette, h as error, b as grey, e as info, n as lightPalette, c as primary, d as secondary, f as success, j as text, g as warning } from '../../chunk-XRCLODBQ.js';
3
+ import '../../chunk-SNZT4HH2.js';
@@ -18,10 +18,9 @@ type SettingsContextValue = {
18
18
  };
19
19
  declare const SettingsContext: react.Context<SettingsContextValue | undefined>;
20
20
  declare const useSettingsContext: () => SettingsContextValue;
21
- type SettingsProviderProps = PropsWithChildren<{
22
- defaultSettings: SettingsState;
21
+ interface SettingsProviderProps extends PropsWithChildren<SettingsState> {
23
22
  storageKey?: string;
24
- }>;
25
- declare const SettingsProvider: ({ children, defaultSettings, storageKey, }: SettingsProviderProps) => react_jsx_runtime.JSX.Element;
23
+ }
24
+ declare const SettingsProvider: ({ children, storageKey, ...props }: SettingsProviderProps) => react_jsx_runtime.JSX.Element;
26
25
 
27
26
  export { SettingsContext, SettingsContextValue, SettingsProvider, useSettingsContext };
@@ -1,5 +1,6 @@
1
- export { a as SettingsContext, c as SettingsProvider, b as useSettingsContext } from '../chunk-42S2A5ST.js';
1
+ export { a as SettingsContext, c as SettingsProvider, b as useSettingsContext } from '../chunk-YADTHERX.js';
2
2
  import '../chunk-QQDMA4TE.js';
3
3
  import '../chunk-Z2TDWMRU.js';
4
4
  import '../chunk-4INDXVIX.js';
5
5
  import '../chunk-3APKMSVD.js';
6
+ import '../chunk-S7QQBC4I.js';