@pandacss/types 0.0.0-dev-20231019203811 → 0.0.0-dev-20231019215914

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.
@@ -1,14 +1,10 @@
1
1
  import type { CompositionStyleObject } from './system-types'
2
+ import type { Token } from './tokens'
2
3
 
3
4
  interface Recursive<T> {
4
5
  [key: string]: Recursive<T> | T
5
6
  }
6
7
 
7
- export interface Token<Value = any> {
8
- value: Value
9
- description?: string
10
- }
11
-
12
8
  /* -----------------------------------------------------------------------------
13
9
  * Text styles
14
10
  * -----------------------------------------------------------------------------*/
package/dist/config.d.ts CHANGED
@@ -211,7 +211,7 @@ interface CssgenOptions {
211
211
  * The namespace prefix for the generated css classes and css variables.
212
212
  * @default ''
213
213
  */
214
- prefix?: string | { cssVar: string; className: string }
214
+ prefix?: string | { cssVar?: string; className?: string }
215
215
  /**
216
216
  * The value separator used in the generated class names.
217
217
  * @default '_'
package/dist/index.d.ts CHANGED
@@ -1,33 +1,16 @@
1
- export type {
2
- AnalysisReport,
3
- AnalysisReportJSON,
4
- ReportInstanceItem,
5
- ReportInstanceItemJSON,
6
- ReportItem,
7
- ReportItemJSON,
8
- ReportItemType,
9
- } from './analyze-report'
10
- export type { CompositionStyles, LayerStyles, TextStyles } from './composition'
11
- export type { ConditionDetails, ConditionType, Conditions, RawCondition } from './conditions'
12
- export type {
13
- Config,
14
- ConfigTsOptions,
15
- LoadConfigResult,
16
- Preset,
17
- UserConfig,
18
- TSConfig,
19
- CascadeLayers,
20
- OutdirImportMap,
21
- } from './config'
22
- export type { ConfigResultWithHooks, PandaHooks, PandaHookable } from './hooks'
23
- export type { ParserResultType, ResultItem } from './parser'
24
- export type { Part, Parts } from './parts'
25
- export type { PatternConfig, PatternHelpers, PatternProperty } from './pattern'
26
- export type { RecipeConfig, RecipeVariantRecord, SlotRecipeConfig, SlotRecipeVariantRecord } from './recipe'
27
- export type { Runtime } from './runtime'
28
- export type { AnyFunction, Artifact, Dict, RequiredBy } from './shared'
29
- export type { StaticCssOptions } from './static-css'
30
- export type { CssKeyframes, GlobalStyleObject, SystemStyleObject } from './system-types'
31
- export type { Theme } from './theme'
32
- export type { SemanticToken, SemanticTokens, Token, TokenCategory, TokenDataTypes, Tokens } from './tokens'
33
- export type { PropertyConfig, PropertyTransform, PropertyValues, UtilityConfig } from './utility'
1
+ export type * from './analyze-report'
2
+ export type * from './composition'
3
+ export type * from './conditions'
4
+ export type * from './config'
5
+ export type * from './hooks'
6
+ export type * from './parser'
7
+ export type * from './parts'
8
+ export type * from './pattern'
9
+ export type * from './recipe'
10
+ export type * from './runtime'
11
+ export type * from './shared'
12
+ export type * from './static-css'
13
+ export type * from './system-types'
14
+ export type * from './theme'
15
+ export type * from './tokens'
16
+ export type * from './utility'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20231019203811",
3
+ "version": "0.0.0-dev-20231019215914",
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-20231019203811"
20
+ "@pandacss/extractor": "0.0.0-dev-20231019215914"
21
21
  },
22
22
  "scripts": {
23
23
  "build": "tsx scripts/build.ts",