@ifsworld/granite-components 8.0.0 → 9.0.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.
Files changed (35) hide show
  1. package/esm2020/date-picker/lib/date-picker.component.mjs +2 -2
  2. package/esm2020/date-picker/lib/date-range-picker.component.mjs +2 -2
  3. package/esm2020/lib/badge/badge.component.mjs +2 -2
  4. package/esm2020/lib/button/button.component.mjs +4 -4
  5. package/esm2020/lib/checkbox/checkbox.component.mjs +2 -2
  6. package/esm2020/lib/chips/chip-list.component.mjs +2 -2
  7. package/esm2020/lib/chips/chip.component.mjs +2 -2
  8. package/esm2020/lib/icon/icon.component.mjs +2 -2
  9. package/esm2020/lib/input-field/input-field.component.mjs +2 -2
  10. package/esm2020/lib/menu/menu-item.component.mjs +2 -2
  11. package/esm2020/lib/menu/menu-touch-close.component.mjs +2 -2
  12. package/esm2020/lib/menu/menu-touch-title.component.mjs +2 -2
  13. package/esm2020/lib/menu/menu.component.mjs +3 -3
  14. package/esm2020/lib/radio-button/radio-button.component.mjs +2 -2
  15. package/esm2020/lib/toggle-switch/toggle-switch.component.mjs +2 -2
  16. package/esm2020/table/lib/cell/table-data-cell.component.mjs +2 -2
  17. package/esm2020/table/lib/cell/table-header-cell.component.mjs +2 -2
  18. package/esm2020/tooltip/lib/tooltip.component.mjs +2 -2
  19. package/fesm2015/ifsworld-granite-components-date-picker.mjs +4 -4
  20. package/fesm2015/ifsworld-granite-components-date-picker.mjs.map +1 -1
  21. package/fesm2015/ifsworld-granite-components-table.mjs +4 -4
  22. package/fesm2015/ifsworld-granite-components-tooltip.mjs +2 -2
  23. package/fesm2015/ifsworld-granite-components-tooltip.mjs.map +1 -1
  24. package/fesm2015/ifsworld-granite-components.mjs +28 -28
  25. package/fesm2015/ifsworld-granite-components.mjs.map +1 -1
  26. package/fesm2020/ifsworld-granite-components-date-picker.mjs +4 -4
  27. package/fesm2020/ifsworld-granite-components-date-picker.mjs.map +1 -1
  28. package/fesm2020/ifsworld-granite-components-table.mjs +4 -4
  29. package/fesm2020/ifsworld-granite-components-tooltip.mjs +2 -2
  30. package/fesm2020/ifsworld-granite-components-tooltip.mjs.map +1 -1
  31. package/fesm2020/ifsworld-granite-components.mjs +28 -28
  32. package/fesm2020/ifsworld-granite-components.mjs.map +1 -1
  33. package/package.json +2 -3
  34. package/src/lib/core/style/_mixins.scss +2 -2
  35. package/src/lib/core/style/_tokens.scss +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ifsworld/granite-components",
3
- "version": "8.0.0",
3
+ "version": "9.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": ">=15.2.9",
@@ -11,7 +11,7 @@
11
11
  "@angular/platform-browser-dynamic": ">=15.2.9",
12
12
  "@ifsworld/granite-icons": ">=1.0.0",
13
13
  "@ifsworld/token-interfaces": ">=1.0.0",
14
- "@ifsworld/granite-tokens": ">=4.0.0",
14
+ "@ifsworld/granite-tokens": ">=5.0.0",
15
15
  "rxjs": ">=6.0.0",
16
16
  "@microsoft/applicationinsights-web": "^2.8.4",
17
17
  "@microsoft/applicationinsights-clickanalytics-js": "^2.8.4",
@@ -19,7 +19,6 @@
19
19
  "primeng": "^15.0.0",
20
20
  "@angular/forms": "15.2.9",
21
21
  "@storybook/addon-actions": "7.0.0",
22
- "puppeteer": "20.9.0",
23
22
  "@storybook/addon-viewport": "7.0.0"
24
23
  },
25
24
  "dependencies": {
@@ -340,7 +340,7 @@
340
340
  * Scrollbars are hidden by default and appears when element is hovered,
341
341
  * unless `$autoHide` parameter is supplied as `false`.
342
342
  */
343
- @mixin themedVerticalScroll($autoHide: true, $width: --granite-spacing-xs) {
343
+ @mixin themedVerticalScroll($autoHide: true, $width: --granite-spacing-4) {
344
344
  overflow-x: hidden;
345
345
 
346
346
  @if $autoHide {
@@ -360,7 +360,7 @@
360
360
 
361
361
  &::-webkit-scrollbar-thumb {
362
362
  background-color: var(--granite-color-border-hard);
363
- border-radius: calc(#{var(--granite-spacing-m)} * 0.125);
363
+ border-radius: calc(#{var(--granite-spacing-16)} * 0.125);
364
364
  }
365
365
 
366
366
  &::-webkit-scrollbar-track {
@@ -6,7 +6,7 @@ $layout-breakpoint-lg: 1280px !default;
6
6
  $layout-breakpoint-xl: 1920px !default;
7
7
 
8
8
  // Remove these when correct rem based tokens are exposed from design tokens
9
- $granite-base-rem: 1rem;
9
+ $granite-size-base-rem: 1rem;
10
10
  $granite-border-width-regular: 0.0625rem;
11
11
  $granite-outline-width-regular: 0.0625rem;
12
12
  $granite-outline-width-focus: 0.125rem;