@pandacss/types 0.0.0-dev-20230103023431 → 0.0.0-dev-20230103100906

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/config.d.ts +13 -0
  2. package/package.json +1 -1
package/dist/config.d.ts CHANGED
@@ -8,16 +8,29 @@ import type { SemanticTokens, Tokens as PartialTokens } from './tokens'
8
8
  import type { UtilityConfig } from './utility'
9
9
  import type { StaticCssOptions } from './static-css'
10
10
 
11
+ type Docs = {
12
+ title: string
13
+ logo: string
14
+ }
15
+
11
16
  export type Config<
12
17
  Conditions extends TConditions = TConditions,
13
18
  Breakpoints extends Dict = Dict,
14
19
  Tokens extends PartialTokens = PartialTokens,
15
20
  > = {
21
+ /**
22
+ * Whether to update the .gitignore file.
23
+ */
24
+ gitignore?: boolean
16
25
  /**
17
26
  * The value separator used in the generated class names.
18
27
  * @default '_'
19
28
  */
20
29
  separator?: '_' | '=' | '-'
30
+ /**
31
+ * Used to customize the design system docs
32
+ */
33
+ docs?: Partial<Docs>
21
34
  /**
22
35
  * The log level for the built-in logger.
23
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230103023431",
3
+ "version": "0.0.0-dev-20230103100906",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",