design-zystem 1.0.222 → 1.0.224

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/index.js CHANGED
@@ -3190,6 +3190,7 @@ var StyledTableCell = import_styled_components28.default.div.withConfig({
3190
3190
  flex-grow: ${(props) => props.flexGrow || "1"};
3191
3191
  flex-shrink: ${(props) => props.flexShrink || "1"};
3192
3192
  flex-basis: 0;
3193
+ box-sizing: border-box;
3193
3194
  text-align: center;
3194
3195
  padding: ${(props) => props.padding || "8px"};
3195
3196
  white-space: nowrap;
@@ -3215,6 +3216,7 @@ var StyledTableHeaderCell = import_styled_components29.default.div.withConfig({
3215
3216
  flex-grow: ${(props) => props.flexGrow || "1"};
3216
3217
  flex-shrink: ${(props) => props.flexShrink || "1"};
3217
3218
  flex-basis: 0;
3219
+ box-sizing: border-box;
3218
3220
  padding: 8px;
3219
3221
  white-space: nowrap;
3220
3222
  overflow: hidden;
package/dist/index.mjs CHANGED
@@ -3104,6 +3104,7 @@ var StyledTableCell = styled28.div.withConfig({
3104
3104
  flex-grow: ${(props) => props.flexGrow || "1"};
3105
3105
  flex-shrink: ${(props) => props.flexShrink || "1"};
3106
3106
  flex-basis: 0;
3107
+ box-sizing: border-box;
3107
3108
  text-align: center;
3108
3109
  padding: ${(props) => props.padding || "8px"};
3109
3110
  white-space: nowrap;
@@ -3129,6 +3130,7 @@ var StyledTableHeaderCell = styled29.div.withConfig({
3129
3130
  flex-grow: ${(props) => props.flexGrow || "1"};
3130
3131
  flex-shrink: ${(props) => props.flexShrink || "1"};
3131
3132
  flex-basis: 0;
3133
+ box-sizing: border-box;
3132
3134
  padding: 8px;
3133
3135
  white-space: nowrap;
3134
3136
  overflow: hidden;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "design-zystem",
3
- "version": "1.0.222",
3
+ "version": "1.0.224",
4
4
  "description": "A React design system of importable components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -12,7 +12,8 @@
12
12
  "test": "vitest run --project unit",
13
13
  "storybook": "storybook dev -p 6006",
14
14
  "build-storybook": "storybook build",
15
- "lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0"
15
+ "lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
16
+ "chromatic": "npx chromatic --project-token={{CHROMATIC_PROJECT_TOKEN}}"
16
17
  },
17
18
  "peerDependencies": {
18
19
  "@types/react": "^18.0.0",