@flywheel-io/vision 2.9.2 → 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.
- package/assets/fonts/Flywheel-Vision-Icons.svg +12 -2
- package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
- package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
- package/assets/svg/edit.svg +1 -2
- package/assets/svg/message-chat-add-plus.svg +4 -0
- package/assets/svg/moon-night-mode.svg +4 -0
- package/assets/svg/pen-edit-compose-new.svg +4 -0
- package/assets/svg/star-ai-artificial-intelligence.svg +4 -0
- package/assets/svg/trash-bin-warning.svg +6 -0
- package/components/icon/icon.types.d.ts +1 -1
- package/components/icon-button/icon-button.component.d.ts +2 -1
- package/esm2022/components/alert/alert.component.mjs +1 -1
- package/esm2022/components/card/card-content/card-content.component.mjs +2 -2
- package/esm2022/components/dialog/dialog.component.mjs +1 -1
- package/esm2022/components/icon/icon.types.mjs +6 -1
- package/esm2022/components/icon-button/icon-button.component.mjs +5 -4
- package/esm2022/components/menu/menu-item/menu-item.component.mjs +1 -1
- package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +1 -1
- package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +1 -1
- package/fesm2022/flywheel-io-vision.mjs +16 -10
- package/fesm2022/flywheel-io-vision.mjs.map +1 -1
- package/package.json +2 -2
- package/scss/icons/_icon-glyphs.scss +18 -0
- package/scss/icons/_icon-variables.scss +37 -1
- package/styles.css +24 -0
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flywheel-io/vision",
|
|
3
|
-
"version": "2.
|
|
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": ">=
|
|
8
|
+
"node": ">=22.9.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"date-fns": "^2.28.0",
|
|
@@ -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
|
@@ -391,6 +391,30 @@ a:visited {
|
|
|
391
391
|
-moz-osx-font-smoothing: grayscale;
|
|
392
392
|
}
|
|
393
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
|
+
|
|
394
418
|
.icon-thumbs-down-dislike:before {
|
|
395
419
|
content: "\ea54";
|
|
396
420
|
}
|