@flywheel-io/vision 1.17.1-beta.2 → 1.18.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 (50) hide show
  1. package/assets/fonts/Flywheel-Vision-Icons.svg +26 -0
  2. package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
  3. package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
  4. package/assets/svg/arrow-redo.svg +4 -0
  5. package/assets/svg/arrow-undo.svg +4 -0
  6. package/assets/svg/arrow-up-high-priority.svg +6 -0
  7. package/assets/svg/arrow-up-low-priority.svg +6 -0
  8. package/assets/svg/certificate.svg +4 -0
  9. package/assets/svg/check-mark-certificate.svg +4 -0
  10. package/assets/svg/document-file-checkmark-bottom-left.svg +4 -0
  11. package/assets/svg/folders-copy-expand-arrow-down.svg +6 -0
  12. package/assets/svg/folders-copy-expand-arrow-up.svg +6 -0
  13. package/assets/svg/monitor-computer.svg +4 -0
  14. package/assets/svg/server-databases-checkmark-user.svg +4 -0
  15. package/assets/svg/stop-minus.svg +4 -0
  16. package/assets/svg/user-profile-cards-pool.svg +4 -0
  17. package/components/icon/icon.types.d.ts +1 -1
  18. package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +4 -5
  19. package/components/select-menu/select-menu.module.d.ts +2 -1
  20. package/components/shared/services/menu-manager.service.d.ts +10 -0
  21. package/directives/menu-register.directive.d.ts +14 -0
  22. package/esm2020/components/badge/badge.component.mjs +2 -2
  23. package/esm2020/components/card/card-content/card-content.component.mjs +2 -2
  24. package/esm2020/components/card/card.component.mjs +2 -2
  25. package/esm2020/components/checkbox/checkbox.component.mjs +2 -2
  26. package/esm2020/components/icon/icon.types.mjs +15 -2
  27. package/esm2020/components/layouts/grid/grid.component.mjs +4 -4
  28. package/esm2020/components/menu/menu-item/menu-item.component.mjs +2 -2
  29. package/esm2020/components/menu/menu-sub-item/menu-sub-item.component.mjs +3 -3
  30. package/esm2020/components/phone-input/phone-input.component.mjs +2 -2
  31. package/esm2020/components/progress/bar/bar.component.mjs +2 -2
  32. package/esm2020/components/radio/radio.component.mjs +2 -2
  33. package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +61 -80
  34. package/esm2020/components/select-menu/select-menu.component.mjs +4 -3
  35. package/esm2020/components/select-menu/select-menu.module.mjs +5 -2
  36. package/esm2020/components/shared/services/menu-manager.service.mjs +27 -0
  37. package/esm2020/components/table/table-dense.component.mjs +2 -2
  38. package/esm2020/components/table/table.component.mjs +2 -2
  39. package/esm2020/components/tooltip/tooltip.component.mjs +2 -2
  40. package/esm2020/directives/menu-register.directive.mjs +38 -0
  41. package/esm2020/public-api.mjs +3 -1
  42. package/fesm2015/flywheel-io-vision.mjs +180 -121
  43. package/fesm2015/flywheel-io-vision.mjs.map +1 -1
  44. package/fesm2020/flywheel-io-vision.mjs +175 -121
  45. package/fesm2020/flywheel-io-vision.mjs.map +1 -1
  46. package/package.json +1 -1
  47. package/public-api.d.ts +2 -0
  48. package/scss/icons/_icon-glyphs.scss +667 -1256
  49. package/styles.css +54 -1
  50. package/flywheel-io-vision-1.17.1-beta.2.tgz +0 -0
package/styles.css CHANGED
@@ -1,3 +1,4 @@
1
+ @charset "UTF-8";
1
2
  @import 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700';
2
3
  /******************************************************
3
4
  Color Palettes for use with vision's theming system
@@ -4827,6 +4828,58 @@ a:visited {
4827
4828
  -moz-osx-font-smoothing: grayscale;
4828
4829
  }
4829
4830
 
4831
+ .icon-user-profile-cards-pool:before {
4832
+ content: "\ea3b";
4833
+ }
4834
+
4835
+ .icon-certificate:before {
4836
+ content: "\ea3c";
4837
+ }
4838
+
4839
+ .icon-check-mark-certificate:before {
4840
+ content: "\ea3d";
4841
+ }
4842
+
4843
+ .icon-server-databases-checkmark-user:before {
4844
+ content: "\ea3e";
4845
+ }
4846
+
4847
+ .icon-arrow-up-high-priority:before {
4848
+ content: "\ea3f";
4849
+ }
4850
+
4851
+ .icon-arrow-up-low-priority:before {
4852
+ content: "\ea40";
4853
+ }
4854
+
4855
+ .icon-stop-minus:before {
4856
+ content: "\ea41";
4857
+ }
4858
+
4859
+ .icon-document-file-checkmark-bottom-left:before {
4860
+ content: "\ea42";
4861
+ }
4862
+
4863
+ .icon-monitor-computer:before {
4864
+ content: "\ea43";
4865
+ }
4866
+
4867
+ .icon-arrow-redo:before {
4868
+ content: "\ea44";
4869
+ }
4870
+
4871
+ .icon-arrow-undo:before {
4872
+ content: "\ea45";
4873
+ }
4874
+
4875
+ .icon-folders-copy-expand-arrow-down:before {
4876
+ content: "\ea39";
4877
+ }
4878
+
4879
+ .icon-folders-copy-expand-arrow-up:before {
4880
+ content: "\ea3a";
4881
+ }
4882
+
4830
4883
  .icon-clock-hour-4:before {
4831
4884
  content: "\ea32";
4832
4885
  }
@@ -4892,7 +4945,7 @@ a:visited {
4892
4945
  }
4893
4946
 
4894
4947
  .icon-brightness-photo-edit:before {
4895
- content: "\bea29";
4948
+ content: "򾨩";
4896
4949
  }
4897
4950
 
4898
4951
  .icon-target-space-object-select:before {