@pandacss/types 0.0.0-dev-20230601114337 → 0.0.0-dev-20230602132346

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.
@@ -114,20 +114,6 @@ type ReportMapsJSON = {
114
114
  colorsUsed: Record<string, Array<ReportItem['id']>>
115
115
  }
116
116
 
117
- type NodeRange = {
118
- startPosition: number
119
- startLineNumber: number
120
- startColumn: number
121
- endPosition: number
122
- endLineNumber: number
123
- endColumn: number
124
- }
125
-
126
- type MorphNodeJSON = {
127
- kind: string
128
- range: NodeRange
129
- }
130
-
131
117
  export type ReportItemJSON = {
132
118
  id: number
133
119
  from: string
@@ -143,8 +129,10 @@ export type ReportItemJSON = {
143
129
  box: {
144
130
  type: 'literal' | 'empty-initializer'
145
131
  value: string | number | boolean | undefined | null
146
- node: MorphNodeJSON
147
- stack: MorphNodeJSON[]
132
+ node: string
133
+ stack: string[]
134
+ line: number
135
+ column: number
148
136
  }
149
137
  }
150
138
 
@@ -152,7 +140,7 @@ export type ReportInstanceItemJSON = Pick<ReportItem, 'from' | 'type' | 'kind' |
152
140
  instanceId: number
153
141
  contains: Array<ReportItem['id']>
154
142
  value: Record<string, any>
155
- box: { type: 'map'; value: Record<string, any>; node: MorphNodeJSON; stack: MorphNodeJSON[] }
143
+ box: { type: 'map'; value: Record<string, any>; node: string; stack: string[]; line: number; column: number }
156
144
  }
157
145
 
158
146
  export type AnalysisReportJSON = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230601114337",
3
+ "version": "0.0.0-dev-20230602132346",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -16,7 +16,7 @@
16
16
  "csstype": "3.1.2"
17
17
  },
18
18
  "dependencies": {
19
- "@pandacss/extractor": "0.0.0-dev-20230601114337"
19
+ "@pandacss/extractor": "0.0.0-dev-20230602132346"
20
20
  },
21
21
  "scripts": {
22
22
  "build": "tsx scripts/build.ts",