@knapsack/sandbox-components 4.54.6 → 4.54.7
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 +4 -2
- package/dist/css/ks-sandbox-styles.css +58 -13
- package/dist/react/card-base.d.ts +4 -3
- package/dist/react/card-base.d.ts.map +1 -1
- package/dist/react/card-base.js +16 -2
- package/dist/react/card-base.js.map +1 -1
- package/dist/react/card-template-demo.js +1 -1
- package/dist/react/card-template-demo.js.map +1 -1
- package/dist/react/card.d.ts +4 -3
- package/dist/react/card.d.ts.map +1 -1
- package/dist/react/card.js +2 -12
- package/dist/react/card.js.map +1 -1
- package/dist/react/hero.d.ts +1 -0
- package/dist/react/hero.d.ts.map +1 -1
- package/dist/react/hero.js +1 -1
- package/dist/react/hero.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# v4.54.6 (
|
|
1
|
+
# v4.54.6 (Fri May 17 2024)
|
|
2
2
|
|
|
3
3
|
#### 🐛 Bug Fix
|
|
4
4
|
|
|
@@ -7,13 +7,15 @@
|
|
|
7
7
|
|
|
8
8
|
#### 🏠 Internal
|
|
9
9
|
|
|
10
|
+
- update figma parsing logic to handle string props [#4049](https://github.com/knapsack-labs/app-monorepo/pull/4049) ([@mabry1985](https://github.com/mabry1985) [@EvanLovely](https://github.com/EvanLovely))
|
|
10
11
|
- connect figma frames to prototype import [#4014](https://github.com/knapsack-labs/app-monorepo/pull/4014) ([@mabry1985](https://github.com/mabry1985))
|
|
11
12
|
- adds api field for figma frames to get children data, sets up graphql pipeline [#4012](https://github.com/knapsack-labs/app-monorepo/pull/4012) ([@mabry1985](https://github.com/mabry1985))
|
|
12
13
|
- Update dependency clsx to ^2.1.1 [#4082](https://github.com/knapsack-labs/app-monorepo/pull/4082) ([@renovate[bot]](https://github.com/renovate[bot]) [@greylabel](https://github.com/greylabel))
|
|
13
14
|
|
|
14
|
-
#### Authors:
|
|
15
|
+
#### Authors: 4
|
|
15
16
|
|
|
16
17
|
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
18
|
+
- Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
|
|
17
19
|
- Grant Gaudet ([@greylabel](https://github.com/greylabel))
|
|
18
20
|
- Josh Mabry ([@mabry1985](https://github.com/mabry1985))
|
|
19
21
|
|
|
@@ -1182,16 +1182,38 @@ body {
|
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
1184
|
.card {
|
|
1185
|
-
border: solid 1px
|
|
1186
|
-
border: solid 1px var(--color-border, '#ccc');
|
|
1185
|
+
border: solid 1px var(--color-border);
|
|
1187
1186
|
border-radius: 0.5rem;
|
|
1188
1187
|
border-radius: var(--border-radius, 0.5rem);
|
|
1188
|
+
background: #fff;
|
|
1189
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
1190
|
+
padding: 2rem;
|
|
1191
|
+
min-width: 20rem;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.card > * {
|
|
1195
|
+
margin-bottom: 1rem;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.card > header {
|
|
1199
|
+
font-size: 1.125rem;
|
|
1200
|
+
font-weight: 600;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.card > .card-children {
|
|
1204
|
+
display: flex;
|
|
1205
|
+
flex-direction: column;
|
|
1206
|
+
width: -moz-fit-content;
|
|
1207
|
+
width: fit-content;
|
|
1208
|
+
gap: 1rem;
|
|
1189
1209
|
}
|
|
1190
1210
|
|
|
1191
1211
|
.grid {
|
|
1192
1212
|
display: grid;
|
|
1193
|
-
|
|
1194
|
-
|
|
1213
|
+
background-color: #d9d9d9;
|
|
1214
|
+
padding: 5rem;
|
|
1215
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1216
|
+
grid-template-rows: repeat(2, 1fr);
|
|
1195
1217
|
grid-gap: 12px;
|
|
1196
1218
|
grid-gap: var(--spacing-medium, 10px);
|
|
1197
1219
|
gap: 12px;
|
|
@@ -1199,25 +1221,48 @@ body {
|
|
|
1199
1221
|
}
|
|
1200
1222
|
|
|
1201
1223
|
.grid--gap-small {
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1224
|
+
gap: 8px;
|
|
1225
|
+
gap: var(--spacing-small, 5px);
|
|
1226
|
+
}
|
|
1205
1227
|
|
|
1206
1228
|
.grid--gap-medium {
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1229
|
+
gap: 12px;
|
|
1230
|
+
gap: var(--spacing-medium, 10px);
|
|
1231
|
+
}
|
|
1210
1232
|
|
|
1211
1233
|
.grid--gap-large {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1234
|
+
gap: 16px;
|
|
1235
|
+
gap: var(--spacing-large, 20px);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
@media (max-width: 1200px) {
|
|
1239
|
+
.grid {
|
|
1240
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1241
|
+
grid-template-rows: repeat(2, 1fr);
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
@media (max-width: 768px) {
|
|
1246
|
+
.grid {
|
|
1247
|
+
grid-template-columns: 1fr;
|
|
1248
|
+
grid-template-rows: repeat(4, 1fr);
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
@media (max-width: 480px) {
|
|
1253
|
+
.grid {
|
|
1254
|
+
grid-template-columns: 1fr;
|
|
1255
|
+
grid-template-rows: repeat(4, 1fr);
|
|
1256
|
+
padding: 2rem;
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1215
1259
|
|
|
1216
1260
|
.hero {
|
|
1217
1261
|
background-size: cover;
|
|
1218
1262
|
background-position: 50%;
|
|
1219
1263
|
background-repeat: no-repeat;
|
|
1220
1264
|
height: 500px;
|
|
1265
|
+
width: 100%;
|
|
1221
1266
|
}
|
|
1222
1267
|
|
|
1223
1268
|
.hover\:border-neutral-100:hover {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const CardBase: React.VFC<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
borderRadius: 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
heading?: string;
|
|
5
|
+
content?: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
6
7
|
}>;
|
|
7
8
|
//# sourceMappingURL=card-base.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card-base.d.ts","sourceRoot":"","sources":["../../src/react/card-base.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"card-base.d.ts","sourceRoot":"","sources":["../../src/react/card-base.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,GAAG,CAAC;IAC/B,YAAY,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CA0BA,CAAC"}
|
package/dist/react/card-base.js
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect } from 'react';
|
|
2
3
|
import clsx from 'clsx';
|
|
3
|
-
export const CardBase = ({
|
|
4
|
+
export const CardBase = ({ borderRadius, children, content, heading }) => {
|
|
5
|
+
// border-radius: var(--border-radius, 0.5rem);
|
|
6
|
+
// set the css var for --border-radius using a switch on the sizes
|
|
7
|
+
useEffect(() => {
|
|
8
|
+
const root = document.documentElement;
|
|
9
|
+
const borderRadiusMap = {
|
|
10
|
+
sm: '0.5rem',
|
|
11
|
+
md: '0.75rem',
|
|
12
|
+
lg: '1rem',
|
|
13
|
+
xl: '1.5rem',
|
|
14
|
+
};
|
|
15
|
+
root.style.setProperty('--border-radius', borderRadiusMap[borderRadius]);
|
|
16
|
+
}, [borderRadius]);
|
|
4
17
|
return (_jsxs("aside", { className: clsx({
|
|
5
18
|
card: true,
|
|
6
|
-
|
|
19
|
+
[`border-radius-${borderRadius}`]: borderRadius,
|
|
20
|
+
}), children: [heading && _jsx("header", { children: heading }), content && _jsx("p", { children: content }), _jsx("div", { className: "card-children", children: children })] }));
|
|
7
21
|
};
|
|
8
22
|
//# sourceMappingURL=card-base.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card-base.js","sourceRoot":"","sources":["../../src/react/card-base.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"card-base.js","sourceRoot":"","sources":["../../src/react/card-base.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,MAAM,CAAC,MAAM,QAAQ,GAKhB,CAAC,EAAE,YAAY,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE;IACpD,+CAA+C;IAC/C,kEAAkE;IAElE,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,IAAI,GAAG,QAAQ,CAAC,eAAe,CAAC;QACtC,MAAM,eAAe,GAAG;YACtB,EAAE,EAAE,QAAQ;YACZ,EAAE,EAAE,SAAS;YACb,EAAE,EAAE,MAAM;YACV,EAAE,EAAE,QAAQ;SACb,CAAC;QACF,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC,CAAC;IAC3E,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IACnB,OAAO,CACL,iBACE,SAAS,EAAE,IAAI,CAAC;YACd,IAAI,EAAE,IAAI;YACV,CAAC,iBAAiB,YAAY,EAAE,CAAC,EAAE,YAAY;SAChD,CAAC,aAED,OAAO,IAAI,2BAAS,OAAO,GAAU,EACrC,OAAO,IAAI,sBAAI,OAAO,GAAK,EAC5B,cAAK,SAAS,EAAC,eAAe,YAAE,QAAQ,GAAO,IACzC,CACT,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Card } from './card.js';
|
|
3
3
|
import { Badge } from './badge.js';
|
|
4
|
-
export const CardDemo1 = () => (_jsx(Card, {
|
|
4
|
+
export const CardDemo1 = () => (_jsx(Card, { heading: "Hello Card World!", content: "You are in a card", borderRadius: "lg", children: _jsxs("div", { children: [_jsx(Badge, { type: "primary", children: "4" }), " new messages"] }) }));
|
|
5
5
|
//# sourceMappingURL=card-template-demo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card-template-demo.js","sourceRoot":"","sources":["../../src/react/card-template-demo.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,EAAE,CAAC,CAC7B,KAAC,IAAI,IACH,
|
|
1
|
+
{"version":3,"file":"card-template-demo.js","sourceRoot":"","sources":["../../src/react/card-template-demo.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,EAAE,CAAC,CAC7B,KAAC,IAAI,IACH,OAAO,EAAC,mBAAmB,EAC3B,OAAO,EAAC,mBAAmB,EAC3B,YAAY,EAAC,IAAI,YAEjB,0BACE,KAAC,KAAK,IAAC,IAAI,EAAC,SAAS,kBAAU,qBAC3B,GACD,CACR,CAAC"}
|
package/dist/react/card.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const Card: React.VFC<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
borderRadius?: 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
heading?: string;
|
|
5
|
+
content?: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
6
7
|
}>;
|
|
7
8
|
//# sourceMappingURL=card.d.ts.map
|
package/dist/react/card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../src/react/card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC;IAC3B,
|
|
1
|
+
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../src/react/card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC;IAC3B,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACzC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAMA,CAAC"}
|
package/dist/react/card.js
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { CardBase } from './card-base.js';
|
|
3
|
-
export const Card = ({
|
|
4
|
-
|
|
5
|
-
switch (image) {
|
|
6
|
-
case 'wide':
|
|
7
|
-
return 'https://knapsack.imgix.net/site/ks-sandbox/wide-rb9p92zdz3.png';
|
|
8
|
-
case 'tall':
|
|
9
|
-
return 'https://knapsack.imgix.net/site/ks-sandbox/tall-lllfl2y1nz.png';
|
|
10
|
-
case 'none':
|
|
11
|
-
return '';
|
|
12
|
-
}
|
|
13
|
-
})();
|
|
14
|
-
return _jsx(CardBase, { title: title, footer: footer, imageSrc: imgUrl });
|
|
3
|
+
export const Card = ({ borderRadius, children, content, heading }) => {
|
|
4
|
+
return (_jsx(CardBase, { borderRadius: borderRadius, heading: heading, content: content, children: children }));
|
|
15
5
|
};
|
|
16
6
|
//# sourceMappingURL=card.js.map
|
package/dist/react/card.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card.js","sourceRoot":"","sources":["../../src/react/card.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C,MAAM,CAAC,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"card.js","sourceRoot":"","sources":["../../src/react/card.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C,MAAM,CAAC,MAAM,IAAI,GAKZ,CAAC,EAAE,YAAY,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE;IACpD,OAAO,CACL,KAAC,QAAQ,IAAC,YAAY,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,YACrE,QAAQ,GACA,CACZ,CAAC;AACJ,CAAC,CAAC"}
|
package/dist/react/hero.d.ts
CHANGED
package/dist/react/hero.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hero.d.ts","sourceRoot":"","sources":["../../src/react/hero.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,SAAS;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"hero.d.ts","sourceRoot":"","sources":["../../src/react/hero.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,SAAS;IACjB,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAqDpC,CAAC"}
|
package/dist/react/hero.js
CHANGED
|
@@ -3,7 +3,7 @@ import clsx from 'clsx';
|
|
|
3
3
|
/**
|
|
4
4
|
* @todo finish extracting tailwind classes out to a css file
|
|
5
5
|
*/
|
|
6
|
-
export const Hero = ({ title = 'The most comprehensive & feature-rich Doodad UI Kit ever created', ctaLabel = 'See More', imageUrl = 'https://mdbcdn.b-cdn.net/img/new/slides/146.webp', }) => {
|
|
6
|
+
export const Hero = ({ height = 'full', title = 'The most comprehensive & feature-rich Doodad UI Kit ever created', ctaLabel = 'See More', imageUrl = 'https://mdbcdn.b-cdn.net/img/new/slides/146.webp', }) => {
|
|
7
7
|
return (_jsx("div", { className: clsx({
|
|
8
8
|
hero: true,
|
|
9
9
|
}), style: {
|
package/dist/react/hero.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hero.js","sourceRoot":"","sources":["../../src/react/hero.tsx"],"names":[],"mappings":";AACA,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"hero.js","sourceRoot":"","sources":["../../src/react/hero.tsx"],"names":[],"mappings":";AACA,OAAO,IAAI,MAAM,MAAM,CAAC;AASxB;;GAEG;AACH,MAAM,CAAC,MAAM,IAAI,GAAwB,CAAC,EACxC,MAAM,GAAG,MAAM,EACf,KAAK,GAAG,kEAAkE,EAC1E,QAAQ,GAAG,UAAU,EACrB,QAAQ,GAAG,kDAAkD,GAC9D,EAAE,EAAE;IACH,OAAO,CACL,cACE,SAAS,EAAE,IAAI,CAAC;YACd,IAAI,EAAE,IAAI;SACX,CAAC,EACF,KAAK,EAAE;YACL,eAAe,EAAE,OAAO,QAAQ,GAAG;SACpC,YAED,cACE,SAAS,EAAE,IAAI,CAAC;gBACd,8FAA8F,EAC5F,IAAI,EAAE,kHAAkH;aAC3H,CAAC,YAEF,cACE,SAAS,EAAE,IAAI,CAAC;oBACd,yCAAyC,EAAE,IAAI,EAAE,oDAAoD;iBACtG,CAAC,YAEF,eACE,SAAS,EAAE,IAAI,CAAC;wBACd,sCAAsC,EAAE,IAAI,EAAE,iDAAiD;qBAChG,CAAC,aAEF,aACE,SAAS,EAAE,IAAI,CAAC;gCACd,sEAAsE,EACpE,IAAI,EAAE,iFAAiF;6BAC1F,CAAC,YAED,KAAK,GACH,EACL,iBACE,IAAI,EAAC,QAAQ,EACb,SAAS,EAAE,IAAI,CAAC;gCACd,8XAA8X,EAC5X,IAAI,EAAE,yYAAyY;6BAClZ,CAAC,YAED,QAAQ,GACF,IACL,GACF,GACF,GACF,CACP,CAAC;AACJ,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/sandbox-components",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.54.
|
|
4
|
+
"version": "4.54.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./css": "./dist/css/ks-sandbox-styles.css",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"vue": "^3.2.47"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@knapsack/eslint-config-starter": "4.54.
|
|
41
|
-
"@knapsack/postcss-config-starter": "4.54.
|
|
42
|
-
"@knapsack/prettier-config": "4.54.
|
|
43
|
-
"@knapsack/sandbox-tokens": "4.54.
|
|
44
|
-
"@knapsack/typescript-config-starter": "4.54.
|
|
40
|
+
"@knapsack/eslint-config-starter": "4.54.7",
|
|
41
|
+
"@knapsack/postcss-config-starter": "4.54.7",
|
|
42
|
+
"@knapsack/prettier-config": "4.54.7",
|
|
43
|
+
"@knapsack/sandbox-tokens": "4.54.7",
|
|
44
|
+
"@knapsack/typescript-config-starter": "4.54.7",
|
|
45
45
|
"@types/node": "^20.11.30",
|
|
46
46
|
"@types/react": "^18.0.27",
|
|
47
47
|
"eslint": "^8.57.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"directory": "apps/ui/libs/sandbox-components",
|
|
60
60
|
"type": "git"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "75cd936019982a0df372b3447c11cfdfed41edb1"
|
|
63
63
|
}
|