@zvk/ui 0.1.9 → 0.1.11
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/CHANGELOG.md +16 -0
- package/README.md +4 -0
- package/dist/styles.css +26 -4
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.11](https://github.com/brandon-schabel/zvk/compare/v0.1.10...v0.1.11) (2026-06-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add composite component package ([dc0920f](https://github.com/brandon-schabel/zvk/commit/dc0920fe77dd2bd63015a40b3d7675fe8f1d0067))
|
|
9
|
+
* add theme presets and package improvements ([#19](https://github.com/brandon-schabel/zvk/issues/19)) ([867f955](https://github.com/brandon-schabel/zvk/commit/867f9556f7a60144cad4e747f2c032f2d5ede353))
|
|
10
|
+
* improve consumer migration support ([10b9e8a](https://github.com/brandon-schabel/zvk/commit/10b9e8ac106774eeba0be19db8522abbda02a422))
|
|
11
|
+
* improve package release workflow and repo maintainability ([#22](https://github.com/brandon-schabel/zvk/issues/22)) ([a41cb66](https://github.com/brandon-schabel/zvk/commit/a41cb66554496f241c5a8e30b29a76c8b8ca92b3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* harden popup positioning ([efb8c8a](https://github.com/brandon-schabel/zvk/commit/efb8c8a98c2b759f4e84a60f5ae292b1e8900907))
|
|
17
|
+
* restore preview source aliases ([6fd494a](https://github.com/brandon-schabel/zvk/commit/6fd494af071bc4dd3fe1685bce9cd5c44aa22bd6))
|
|
18
|
+
|
|
3
19
|
## [0.1.9](https://github.com/brandon-schabel/zvk/compare/v0.1.8...v0.1.9) (2026-06-19)
|
|
4
20
|
|
|
5
21
|
|
package/README.md
CHANGED
|
@@ -36,3 +36,7 @@ You may use it in personal, internal, or commercial applications, but you may
|
|
|
36
36
|
not redistribute, republish, resell, fork, mirror, or repackage it as a standalone
|
|
37
37
|
library or competing component system.
|
|
38
38
|
See [LICENSE.md](./LICENSE.md) for details.
|
|
39
|
+
|
|
40
|
+
## Repo Skill
|
|
41
|
+
|
|
42
|
+
Use `.codex/skills/use-zvk-ui/SKILL.md` when maintaining this package.
|
package/dist/styles.css
CHANGED
|
@@ -1498,6 +1498,10 @@
|
|
|
1498
1498
|
}
|
|
1499
1499
|
}
|
|
1500
1500
|
|
|
1501
|
+
.zvk-ui-input {
|
|
1502
|
+
padding-inline: var(--zvk-ui-control-padding-x);
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1501
1505
|
|
|
1502
1506
|
/* src/components/textarea/textarea.css */
|
|
1503
1507
|
@layer zvk-ui-components {
|
|
@@ -1553,6 +1557,11 @@
|
|
|
1553
1557
|
}
|
|
1554
1558
|
}
|
|
1555
1559
|
|
|
1560
|
+
.zvk-ui-textarea {
|
|
1561
|
+
padding-block: var(--zvk-ui-space-2);
|
|
1562
|
+
padding-inline: var(--zvk-ui-control-padding-x);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1556
1565
|
|
|
1557
1566
|
/* src/components/checkbox/checkbox.css */
|
|
1558
1567
|
@layer zvk-ui-components {
|
|
@@ -1580,7 +1589,7 @@
|
|
|
1580
1589
|
.zvk-ui-checkbox__control {
|
|
1581
1590
|
align-items: center;
|
|
1582
1591
|
background: var(--zvk-ui-control-background);
|
|
1583
|
-
border: 1px solid var(--zvk-ui-
|
|
1592
|
+
border: 1px solid var(--zvk-ui-control-border);
|
|
1584
1593
|
border-radius: var(--zvk-ui-radius-sm);
|
|
1585
1594
|
box-shadow: var(--zvk-ui-shadow-xs);
|
|
1586
1595
|
display: inline-flex;
|
|
@@ -1609,11 +1618,24 @@
|
|
|
1609
1618
|
border-color: var(--zvk-ui-color-primary);
|
|
1610
1619
|
}
|
|
1611
1620
|
|
|
1621
|
+
.zvk-ui-checkbox__input:indeterminate + .zvk-ui-checkbox__control {
|
|
1622
|
+
background: var(--zvk-ui-color-primary);
|
|
1623
|
+
border-color: var(--zvk-ui-color-primary);
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1612
1626
|
.zvk-ui-checkbox__input:checked + .zvk-ui-checkbox__control .zvk-ui-checkbox__indicator {
|
|
1613
1627
|
opacity: 1;
|
|
1614
1628
|
transform: rotate(45deg) scale(1) translate(-1px, -1px);
|
|
1615
1629
|
}
|
|
1616
1630
|
|
|
1631
|
+
.zvk-ui-checkbox__input:indeterminate + .zvk-ui-checkbox__control .zvk-ui-checkbox__indicator {
|
|
1632
|
+
block-size: 0;
|
|
1633
|
+
inline-size: 0.625rem;
|
|
1634
|
+
border-width: 0 0 2px;
|
|
1635
|
+
opacity: 1;
|
|
1636
|
+
transform: none;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1617
1639
|
.zvk-ui-checkbox__input:focus-visible + .zvk-ui-checkbox__control {
|
|
1618
1640
|
box-shadow: var(--zvk-ui-shadow-xs), var(--zvk-ui-focus-ring);
|
|
1619
1641
|
}
|
|
@@ -4481,7 +4503,7 @@
|
|
|
4481
4503
|
cursor: default;
|
|
4482
4504
|
display: flex;
|
|
4483
4505
|
gap: var(--zvk-ui-space-2);
|
|
4484
|
-
justify-content:
|
|
4506
|
+
justify-content: flex-start;
|
|
4485
4507
|
padding: var(--zvk-ui-space-2) var(--zvk-ui-space-3);
|
|
4486
4508
|
text-align: left;
|
|
4487
4509
|
user-select: none;
|
|
@@ -4962,7 +4984,7 @@
|
|
|
4962
4984
|
display: flex;
|
|
4963
4985
|
font: inherit;
|
|
4964
4986
|
gap: var(--zvk-ui-space-2);
|
|
4965
|
-
justify-content:
|
|
4987
|
+
justify-content: flex-start;
|
|
4966
4988
|
padding: var(--zvk-ui-space-2) var(--zvk-ui-space-3);
|
|
4967
4989
|
text-align: start;
|
|
4968
4990
|
}
|
|
@@ -5112,7 +5134,7 @@
|
|
|
5112
5134
|
align-items: center;
|
|
5113
5135
|
display: flex;
|
|
5114
5136
|
gap: var(--zvk-ui-space-2);
|
|
5115
|
-
justify-content:
|
|
5137
|
+
justify-content: flex-start;
|
|
5116
5138
|
padding: var(--zvk-ui-space-2) var(--zvk-ui-space-3);
|
|
5117
5139
|
text-align: start;
|
|
5118
5140
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvk/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "A polished, zero-runtime-dependency React component library for ZvkUi applications.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -344,7 +344,9 @@
|
|
|
344
344
|
"test:ssr": "vitest run tests/ssr --environment node",
|
|
345
345
|
"test:exports": "vitest run tests/exports --environment node",
|
|
346
346
|
"test:accessibility": "vitest run tests/accessibility",
|
|
347
|
+
"test:docs-examples": "bun run build && vitest run --config tests/docs-examples/vitest.config.ts",
|
|
347
348
|
"test:browser": "bunx playwright test --config playwright.config.ts",
|
|
349
|
+
"test:browser:webkit-smoke": "ZVK_UI_BROWSER_MATRIX=1 bunx playwright test --config playwright.config.ts --project=webkit --grep @cross-browser",
|
|
348
350
|
"test:types": "tsd",
|
|
349
351
|
"docs:lint": "bun run scripts/lint-docs.mjs",
|
|
350
352
|
"verify:style-contract": "bun run scripts/verify-style-contract.mjs",
|