@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.
- package/dist/{chunk-VATTN5CP.js → chunk-6AOD6RDY.js} +1 -1
- package/dist/{chunk-2KKOITAB.js → chunk-7XPVH2FH.js} +3 -3
- package/dist/{chunk-5G5ZYPIR.js → chunk-BGP32EV2.js} +3 -3
- package/dist/chunk-GQF6XCE2.js +8 -0
- package/dist/chunk-N23NY6P2.js +15 -0
- package/dist/chunk-PYIK2DE5.js +6 -0
- package/dist/{chunk-D27ND54J.js → chunk-SNZT4HH2.js} +3 -3
- package/dist/{chunk-ISYQXE75.js → chunk-VX5PCLBR.js} +2 -2
- package/dist/chunk-XRCLODBQ.js +43 -0
- package/dist/chunk-XRSTULW3.js +15 -0
- package/dist/chunk-YADTHERX.js +8 -0
- package/dist/{chunk-UA7OPAW7.js → chunk-YBXBZBVR.js} +1 -1
- package/dist/{chunk-VJFHPD6R.js → chunk-ZSQOZI55.js} +4 -4
- package/dist/components/Avatar/index.d.ts +2 -2
- package/dist/components/Common/index.js +11 -10
- package/dist/components/DataCards/index.js +2 -2
- package/dist/components/DataGrid/index.js +3 -3
- package/dist/components/DataView/index.d.ts +8 -8
- package/dist/components/DataView/index.js +3 -3
- package/dist/components/DragButton/index.d.ts +1 -1
- package/dist/components/DragContainer/index.d.ts +1 -1
- package/dist/components/EmptyContent/index.js +2 -2
- package/dist/components/Label/index.js +2 -2
- package/dist/components/ListBundles/index.js +2 -2
- package/dist/components/SplashScreen/index.js +2 -2
- package/dist/components/WebhookCard/index.js +2 -2
- package/dist/components/carousel/index.d.ts +3 -3
- package/dist/components/carousel/index.js +2 -2
- package/dist/components/form/UploadAvatarWithCrop/index.js +3 -3
- package/dist/components/form/UploadWithCrop/index.js +3 -3
- package/dist/components/upload/index.js +5 -5
- package/dist/hooks/useDatagrid.d.ts +1 -1
- package/dist/hooks/useIsomorphicLayoutEffect.d.ts +2 -2
- package/dist/hooks/useResponsive.d.ts +1 -1
- package/dist/index-e650f573.d.ts +1113 -0
- package/dist/index.d.ts +26 -2
- package/dist/index.js +17 -2
- package/dist/locales/all-langs.d.ts +1 -1
- package/dist/theme/core/index.d.ts +15 -1126
- package/dist/theme/core/index.js +3 -3
- package/dist/theme/settings-provider.d.ts +3 -4
- package/dist/theme/settings-provider.js +2 -1
- package/dist/theme/styles/index.d.ts +293 -268
- package/dist/theme/styles/index.js +1 -1
- package/dist/theme/theme-provider.d.ts +4 -17
- package/dist/theme/theme-provider.js +7 -6
- package/dist/theme/with-settings/index.d.ts +1 -1
- package/dist/theme/with-settings/index.js +3 -3
- package/dist/theme-provider-3b94bc04.d.ts +13 -0
- package/dist/{types-dd2ed906.d.ts → types-2a4efc17.d.ts} +5 -1
- package/package.json +1 -1
- package/dist/chunk-3TSHJRP7.js +0 -8
- package/dist/chunk-42S2A5ST.js +0 -7
- package/dist/chunk-HJVMPO5T.js +0 -15
- package/dist/chunk-JZEKOBXV.js +0 -43
- package/dist/chunk-P2OSCCFI.js +0 -6
- package/dist/chunk-R64N6MSL.js +0 -15
- package/dist/shadows-3015ebf3.d.ts +0 -20
package/dist/theme/core/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { b as defaultFont, c as primaryFont, d as secondaryFont, a as shadows, e as typography } from '../../chunk-
|
|
2
|
-
export {
|
|
3
|
-
import '../../chunk-
|
|
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
|
-
|
|
22
|
-
defaultSettings: SettingsState;
|
|
21
|
+
interface SettingsProviderProps extends PropsWithChildren<SettingsState> {
|
|
23
22
|
storageKey?: string;
|
|
24
|
-
}
|
|
25
|
-
declare const SettingsProvider: ({ children,
|
|
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-
|
|
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';
|