@pandacss/config 2.0.0-beta.0 → 2.0.0-beta.10
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/{chunk-LUSBBUHX.js → chunk-PER4IFQZ.js} +14 -45
- package/dist/chunk-R4R5RHIS.js +73 -0
- package/dist/{chunk-VYX3JX5J.js → chunk-U6KCSKCU.js} +5 -3
- package/dist/index.d.ts +129 -5
- package/dist/index.js +1346 -226
- package/dist/{merge-Bt4BM1CH.d.ts → merge-Bbdo_XHY.d.ts} +6 -7
- package/dist/merge.d.ts +1 -1
- package/dist/merge.js +2 -1
- package/dist/serialize.js +2 -1
- package/package.json +6 -3
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
import { Config } from '@pandacss/types';
|
|
1
|
+
import { Config, Dict } from '@pandacss/types';
|
|
2
|
+
|
|
3
|
+
type Extendable<T> = T & {
|
|
4
|
+
extend?: T;
|
|
5
|
+
};
|
|
6
|
+
type ExtendableConfig = Extendable<Config>;
|
|
2
7
|
|
|
3
8
|
interface ConfigSourceEntry {
|
|
4
9
|
kind: 'config' | 'preset';
|
|
@@ -19,12 +24,6 @@ declare class SourceTracker {
|
|
|
19
24
|
delete(path: string[]): void;
|
|
20
25
|
}
|
|
21
26
|
|
|
22
|
-
type Dict = Record<string, any>;
|
|
23
|
-
type Extendable<T> = T & {
|
|
24
|
-
extend?: T;
|
|
25
|
-
};
|
|
26
|
-
type ExtendableConfig = Extendable<Config>;
|
|
27
|
-
|
|
28
27
|
interface SourcedConfig {
|
|
29
28
|
config: ExtendableConfig;
|
|
30
29
|
source: ConfigSourceEntry;
|
package/dist/merge.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { S as SourcedConfig, m as mergeConfigs, b as mergeConfigsWithSources } from './merge-
|
|
1
|
+
export { S as SourcedConfig, m as mergeConfigs, b as mergeConfigsWithSources } from './merge-Bbdo_XHY.js';
|
|
2
2
|
import '@pandacss/types';
|
package/dist/merge.js
CHANGED
package/dist/serialize.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/config",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.10",
|
|
4
4
|
"description": "Self-contained loader that bundles and serializes a Panda config for the Rust compiler",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -45,8 +45,11 @@
|
|
|
45
45
|
"magic-string": "^0.30.21",
|
|
46
46
|
"microdiff": "1.5.0",
|
|
47
47
|
"rolldown": "1.0.0-rc.17",
|
|
48
|
-
"@pandacss/compiler-shared": "2.0.0-beta.
|
|
49
|
-
"@pandacss/types": "2.0.0-beta.
|
|
48
|
+
"@pandacss/compiler-shared": "2.0.0-beta.10",
|
|
49
|
+
"@pandacss/types": "2.0.0-beta.10"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=22"
|
|
50
53
|
},
|
|
51
54
|
"scripts": {
|
|
52
55
|
"build": "tsup --dts",
|