@flywheel-io/vision 2.7.5 → 2.7.6
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/components/chip-list/chip-list.component.d.ts +6 -3
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +1 -1
- package/components/typeahead/typeahead.component.d.ts +11 -2
- package/esm2022/components/chip-list/chip-list.component.mjs +19 -4
- package/esm2022/components/dialog/dialog.component.mjs +2 -2
- package/esm2022/components/textarea-input/textarea-input.component.mjs +5 -10
- package/esm2022/components/typeahead/typeahead.component.mjs +42 -16
- package/fesm2022/flywheel-io-vision.mjs +62 -27
- package/fesm2022/flywheel-io-vision.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/config/overlay.scss +2 -1
- package/styles.css +2 -1
package/package.json
CHANGED
package/scss/config/overlay.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@mixin overlay {
|
|
2
2
|
.vision-overlay {
|
|
3
3
|
background-color: var(--separations-overlay);
|
|
4
|
+
animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
z-index: 1100;
|
|
43
44
|
pointer-events: auto;
|
|
44
45
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
45
|
-
transition: opacity
|
|
46
|
+
transition: opacity 150ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
46
47
|
opacity: 0
|
|
47
48
|
}
|
|
48
49
|
|
package/styles.css
CHANGED
|
@@ -1774,6 +1774,7 @@ a:visited {
|
|
|
1774
1774
|
}
|
|
1775
1775
|
.vision-overlay {
|
|
1776
1776
|
background-color: var(--separations-overlay);
|
|
1777
|
+
animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
1777
1778
|
}
|
|
1778
1779
|
|
|
1779
1780
|
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
@@ -1815,7 +1816,7 @@ a:visited {
|
|
|
1815
1816
|
z-index: 1100;
|
|
1816
1817
|
pointer-events: auto;
|
|
1817
1818
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1818
|
-
transition: opacity
|
|
1819
|
+
transition: opacity 150ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
1819
1820
|
opacity: 0;
|
|
1820
1821
|
}
|
|
1821
1822
|
|