@pandacss/types 2.0.0-beta.12 → 2.0.0-beta.14
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/config.d.ts +1 -0
- package/dist/tokens.d.ts +2 -0
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -386,6 +386,7 @@ interface CodegenOptions {
|
|
|
386
386
|
outExtension?: 'ts' | 'js' | 'mjs'
|
|
387
387
|
/**
|
|
388
388
|
* Whether generated import specifiers include runtime file extensions.
|
|
389
|
+
* When `outExtension` is `mjs`, this also emits `.d.mts` instead of `.d.ts`.
|
|
389
390
|
* @default false
|
|
390
391
|
*/
|
|
391
392
|
forceImportExtension?: boolean
|
package/dist/tokens.d.ts
CHANGED
|
@@ -52,10 +52,12 @@ export interface Shadow {
|
|
|
52
52
|
|
|
53
53
|
export interface Gradient {
|
|
54
54
|
type: 'linear' | 'radial'
|
|
55
|
+
/** A keyword (`to right`, `circle at center`) or an angle in degrees. */
|
|
55
56
|
placement: string | number
|
|
56
57
|
stops:
|
|
57
58
|
| Array<{
|
|
58
59
|
color: string
|
|
60
|
+
/** Distance along the gradient, as a percentage (`0` to `100`). */
|
|
59
61
|
position: number
|
|
60
62
|
}>
|
|
61
63
|
| Array<string>
|