@landtrustinc/design-system 1.2.6 → 1.2.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/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.6",
3
+ "version": "1.2.7",
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=$CHROMATIC_PROJECT_TOKEN",
32
+ "chromatic": "npx chromatic --project-token=chpt_9fd122315a464bc",
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",