@knapsack/sandbox-components 4.87.0--canary.6697.69c7d06.0 → 4.87.0--canary.6838.454711c.0
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 +20 -0
- package/dist/css/ks-sandbox-styles.css +6 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# v4.86.7 (Mon Oct 27 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Merge branch 'latest' into sxa-KSP-7311 ([@sxalexander](https://github.com/sxalexander))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- Add nested, inlined demos to pattern responses. Includes template resolution and props examples [#6734](https://github.com/knapsack-labs/app-monorepo/pull/6734) ([@sxalexander](https://github.com/sxalexander))
|
|
10
|
+
- fix(deps): update dependency tailwindcss to ^3.4.18 [#6771](https://github.com/knapsack-labs/app-monorepo/pull/6771) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
11
|
+
- fix(deps): update node.js to v20.19.5 [#6337](https://github.com/knapsack-labs/app-monorepo/pull/6337) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
12
|
+
- fix(deps): update dependency @types/react to ^18.3.26 [#6750](https://github.com/knapsack-labs/app-monorepo/pull/6750) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
13
|
+
|
|
14
|
+
#### Authors: 2
|
|
15
|
+
|
|
16
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
17
|
+
- Sam Alexander ([@sxalexander](https://github.com/sxalexander))
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
1
21
|
# v4.86.6 (Wed Oct 15 2025)
|
|
2
22
|
|
|
3
23
|
#### 🐛 Bug Fix
|
|
@@ -354,6 +354,7 @@
|
|
|
354
354
|
/* Prevent font size inflation */
|
|
355
355
|
|
|
356
356
|
html {
|
|
357
|
+
-webkit-text-size-adjust: none;
|
|
357
358
|
text-size-adjust: none;
|
|
358
359
|
}
|
|
359
360
|
|
|
@@ -410,7 +411,8 @@ h4 {
|
|
|
410
411
|
/* A elements that don't have a class get default styles */
|
|
411
412
|
|
|
412
413
|
a:not([class]) {
|
|
413
|
-
text-decoration-skip
|
|
414
|
+
-webkit-text-decoration-skip: ink;
|
|
415
|
+
text-decoration-skip-ink: auto;
|
|
414
416
|
color: currentColor;
|
|
415
417
|
}
|
|
416
418
|
|
|
@@ -624,7 +626,8 @@ Add the correct text decoration in Chrome, Edge, and Safari.
|
|
|
624
626
|
|
|
625
627
|
abbr:where([title]) {
|
|
626
628
|
text-decoration: underline;
|
|
627
|
-
text-decoration: underline dotted;
|
|
629
|
+
-webkit-text-decoration: underline dotted;
|
|
630
|
+
text-decoration: underline dotted;
|
|
628
631
|
}
|
|
629
632
|
|
|
630
633
|
/*
|
|
@@ -1700,6 +1703,7 @@ body {
|
|
|
1700
1703
|
}
|
|
1701
1704
|
|
|
1702
1705
|
.menu li a {
|
|
1706
|
+
-webkit-text-decoration: none;
|
|
1703
1707
|
text-decoration: none;
|
|
1704
1708
|
color: #FFFFFF;
|
|
1705
1709
|
display: block;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/sandbox-components",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.87.0--canary.
|
|
4
|
+
"version": "4.87.0--canary.6838.454711c.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./css": "./dist/css/ks-sandbox-styles.css",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@custom-elements-manifest/analyzer": "^0.10.4",
|
|
52
|
-
"@knapsack/eslint-config-starter": "4.87.0--canary.
|
|
53
|
-
"@knapsack/postcss-config-starter": "4.87.0--canary.
|
|
54
|
-
"@knapsack/prettier-config": "4.87.0--canary.
|
|
55
|
-
"@knapsack/sandbox-tokens": "4.87.0--canary.
|
|
56
|
-
"@knapsack/typescript-config-starter": "4.87.0--canary.
|
|
52
|
+
"@knapsack/eslint-config-starter": "4.87.0--canary.6838.454711c.0",
|
|
53
|
+
"@knapsack/postcss-config-starter": "4.87.0--canary.6838.454711c.0",
|
|
54
|
+
"@knapsack/prettier-config": "4.87.0--canary.6838.454711c.0",
|
|
55
|
+
"@knapsack/sandbox-tokens": "4.87.0--canary.6838.454711c.0",
|
|
56
|
+
"@knapsack/typescript-config-starter": "4.87.0--canary.6838.454711c.0",
|
|
57
57
|
"@types/node": "^20.19.22",
|
|
58
58
|
"@types/react": "^18.3.26",
|
|
59
59
|
"esbuild": "^0.25.6",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"directory": "apps/ui/libs/sandbox-components",
|
|
73
73
|
"type": "git"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "454711c25626c73ab76abd95c4d32a5a67affb30"
|
|
76
76
|
}
|