@pandacss/generator 1.6.0 → 1.7.0
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +468 -43
- package/dist/index.mjs +475 -50
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _pandacss_types from '@pandacss/types';
|
|
2
|
-
import { LoadConfigResult, ArtifactId, CssArtifactType } from '@pandacss/types';
|
|
2
|
+
import { LoadConfigResult, ArtifactId, CssArtifactType, SpecFile } from '@pandacss/types';
|
|
3
3
|
import { Context, Stylesheet, StyleDecoder } from '@pandacss/core';
|
|
4
4
|
|
|
5
5
|
interface SplitCssArtifact {
|
|
@@ -48,6 +48,7 @@ declare class Generator extends Context {
|
|
|
48
48
|
* Used when --splitting flag is enabled
|
|
49
49
|
*/
|
|
50
50
|
getSplitCssArtifacts: (sheet: Stylesheet) => SplitCssResult;
|
|
51
|
+
getSpec: () => SpecFile[];
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _pandacss_types from '@pandacss/types';
|
|
2
|
-
import { LoadConfigResult, ArtifactId, CssArtifactType } from '@pandacss/types';
|
|
2
|
+
import { LoadConfigResult, ArtifactId, CssArtifactType, SpecFile } from '@pandacss/types';
|
|
3
3
|
import { Context, Stylesheet, StyleDecoder } from '@pandacss/core';
|
|
4
4
|
|
|
5
5
|
interface SplitCssArtifact {
|
|
@@ -48,6 +48,7 @@ declare class Generator extends Context {
|
|
|
48
48
|
* Used when --splitting flag is enabled
|
|
49
49
|
*/
|
|
50
50
|
getSplitCssArtifacts: (sheet: Stylesheet) => SplitCssResult;
|
|
51
|
+
getSpec: () => SpecFile[];
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
/**
|