@landtrustinc/design-system 1.2.3 → 1.2.5-beta.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/README.md +36 -1
- package/dist/index.d.ts +18 -2
- package/dist/index.js +520 -350
- package/dist/index.js.map +1 -1
- package/dist/styles.ts +3 -0
- package/package.json +4 -2
package/dist/styles.ts
CHANGED
|
@@ -12,6 +12,8 @@ export const media = {
|
|
|
12
12
|
xl: `@media (min-width: ${screens.xl})`,
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
+
export const breakpoints = [screens.sm, screens.md, screens.lg, screens.xl];
|
|
16
|
+
|
|
15
17
|
export const colors = {
|
|
16
18
|
gray: {
|
|
17
19
|
100: '#f7fafc',
|
|
@@ -272,6 +274,7 @@ export const zIndex = {
|
|
|
272
274
|
export const ThemeTokens = {
|
|
273
275
|
screens,
|
|
274
276
|
media,
|
|
277
|
+
breakpoints,
|
|
275
278
|
colors,
|
|
276
279
|
fonts,
|
|
277
280
|
fontWeights,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@landtrustinc/design-system",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Design system components for LandTrust applications",
|
|
6
6
|
"homepage": "https://github.com/LandtrustInc/landtrust-ui/tree/main/packages/design-system",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"build": "tsup",
|
|
30
30
|
"build-storybook": "storybook build",
|
|
31
31
|
"build:types": "tsc --project tsconfig.json",
|
|
32
|
-
"chromatic": "npx chromatic --project-token
|
|
32
|
+
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
|
|
33
33
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
34
34
|
"dev": "tsup --watch",
|
|
35
35
|
"lint-staged:eslint": "eslint --max-warnings=0 --fix --no-ignore",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"eslint-plugin-storybook": "^0.8.0",
|
|
85
85
|
"prettier": "^2.2.0",
|
|
86
86
|
"react": "^18.2.0",
|
|
87
|
+
"react-loading-skeleton": "^3.5.0",
|
|
87
88
|
"storybook": "^8.1.1",
|
|
88
89
|
"tsc-files": "^1.1.4",
|
|
89
90
|
"tsup": "^8.0.2",
|
|
@@ -95,6 +96,7 @@
|
|
|
95
96
|
"@emotion/styled": "^11.11.0",
|
|
96
97
|
"react": "^18.2.0",
|
|
97
98
|
"react-dom": "^18.2.0",
|
|
99
|
+
"react-loading-skeleton": "^3.5.0",
|
|
98
100
|
"styled-system": "^5.1.5"
|
|
99
101
|
},
|
|
100
102
|
"publishConfig": {
|