@ifsworld/granite-components 8.0.0 → 10.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 (36) 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/arrange-grid/arrange-grid-item.component.mjs +4 -4
  4. package/esm2020/lib/badge/badge.component.mjs +2 -2
  5. package/esm2020/lib/button/button.component.mjs +4 -4
  6. package/esm2020/lib/checkbox/checkbox.component.mjs +2 -2
  7. package/esm2020/lib/chips/chip-list.component.mjs +2 -2
  8. package/esm2020/lib/chips/chip.component.mjs +2 -2
  9. package/esm2020/lib/icon/icon.component.mjs +2 -2
  10. package/esm2020/lib/input-field/input-field.component.mjs +2 -2
  11. package/esm2020/lib/menu/menu-item.component.mjs +2 -2
  12. package/esm2020/lib/menu/menu-touch-close.component.mjs +2 -2
  13. package/esm2020/lib/menu/menu-touch-title.component.mjs +2 -2
  14. package/esm2020/lib/menu/menu.component.mjs +3 -3
  15. package/esm2020/lib/radio-button/radio-button.component.mjs +2 -2
  16. package/esm2020/lib/toggle-switch/toggle-switch.component.mjs +2 -2
  17. package/esm2020/table/lib/cell/table-data-cell.component.mjs +2 -2
  18. package/esm2020/table/lib/cell/table-header-cell.component.mjs +2 -2
  19. package/esm2020/tooltip/lib/tooltip.component.mjs +2 -2
  20. package/fesm2015/ifsworld-granite-components-date-picker.mjs +4 -4
  21. package/fesm2015/ifsworld-granite-components-date-picker.mjs.map +1 -1
  22. package/fesm2015/ifsworld-granite-components-table.mjs +4 -4
  23. package/fesm2015/ifsworld-granite-components-tooltip.mjs +2 -2
  24. package/fesm2015/ifsworld-granite-components-tooltip.mjs.map +1 -1
  25. package/fesm2015/ifsworld-granite-components.mjs +31 -31
  26. package/fesm2015/ifsworld-granite-components.mjs.map +1 -1
  27. package/fesm2020/ifsworld-granite-components-date-picker.mjs +4 -4
  28. package/fesm2020/ifsworld-granite-components-date-picker.mjs.map +1 -1
  29. package/fesm2020/ifsworld-granite-components-table.mjs +4 -4
  30. package/fesm2020/ifsworld-granite-components-tooltip.mjs +2 -2
  31. package/fesm2020/ifsworld-granite-components-tooltip.mjs.map +1 -1
  32. package/fesm2020/ifsworld-granite-components.mjs +31 -31
  33. package/fesm2020/ifsworld-granite-components.mjs.map +1 -1
  34. package/package.json +2 -3
  35. package/src/lib/core/style/_mixins.scss +6 -2
  36. 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": "10.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": {
@@ -1,4 +1,8 @@
1
1
  /* stylelint-disable declaration-block-no-duplicate-properties */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable value-no-vendor-prefix */
4
+ /* stylelint-disable color-function-notation */
5
+
2
6
  @use 'direction' as *;
3
7
  @use 'tokens' as *;
4
8
 
@@ -340,7 +344,7 @@
340
344
  * Scrollbars are hidden by default and appears when element is hovered,
341
345
  * unless `$autoHide` parameter is supplied as `false`.
342
346
  */
343
- @mixin themedVerticalScroll($autoHide: true, $width: --granite-spacing-xs) {
347
+ @mixin themedVerticalScroll($autoHide: true, $width: --granite-spacing-4) {
344
348
  overflow-x: hidden;
345
349
 
346
350
  @if $autoHide {
@@ -360,7 +364,7 @@
360
364
 
361
365
  &::-webkit-scrollbar-thumb {
362
366
  background-color: var(--granite-color-border-hard);
363
- border-radius: calc(#{var(--granite-spacing-m)} * 0.125);
367
+ border-radius: calc(#{var(--granite-spacing-16)} * 0.125);
364
368
  }
365
369
 
366
370
  &::-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;