@knapsack/sandbox-components 4.72.1--canary.c0fbbf3.0 → 4.72.1
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 +23 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
# v4.72.1 (Thu Jan 16 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Merge branch 'latest' into feat/ksp-5921-shadcn-button-sandbox-setup ([@brittanysmart](https://github.com/brittanysmart))
|
|
6
|
+
- remove dark mode from shadcn theme for testing simplicity ([@brittanysmart](https://github.com/brittanysmart))
|
|
7
|
+
- implement ShadCN button with full configuration and styling ([@brittanysmart](https://github.com/brittanysmart))
|
|
8
|
+
- remove unused utils export from sandbox-components package.json ([@brittanysmart](https://github.com/brittanysmart))
|
|
9
|
+
- restore original tailwind config and update dep ([@brittanysmart](https://github.com/brittanysmart))
|
|
10
|
+
- add shadcn Button component ([@brittanysmart](https://github.com/brittanysmart))
|
|
11
|
+
|
|
12
|
+
#### 🏠 Internal
|
|
13
|
+
|
|
14
|
+
- Add Shadcn button for testing/debugging [#5385](https://github.com/knapsack-labs/app-monorepo/pull/5385) ([@brittanysmart](https://github.com/brittanysmart))
|
|
15
|
+
- adjust how IDP init SSO callback page checks user [#5325](https://github.com/knapsack-labs/app-monorepo/pull/5325) ([@EvanLovely](https://github.com/EvanLovely))
|
|
16
|
+
|
|
17
|
+
#### Authors: 2
|
|
18
|
+
|
|
19
|
+
- Brittany Smart ([@brittanysmart](https://github.com/brittanysmart))
|
|
20
|
+
- Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
1
24
|
# v4.72.0 (Fri Jan 03 2025)
|
|
2
25
|
|
|
3
26
|
#### 🏠 Internal
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/sandbox-components",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.72.1
|
|
4
|
+
"version": "4.72.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./css": "./dist/css/ks-sandbox-styles.css",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"vue": "^3.5.12"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@knapsack/eslint-config-starter": "4.72.1
|
|
52
|
-
"@knapsack/postcss-config-starter": "4.72.1
|
|
53
|
-
"@knapsack/prettier-config": "4.72.1
|
|
54
|
-
"@knapsack/sandbox-tokens": "4.72.1
|
|
55
|
-
"@knapsack/typescript-config-starter": "4.72.1
|
|
51
|
+
"@knapsack/eslint-config-starter": "4.72.1",
|
|
52
|
+
"@knapsack/postcss-config-starter": "4.72.1",
|
|
53
|
+
"@knapsack/prettier-config": "4.72.1",
|
|
54
|
+
"@knapsack/sandbox-tokens": "4.72.1",
|
|
55
|
+
"@knapsack/typescript-config-starter": "4.72.1",
|
|
56
56
|
"@types/node": "^20.17.11",
|
|
57
57
|
"@types/react": "^18.3.12",
|
|
58
58
|
"esbuild": "^0.24.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"directory": "apps/ui/libs/sandbox-components",
|
|
73
73
|
"type": "git"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "62dbcbf1898931f5e9b7abe5a19cc2318ab52af8"
|
|
76
76
|
}
|