@pandacss/types 0.0.0-dev-20230901162735 → 0.0.0-dev-20230901181122

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.
Files changed (2) hide show
  1. package/dist/hooks.d.ts +4 -0
  2. package/package.json +2 -2
package/dist/hooks.d.ts CHANGED
@@ -32,6 +32,10 @@ export interface PandaHooks {
32
32
  file: 'global.css' | 'static.css' | 'reset.css' | 'tokens.css' | 'keyframes.css' | 'styles.css',
33
33
  css: string,
34
34
  ) => void
35
+ /**
36
+ * Called after the codegen is completed
37
+ */
38
+ 'generator:done': () => void | Promise<void>
35
39
  }
36
40
 
37
41
  export type PandaHookable = Hookable<PandaHooks, HookKeys<PandaHooks>>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230901162735",
3
+ "version": "0.0.0-dev-20230901181122",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -17,7 +17,7 @@
17
17
  "hookable": "5.5.3",
18
18
  "ncp": "^2.0.0",
19
19
  "pkg-types": "1.0.3",
20
- "@pandacss/extractor": "0.0.0-dev-20230901162735"
20
+ "@pandacss/extractor": "0.0.0-dev-20230901181122"
21
21
  },
22
22
  "scripts": {
23
23
  "build": "tsx scripts/build.ts",