@flywheel-io/vision 21.0.2 → 21.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flywheel-io/vision",
3
- "version": "21.0.2",
3
+ "version": "21.1.0",
4
4
  "description": "Flywheel UI elements provided as Angular components and native web components",
5
5
  "author": "Flywheel",
6
6
  "license": "MIT",
@@ -13,7 +13,7 @@
13
13
  "migrations": "./dist/migrations.json"
14
14
  },
15
15
  "engines": {
16
- "node": ">=22.22.0"
16
+ "node": ">=22.22.3"
17
17
  },
18
18
  "dependencies": {
19
19
  "@date-fns/tz": "^1.4.1",
@@ -39,8 +39,8 @@
39
39
  }
40
40
  },
41
41
  "peerDependencies": {
42
- "@angular/core": ">=21",
43
- "@angular/cdk": ">=21"
42
+ "@angular/cdk": ">=21",
43
+ "@angular/core": ">=21"
44
44
  },
45
45
  "allowScripts": {
46
46
  "esbuild@0.27.3": true,
package/public-api.scss CHANGED
@@ -3,4 +3,4 @@
3
3
  @forward './scss/config/typography';
4
4
  @forward './scss/config/shadows';
5
5
  @forward './scss/icons/icons';
6
- @forward './scss/atoms/scrollbar.scss';
6
+ @forward './scss/atoms/scrollbar';
@@ -1,8 +1,8 @@
1
1
  @use 'sass:color';
2
2
 
3
3
  // https://github.com/ThomasBurleson/angular-animated-ghost-elements/blob/single-list-inline-async/src/app/utils/animations/ghost-animation.scss
4
- $base-color-default: rgba(245, 246, 249, 0.644);
5
- $ghost-color-default: rgba(233, 232, 232, 0.95);
4
+ $base-color-default: rgb(245, 246, 249, 0.644);
5
+ $ghost-color-default: rgb(233, 232, 232, 0.95);
6
6
  $animation-duration: 2000ms;
7
7
 
8
8
  @mixin background-gradient($base-color: $base-color-default, $ghost-color: $ghost-color-default) {
@@ -42,7 +42,7 @@
42
42
  inset: 0;
43
43
  z-index: 1100;
44
44
  pointer-events: auto;
45
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
45
+ -webkit-tap-highlight-color: rgb(0, 0, 0, 0);
46
46
  transition: opacity 150ms cubic-bezier(0.25, 0.8, 0.25, 1);
47
47
  opacity: 0
48
48
  }
@@ -56,7 +56,7 @@
56
56
  }
57
57
 
58
58
  .cdk-overlay-dark-backdrop {
59
- background: rgba(0, 0, 0, .32)
59
+ background: rgb(0, 0, 0, .32)
60
60
  }
61
61
 
62
62
  .cdk-overlay-transparent-backdrop {
@@ -1,19 +1,19 @@
1
1
  .vision-shadow-extra-large {
2
- box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.10);
2
+ box-shadow: 0 8px 25px 0 rgb(0, 0, 0, 0.10);
3
3
  }
4
4
 
5
5
  .vision-shadow-large {
6
- box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.10);
6
+ box-shadow: 0 5px 15px 0 rgb(0, 0, 0, 0.10);
7
7
  }
8
8
 
9
9
  .vision-shadow-medium {
10
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10);
10
+ box-shadow: 0 2px 5px 0 rgb(0, 0, 0, 0.10);
11
11
  }
12
12
 
13
13
  .vision-shadow-small {
14
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
14
+ box-shadow: 0 1px 2px 0 rgb(0, 0, 0, 0.05);
15
15
  }
16
16
 
17
17
  .vision-shadow-inner {
18
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) inset;
18
+ box-shadow: 0 2px 4px 0 rgb(0, 0, 0, 0.08) inset;
19
19
  }