sculpted 0.3.3 → 0.3.5
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/index.d.mts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/{patcher-nj9VhRT-.mjs → patcher-q1Cc_E8H.mjs} +2 -2
- package/dist/{runtime-Cpxddehp.d.mts → runtime-BA5TGbfx.d.mts} +1 -1
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.mjs +4669 -178
- package/dist/{sourceSyntax-DKIh-VKA.d.mts → sourceSyntax-CLM3knfR.d.mts} +1 -1
- package/dist/tsrx.d.mts +1 -1
- package/dist/{types-0a4hNfAF.d.mts → types-1F2MUOXh.d.mts} +2 -1
- package/dist/ui.d.mts +2 -2
- package/dist/ui.mjs +3777 -2070
- package/dist/vite.d.mts +1 -1
- package/dist/vite.mjs +61 -2
- package/docs/vite-plugin.md +11 -2
- package/examples/vite-preact-pandacss/package.json +1 -1
- package/examples/vite-preact-pandacss/postcss.config.cjs +2 -2
- package/examples/vite-preact-pandacss/src/index.css +6 -1
- package/examples/vite-preact-pandacss/vite.config.ts +5 -5
- package/examples/vite-react-pandacss/package.json +1 -1
- package/examples/vite-react-pandacss/src/index.css +6 -1
- package/package.json +18 -18
package/dist/tsrx.d.mts
CHANGED
|
@@ -142,6 +142,7 @@ type EditorPropertyMetadata = {
|
|
|
142
142
|
readonly aliases: readonly string[];
|
|
143
143
|
readonly tokenCategory?: string;
|
|
144
144
|
readonly defaultUnit?: string;
|
|
145
|
+
readonly commonness?: number;
|
|
145
146
|
};
|
|
146
147
|
type InspectorEditorMetadata = {
|
|
147
148
|
readonly version: number;
|
|
@@ -178,7 +179,7 @@ type RuntimeCssDeclaration = {
|
|
|
178
179
|
readonly value: string;
|
|
179
180
|
readonly condition?: PreviewStyleCondition;
|
|
180
181
|
};
|
|
181
|
-
type PreviewStyleCondition = 'hover' | 'focus' | 'focus-visible' | 'active';
|
|
182
|
+
type PreviewStyleCondition = 'hover' | 'focus' | 'focus-visible' | 'active' | 'disabled';
|
|
182
183
|
type RuntimePropertyContext = {
|
|
183
184
|
readonly tagName: string;
|
|
184
185
|
readonly display: string;
|
package/dist/ui.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { I as RuntimePropertyContext, N as RuntimeCssDeclaration, R as SelectedElementInfo, j as RuntimeComponentLayer } from "./types-
|
|
2
|
-
import { r as SculptedRuntime } from "./runtime-
|
|
1
|
+
import { I as RuntimePropertyContext, N as RuntimeCssDeclaration, R as SelectedElementInfo, j as RuntimeComponentLayer } from "./types-1F2MUOXh.mjs";
|
|
2
|
+
import { r as SculptedRuntime } from "./runtime-BA5TGbfx.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/ui/inspectorPanel.d.ts
|
|
5
5
|
type ReadonlyInspectorPanelOptions = {
|