@pandacss/studio 0.0.0-dev-20231115170405 → 0.0.0-dev-20231115170809
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20231115170809",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"react": "18.2.0",
|
|
43
43
|
"react-dom": "18.2.0",
|
|
44
44
|
"vite": "4.4.11",
|
|
45
|
-
"@pandacss/config": "0.0.0-dev-
|
|
46
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
47
|
-
"@pandacss/node": "0.0.0-dev-
|
|
48
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
49
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
50
|
-
"@pandacss/types": "0.0.0-dev-
|
|
45
|
+
"@pandacss/config": "0.0.0-dev-20231115170809",
|
|
46
|
+
"@pandacss/logger": "0.0.0-dev-20231115170809",
|
|
47
|
+
"@pandacss/node": "0.0.0-dev-20231115170809",
|
|
48
|
+
"@pandacss/shared": "0.0.0-dev-20231115170809",
|
|
49
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20231115170809",
|
|
50
|
+
"@pandacss/types": "0.0.0-dev-20231115170809"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/react": "18.2.37",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
2
|
+
export * from './css';
|
|
3
|
+
export * from './cx';
|
|
4
|
+
export * from './cva';
|
|
5
|
+
export * from './sva';
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export
|
|
2
|
+
export * from './factory';
|
|
3
3
|
|
|
4
|
-
export
|
|
4
|
+
export * from './is-valid-prop';
|
|
5
5
|
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
6
|
+
export * from './box';
|
|
7
|
+
export * from './flex';
|
|
8
|
+
export * from './stack';
|
|
9
|
+
export * from './vstack';
|
|
10
|
+
export * from './hstack';
|
|
11
|
+
export * from './spacer';
|
|
12
|
+
export * from './square';
|
|
13
|
+
export * from './circle';
|
|
14
|
+
export * from './center';
|
|
15
|
+
export * from './link-box';
|
|
16
|
+
export * from './link-overlay';
|
|
17
|
+
export * from './aspect-ratio';
|
|
18
|
+
export * from './grid';
|
|
19
|
+
export * from './grid-item';
|
|
20
|
+
export * from './wrap';
|
|
21
|
+
export * from './container';
|
|
22
|
+
export * from './divider';
|
|
23
|
+
export * from './float';
|
|
24
|
+
export * from './bleed';
|
|
25
|
+
export * from './visually-hidden';
|
|
26
|
+
export * from './styled-link';
|
|
27
27
|
|
|
28
28
|
export type { HTMLPandaProps, PandaComponent } from '../types/jsx';
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
2
|
+
export * from './box';
|
|
3
|
+
export * from './flex';
|
|
4
|
+
export * from './stack';
|
|
5
|
+
export * from './vstack';
|
|
6
|
+
export * from './hstack';
|
|
7
|
+
export * from './spacer';
|
|
8
|
+
export * from './square';
|
|
9
|
+
export * from './circle';
|
|
10
|
+
export * from './center';
|
|
11
|
+
export * from './link-box';
|
|
12
|
+
export * from './link-overlay';
|
|
13
|
+
export * from './aspect-ratio';
|
|
14
|
+
export * from './grid';
|
|
15
|
+
export * from './grid-item';
|
|
16
|
+
export * from './wrap';
|
|
17
|
+
export * from './container';
|
|
18
|
+
export * from './divider';
|
|
19
|
+
export * from './float';
|
|
20
|
+
export * from './bleed';
|
|
21
|
+
export * from './visually-hidden';
|
|
22
|
+
export * from './styled-link';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import './global.d.ts'
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
3
|
+
export * from './conditions';
|
|
4
|
+
export * from './pattern';
|
|
5
|
+
export * from './recipe';
|
|
6
|
+
export * from './system-types';
|
|
7
|
+
export * from './jsx';
|
|
8
|
+
export * from './style-props';
|