@pandacss/types 0.0.0-dev-20231223024151 → 0.0.0-dev-20240101213358
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/artifact.d.ts +2 -0
- package/dist/hooks.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/parser.d.ts +13 -18
- package/dist/runtime.d.ts +8 -1
- package/dist/style-rules.d.ts +59 -0
- package/package.json +2 -2
package/dist/artifact.d.ts
CHANGED
package/dist/hooks.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { HookKeys, Hookable } from 'hookable'
|
|
2
2
|
import type { LoadConfigResult, UserConfig } from './config'
|
|
3
|
-
import type {
|
|
3
|
+
import type { ParserResultInterface } from './parser'
|
|
4
4
|
|
|
5
5
|
type MaybeAsyncReturn = Promise<void> | void
|
|
6
6
|
|
|
@@ -20,7 +20,7 @@ export interface PandaHooks {
|
|
|
20
20
|
/**
|
|
21
21
|
* Called after the file styles are extracted and processed into the resulting ParserResult object.
|
|
22
22
|
*/
|
|
23
|
-
'parser:after': (file: string, result:
|
|
23
|
+
'parser:after': (file: string, result: ParserResultInterface | undefined) => void
|
|
24
24
|
/**
|
|
25
25
|
* Called after the extracted ParserResult has been transformed to a CSS string
|
|
26
26
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export type * from './recipe'
|
|
|
11
11
|
export type * from './runtime'
|
|
12
12
|
export type * from './shared'
|
|
13
13
|
export type * from './static-css'
|
|
14
|
+
export type * from './style-rules'
|
|
14
15
|
export type * from './system-types'
|
|
15
16
|
export type * from './theme'
|
|
16
17
|
export type * from './tokens'
|
package/dist/parser.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { BoxNodeArray, BoxNodeLiteral, BoxNodeMap, Unboxed } from '@pandacss/extractor'
|
|
2
2
|
|
|
3
3
|
export interface ResultItem {
|
|
4
4
|
name?: string
|
|
5
5
|
data: Array<Unboxed['raw']>
|
|
6
6
|
type?: 'object' | 'cva' | 'sva' | 'pattern' | 'recipe' | 'jsx-factory' | 'jsx-pattern' | 'jsx-recipe' | 'jsx'
|
|
7
|
-
box
|
|
7
|
+
box?: BoxNodeMap | BoxNodeLiteral | BoxNodeArray
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
export interface
|
|
10
|
+
export interface ParserResultInterface {
|
|
11
|
+
all: Array<ResultItem>
|
|
11
12
|
jsx: Set<ResultItem>
|
|
12
13
|
css: Set<ResultItem>
|
|
13
14
|
cva: Set<ResultItem>
|
|
@@ -15,22 +16,16 @@ export interface ParserResultType {
|
|
|
15
16
|
recipe: Map<string, Set<ResultItem>>
|
|
16
17
|
pattern: Map<string, Set<ResultItem>>
|
|
17
18
|
filePath: string | undefined
|
|
18
|
-
set: (name: 'cva' | 'css', result: ResultItem) => void
|
|
19
|
-
setSva: (result: ResultItem) => void
|
|
20
|
-
setCva: (result: ResultItem) => void
|
|
21
|
-
setJsx: (result: ResultItem) => void
|
|
22
|
-
setRecipe: (name: string, result: ResultItem) => void
|
|
23
|
-
setPattern: (name: string, result: ResultItem) => void
|
|
24
19
|
isEmpty: () => boolean
|
|
25
|
-
setFilePath: (filePath: string) => ParserResultType
|
|
26
20
|
toArray: () => Array<ResultItem>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface ShipJson {
|
|
24
|
+
schemaVersion: string
|
|
25
|
+
styles: {
|
|
26
|
+
atomic: string[]
|
|
27
|
+
recipes: {
|
|
28
|
+
[name: string]: string[]
|
|
29
|
+
}
|
|
34
30
|
}
|
|
35
|
-
merge: (result: ParserResultType) => ParserResultType
|
|
36
31
|
}
|
package/dist/runtime.d.ts
CHANGED
|
@@ -10,6 +10,12 @@ interface InputOptions {
|
|
|
10
10
|
cwd?: string
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
export type WatcherEventType = 'add' | 'addDir' | 'change' | 'unlink' | 'unlinkDir'
|
|
14
|
+
|
|
15
|
+
export interface WatchOptions extends InputOptions {
|
|
16
|
+
poll?: boolean
|
|
17
|
+
}
|
|
18
|
+
|
|
13
19
|
interface FileSystem {
|
|
14
20
|
readDirSync(dir: string): string[]
|
|
15
21
|
existsSync(fileLike: string): boolean
|
|
@@ -20,12 +26,13 @@ interface FileSystem {
|
|
|
20
26
|
rmFileSync(file: string): void
|
|
21
27
|
ensureDirSync(dirPath: string): void
|
|
22
28
|
writeFileSync(filePath: string, content: string): void
|
|
23
|
-
watch(options:
|
|
29
|
+
watch(options: WatchOptions): Watcher
|
|
24
30
|
}
|
|
25
31
|
|
|
26
32
|
interface Path {
|
|
27
33
|
join(...paths: string[]): string
|
|
28
34
|
dirname(path: string): string
|
|
35
|
+
resolve(...paths: string[]): string
|
|
29
36
|
extname(path: string): string
|
|
30
37
|
relative(from: string, to: string): string
|
|
31
38
|
isAbsolute(path: string): boolean
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import type { RawCondition } from './conditions'
|
|
2
|
+
|
|
3
|
+
export interface StyleResultObject {
|
|
4
|
+
[key: string]: any
|
|
5
|
+
}
|
|
6
|
+
export interface StyleProps extends StyleResultObject {
|
|
7
|
+
css?: StyleResultObject
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface StyleEntry {
|
|
11
|
+
prop: string
|
|
12
|
+
value: string
|
|
13
|
+
cond: string
|
|
14
|
+
recipe?: string
|
|
15
|
+
slot?: string
|
|
16
|
+
layer?: string
|
|
17
|
+
variants?: boolean
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
interface ExpandedCondition extends RawCondition {
|
|
21
|
+
params?: string
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface AtomicStyleResult {
|
|
25
|
+
result: StyleResultObject
|
|
26
|
+
entry: StyleEntry
|
|
27
|
+
hash: string
|
|
28
|
+
className: string
|
|
29
|
+
conditions?: ExpandedCondition[]
|
|
30
|
+
layer?: string
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface GroupedResult extends Pick<AtomicStyleResult, 'result' | 'className'> {
|
|
34
|
+
hashSet: Set<string>
|
|
35
|
+
details: GroupedStyleResultDetails[]
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface RecipeBaseResult extends GroupedResult {
|
|
39
|
+
recipe: string
|
|
40
|
+
slot?: string
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface GroupedStyleResultDetails extends Pick<AtomicStyleResult, 'hash' | 'entry' | 'conditions'> {
|
|
44
|
+
result: StyleResultObject
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface StyleDecoderInterface {
|
|
48
|
+
classNames: Map<string, AtomicStyleResult | RecipeBaseResult>
|
|
49
|
+
//
|
|
50
|
+
results: {
|
|
51
|
+
atomic: Set<AtomicStyleResult>
|
|
52
|
+
recipes: Map<string, Set<AtomicStyleResult>>
|
|
53
|
+
recipes_base: Map<string, Set<RecipeBaseResult>>
|
|
54
|
+
}
|
|
55
|
+
atomic: Set<AtomicStyleResult>
|
|
56
|
+
//
|
|
57
|
+
recipes: Map<string, Set<AtomicStyleResult>>
|
|
58
|
+
recipes_base: Map<string, Set<RecipeBaseResult>>
|
|
59
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/types",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20240101213358",
|
|
4
4
|
"description": "The types for css panda",
|
|
5
5
|
"main": "dist/index.d.ts",
|
|
6
6
|
"author": "Segun Adebayo <joseshegs@gmail.com>",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"hookable": "5.5.3",
|
|
31
31
|
"ncp": "^2.0.0",
|
|
32
32
|
"pkg-types": "1.0.3",
|
|
33
|
-
"@pandacss/extractor": "0.0.0-dev-
|
|
33
|
+
"@pandacss/extractor": "0.0.0-dev-20240101213358"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "tsx scripts/watch.ts",
|