@pandacss/studio 0.0.0-dev-20230904144746 → 0.0.0-dev-20230905135654

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-20230904144746",
3
+ "version": "0.0.0-dev-20230905135654",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,19 +33,19 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.4.9",
36
- "@pandacss/types": "0.0.0-dev-20230904144746",
37
- "@pandacss/config": "0.0.0-dev-20230904144746",
38
- "@pandacss/shared": "0.0.0-dev-20230904144746",
39
- "@pandacss/token-dictionary": "0.0.0-dev-20230904144746",
40
- "@pandacss/logger": "0.0.0-dev-20230904144746",
41
- "@pandacss/node": "0.0.0-dev-20230904144746"
36
+ "@pandacss/types": "0.0.0-dev-20230905135654",
37
+ "@pandacss/config": "0.0.0-dev-20230905135654",
38
+ "@pandacss/shared": "0.0.0-dev-20230905135654",
39
+ "@pandacss/token-dictionary": "0.0.0-dev-20230905135654",
40
+ "@pandacss/logger": "0.0.0-dev-20230905135654",
41
+ "@pandacss/node": "0.0.0-dev-20230905135654"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.18",
45
45
  "@types/react-dom": "18.2.7",
46
46
  "@vitejs/plugin-react": "4.0.4",
47
47
  "execa": "7.2.0",
48
- "@pandacss/dev": "0.0.0-dev-20230904144746"
48
+ "@pandacss/dev": "0.0.0-dev-20230905135654"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -11,39 +11,6 @@
11
11
  @import './tokens/keyframes.css';
12
12
 
13
13
  @layer utilities {
14
- .styles\:dark\:text_green500.dark,
15
- .dark .styles\:dark\:text_green500 {
16
- color: green500;
17
- }
18
-
19
- .\ \*\:text_token\(colors\.red\) {
20
- color: 'colors.red'
21
- }
22
-
23
- .\ \*\:border_1px_solid_token\(colors\.blue\) {
24
- border: 1px solid 'colors.blue'
25
- }
26
-
27
- .\ \*\:background-image_linear-gradient\(token\(colors\.red\)\,_token\(colors\.blue\)\) {
28
- background-image: linear-gradient('colors.red', 'colors.blue')
29
- }
30
-
31
- .\ \*\:text_token\(colors\.red\,_colors\.blue\) {
32
- color: var('colors.red', 'colors.blue')
33
- }
34
-
35
- .\ \*\:text_token\(colors\.magenta\,_pink\) {
36
- color: var('colors.magenta', pink)
37
- }
38
-
39
- .font_12px\/1\.5_Helvetica\,_Arial\,_sans-serif {
40
- font: 12px/1.5 Helvetica, Arial, sans-serif;
41
- }
42
-
43
- .text_red {
44
- color: red;
45
- }
46
-
47
14
  .w_26px {
48
15
  width: 26px;
49
16
  }
@@ -1029,10 +996,6 @@
1029
996
  border-bottom-color: var(--colors-black);
1030
997
  }
1031
998
 
1032
- .\[\&\:hover\]\:text_blue:hover {
1033
- color: blue;
1034
- }
1035
-
1036
999
  .\[\&\:hover\]\:bg_\#4049f0:hover {
1037
1000
  background: #4049f0;
1038
1001
  }
@@ -1045,15 +1008,6 @@
1045
1008
  opacity: 0.8;
1046
1009
  }
1047
1010
 
1048
- @media screen and (min-width: 640px) {
1049
- @media screen and (min-width: 768px) {
1050
- .styles\:dark\:sm\:md\:text_red200.dark,
1051
- .dark .styles\:dark\:sm\:md\:text_red200 {
1052
- color: red200
1053
- }
1054
- }
1055
- }
1056
-
1057
1011
  @media screen and (min-width: 768px) {
1058
1012
  .md\:px_6 {
1059
1013
  padding-inline: var(--spacing-6)
@@ -100,7 +100,6 @@ export type SlotRecipeVariantFn<S extends string, T extends RecipeVariantRecord>
100
100
  ) => SlotRecord<S, string>
101
101
 
102
102
  export type SlotRecipeRuntimeFn<S extends string, T extends SlotRecipeVariantRecord<S>> = SlotRecipeVariantFn<S, T> & {
103
- raw: (props?: RecipeSelection<T>) => Record<S, SystemStyleObject>
104
103
  variantKeys: (keyof T)[]
105
104
  variantMap: RecipeVariantMap<T>
106
105
  splitVariantProps<Props extends RecipeSelection<T>>(props: Props): [RecipeSelection<T>, Pretty<Omit<Props, keyof T>>]