@pandacss/studio 0.0.0-dev-20240501184738 → 0.0.0-dev-20240501211216

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-20240501184738",
3
+ "version": "0.0.0-dev-20240501211216",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -48,12 +48,12 @@
48
48
  "react": "18.2.0",
49
49
  "react-dom": "18.2.0",
50
50
  "vite": "5.1.7",
51
- "@pandacss/config": "0.0.0-dev-20240501184738",
52
- "@pandacss/logger": "0.0.0-dev-20240501184738",
53
- "@pandacss/shared": "0.0.0-dev-20240501184738",
54
- "@pandacss/token-dictionary": "0.0.0-dev-20240501184738",
55
- "@pandacss/types": "0.0.0-dev-20240501184738",
56
- "@pandacss/astro-plugin-studio": "0.0.0-dev-20240501184738"
51
+ "@pandacss/config": "0.0.0-dev-20240501211216",
52
+ "@pandacss/logger": "0.0.0-dev-20240501211216",
53
+ "@pandacss/shared": "0.0.0-dev-20240501211216",
54
+ "@pandacss/token-dictionary": "0.0.0-dev-20240501211216",
55
+ "@pandacss/types": "0.0.0-dev-20240501211216",
56
+ "@pandacss/astro-plugin-studio": "0.0.0-dev-20240501211216"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/react": "18.2.55",
@@ -10,7 +10,6 @@ export * from './spacer';
10
10
  export * from './square';
11
11
  export * from './circle';
12
12
  export * from './center';
13
- export * from './link-box';
14
13
  export * from './link-overlay';
15
14
  export * from './aspect-ratio';
16
15
  export * from './grid';
@@ -9,7 +9,6 @@ export * from './spacer.mjs';
9
9
  export * from './square.mjs';
10
10
  export * from './circle.mjs';
11
11
  export * from './center.mjs';
12
- export * from './link-box.mjs';
13
12
  export * from './link-overlay.mjs';
14
13
  export * from './aspect-ratio.mjs';
15
14
  export * from './grid.mjs';
@@ -8,7 +8,6 @@ export * from './spacer';
8
8
  export * from './square';
9
9
  export * from './circle';
10
10
  export * from './center';
11
- export * from './link-box';
12
11
  export * from './link-overlay';
13
12
  export * from './aspect-ratio';
14
13
  export * from './grid';
@@ -7,7 +7,6 @@ export * from './spacer.mjs';
7
7
  export * from './square.mjs';
8
8
  export * from './circle.mjs';
9
9
  export * from './center.mjs';
10
- export * from './link-box.mjs';
11
10
  export * from './link-overlay.mjs';
12
11
  export * from './aspect-ratio.mjs';
13
12
  export * from './grid.mjs';
@@ -4,12 +4,9 @@ import { css } from '../css/index.mjs';
4
4
  const linkOverlayConfig = {
5
5
  transform(props) {
6
6
  return {
7
- position: "static",
8
7
  _before: {
9
8
  content: '""',
10
- display: "block",
11
9
  position: "absolute",
12
- cursor: "inherit",
13
10
  inset: "0",
14
11
  zIndex: "0",
15
12
  ...props["_before"]
@@ -15,34 +15,61 @@ interface Recursive<T> {
15
15
  * -----------------------------------------------------------------------------*/
16
16
 
17
17
  type TextStyleProperty =
18
+ | 'font'
19
+ | 'fontFamily'
20
+ | 'fontFeatureSettings'
21
+ | 'fontKerning'
22
+ | 'fontLanguageOverride'
23
+ | 'fontOpticalSizing'
24
+ | 'fontPalette'
18
25
  | 'fontSize'
19
26
  | 'fontSizeAdjust'
20
- | 'fontVariationSettings'
21
- | 'fontVariantPosition'
22
- | 'fontVariantCaps'
23
- | 'fontVariantNumeric'
27
+ | 'fontStretch'
28
+ | 'fontStyle'
29
+ | 'fontSynthesis'
30
+ | 'fontVariant'
24
31
  | 'fontVariantAlternates'
32
+ | 'fontVariantCaps'
25
33
  | 'fontVariantLigatures'
26
- | 'fontFamily'
34
+ | 'fontVariantNumeric'
35
+ | 'fontVariantPosition'
36
+ | 'fontVariationSettings'
27
37
  | 'fontWeight'
28
- | 'fontSynthesis'
29
- | 'fontStyle'
30
- | 'fontVariant'
31
- | 'lineHeight'
38
+ | 'hypens'
39
+ | 'hyphenateCharacter'
40
+ | 'hyphenateLimitChars'
32
41
  | 'letterSpacing'
42
+ | 'lineBreak'
43
+ | 'lineHeight'
44
+ | 'quotes'
45
+ | 'overflowWrap'
46
+ | 'textCombineUpright'
33
47
  | 'textDecoration'
34
- | 'textTransform'
35
- | 'textIndent'
36
48
  | 'textDecorationColor'
37
49
  | 'textDecorationLine'
50
+ | 'textDecorationSkipInk'
38
51
  | 'textDecorationStyle'
52
+ | 'textDecorationThickness'
53
+ | 'textEmphasis'
39
54
  | 'textEmphasisColor'
40
55
  | 'textEmphasisPosition'
41
56
  | 'textEmphasisStyle'
42
- | 'hyphenateCharacter'
57
+ | 'textIndent'
58
+ | 'textJustify'
43
59
  | 'textOrientation'
44
60
  | 'textOverflow'
45
61
  | 'textRendering'
62
+ | 'textShadow'
63
+ | 'textTransform'
64
+ | 'textUnderlineOffset'
65
+ | 'textUnderlinePosition'
66
+ | 'textWrap'
67
+ | 'textWrapMode'
68
+ | 'textWrapStyle'
69
+ | 'verticalAlign'
70
+ | 'whiteSpace'
71
+ | 'wordBreak'
72
+ | 'wordSpacing'
46
73
 
47
74
  export type TextStyle = CompositionStyleObject<TextStyleProperty>
48
75