xtreme-ui 0.0.93 → 0.0.95
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/components/base/ActionCard/actionCard.module.scss.js +6 -6
- package/dist/components/base/Avatar/Avatar.js +24 -23
- package/dist/components/base/Button/button.module.scss.js +23 -23
- package/dist/components/base/ColorPopper/ColorPopper.d.ts +10 -1
- package/dist/components/base/ColorPopper/ColorPopper.d.ts.map +1 -1
- package/dist/components/base/ColorPopper/ColorPopper.js +88 -67
- package/dist/components/base/ColorPopper/types.d.ts +5 -4
- package/dist/components/base/ColorPopper/types.d.ts.map +1 -1
- package/dist/components/base/Icon/Icon.js +1 -1
- package/dist/components/base/ProgressBar/progressbar.module.scss.js +1 -1
- package/dist/components/base/Select/Select.d.ts.map +1 -1
- package/dist/components/base/Select/Select.js +56 -47
- package/dist/components/base/Select/types.d.ts +9 -4
- package/dist/components/base/Select/types.d.ts.map +1 -1
- package/dist/components/base/Textfield/textfield.module.scss.js +14 -14
- package/dist/components/context/Theme/ThemeContext.d.ts.map +1 -1
- package/dist/components/context/Theme/ThemeContext.js +19 -14
- package/dist/components/context/Theme/types.d.ts +12 -17
- package/dist/components/context/Theme/types.d.ts.map +1 -1
- package/dist/components/context/Theme/types.js +4 -8
- package/dist/components/layout/Navigation/navigation.module.scss.js +9 -9
- package/dist/components/layout/Sider/sider.module.scss.js +6 -6
- package/dist/components/layout/ThemePicker/ThemePicker.d.ts.map +1 -1
- package/dist/components/layout/ThemePicker/ThemePicker.js +37 -38
- package/dist/components/layout/ThemePicker/themePicker.module.scss.js +28 -28
- package/dist/components/layout/ThemeSelect/ThemeSelect.d.ts +3 -0
- package/dist/components/layout/ThemeSelect/ThemeSelect.d.ts.map +1 -0
- package/dist/components/layout/ThemeSelect/types.d.ts +10 -0
- package/dist/components/layout/ThemeSelect/types.d.ts.map +1 -0
- package/dist/components/layout/ThemeSwitch/ThemeSwitch.d.ts.map +1 -1
- package/dist/components/layout/ThemeSwitch/ThemeSwitch.js +40 -40
- package/dist/index.js +97 -95
- package/dist/utils/constants/theme.d.ts +19 -0
- package/dist/utils/constants/theme.d.ts.map +1 -0
- package/dist/utils/constants/theme.js +29 -0
- package/dist/utils/function/common.d.ts +2 -0
- package/dist/utils/function/common.d.ts.map +1 -0
- package/dist/utils/function/common.js +4 -0
- package/dist/utils/helper/colorHelper.d.ts +5 -0
- package/dist/utils/helper/colorHelper.d.ts.map +1 -0
- package/dist/utils/helper/colorHelper.js +24 -0
- package/dist/utils/helper/themeController.d.ts +2 -1
- package/dist/utils/helper/themeController.d.ts.map +1 -1
- package/dist/utils/helper/themeController.js +32 -13
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/xtreme-ui.css +1 -1
- package/package.json +4 -1
- package/dist/components/base/ColorPopper/colorPopper.module.scss.js +0 -11
- package/dist/utils/constants/commons.d.ts +0 -18
- package/dist/utils/constants/commons.d.ts.map +0 -1
- package/dist/utils/constants/commons.js +0 -15
package/dist/index.js
CHANGED
|
@@ -1,102 +1,104 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import { STORAGE as t, THEME_SCHEME as p } from "./utils/constants/
|
|
3
|
-
import { FACE_ICONS as
|
|
4
|
-
import { getLocalState as
|
|
5
|
-
import { assignRef as
|
|
6
|
-
import { capitalizeFirstLetter as
|
|
7
|
-
import { doc as
|
|
8
|
-
import { createImage as
|
|
9
|
-
import { themeController as
|
|
10
|
-
import { XProvider as
|
|
11
|
-
import { useXData as
|
|
12
|
-
import { ActionCard as
|
|
13
|
-
import { EActionCardSize as
|
|
14
|
-
import { Avatar as
|
|
15
|
-
import { EAvatarSize as
|
|
16
|
-
import { Button as
|
|
17
|
-
import { EButtonTypes as
|
|
18
|
-
import { Icon as
|
|
19
|
-
import { EIconSize as
|
|
20
|
-
import { Lottie as
|
|
21
|
-
import { ELottieSize as
|
|
22
|
-
import { ProgressBar as
|
|
23
|
-
import { Spinner as
|
|
24
|
-
import { ESpinnerSize as
|
|
25
|
-
import { Textfield as
|
|
26
|
-
import { DatePicker as
|
|
2
|
+
import { STORAGE as t, THEME_SCHEME as m, ThemeColorsPreset as p, defaultColorPreset as f } from "./utils/constants/theme.js";
|
|
3
|
+
import { FACE_ICONS as x } from "./utils/constants/iconCollection.js";
|
|
4
|
+
import { getLocalState as s, setLocalState as n } from "./utils/function/localStorage.js";
|
|
5
|
+
import { assignRef as S, mergeRefs as g } from "./utils/function/mergeRefs.js";
|
|
6
|
+
import { capitalizeFirstLetter as P, safeStringFromCodePoint as d, unicodeToString as C } from "./utils/function/string.js";
|
|
7
|
+
import { doc as T, elementObserver as u, getCssProperty as I, getCssPropertyPx as y, getCssPropertyVh as h, getCssPropertyVw as z, isClient as A, localStore as F, setCssProperty as k, waitForElement as v, win as L } from "./utils/helper/domHelper.js";
|
|
8
|
+
import { createImage as D, getCroppedImg as R, getImageSize as B, getRadianAngle as M, readImageFile as O, readImageSrc as X } from "./utils/helper/imageHelper.js";
|
|
9
|
+
import { themeController as H } from "./utils/helper/themeController.js";
|
|
10
|
+
import { XProvider as V } from "./components/context/index.js";
|
|
11
|
+
import { useXData as G, useXTheme as j } from "./components/context/useContext.js";
|
|
12
|
+
import { ActionCard as J } from "./components/base/ActionCard/ActionCard.js";
|
|
13
|
+
import { EActionCardSize as Q } from "./components/base/ActionCard/types.js";
|
|
14
|
+
import { Avatar as W } from "./components/base/Avatar/Avatar.js";
|
|
15
|
+
import { EAvatarSize as Z } from "./components/base/Avatar/types.js";
|
|
16
|
+
import { Button as ee } from "./components/base/Button/Button.js";
|
|
17
|
+
import { EButtonTypes as oe } from "./components/base/Button/types.js";
|
|
18
|
+
import { Icon as me } from "./components/base/Icon/Icon.js";
|
|
19
|
+
import { EIconSize as fe } from "./components/base/Icon/types.js";
|
|
20
|
+
import { Lottie as xe } from "./components/base/Lottie/Lottie.js";
|
|
21
|
+
import { ELottieSize as se } from "./components/base/Lottie/types.js";
|
|
22
|
+
import { ProgressBar as ce } from "./components/base/ProgressBar/ProgressBar.js";
|
|
23
|
+
import { Spinner as ge } from "./components/base/Spinner/Spinner.js";
|
|
24
|
+
import { ESpinnerSize as Pe } from "./components/base/Spinner/types.js";
|
|
25
|
+
import { Textfield as Ce } from "./components/base/Textfield/Textfield.js";
|
|
26
|
+
import { DatePicker as Te } from "./components/base/DatePicker/DatePicker.js";
|
|
27
27
|
import { EDatePickerTypes as Ie } from "./components/base/DatePicker/types.js";
|
|
28
|
-
import { FilePicker as
|
|
29
|
-
import { FilePickerIcon as
|
|
30
|
-
import { Select as
|
|
31
|
-
import { ColorPopper as
|
|
32
|
-
import { Sider as
|
|
33
|
-
import { SiderModal as
|
|
34
|
-
import { Navigation as
|
|
35
|
-
import { ThemePicker as
|
|
36
|
-
import { ThemeSwitch as
|
|
37
|
-
import { ImageEditor as
|
|
38
|
-
import { useScreenType as
|
|
39
|
-
import { usePersistingState as
|
|
40
|
-
import { useDebouncedEffect as
|
|
28
|
+
import { FilePicker as he } from "./components/base/FilePicker/FilePicker.js";
|
|
29
|
+
import { FilePickerIcon as Ae } from "./components/base/FilePicker/types.js";
|
|
30
|
+
import { Select as ke } from "./components/base/Select/Select.js";
|
|
31
|
+
import { ColorPopper as Le } from "./components/base/ColorPopper/ColorPopper.js";
|
|
32
|
+
import { Sider as De } from "./components/layout/Sider/Sider.js";
|
|
33
|
+
import { SiderModal as Be } from "./components/layout/SiderModal/SiderModal.js";
|
|
34
|
+
import { Navigation as Oe } from "./components/layout/Navigation/Navigation.js";
|
|
35
|
+
import { ThemePicker as be } from "./components/layout/ThemePicker/ThemePicker.js";
|
|
36
|
+
import { ThemeSwitch as Ne } from "./components/layout/ThemeSwitch/ThemeSwitch.js";
|
|
37
|
+
import { ImageEditor as _e } from "./components/layout/ImageEditor/ImageEditor.js";
|
|
38
|
+
import { useScreenType as je } from "./components/hooks/useScreen.js";
|
|
39
|
+
import { usePersistingState as Je } from "./components/hooks/usePersistingState.js";
|
|
40
|
+
import { useDebouncedEffect as Qe } from "./components/hooks/useDebouncedEffect.js";
|
|
41
41
|
export {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
42
|
+
J as ActionCard,
|
|
43
|
+
W as Avatar,
|
|
44
|
+
ee as Button,
|
|
45
|
+
Le as ColorPopper,
|
|
46
|
+
Te as DatePicker,
|
|
47
|
+
Q as EActionCardSize,
|
|
48
|
+
Z as EAvatarSize,
|
|
49
|
+
oe as EButtonTypes,
|
|
50
50
|
Ie as EDatePickerTypes,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
fe as EIconSize,
|
|
52
|
+
se as ELottieSize,
|
|
53
|
+
Pe as ESpinnerSize,
|
|
54
|
+
x as FACE_ICONS,
|
|
55
|
+
he as FilePicker,
|
|
56
|
+
Ae as FilePickerIcon,
|
|
57
|
+
me as Icon,
|
|
58
|
+
_e as ImageEditor,
|
|
59
|
+
xe as Lottie,
|
|
60
|
+
Oe as Navigation,
|
|
61
|
+
ce as ProgressBar,
|
|
62
62
|
t as STORAGE,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
be as
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
63
|
+
ke as Select,
|
|
64
|
+
De as Sider,
|
|
65
|
+
Be as SiderModal,
|
|
66
|
+
ge as Spinner,
|
|
67
|
+
m as THEME_SCHEME,
|
|
68
|
+
Ce as Textfield,
|
|
69
|
+
p as ThemeColorsPreset,
|
|
70
|
+
be as ThemePicker,
|
|
71
|
+
Ne as ThemeSwitch,
|
|
72
|
+
V as XProvider,
|
|
73
|
+
S as assignRef,
|
|
74
|
+
P as capitalizeFirstLetter,
|
|
75
|
+
D as createImage,
|
|
76
|
+
f as defaultColorPreset,
|
|
77
|
+
T as doc,
|
|
78
|
+
u as elementObserver,
|
|
79
|
+
R as getCroppedImg,
|
|
78
80
|
I as getCssProperty,
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
81
|
+
y as getCssPropertyPx,
|
|
82
|
+
h as getCssPropertyVh,
|
|
83
|
+
z as getCssPropertyVw,
|
|
84
|
+
B as getImageSize,
|
|
85
|
+
s as getLocalState,
|
|
86
|
+
M as getRadianAngle,
|
|
87
|
+
A as isClient,
|
|
88
|
+
F as localStore,
|
|
89
|
+
g as mergeRefs,
|
|
90
|
+
O as readImageFile,
|
|
91
|
+
X as readImageSrc,
|
|
92
|
+
d as safeStringFromCodePoint,
|
|
93
|
+
k as setCssProperty,
|
|
94
|
+
n as setLocalState,
|
|
95
|
+
H as themeController,
|
|
96
|
+
C as unicodeToString,
|
|
97
|
+
Qe as useDebouncedEffect,
|
|
98
|
+
Je as usePersistingState,
|
|
99
|
+
je as useScreenType,
|
|
100
|
+
G as useXData,
|
|
101
|
+
j as useXTheme,
|
|
102
|
+
v as waitForElement,
|
|
103
|
+
L as win
|
|
102
104
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EThemeScheme, TThemeColor } from '../../components/context/Theme/types';
|
|
2
|
+
export declare const STORAGE: {
|
|
3
|
+
themeSchemeAttr: string;
|
|
4
|
+
themeScheme: string;
|
|
5
|
+
themeColor: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const THEME_SCHEME: readonly [{
|
|
8
|
+
readonly name: EThemeScheme.auto;
|
|
9
|
+
readonly icon: "e2ca";
|
|
10
|
+
}, {
|
|
11
|
+
readonly name: EThemeScheme.light;
|
|
12
|
+
readonly icon: "f763";
|
|
13
|
+
}, {
|
|
14
|
+
readonly name: EThemeScheme.dark;
|
|
15
|
+
readonly icon: "f754";
|
|
16
|
+
}];
|
|
17
|
+
export declare const ThemeColorsPreset: Record<string, TThemeColor>;
|
|
18
|
+
export declare const defaultColorPreset: TThemeColor;
|
|
19
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/utils/constants/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAE5E,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;;;;;EAIf,CAAC;AAEX,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAOzD,CAAC;AACF,eAAO,MAAM,kBAAkB,aAA2B,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EThemeScheme as e } from "../../components/context/Theme/types.js";
|
|
2
|
+
const t = {
|
|
3
|
+
themeSchemeAttr: "data-theme-scheme",
|
|
4
|
+
themeScheme: "xThemeScheme",
|
|
5
|
+
themeColor: "xThemeColor"
|
|
6
|
+
}, m = [
|
|
7
|
+
{ name: e.auto, icon: "e2ca" },
|
|
8
|
+
{ name: e.light, icon: "f763" },
|
|
9
|
+
{ name: e.dark, icon: "f754" }
|
|
10
|
+
], o = {
|
|
11
|
+
red: { h: 352, s: 100, l: 61 },
|
|
12
|
+
// hsl(352 100 61)
|
|
13
|
+
pink: { h: 342, s: 100, l: 67 },
|
|
14
|
+
// hsl(342 100 67)
|
|
15
|
+
orange: { h: 2, s: 100, l: 70 },
|
|
16
|
+
// hsl(2 100 70)
|
|
17
|
+
blue: { h: 207, s: 90, l: 54 },
|
|
18
|
+
// hsl(207 90 54)
|
|
19
|
+
green: { h: 147, s: 20, l: 58 },
|
|
20
|
+
// hsl(147 20 58)
|
|
21
|
+
violet: { h: 256, s: 100, l: 66 }
|
|
22
|
+
// hsl(256 100 66)
|
|
23
|
+
}, r = o.orange;
|
|
24
|
+
export {
|
|
25
|
+
t as STORAGE,
|
|
26
|
+
m as THEME_SCHEME,
|
|
27
|
+
o as ThemeColorsPreset,
|
|
28
|
+
r as defaultColorPreset
|
|
29
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/utils/function/common.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,GAAI,GAAG,OAAO,EAAE,GAAG,OAAO,KAAG,OAKhD,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { TThemeColor } from '../../components/context/Theme/types';
|
|
2
|
+
export declare const guessClosestColorName: (color: TThemeColor) => any;
|
|
3
|
+
export declare function getColorLabel(c?: TThemeColor): string | undefined;
|
|
4
|
+
export declare const isValidThemeColor: (c?: TThemeColor) => boolean;
|
|
5
|
+
//# sourceMappingURL=colorHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colorHelper.d.ts","sourceRoot":"","sources":["../../../src/utils/helper/colorHelper.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,eAAO,MAAM,qBAAqB,GAAI,OAAO,WAAW,QAUvD,CAAC;AAEF,wBAAgB,aAAa,CAAE,CAAC,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAMlE;AAED,eAAO,MAAM,iBAAiB,GAAI,IAAI,WAAW,KAAG,OACiC,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import s from "color-namer";
|
|
2
|
+
import { colord as l } from "colord";
|
|
3
|
+
import { ThemeColorsPreset as m } from "../constants/theme.js";
|
|
4
|
+
const f = (e) => {
|
|
5
|
+
const t = l(e).toHex(), r = s(t);
|
|
6
|
+
let o = null;
|
|
7
|
+
for (const n of r.ntc)
|
|
8
|
+
(!o || n.distance < o.distance) && (o = n);
|
|
9
|
+
return (o == null ? void 0 : o.name) || void 0;
|
|
10
|
+
};
|
|
11
|
+
function p(e) {
|
|
12
|
+
if (e) {
|
|
13
|
+
for (const [t, r] of Object.entries(m))
|
|
14
|
+
if (e.h === r.h && e.s === r.s && e.l === r.l)
|
|
15
|
+
return t;
|
|
16
|
+
return f(e);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
const b = (e) => !!e && typeof e.h == "number" && typeof e.s == "number" && typeof e.l == "number";
|
|
20
|
+
export {
|
|
21
|
+
p as getColorLabel,
|
|
22
|
+
f as guessClosestColorName,
|
|
23
|
+
b as isValidThemeColor
|
|
24
|
+
};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
import { TThemeColor } from '../../components/context/Theme/types';
|
|
2
|
+
export declare const themeController: (preferredScheme: string | undefined | null, preferredColor: TThemeColor | undefined | null, defaultScheme?: string, defaultColorPreset?: TThemeColor) => string;
|
|
2
3
|
//# sourceMappingURL=themeController.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"themeController.d.ts","sourceRoot":"","sources":["../../../src/utils/helper/themeController.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"themeController.d.ts","sourceRoot":"","sources":["../../../src/utils/helper/themeController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG/F,eAAO,MAAM,eAAe,GAC3B,iBAAiB,MAAM,GAAG,SAAS,GAAG,IAAI,EAC1C,gBAAgB,WAAW,GAAG,SAAS,GAAG,IAAI,EAC9C,gBAAe,MAAuB,EACtC,qBAAoB,WAAiC,WAiCrD,CAAC"}
|
|
@@ -1,16 +1,35 @@
|
|
|
1
|
-
import { defaultScheme as
|
|
2
|
-
import { STORAGE as e } from "../constants/
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { defaultScheme as c } from "../../components/context/Theme/types.js";
|
|
2
|
+
import { defaultColorPreset as d, STORAGE as e } from "../constants/theme.js";
|
|
3
|
+
const S = (r, t, o = c, m = d) => {
|
|
4
|
+
const s = JSON.stringify(r), l = t ? JSON.stringify(t) : "null", n = JSON.stringify(m);
|
|
5
|
+
return `(function() {
|
|
6
|
+
try {
|
|
7
|
+
const storedScheme = localStorage.getItem('${e.themeScheme}');
|
|
8
|
+
const themeScheme = ${s} ?? storedScheme ?? '${o}';
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
const themeColorRaw = localStorage.getItem('${e.themeColor}');
|
|
11
|
+
let {h, s, l} = ${n};
|
|
12
|
+
|
|
13
|
+
const preferredColor = ${l};
|
|
14
|
+
|
|
15
|
+
if (preferredColor) {
|
|
16
|
+
({h, s, l} = preferredColor);
|
|
17
|
+
} else {
|
|
18
|
+
try {
|
|
19
|
+
const parsed = JSON.parse(themeColorRaw);
|
|
20
|
+
if (parsed && typeof parsed.h === 'number' && typeof parsed.s === 'number' && typeof parsed.l === 'number') {
|
|
21
|
+
({h, s, l} = parsed);
|
|
22
|
+
}
|
|
23
|
+
} catch {}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
document.documentElement.setAttribute('${e.themeSchemeAttr}', themeScheme);
|
|
27
|
+
document.documentElement.style.setProperty('--H', h.toString());
|
|
28
|
+
document.documentElement.style.setProperty('--S', s + '%');
|
|
29
|
+
document.documentElement.style.setProperty('--L', l + '%');
|
|
30
|
+
} catch {}
|
|
31
|
+
})();`;
|
|
32
|
+
};
|
|
14
33
|
export {
|
|
15
|
-
|
|
34
|
+
S as themeController
|
|
16
35
|
};
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC"}
|