@knapsack/sandbox-components 4.87.0--canary.6728.2b5203b.0 → 4.87.0--canary.6697.69c7d06.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 +13 -0
- package/dist/css/ks-sandbox-styles.css +3 -9
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v4.86.6 (Wed Oct 15 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- KSP-7265 ensure complete cleanup of blocks and blockCollections when deleting [#6727](https://github.com/knapsack-labs/app-monorepo/pull/6727) ([@EmmanuelVelez](https://github.com/EmmanuelVelez))
|
|
6
|
+
- Merge branch 'latest' into feature/ksp-7265-deleting-tab-does-not-delete-indiviudal-blocks ([@EmmanuelVelez](https://github.com/EmmanuelVelez))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- [@EmmanuelVelez](https://github.com/EmmanuelVelez)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v4.86.2 (Wed Oct 08 2025)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
|
@@ -354,7 +354,6 @@
|
|
|
354
354
|
/* Prevent font size inflation */
|
|
355
355
|
|
|
356
356
|
html {
|
|
357
|
-
-webkit-text-size-adjust: none;
|
|
358
357
|
text-size-adjust: none;
|
|
359
358
|
}
|
|
360
359
|
|
|
@@ -411,8 +410,7 @@ h4 {
|
|
|
411
410
|
/* A elements that don't have a class get default styles */
|
|
412
411
|
|
|
413
412
|
a:not([class]) {
|
|
414
|
-
|
|
415
|
-
text-decoration-skip-ink: auto;
|
|
413
|
+
text-decoration-skip-ink: auto;
|
|
416
414
|
color: currentColor;
|
|
417
415
|
}
|
|
418
416
|
|
|
@@ -554,7 +552,7 @@ textarea:not([rows]) {
|
|
|
554
552
|
--tw-contain-style: ;
|
|
555
553
|
}
|
|
556
554
|
|
|
557
|
-
/* ! tailwindcss v3.4.
|
|
555
|
+
/* ! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com */
|
|
558
556
|
|
|
559
557
|
/*
|
|
560
558
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
@@ -626,8 +624,7 @@ Add the correct text decoration in Chrome, Edge, and Safari.
|
|
|
626
624
|
|
|
627
625
|
abbr:where([title]) {
|
|
628
626
|
text-decoration: underline;
|
|
629
|
-
|
|
630
|
-
text-decoration: underline dotted;
|
|
627
|
+
text-decoration: underline dotted;
|
|
631
628
|
}
|
|
632
629
|
|
|
633
630
|
/*
|
|
@@ -1342,9 +1339,7 @@ video {
|
|
|
1342
1339
|
}
|
|
1343
1340
|
|
|
1344
1341
|
.transition {
|
|
1345
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
1346
1342
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1347
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
1348
1343
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1349
1344
|
transition-duration: 150ms;
|
|
1350
1345
|
}
|
|
@@ -1705,7 +1700,6 @@ body {
|
|
|
1705
1700
|
}
|
|
1706
1701
|
|
|
1707
1702
|
.menu li a {
|
|
1708
|
-
-webkit-text-decoration: none;
|
|
1709
1703
|
text-decoration: none;
|
|
1710
1704
|
color: #FFFFFF;
|
|
1711
1705
|
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.6697.69c7d06.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./css": "./dist/css/ks-sandbox-styles.css",
|
|
@@ -49,18 +49,18 @@
|
|
|
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.
|
|
57
|
-
"@types/node": "^20.
|
|
58
|
-
"@types/react": "^18.3.
|
|
52
|
+
"@knapsack/eslint-config-starter": "4.87.0--canary.6697.69c7d06.0",
|
|
53
|
+
"@knapsack/postcss-config-starter": "4.87.0--canary.6697.69c7d06.0",
|
|
54
|
+
"@knapsack/prettier-config": "4.87.0--canary.6697.69c7d06.0",
|
|
55
|
+
"@knapsack/sandbox-tokens": "4.87.0--canary.6697.69c7d06.0",
|
|
56
|
+
"@knapsack/typescript-config-starter": "4.87.0--canary.6697.69c7d06.0",
|
|
57
|
+
"@types/node": "^20.19.22",
|
|
58
|
+
"@types/react": "^18.3.26",
|
|
59
59
|
"esbuild": "^0.25.6",
|
|
60
60
|
"eslint": "^8.57.0",
|
|
61
61
|
"npm-run-all2": "^5.0.2",
|
|
62
62
|
"postcss-cli": "^9.1.0",
|
|
63
|
-
"tailwindcss": "^3.4.
|
|
63
|
+
"tailwindcss": "^3.4.18",
|
|
64
64
|
"typescript": "^5.9.2"
|
|
65
65
|
},
|
|
66
66
|
"license": "GPL-2.0-or-later",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"directory": "apps/ui/libs/sandbox-components",
|
|
73
73
|
"type": "git"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "69c7d0645fd7df2e25d0b5fcfe30c756eaed8c6c"
|
|
76
76
|
}
|