elements-kit 0.27.0 → 0.27.2
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.
|
@@ -80,6 +80,15 @@
|
|
|
80
80
|
margin-inline: auto;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
+
:root {
|
|
84
|
+
--page-gutter-left: max(calc((100cqi - var(--page-max-width, 72rem)) / 2 +
|
|
85
|
+
var(--page-padding-left, 1rem)),
|
|
86
|
+
var(--page-padding-left, 1rem));
|
|
87
|
+
--page-gutter-right: max(calc((100cqi - var(--page-max-width, 72rem)) / 2 +
|
|
88
|
+
var(--page-padding-right, 1rem)),
|
|
89
|
+
var(--page-padding-right, 1rem));
|
|
90
|
+
}
|
|
91
|
+
|
|
83
92
|
.section-header {
|
|
84
93
|
text-wrap: balance;
|
|
85
94
|
flex-direction: column;
|
|
@@ -3218,7 +3218,7 @@ function manageArtifactAttachment(attachment) {
|
|
|
3218
3218
|
if (attachment.body != null) attachment.bodyEncoding ??= "base64";
|
|
3219
3219
|
}
|
|
3220
3220
|
//#endregion
|
|
3221
|
-
//#region node_modules/.pnpm/vitest@4.1.3_@types+node@25.5.2_happy-dom@20.8.
|
|
3221
|
+
//#region node_modules/.pnpm/vitest@4.1.3_@types+node@25.5.2_happy-dom@20.8.9_jsdom@30.0.1_vite@8.0.8_@types+node@25.5.2_esbuild@0.28.1_yaml@2.9.0_/node_modules/vitest/dist/chunks/utils.BX5Fg8C4.js
|
|
3222
3222
|
const NAME_WORKER_STATE = "__vitest_worker__";
|
|
3223
3223
|
function getWorkerState() {
|
|
3224
3224
|
const workerState = globalThis[NAME_WORKER_STATE];
|
|
@@ -3226,7 +3226,7 @@ function getWorkerState() {
|
|
|
3226
3226
|
return workerState;
|
|
3227
3227
|
}
|
|
3228
3228
|
//#endregion
|
|
3229
|
-
//#region node_modules/.pnpm/vitest@4.1.3_@types+node@25.5.2_happy-dom@20.8.
|
|
3229
|
+
//#region node_modules/.pnpm/vitest@4.1.3_@types+node@25.5.2_happy-dom@20.8.9_jsdom@30.0.1_vite@8.0.8_@types+node@25.5.2_esbuild@0.28.1_yaml@2.9.0_/node_modules/vitest/dist/chunks/benchmark.CX_oY03V.js
|
|
3230
3230
|
const benchFns = /* @__PURE__ */ new WeakMap();
|
|
3231
3231
|
const benchOptsMap = /* @__PURE__ */ new WeakMap();
|
|
3232
3232
|
const bench = createBenchmark(function(name, fn = noop, options = {}) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elements-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.27.
|
|
4
|
+
"version": "0.27.2",
|
|
5
5
|
"description": "A lightweight reactive UI library that transforms native HTMLElements into reactive components with signals. Ideal for framework-agnostic applications and web components.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"webcomponents",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"./ui/*": "./dist/ui/*"
|
|
119
119
|
},
|
|
120
120
|
"scripts": {
|
|
121
|
-
"build": "tsdown",
|
|
121
|
+
"build": "tsdown && node scripts/assert-dist.mjs",
|
|
122
122
|
"build:docs": "pnpm build && pnpm --filter elements-kit-docs build",
|
|
123
123
|
"build:storybook": "pnpm --filter elements-kit-storybook build",
|
|
124
124
|
"storybook": "pnpm --filter elements-kit-storybook dev",
|
|
@@ -133,6 +133,7 @@
|
|
|
133
133
|
"@types/react-dom": "^19.2.3",
|
|
134
134
|
"esbuild": "^0.28.1",
|
|
135
135
|
"happy-dom": "^20.8.9",
|
|
136
|
+
"jsdom": "^30.0.1",
|
|
136
137
|
"react": "^19.2.5",
|
|
137
138
|
"react-dom": "^19.2.5",
|
|
138
139
|
"tsdown": "0.22.0",
|