@flywheel-io/vision 2.0.0-beta.7 → 2.0.0-beta.9
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 +26 -0
- package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
- package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
- package/assets/svg/arrow-redo.svg +4 -0
- package/assets/svg/arrow-undo.svg +4 -0
- package/assets/svg/arrow-up-high-priority.svg +6 -0
- package/assets/svg/arrow-up-low-priority.svg +6 -0
- package/assets/svg/certificate.svg +4 -0
- package/assets/svg/check-mark-certificate.svg +4 -0
- package/assets/svg/document-file-checkmark-bottom-left.svg +4 -0
- package/assets/svg/folders-copy-expand-arrow-down.svg +6 -0
- package/assets/svg/folders-copy-expand-arrow-up.svg +6 -0
- package/assets/svg/monitor-computer.svg +4 -0
- package/assets/svg/server-databases-checkmark-user.svg +4 -0
- package/assets/svg/stop-minus.svg +4 -0
- package/assets/svg/user-profile-cards-pool.svg +4 -0
- package/components/icon/icon.types.d.ts +1 -1
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +5 -4
- package/components/select-menu/select-menu.component.d.ts +6 -4
- package/components/select-menu/select-menu.module.d.ts +2 -1
- package/components/shared/services/menu-manager.service.d.ts +10 -0
- package/components/text-input/text-input.component.d.ts +2 -1
- package/directives/menu-register.directive.d.ts +14 -0
- package/esm2020/components/icon/icon.types.mjs +15 -2
- package/esm2020/components/menu/menu-container/menu-container.component.mjs +1 -1
- package/esm2020/components/paginator/paginator-advanced/paginator-advanced.component.mjs +1 -1
- package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +82 -62
- package/esm2020/components/select-menu/select-menu.component.mjs +69 -65
- package/esm2020/components/select-menu/select-menu.module.mjs +5 -2
- package/esm2020/components/shared/services/menu-manager.service.mjs +27 -0
- package/esm2020/components/text-input/text-input.component.mjs +8 -2
- package/esm2020/directives/menu-register.directive.mjs +38 -0
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/flywheel-io-vision.mjs +251 -144
- package/fesm2015/flywheel-io-vision.mjs.map +1 -1
- package/fesm2020/flywheel-io-vision.mjs +244 -142
- package/fesm2020/flywheel-io-vision.mjs.map +1 -1
- package/flywheel-io-vision-2.0.0-beta.9.tgz +0 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/scss/icons/_icon-glyphs.scss +667 -1256
- package/styles.css +54 -1
- package/flywheel-io-vision-2.0.0-beta.7.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
|
|
@@ -365,6 +366,58 @@ a:visited {
|
|
|
365
366
|
-moz-osx-font-smoothing: grayscale;
|
|
366
367
|
}
|
|
367
368
|
|
|
369
|
+
.icon-user-profile-cards-pool:before {
|
|
370
|
+
content: "\ea3b";
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.icon-certificate:before {
|
|
374
|
+
content: "\ea3c";
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.icon-check-mark-certificate:before {
|
|
378
|
+
content: "\ea3d";
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.icon-server-databases-checkmark-user:before {
|
|
382
|
+
content: "\ea3e";
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.icon-arrow-up-high-priority:before {
|
|
386
|
+
content: "\ea3f";
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.icon-arrow-up-low-priority:before {
|
|
390
|
+
content: "\ea40";
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.icon-stop-minus:before {
|
|
394
|
+
content: "\ea41";
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.icon-document-file-checkmark-bottom-left:before {
|
|
398
|
+
content: "\ea42";
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.icon-monitor-computer:before {
|
|
402
|
+
content: "\ea43";
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.icon-arrow-redo:before {
|
|
406
|
+
content: "\ea44";
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.icon-arrow-undo:before {
|
|
410
|
+
content: "\ea45";
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.icon-folders-copy-expand-arrow-down:before {
|
|
414
|
+
content: "\ea39";
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.icon-folders-copy-expand-arrow-up:before {
|
|
418
|
+
content: "\ea3a";
|
|
419
|
+
}
|
|
420
|
+
|
|
368
421
|
.icon-clock-hour-4:before {
|
|
369
422
|
content: "\ea32";
|
|
370
423
|
}
|
|
@@ -430,7 +483,7 @@ a:visited {
|
|
|
430
483
|
}
|
|
431
484
|
|
|
432
485
|
.icon-brightness-photo-edit:before {
|
|
433
|
-
content: "
|
|
486
|
+
content: "";
|
|
434
487
|
}
|
|
435
488
|
|
|
436
489
|
.icon-target-space-object-select:before {
|
|
Binary file
|