@mui/system 5.10.9 → 5.10.10
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/Box/Box.spec.d.ts +1 -1
- package/CHANGELOG.md +91 -19
- package/Container/Container.d.ts +13 -13
- package/Container/ContainerProps.d.ts +40 -40
- package/Container/containerClasses.d.ts +22 -22
- package/Container/createContainer.d.ts +18 -18
- package/Stack/Stack.d.ts +13 -13
- package/Stack/StackProps.d.ts +42 -42
- package/Stack/createStack.d.ts +21 -21
- package/Stack/index.d.ts +5 -5
- package/Stack/stackClasses.d.ts +8 -8
- package/Unstable_Grid/Grid.d.ts +12 -12
- package/Unstable_Grid/GridProps.d.ts +162 -162
- package/Unstable_Grid/createGrid.d.ts +11 -11
- package/Unstable_Grid/gridClasses.d.ts +20 -20
- package/Unstable_Grid/gridGenerator.d.ts +28 -28
- package/Unstable_Grid/index.d.ts +5 -5
- package/createBox.spec.d.ts +1 -1
- package/createTheme/createSpacing.d.ts +10 -10
- package/cssVars/createCssVarsProvider.spec.d.ts +1 -1
- package/cssVars/createGetCssVar.d.ts +5 -5
- package/cssVars/cssVarsParser.d.ts +65 -65
- package/cssVars/cssVarsParser.js +1 -1
- package/cssVars/getInitColorSchemeScript.d.ts +42 -42
- package/cssVars/index.d.ts +3 -3
- package/cssVars/useCurrentColorScheme.d.ts +53 -53
- package/esm/cssVars/cssVarsParser.js +1 -1
- package/esm/palette.js +15 -3
- package/esm/style.js +1 -1
- package/index.js +1 -1
- package/index.spec.d.ts +1 -1
- package/legacy/cssVars/cssVarsParser.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/palette.js +15 -3
- package/legacy/style.js +1 -1
- package/modern/cssVars/cssVarsParser.js +1 -1
- package/modern/index.js +1 -1
- package/modern/palette.js +15 -3
- package/modern/style.js +1 -1
- package/package.json +1 -1
- package/palette.js +14 -3
- package/style.d.ts +4 -1
- package/style.js +1 -1
- package/styleFunctionSx/styleFunctionSx.spec.d.ts +1 -1
package/cssVars/cssVarsParser.js
CHANGED
|
@@ -131,7 +131,7 @@ function cssVarsParser(theme, options) {
|
|
|
131
131
|
const parsedTheme = {};
|
|
132
132
|
walkObjectDeep(theme, (keys, value, arrayKeys) => {
|
|
133
133
|
if (typeof value === 'string' || typeof value === 'number') {
|
|
134
|
-
if (!shouldSkipGeneratingVar ||
|
|
134
|
+
if (!shouldSkipGeneratingVar || !shouldSkipGeneratingVar(keys, value)) {
|
|
135
135
|
// only create css & var if `shouldSkipGeneratingVar` return false
|
|
136
136
|
const cssVar = `--${prefix ? `${prefix}-` : ''}${keys.join('-')}`;
|
|
137
137
|
Object.assign(css, {
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const DEFAULT_MODE_STORAGE_KEY = "mode";
|
|
3
|
-
export declare const DEFAULT_COLOR_SCHEME_STORAGE_KEY = "color-scheme";
|
|
4
|
-
export declare const DEFAULT_ATTRIBUTE = "data-color-scheme";
|
|
5
|
-
export interface GetInitColorSchemeScriptOptions {
|
|
6
|
-
/**
|
|
7
|
-
* The mode to be used for the first visit
|
|
8
|
-
* @default 'light'
|
|
9
|
-
*/
|
|
10
|
-
defaultMode?: 'light' | 'dark' | 'system';
|
|
11
|
-
/**
|
|
12
|
-
* The default color scheme to be used on the light mode
|
|
13
|
-
* @default 'light'
|
|
14
|
-
*/
|
|
15
|
-
defaultLightColorScheme?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The default color scheme to be used on the dark mode
|
|
18
|
-
* * @default 'dark'
|
|
19
|
-
*/
|
|
20
|
-
defaultDarkColorScheme?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The node (provided as string) used to attach the color-scheme attribute
|
|
23
|
-
* @default 'document.documentElement'
|
|
24
|
-
*/
|
|
25
|
-
colorSchemeNode?: string;
|
|
26
|
-
/**
|
|
27
|
-
* localStorage key used to store `mode`
|
|
28
|
-
* @default 'mode'
|
|
29
|
-
*/
|
|
30
|
-
modeStorageKey?: string;
|
|
31
|
-
/**
|
|
32
|
-
* localStorage key used to store `colorScheme`
|
|
33
|
-
* @default 'color-scheme'
|
|
34
|
-
*/
|
|
35
|
-
colorSchemeStorageKey?: string;
|
|
36
|
-
/**
|
|
37
|
-
* DOM attribute for applying color scheme
|
|
38
|
-
* @default 'data-color-scheme'
|
|
39
|
-
*/
|
|
40
|
-
attribute?: string;
|
|
41
|
-
}
|
|
42
|
-
export default function getInitColorSchemeScript(options?: GetInitColorSchemeScriptOptions): JSX.Element;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const DEFAULT_MODE_STORAGE_KEY = "mode";
|
|
3
|
+
export declare const DEFAULT_COLOR_SCHEME_STORAGE_KEY = "color-scheme";
|
|
4
|
+
export declare const DEFAULT_ATTRIBUTE = "data-color-scheme";
|
|
5
|
+
export interface GetInitColorSchemeScriptOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The mode to be used for the first visit
|
|
8
|
+
* @default 'light'
|
|
9
|
+
*/
|
|
10
|
+
defaultMode?: 'light' | 'dark' | 'system';
|
|
11
|
+
/**
|
|
12
|
+
* The default color scheme to be used on the light mode
|
|
13
|
+
* @default 'light'
|
|
14
|
+
*/
|
|
15
|
+
defaultLightColorScheme?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The default color scheme to be used on the dark mode
|
|
18
|
+
* * @default 'dark'
|
|
19
|
+
*/
|
|
20
|
+
defaultDarkColorScheme?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The node (provided as string) used to attach the color-scheme attribute
|
|
23
|
+
* @default 'document.documentElement'
|
|
24
|
+
*/
|
|
25
|
+
colorSchemeNode?: string;
|
|
26
|
+
/**
|
|
27
|
+
* localStorage key used to store `mode`
|
|
28
|
+
* @default 'mode'
|
|
29
|
+
*/
|
|
30
|
+
modeStorageKey?: string;
|
|
31
|
+
/**
|
|
32
|
+
* localStorage key used to store `colorScheme`
|
|
33
|
+
* @default 'color-scheme'
|
|
34
|
+
*/
|
|
35
|
+
colorSchemeStorageKey?: string;
|
|
36
|
+
/**
|
|
37
|
+
* DOM attribute for applying color scheme
|
|
38
|
+
* @default 'data-color-scheme'
|
|
39
|
+
*/
|
|
40
|
+
attribute?: string;
|
|
41
|
+
}
|
|
42
|
+
export default function getInitColorSchemeScript(options?: GetInitColorSchemeScriptOptions): JSX.Element;
|
package/cssVars/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default } from './createCssVarsProvider';
|
|
2
|
-
export type { CreateCssVarsProviderResult, CssVarsProviderConfig, ColorSchemeContextValue, } from './createCssVarsProvider';
|
|
3
|
-
export { default as getInitColorSchemeScript } from './getInitColorSchemeScript';
|
|
1
|
+
export { default } from './createCssVarsProvider';
|
|
2
|
+
export type { CreateCssVarsProviderResult, CssVarsProviderConfig, ColorSchemeContextValue, } from './createCssVarsProvider';
|
|
3
|
+
export { default as getInitColorSchemeScript } from './getInitColorSchemeScript';
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
export declare type Mode = 'light' | 'dark' | 'system';
|
|
2
|
-
export declare type SystemMode = Exclude<Mode, 'system'>;
|
|
3
|
-
export interface State<SupportedColorScheme extends string> {
|
|
4
|
-
/**
|
|
5
|
-
* User selected mode.
|
|
6
|
-
* Note: on the server, mode is always undefined
|
|
7
|
-
*/
|
|
8
|
-
mode: Mode | undefined;
|
|
9
|
-
/**
|
|
10
|
-
* Only valid if `mode: 'system'`, either 'light' | 'dark'.
|
|
11
|
-
*/
|
|
12
|
-
systemMode: SystemMode | undefined;
|
|
13
|
-
/**
|
|
14
|
-
* The color scheme for the light mode.
|
|
15
|
-
*/
|
|
16
|
-
lightColorScheme: SupportedColorScheme;
|
|
17
|
-
/**
|
|
18
|
-
* The color scheme for the dark mode.
|
|
19
|
-
*/
|
|
20
|
-
darkColorScheme: SupportedColorScheme;
|
|
21
|
-
}
|
|
22
|
-
export declare type Result<SupportedColorScheme extends string> = State<SupportedColorScheme> & {
|
|
23
|
-
/**
|
|
24
|
-
* The current application color scheme. It is always `undefined` on the server.
|
|
25
|
-
*/
|
|
26
|
-
colorScheme: SupportedColorScheme | undefined;
|
|
27
|
-
/**
|
|
28
|
-
* `mode` is saved to internal state and localStorage
|
|
29
|
-
* If `mode` is null, it will be reset to the defaultMode
|
|
30
|
-
*/
|
|
31
|
-
setMode: (mode: Mode | null) => void;
|
|
32
|
-
/**
|
|
33
|
-
* `colorScheme` is saved to internal state and localStorage
|
|
34
|
-
* If `colorScheme` is null, it will be reset to the defaultColorScheme (light | dark)
|
|
35
|
-
*/
|
|
36
|
-
setColorScheme: (colorScheme: SupportedColorScheme | Partial<{
|
|
37
|
-
light: SupportedColorScheme | null;
|
|
38
|
-
dark: SupportedColorScheme | null;
|
|
39
|
-
}> | null) => void;
|
|
40
|
-
};
|
|
41
|
-
export declare function getSystemMode(mode: undefined | string): SystemMode | undefined;
|
|
42
|
-
export declare function getColorScheme<SupportedColorScheme extends string>(state: State<SupportedColorScheme>): SupportedColorScheme | undefined;
|
|
43
|
-
interface UseCurrentColoSchemeOptions<SupportedColorScheme extends string> {
|
|
44
|
-
defaultLightColorScheme: SupportedColorScheme;
|
|
45
|
-
defaultDarkColorScheme: SupportedColorScheme;
|
|
46
|
-
supportedColorSchemes: Array<SupportedColorScheme>;
|
|
47
|
-
defaultMode?: Mode;
|
|
48
|
-
modeStorageKey?: string;
|
|
49
|
-
colorSchemeStorageKey?: string;
|
|
50
|
-
storageWindow?: Window | null;
|
|
51
|
-
}
|
|
52
|
-
export default function useCurrentColorScheme<SupportedColorScheme extends string>(options: UseCurrentColoSchemeOptions<SupportedColorScheme>): Result<SupportedColorScheme>;
|
|
53
|
-
export {};
|
|
1
|
+
export declare type Mode = 'light' | 'dark' | 'system';
|
|
2
|
+
export declare type SystemMode = Exclude<Mode, 'system'>;
|
|
3
|
+
export interface State<SupportedColorScheme extends string> {
|
|
4
|
+
/**
|
|
5
|
+
* User selected mode.
|
|
6
|
+
* Note: on the server, mode is always undefined
|
|
7
|
+
*/
|
|
8
|
+
mode: Mode | undefined;
|
|
9
|
+
/**
|
|
10
|
+
* Only valid if `mode: 'system'`, either 'light' | 'dark'.
|
|
11
|
+
*/
|
|
12
|
+
systemMode: SystemMode | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* The color scheme for the light mode.
|
|
15
|
+
*/
|
|
16
|
+
lightColorScheme: SupportedColorScheme;
|
|
17
|
+
/**
|
|
18
|
+
* The color scheme for the dark mode.
|
|
19
|
+
*/
|
|
20
|
+
darkColorScheme: SupportedColorScheme;
|
|
21
|
+
}
|
|
22
|
+
export declare type Result<SupportedColorScheme extends string> = State<SupportedColorScheme> & {
|
|
23
|
+
/**
|
|
24
|
+
* The current application color scheme. It is always `undefined` on the server.
|
|
25
|
+
*/
|
|
26
|
+
colorScheme: SupportedColorScheme | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* `mode` is saved to internal state and localStorage
|
|
29
|
+
* If `mode` is null, it will be reset to the defaultMode
|
|
30
|
+
*/
|
|
31
|
+
setMode: (mode: Mode | null) => void;
|
|
32
|
+
/**
|
|
33
|
+
* `colorScheme` is saved to internal state and localStorage
|
|
34
|
+
* If `colorScheme` is null, it will be reset to the defaultColorScheme (light | dark)
|
|
35
|
+
*/
|
|
36
|
+
setColorScheme: (colorScheme: SupportedColorScheme | Partial<{
|
|
37
|
+
light: SupportedColorScheme | null;
|
|
38
|
+
dark: SupportedColorScheme | null;
|
|
39
|
+
}> | null) => void;
|
|
40
|
+
};
|
|
41
|
+
export declare function getSystemMode(mode: undefined | string): SystemMode | undefined;
|
|
42
|
+
export declare function getColorScheme<SupportedColorScheme extends string>(state: State<SupportedColorScheme>): SupportedColorScheme | undefined;
|
|
43
|
+
interface UseCurrentColoSchemeOptions<SupportedColorScheme extends string> {
|
|
44
|
+
defaultLightColorScheme: SupportedColorScheme;
|
|
45
|
+
defaultDarkColorScheme: SupportedColorScheme;
|
|
46
|
+
supportedColorSchemes: Array<SupportedColorScheme>;
|
|
47
|
+
defaultMode?: Mode;
|
|
48
|
+
modeStorageKey?: string;
|
|
49
|
+
colorSchemeStorageKey?: string;
|
|
50
|
+
storageWindow?: Window | null;
|
|
51
|
+
}
|
|
52
|
+
export default function useCurrentColorScheme<SupportedColorScheme extends string>(options: UseCurrentColoSchemeOptions<SupportedColorScheme>): Result<SupportedColorScheme>;
|
|
53
|
+
export {};
|
|
@@ -117,7 +117,7 @@ export default function cssVarsParser(theme, options) {
|
|
|
117
117
|
const parsedTheme = {};
|
|
118
118
|
walkObjectDeep(theme, (keys, value, arrayKeys) => {
|
|
119
119
|
if (typeof value === 'string' || typeof value === 'number') {
|
|
120
|
-
if (!shouldSkipGeneratingVar ||
|
|
120
|
+
if (!shouldSkipGeneratingVar || !shouldSkipGeneratingVar(keys, value)) {
|
|
121
121
|
// only create css & var if `shouldSkipGeneratingVar` return false
|
|
122
122
|
const cssVar = `--${prefix ? `${prefix}-` : ''}${keys.join('-')}`;
|
|
123
123
|
Object.assign(css, {
|
package/esm/palette.js
CHANGED
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
import style from './style';
|
|
2
2
|
import compose from './compose';
|
|
3
|
+
|
|
4
|
+
function transform(value, userValue) {
|
|
5
|
+
if (userValue === 'grey') {
|
|
6
|
+
return userValue;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
return value;
|
|
10
|
+
}
|
|
11
|
+
|
|
3
12
|
export const color = style({
|
|
4
13
|
prop: 'color',
|
|
5
|
-
themeKey: 'palette'
|
|
14
|
+
themeKey: 'palette',
|
|
15
|
+
transform
|
|
6
16
|
});
|
|
7
17
|
export const bgcolor = style({
|
|
8
18
|
prop: 'bgcolor',
|
|
9
19
|
cssProperty: 'backgroundColor',
|
|
10
|
-
themeKey: 'palette'
|
|
20
|
+
themeKey: 'palette',
|
|
21
|
+
transform
|
|
11
22
|
});
|
|
12
23
|
export const backgroundColor = style({
|
|
13
24
|
prop: 'backgroundColor',
|
|
14
|
-
themeKey: 'palette'
|
|
25
|
+
themeKey: 'palette',
|
|
26
|
+
transform
|
|
15
27
|
});
|
|
16
28
|
const palette = compose(color, bgcolor, backgroundColor);
|
|
17
29
|
export default palette;
|
package/esm/style.js
CHANGED
package/index.js
CHANGED
package/index.spec.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -132,7 +132,7 @@ export default function cssVarsParser(theme, options) {
|
|
|
132
132
|
var parsedTheme = {};
|
|
133
133
|
walkObjectDeep(theme, function (keys, value, arrayKeys) {
|
|
134
134
|
if (typeof value === 'string' || typeof value === 'number') {
|
|
135
|
-
if (!shouldSkipGeneratingVar ||
|
|
135
|
+
if (!shouldSkipGeneratingVar || !shouldSkipGeneratingVar(keys, value)) {
|
|
136
136
|
// only create css & var if `shouldSkipGeneratingVar` return false
|
|
137
137
|
var cssVar = "--".concat(prefix ? "".concat(prefix, "-") : '').concat(keys.join('-'));
|
|
138
138
|
|
package/legacy/index.js
CHANGED
package/legacy/palette.js
CHANGED
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
import style from './style';
|
|
2
2
|
import compose from './compose';
|
|
3
|
+
|
|
4
|
+
function transform(value, userValue) {
|
|
5
|
+
if (userValue === 'grey') {
|
|
6
|
+
return userValue;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
return value;
|
|
10
|
+
}
|
|
11
|
+
|
|
3
12
|
export var color = style({
|
|
4
13
|
prop: 'color',
|
|
5
|
-
themeKey: 'palette'
|
|
14
|
+
themeKey: 'palette',
|
|
15
|
+
transform: transform
|
|
6
16
|
});
|
|
7
17
|
export var bgcolor = style({
|
|
8
18
|
prop: 'bgcolor',
|
|
9
19
|
cssProperty: 'backgroundColor',
|
|
10
|
-
themeKey: 'palette'
|
|
20
|
+
themeKey: 'palette',
|
|
21
|
+
transform: transform
|
|
11
22
|
});
|
|
12
23
|
export var backgroundColor = style({
|
|
13
24
|
prop: 'backgroundColor',
|
|
14
|
-
themeKey: 'palette'
|
|
25
|
+
themeKey: 'palette',
|
|
26
|
+
transform: transform
|
|
15
27
|
});
|
|
16
28
|
var palette = compose(color, bgcolor, backgroundColor);
|
|
17
29
|
export default palette;
|
package/legacy/style.js
CHANGED
|
@@ -117,7 +117,7 @@ export default function cssVarsParser(theme, options) {
|
|
|
117
117
|
const parsedTheme = {};
|
|
118
118
|
walkObjectDeep(theme, (keys, value, arrayKeys) => {
|
|
119
119
|
if (typeof value === 'string' || typeof value === 'number') {
|
|
120
|
-
if (!shouldSkipGeneratingVar ||
|
|
120
|
+
if (!shouldSkipGeneratingVar || !shouldSkipGeneratingVar(keys, value)) {
|
|
121
121
|
// only create css & var if `shouldSkipGeneratingVar` return false
|
|
122
122
|
const cssVar = `--${prefix ? `${prefix}-` : ''}${keys.join('-')}`;
|
|
123
123
|
Object.assign(css, {
|
package/modern/index.js
CHANGED
package/modern/palette.js
CHANGED
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
import style from './style';
|
|
2
2
|
import compose from './compose';
|
|
3
|
+
|
|
4
|
+
function transform(value, userValue) {
|
|
5
|
+
if (userValue === 'grey') {
|
|
6
|
+
return userValue;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
return value;
|
|
10
|
+
}
|
|
11
|
+
|
|
3
12
|
export const color = style({
|
|
4
13
|
prop: 'color',
|
|
5
|
-
themeKey: 'palette'
|
|
14
|
+
themeKey: 'palette',
|
|
15
|
+
transform
|
|
6
16
|
});
|
|
7
17
|
export const bgcolor = style({
|
|
8
18
|
prop: 'bgcolor',
|
|
9
19
|
cssProperty: 'backgroundColor',
|
|
10
|
-
themeKey: 'palette'
|
|
20
|
+
themeKey: 'palette',
|
|
21
|
+
transform
|
|
11
22
|
});
|
|
12
23
|
export const backgroundColor = style({
|
|
13
24
|
prop: 'backgroundColor',
|
|
14
|
-
themeKey: 'palette'
|
|
25
|
+
themeKey: 'palette',
|
|
26
|
+
transform
|
|
15
27
|
});
|
|
16
28
|
const palette = compose(color, bgcolor, backgroundColor);
|
|
17
29
|
export default palette;
|
package/modern/style.js
CHANGED
package/package.json
CHANGED
package/palette.js
CHANGED
|
@@ -11,20 +11,31 @@ var _style = _interopRequireDefault(require("./style"));
|
|
|
11
11
|
|
|
12
12
|
var _compose = _interopRequireDefault(require("./compose"));
|
|
13
13
|
|
|
14
|
+
function transform(value, userValue) {
|
|
15
|
+
if (userValue === 'grey') {
|
|
16
|
+
return userValue;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return value;
|
|
20
|
+
}
|
|
21
|
+
|
|
14
22
|
const color = (0, _style.default)({
|
|
15
23
|
prop: 'color',
|
|
16
|
-
themeKey: 'palette'
|
|
24
|
+
themeKey: 'palette',
|
|
25
|
+
transform
|
|
17
26
|
});
|
|
18
27
|
exports.color = color;
|
|
19
28
|
const bgcolor = (0, _style.default)({
|
|
20
29
|
prop: 'bgcolor',
|
|
21
30
|
cssProperty: 'backgroundColor',
|
|
22
|
-
themeKey: 'palette'
|
|
31
|
+
themeKey: 'palette',
|
|
32
|
+
transform
|
|
23
33
|
});
|
|
24
34
|
exports.bgcolor = bgcolor;
|
|
25
35
|
const backgroundColor = (0, _style.default)({
|
|
26
36
|
prop: 'backgroundColor',
|
|
27
|
-
themeKey: 'palette'
|
|
37
|
+
themeKey: 'palette',
|
|
38
|
+
transform
|
|
28
39
|
});
|
|
29
40
|
exports.backgroundColor = backgroundColor;
|
|
30
41
|
const palette = (0, _compose.default)(color, bgcolor, backgroundColor);
|
package/style.d.ts
CHANGED
|
@@ -8,7 +8,10 @@ export interface StyleOptions<PropKey> {
|
|
|
8
8
|
* dot access in `Theme`
|
|
9
9
|
*/
|
|
10
10
|
themeKey?: string;
|
|
11
|
-
transform?: (
|
|
11
|
+
transform?: (
|
|
12
|
+
cssValue: unknown,
|
|
13
|
+
userValue: unknown,
|
|
14
|
+
) => number | string | React.CSSProperties | CSSObject;
|
|
12
15
|
}
|
|
13
16
|
export function style<PropKey extends string, Theme extends object>(
|
|
14
17
|
options: StyleOptions<PropKey>,
|
package/style.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|