@pandacss/node 1.5.0 → 1.6.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 CHANGED
@@ -55,6 +55,7 @@ declare class PandaContext extends Generator {
55
55
  results: ParserResult[];
56
56
  };
57
57
  writeCss: (sheet?: Stylesheet) => Promise<PromiseSettledResult<void>[]> | undefined;
58
+ writeSplitCss: (sheet: Stylesheet) => Promise<void>;
58
59
  watchConfig: (cb: (file: string) => void | Promise<void>, opts?: Omit<WatchOptions, "include">) => void;
59
60
  watchFiles: (cb: (event: WatcherEventType, file: string) => void | Promise<void>, opts?: Omit<WatchOptions, "include" | "exclude" | "poll" | "cwd" | "logger">) => void;
60
61
  }
@@ -132,6 +133,7 @@ interface CssGenOptions {
132
133
  outfile?: string;
133
134
  type?: CssArtifactType;
134
135
  minimal?: boolean;
136
+ splitting?: boolean;
135
137
  }
136
138
  declare const cssgen: (ctx: PandaContext, options: CssGenOptions) => Promise<void>;
137
139
 
package/dist/index.d.ts CHANGED
@@ -55,6 +55,7 @@ declare class PandaContext extends Generator {
55
55
  results: ParserResult[];
56
56
  };
57
57
  writeCss: (sheet?: Stylesheet) => Promise<PromiseSettledResult<void>[]> | undefined;
58
+ writeSplitCss: (sheet: Stylesheet) => Promise<void>;
58
59
  watchConfig: (cb: (file: string) => void | Promise<void>, opts?: Omit<WatchOptions, "include">) => void;
59
60
  watchFiles: (cb: (event: WatcherEventType, file: string) => void | Promise<void>, opts?: Omit<WatchOptions, "include" | "exclude" | "poll" | "cwd" | "logger">) => void;
60
61
  }
@@ -132,6 +133,7 @@ interface CssGenOptions {
132
133
  outfile?: string;
133
134
  type?: CssArtifactType;
134
135
  minimal?: boolean;
136
+ splitting?: boolean;
135
137
  }
136
138
  declare const cssgen: (ctx: PandaContext, options: CssGenOptions) => Promise<void>;
137
139