@flywheel-io/vision 2.7.0-beta.1 → 2.7.1
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/assets/fonts/Flywheel-Vision-Icons.svg +8 -2
- package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
- package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
- package/assets/svg/documents-file-move-arrow-right.svg +4 -0
- package/assets/svg/folder-move.svg +4 -0
- package/assets/svg/mouse-scroll.svg +4 -0
- package/assets/svg/thumbs-down-dislike.svg +4 -0
- package/components/avatar-list/avatar-list.component.d.ts +4 -2
- package/components/dialog/dialog-confirm.component.d.ts +2 -1
- package/components/form-heading/form-heading.component.d.ts +3 -1
- package/components/form-heading/form-heading.module.d.ts +2 -1
- package/components/icon/icon.types.d.ts +1 -1
- package/components/menu/menu-close-triggers.directive.d.ts +1 -1
- package/components/tag/tag.component.d.ts +10 -0
- package/components/tag/tag.module.d.ts +9 -0
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +6 -6
- package/components/tooltip/tooltip.component.d.ts +2 -1
- package/components/tooltip/tooltip.directive.d.ts +39 -6
- package/components/wrapped-input/wrapped-input.component.d.ts +4 -1
- package/esm2022/components/avatar/avatar.component.mjs +7 -3
- package/esm2022/components/avatar-list/avatar-list.component.mjs +16 -9
- package/esm2022/components/chip-list/chip-list.component.mjs +3 -2
- package/esm2022/components/dialog/dialog-confirm.component.mjs +6 -3
- package/esm2022/components/form-heading/form-heading.component.mjs +9 -3
- package/esm2022/components/form-heading/form-heading.module.mjs +7 -3
- package/esm2022/components/icon/icon.types.mjs +44 -41
- package/esm2022/components/menu/menu-close-triggers.directive.mjs +15 -9
- package/esm2022/components/paginator/paginator-advanced/paginator-advanced.component.mjs +2 -2
- package/esm2022/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +6 -1
- package/esm2022/components/tag/tag.component.mjs +25 -0
- package/esm2022/components/tag/tag.module.mjs +28 -0
- package/esm2022/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +12 -21
- package/esm2022/components/tooltip/tooltip.component.mjs +4 -3
- package/esm2022/components/tooltip/tooltip.directive.mjs +93 -30
- package/esm2022/components/typeahead/typeahead.component.mjs +8 -4
- package/esm2022/components/wrapped-input/wrapped-input.component.mjs +10 -3
- package/fesm2022/flywheel-io-vision.mjs +265 -118
- package/fesm2022/flywheel-io-vision.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/icons/_icon-glyphs.scss +12 -4
- package/styles.css +16 -4
- package/flywheel-io-vision-2.7.0-beta.1.tgz +0 -0
package/package.json
CHANGED
|
@@ -40,7 +40,18 @@
|
|
|
40
40
|
-moz-osx-font-smoothing: grayscale;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
.icon-thumbs-down-dislike:before {
|
|
44
|
+
content: "\ea54";
|
|
45
|
+
}
|
|
46
|
+
.icon-mouse-scroll:before {
|
|
47
|
+
content: "\ea55";
|
|
48
|
+
}
|
|
49
|
+
.icon-folder-move:before {
|
|
50
|
+
content: "\ea56";
|
|
51
|
+
}
|
|
52
|
+
.icon-documents-file-move-arrow-right:before {
|
|
53
|
+
content: "\ea57";
|
|
54
|
+
}
|
|
44
55
|
.icon-contract-vertical:before {
|
|
45
56
|
content: "\ea46";
|
|
46
57
|
}
|
|
@@ -743,9 +754,6 @@
|
|
|
743
754
|
.icon-dna-hospital-medical:before {
|
|
744
755
|
content: "\e973";
|
|
745
756
|
}
|
|
746
|
-
.icon-lung:before {
|
|
747
|
-
content: "\e975";
|
|
748
|
-
}
|
|
749
757
|
.icon-lungs:before {
|
|
750
758
|
content: "\e976";
|
|
751
759
|
}
|
package/styles.css
CHANGED
|
@@ -389,6 +389,22 @@ a:visited {
|
|
|
389
389
|
-moz-osx-font-smoothing: grayscale;
|
|
390
390
|
}
|
|
391
391
|
|
|
392
|
+
.icon-thumbs-down-dislike:before {
|
|
393
|
+
content: "\ea54";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.icon-mouse-scroll:before {
|
|
397
|
+
content: "\ea55";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.icon-folder-move:before {
|
|
401
|
+
content: "\ea56";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.icon-documents-file-move-arrow-right:before {
|
|
405
|
+
content: "\ea57";
|
|
406
|
+
}
|
|
407
|
+
|
|
392
408
|
.icon-contract-vertical:before {
|
|
393
409
|
content: "\ea46";
|
|
394
410
|
}
|
|
@@ -1325,10 +1341,6 @@ a:visited {
|
|
|
1325
1341
|
content: "\e973";
|
|
1326
1342
|
}
|
|
1327
1343
|
|
|
1328
|
-
.icon-lung:before {
|
|
1329
|
-
content: "\e975";
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
1344
|
.icon-lungs:before {
|
|
1333
1345
|
content: "\e976";
|
|
1334
1346
|
}
|
|
Binary file
|