@kaizen/components 1.70.11 → 1.70.13

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.css CHANGED
@@ -2390,12 +2390,13 @@
2390
2390
  /** THIS IS AN AUTOGENERATED FILE **/
2391
2391
  .Content-module_content__ZeTRs {
2392
2392
  max-width: 1392px;
2393
- padding: 0 72px;
2393
+ margin: 0 72px;
2394
2394
  width: 100%;
2395
2395
  }
2396
2396
  @media (max-width: calc(1080px - 1px)) {
2397
2397
  .Content-module_content__ZeTRs {
2398
- padding: 0 12px;
2398
+ margin: 0 12px;
2399
+ width: calc(100% - 2 * 12px);
2399
2400
  }
2400
2401
  }
2401
2402
  /** THIS IS AN AUTOGENERATED FILE **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.70.11",
3
+ "version": "1.70.13",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -117,8 +117,8 @@
117
117
  "svgo": "^3.3.2",
118
118
  "tslib": "^2.8.1",
119
119
  "tsx": "^4.19.2",
120
- "@kaizen/design-tokens": "10.8.7",
121
- "@kaizen/package-bundler": "2.0.4"
120
+ "@kaizen/package-bundler": "2.0.4",
121
+ "@kaizen/design-tokens": "10.8.7"
122
122
  },
123
123
  "devDependenciesComments": {
124
124
  "sass": "Prevent deprecation warnings introduced in 1.80 as we plan to move away from sass",
@@ -3,10 +3,11 @@
3
3
 
4
4
  .content {
5
5
  max-width: $layout-content-max-width;
6
- padding: 0 $layout-content-side-margin;
6
+ margin: 0 $layout-content-side-margin;
7
7
  width: 100%;
8
8
 
9
9
  @media (max-width: calc(#{$layout-breakpoints-large} - 1px)) {
10
- padding: 0 $content-margin-width-on-medium-and-small;
10
+ margin: 0 $content-margin-width-on-medium-and-small;
11
+ width: calc(100% - 2 * #{$content-margin-width-on-medium-and-small});
11
12
  }
12
13
  }
@@ -4,7 +4,7 @@ import * as FilterDRPStories from './FilterDateRangePicker.stories'
4
4
 
5
5
  <Meta of={FilterDRPStories} />
6
6
 
7
- # Filter
7
+ # FilterDateRangePicker
8
8
 
9
9
  <ResourceLinks
10
10
  sourceCode="https://github.com/cultureamp/kaizen-design-system/tree/main/packages/components/src/FilterDateRangePicker"
@@ -4,7 +4,7 @@ import * as FilterMultiSelectStories from './FilterMultiSelect.stories'
4
4
 
5
5
  <Meta of={FilterMultiSelectStories} />
6
6
 
7
- # Filter Bar
7
+ # FilterMultiSelect
8
8
 
9
9
  <ResourceLinks
10
10
  sourceCode="https://github.com/cultureamp/kaizen-design-system/tree/main/packages/components/src/FilterMultiSelect"