@flywheel-io/vision 2.9.1 → 2.10.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 (46) hide show
  1. package/assets/fonts/Flywheel-Vision-Icons.svg +12 -2
  2. package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
  3. package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
  4. package/assets/svg/edit.svg +1 -2
  5. package/assets/svg/message-chat-add-plus.svg +4 -0
  6. package/assets/svg/moon-night-mode.svg +4 -0
  7. package/assets/svg/pen-edit-compose-new.svg +4 -0
  8. package/assets/svg/star-ai-artificial-intelligence.svg +4 -0
  9. package/assets/svg/trash-bin-warning.svg +6 -0
  10. package/components/icon/icon.types.d.ts +1 -1
  11. package/components/icon-button/icon-button.component.d.ts +2 -1
  12. package/components/layouts/context/context.component.d.ts +1 -1
  13. package/components/text-input/text-input.component.d.ts +2 -1
  14. package/components/text-input/text-input.module.d.ts +3 -2
  15. package/esm2022/components/alert/alert.component.mjs +1 -1
  16. package/esm2022/components/button/button.component.mjs +2 -2
  17. package/esm2022/components/card/card-content/card-content.component.mjs +2 -2
  18. package/esm2022/components/card/card-header/card-header.component.mjs +2 -2
  19. package/esm2022/components/card/card.component.mjs +2 -2
  20. package/esm2022/components/date-input/date-input.component.mjs +2 -2
  21. package/esm2022/components/dialog/dialog.component.mjs +1 -1
  22. package/esm2022/components/icon/icon.types.mjs +6 -1
  23. package/esm2022/components/icon-button/icon-button.component.mjs +5 -4
  24. package/esm2022/components/layouts/context/context.component.mjs +3 -3
  25. package/esm2022/components/layouts/grid/grid.component.mjs +4 -4
  26. package/esm2022/components/menu/menu-container/menu-container.component.mjs +1 -1
  27. package/esm2022/components/menu/menu-item/menu-item.component.mjs +1 -1
  28. package/esm2022/components/menu/menu-item-group/menu-item-group.component.mjs +2 -2
  29. package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +1 -1
  30. package/esm2022/components/number-input/number-input.component.mjs +2 -2
  31. package/esm2022/components/phone-input/phone-input.component.mjs +2 -2
  32. package/esm2022/components/select-menu/select-menu.component.mjs +1 -1
  33. package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +1 -1
  34. package/esm2022/components/table/table-dense.component.mjs +2 -2
  35. package/esm2022/components/table/table.component.mjs +2 -2
  36. package/esm2022/components/tabs/tab/tab.component.mjs +2 -2
  37. package/esm2022/components/text-input/text-input.component.mjs +8 -4
  38. package/esm2022/components/text-input/text-input.module.mjs +4 -1
  39. package/esm2022/components/textarea-input/textarea-input.component.mjs +2 -2
  40. package/esm2022/components/typeahead/typeahead.component.mjs +2 -2
  41. package/fesm2022/flywheel-io-vision.mjs +58 -47
  42. package/fesm2022/flywheel-io-vision.mjs.map +1 -1
  43. package/package.json +5 -2
  44. package/scss/icons/_icon-glyphs.scss +18 -0
  45. package/scss/icons/_icon-variables.scss +37 -1
  46. package/styles.css +27 -1
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@flywheel-io/vision",
3
- "version": "2.9.1",
3
+ "version": "2.10.0",
4
4
  "description": "Flywheel UI elements provided as Angular components and native web components",
5
5
  "author": "Flywheel",
6
6
  "license": "MIT",
7
7
  "engines": {
8
- "node": ">=20"
8
+ "node": ">=22.9.0"
9
9
  },
10
10
  "dependencies": {
11
11
  "date-fns": "^2.28.0",
@@ -16,6 +16,9 @@
16
16
  "peerDependencies": {
17
17
  "@angular/core": ">=17"
18
18
  },
19
+ "overrides": {
20
+ "tar": "^7.5.6"
21
+ },
19
22
  "exports": {
20
23
  "./assets/*": "./assets/*",
21
24
  "./scss/*": "./scss/*",
@@ -40,6 +40,24 @@
40
40
  -moz-osx-font-smoothing: grayscale;
41
41
  }
42
42
 
43
+ .icon-pen-edit-compose-new:before {
44
+ content: "\ea5c";
45
+ }
46
+ .icon-edit:before {
47
+ content: "\e923";
48
+ }
49
+ .icon-star-ai-artificial-intelligence:before {
50
+ content: "\e975";
51
+ }
52
+ .icon-moon-night-mode:before {
53
+ content: "\ea58";
54
+ }
55
+ .icon-message-chat-add-plus:before {
56
+ content: "\ea59";
57
+ }
58
+ .icon-trash-bin-warning:before {
59
+ content: "\ea5a";
60
+ }
43
61
  .icon-thumbs-down-dislike:before {
44
62
  content: "\ea54";
45
63
  }
@@ -3,6 +3,42 @@
3
3
  $icomoon-font-family: "Flywheel-Vision-Icons" !default;
4
4
  $icomoon-font-path: "../../assets/fonts/" !default;
5
5
 
6
+ $icon-pen-edit-compose-new: unquote('"\\ea5c"');
7
+ $icon-edit: unquote('"\\e923"');
8
+ $icon-star-ai-artificial-intelligence: unquote('"\\e975"');
9
+ $icon-moon-night-mode: unquote('"\\ea58"');
10
+ $icon-message-chat-add-plus: unquote('"\\ea59"');
11
+ $icon-thumbs-down-dislike: unquote('"\\ea54"');
12
+ $icon-mouse-scroll: unquote('"\\ea55"');
13
+ $icon-folder-move: unquote('"\\ea56"');
14
+ $icon-documents-file-move-arrow-right: unquote('"\\ea57"');
15
+ $icon-contract-vertical: unquote('"\\ea46"');
16
+ $icon-stretch-vertical: unquote('"\\ea47"');
17
+ $icon-grid-layout-9-square: unquote('"\\ea48"');
18
+ $icon-git-add-branch: unquote('"\\ea49"');
19
+ $icon-git-branch: unquote('"\\ea4a"');
20
+ $icon-git-merge-draft: unquote('"\\ea4b"');
21
+ $icon-git-merge: unquote('"\\ea4c"');
22
+ $icon-git-pull-request-2: unquote('"\\ea4d"');
23
+ $icon-conversion-exchange: unquote('"\\ea4e"');
24
+ $icon-archive-documents-box-big: unquote('"\\ea4f"');
25
+ $icon-cursor-click: unquote('"\\ea50"');
26
+ $icon-document-file-deleted-cross-remove-center-cancel: unquote('"\\ea51"');
27
+ $icon-documents-file-checkmark: unquote('"\\ea52"');
28
+ $icon-file-blank-search: unquote('"\\ea53"');
29
+ $icon-user-profile-cards-pool: unquote('"\\ea3b"');
30
+ $icon-certificate: unquote('"\\ea3c"');
31
+ $icon-check-mark-certificate: unquote('"\\ea3d"');
32
+ $icon-server-databases-checkmark-user: unquote('"\\ea3e"');
33
+ $icon-arrow-up-high-priority: unquote('"\\ea3f"');
34
+ $icon-arrow-up-low-priority: unquote('"\\ea40"');
35
+ $icon-stop-minus: unquote('"\\ea41"');
36
+ $icon-document-file-checkmark-bottom-left: unquote('"\\ea42"');
37
+ $icon-monitor-computer: unquote('"\\ea43"');
38
+ $icon-arrow-redo: unquote('"\\ea44"');
39
+ $icon-arrow-undo: unquote('"\\ea45"');
40
+ $icon-folders-copy-expand-arrow-down: unquote('"\\ea39"');
41
+ $icon-folders-copy-expand-arrow-up: unquote('"\\ea3a"');
6
42
  $icon-clock-hour-4: unquote('"\\ea32"');
7
43
  $icon-documents-file: unquote('"\\ea33"');
8
44
  $icon-expand-pathfinder-dot-square-segmentation: unquote('"\\ea34"');
@@ -210,7 +246,6 @@ $icon-radiology-scan-circle: unquote('"\\e974"');
210
246
  $icon-money-coin: unquote('"\\e965"');
211
247
  $icon-brain: unquote('"\\e972"');
212
248
  $icon-dna-hospital-medical: unquote('"\\e973"');
213
- $icon-lung: unquote('"\\e975"');
214
249
  $icon-lungs: unquote('"\\e976"');
215
250
  $icon-protective-mask: unquote('"\\e977"');
216
251
  $icon-radiology-scan: unquote('"\\e978"');
@@ -317,3 +352,4 @@ $icon-chevron-forward: unquote('"\\e957"');
317
352
  $icon-chevron-up: unquote('"\\e958"');
318
353
  $icon-embed-circle: unquote('"\\e959"');
319
354
  $icon-rotate-refresh: unquote('"\\e95a"');
355
+
package/styles.css CHANGED
@@ -227,7 +227,6 @@ Color Palettes for use with vision's theming system
227
227
  text-decoration: underline;
228
228
  color: var(--primary-base);
229
229
  cursor: pointer;
230
- color: inherit;
231
230
  }
232
231
  .vision-link-inherited:hover {
233
232
  text-decoration: none;
@@ -240,6 +239,9 @@ Color Palettes for use with vision's theming system
240
239
  .vision-link-inherited:visited {
241
240
  color: var(--secondary-base);
242
241
  }
242
+ .vision-link-inherited {
243
+ color: inherit;
244
+ }
243
245
  .vision-link-inherited:visited {
244
246
  color: inherit;
245
247
  }
@@ -389,6 +391,30 @@ a:visited {
389
391
  -moz-osx-font-smoothing: grayscale;
390
392
  }
391
393
 
394
+ .icon-pen-edit-compose-new:before {
395
+ content: "\ea5c";
396
+ }
397
+
398
+ .icon-edit:before {
399
+ content: "\e923";
400
+ }
401
+
402
+ .icon-star-ai-artificial-intelligence:before {
403
+ content: "\e975";
404
+ }
405
+
406
+ .icon-moon-night-mode:before {
407
+ content: "\ea58";
408
+ }
409
+
410
+ .icon-message-chat-add-plus:before {
411
+ content: "\ea59";
412
+ }
413
+
414
+ .icon-trash-bin-warning:before {
415
+ content: "\ea5a";
416
+ }
417
+
392
418
  .icon-thumbs-down-dislike:before {
393
419
  content: "\ea54";
394
420
  }