@marigold/system 5.1.0 → 5.2.0
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/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +4 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ResponsiveStyleValue as ResponsiveStyleValue$1, ThemeUIStyleObject, The
|
|
|
4
4
|
import * as react from 'react';
|
|
5
5
|
import { ReactNode } from 'react';
|
|
6
6
|
import * as CSS from 'csstype';
|
|
7
|
+
export { keyframes } from '@emotion/react';
|
|
7
8
|
|
|
8
9
|
type ResponsiveStyleValue<T> = ResponsiveStyleValue$1<T>;
|
|
9
10
|
type StyleObject = ThemeUIStyleObject;
|
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(src_exports, {
|
|
|
35
35
|
SVG: () => SVG,
|
|
36
36
|
ThemeProvider: () => ThemeProvider,
|
|
37
37
|
__defaultTheme: () => __defaultTheme,
|
|
38
|
+
keyframes: () => import_react12.keyframes,
|
|
38
39
|
useComponentStyles: () => useComponentStyles,
|
|
39
40
|
useResponsiveValue: () => useResponsiveValue,
|
|
40
41
|
useStateProps: () => useStateProps,
|
|
@@ -398,6 +399,9 @@ var SVG = (0, import_react10.forwardRef)(
|
|
|
398
399
|
);
|
|
399
400
|
}
|
|
400
401
|
);
|
|
402
|
+
|
|
403
|
+
// src/keyframes.ts
|
|
404
|
+
var import_react12 = require("@emotion/react");
|
|
401
405
|
// Annotate the CommonJS export names for ESM import in node:
|
|
402
406
|
0 && (module.exports = {
|
|
403
407
|
Box,
|
|
@@ -405,6 +409,7 @@ var SVG = (0, import_react10.forwardRef)(
|
|
|
405
409
|
SVG,
|
|
406
410
|
ThemeProvider,
|
|
407
411
|
__defaultTheme,
|
|
412
|
+
keyframes,
|
|
408
413
|
useComponentStyles,
|
|
409
414
|
useResponsiveValue,
|
|
410
415
|
useStateProps,
|
package/dist/index.mjs
CHANGED
|
@@ -361,12 +361,16 @@ var SVG = forwardRef2(
|
|
|
361
361
|
);
|
|
362
362
|
}
|
|
363
363
|
);
|
|
364
|
+
|
|
365
|
+
// src/keyframes.ts
|
|
366
|
+
import { keyframes } from "@emotion/react";
|
|
364
367
|
export {
|
|
365
368
|
Box,
|
|
366
369
|
Global,
|
|
367
370
|
SVG,
|
|
368
371
|
ThemeProvider,
|
|
369
372
|
__defaultTheme,
|
|
373
|
+
keyframes,
|
|
370
374
|
useComponentStyles,
|
|
371
375
|
useResponsiveValue,
|
|
372
376
|
useStateProps,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/system",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "Marigold System Library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@emotion/react": "11.10.6",
|
|
30
|
-
"@theme-ui/css": "0.15.
|
|
30
|
+
"@theme-ui/css": "0.15.5",
|
|
31
31
|
"csstype": "3.1.1",
|
|
32
32
|
"deepmerge": "^4.2.2",
|
|
33
33
|
"react-fast-compare": "^3.2.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-dom": "16.x || 17.x || 18.x"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "7.
|
|
41
|
+
"@babel/core": "7.21.0",
|
|
42
42
|
"react": "18.2.0",
|
|
43
43
|
"tsup": "6.6.3",
|
|
44
44
|
"@marigold/tsconfig": "0.4.0"
|