@flywheel-io/vision 1.6.0 → 1.7.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 (79) hide show
  1. package/assets/fonts/Flywheel-Vision-Icons.svg +6 -1
  2. package/assets/fonts/Flywheel-Vision-Icons.ttf +0 -0
  3. package/assets/fonts/Flywheel-Vision-Icons.woff +0 -0
  4. package/assets/svg/brightness-photo-edit.svg +4 -0
  5. package/assets/svg/target-space-object-select.svg +13 -0
  6. package/assets/svg/technology-cube-3d.svg +5 -0
  7. package/components/alert/alert.component.d.ts +2 -1
  8. package/components/app-icon/app-icon.component.d.ts +2 -1
  9. package/components/avatar/avatar.component.d.ts +2 -1
  10. package/components/button/button.component.d.ts +3 -2
  11. package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +2 -1
  12. package/components/button-toggle/button-toggle.component.d.ts +16 -4
  13. package/components/card/card-attribute/card-attribute.component.d.ts +2 -1
  14. package/components/card/card-header/card-header.component.d.ts +4 -2
  15. package/components/chip/chip.component.d.ts +2 -1
  16. package/components/date-input/date-input.component.d.ts +36 -0
  17. package/components/date-input/date-input.module.d.ts +10 -0
  18. package/components/dialog/dialog-confirm.component.d.ts +2 -1
  19. package/components/dialog/dialog-simple.component.d.ts +2 -1
  20. package/components/dialog/dialog.component.d.ts +2 -1
  21. package/components/form-heading/form-heading.component.d.ts +1 -1
  22. package/components/icon/icon.types.d.ts +2 -0
  23. package/components/layouts/context/context.component.d.ts +2 -1
  24. package/components/menu/menu-item/menu-item.component.d.ts +2 -1
  25. package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +2 -1
  26. package/components/navbar/navbar-item/navbar-item.component.d.ts +2 -1
  27. package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +2 -1
  28. package/components/phone-input/phone-input.component.d.ts +2 -2
  29. package/components/section-heading/section-heading.component.d.ts +2 -1
  30. package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +2 -1
  31. package/components/select-menu/select-menu.component.d.ts +5 -0
  32. package/components/stepper/step.component.d.ts +2 -1
  33. package/components/tabs/tab/tab.component.d.ts +2 -1
  34. package/components/text-input/text-input.component.d.ts +2 -1
  35. package/esm2020/components/alert/alert.component.mjs +1 -1
  36. package/esm2020/components/app-icon/app-icon.component.mjs +1 -1
  37. package/esm2020/components/avatar/avatar.component.mjs +1 -1
  38. package/esm2020/components/badge/badge.component.mjs +2 -2
  39. package/esm2020/components/button/button.component.mjs +1 -3
  40. package/esm2020/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +1 -1
  41. package/esm2020/components/button-toggle/button-toggle.component.mjs +66 -10
  42. package/esm2020/components/card/card-attribute/card-attribute.component.mjs +1 -1
  43. package/esm2020/components/card/card-header/card-header.component.mjs +8 -3
  44. package/esm2020/components/checkbox/checkbox.component.mjs +2 -2
  45. package/esm2020/components/chip/chip.component.mjs +1 -1
  46. package/esm2020/components/date-input/date-input.component.mjs +102 -0
  47. package/esm2020/components/date-input/date-input.module.mjs +32 -0
  48. package/esm2020/components/dialog/dialog-confirm.component.mjs +1 -1
  49. package/esm2020/components/dialog/dialog-simple.component.mjs +1 -1
  50. package/esm2020/components/dialog/dialog.component.mjs +1 -1
  51. package/esm2020/components/form-heading/form-heading.component.mjs +3 -3
  52. package/esm2020/components/icon/icon.types.mjs +302 -0
  53. package/esm2020/components/layouts/context/context.component.mjs +1 -1
  54. package/esm2020/components/menu/menu-item/menu-item.component.mjs +1 -1
  55. package/esm2020/components/menu/menu-sub-item/menu-sub-item.component.mjs +1 -1
  56. package/esm2020/components/navbar/navbar-item/navbar-item.component.mjs +1 -1
  57. package/esm2020/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +1 -1
  58. package/esm2020/components/paginator/paginator-advanced/paginator-advanced.component.mjs +2 -2
  59. package/esm2020/components/paginator/paginator.component.mjs +2 -2
  60. package/esm2020/components/phone-input/phone-input.component.mjs +1 -1
  61. package/esm2020/components/section-heading/section-heading.component.mjs +1 -1
  62. package/esm2020/components/section-heading/subsection-heading/subsection-heading.component.mjs +1 -1
  63. package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +2 -2
  64. package/esm2020/components/select-menu/select-menu.component.mjs +64 -12
  65. package/esm2020/components/stepper/step.component.mjs +1 -1
  66. package/esm2020/components/tabs/tab/tab.component.mjs +1 -1
  67. package/esm2020/components/text-input/text-input.component.mjs +1 -1
  68. package/esm2020/components/text-input/text-input.module.mjs +1 -4
  69. package/esm2020/components/textarea-input/textarea-input.module.mjs +1 -4
  70. package/esm2020/components/tooltip/tooltip.component.mjs +2 -2
  71. package/esm2020/public-api.mjs +4 -1
  72. package/fesm2015/flywheel-io-vision.mjs +573 -44
  73. package/fesm2015/flywheel-io-vision.mjs.map +1 -1
  74. package/fesm2020/flywheel-io-vision.mjs +573 -44
  75. package/fesm2020/flywheel-io-vision.mjs.map +1 -1
  76. package/package.json +1 -1
  77. package/public-api.d.ts +3 -0
  78. package/scss/icons/_icon-glyphs.scss +9 -1
  79. package/styles.css +13 -0
@@ -303,7 +303,9 @@
303
303
  <glyph unicode="&#xea25;" glyph-name="grid-dot-square" d="M95.839 618.826c0 135.494 109.839 245.333 245.333 245.333h341.652c135.497 0 245.333-109.839 245.333-245.333v-341.654c0-135.492-109.837-245.333-245.333-245.333h-341.653c-135.494 0-245.333 109.841-245.333 245.333v341.655zM341.172 800.159c-100.148 0-181.333-81.186-181.333-181.333v-341.655c0-100.147 81.185-181.333 181.333-181.333h341.653c100.147 0 181.333 81.186 181.333 181.333v341.654c0 100.148-81.186 181.333-181.333 181.333h-341.652zM405.287 588.844c-18.851 0-34.134-15.283-34.134-34.135s15.282-34.134 34.134-34.134c18.852 0 34.132 15.282 34.132 34.134s-15.281 34.135-34.132 34.135zM512 695.555c-18.854 0-34.138-15.282-34.138-34.134s15.283-34.134 34.138-34.134c18.85 0 34.133 15.282 34.133 34.134s-15.283 34.134-34.133 34.134zM594.573 578.847c6.4 6.401 15.083 9.998 24.137 9.998 18.85 0 34.133-15.282 34.133-34.135s-15.283-34.134-34.133-34.134c-18.85 0-34.133 15.282-34.133 34.134 0 9.053 3.597 17.735 9.997 24.137zM332.71 661.421c0 18.852-15.282 34.134-34.134 34.134s-34.134-15.282-34.134-34.134c0-18.852 15.282-34.134 34.134-34.134s34.134 15.282 34.134 34.134zM725.419 695.555c-18.85 0-34.133-15.282-34.133-34.134s15.283-34.134 34.133-34.134c18.854 0 34.138 15.282 34.138 34.134s-15.283 34.134-34.138 34.134zM477.862 448c0 18.85 15.283 34.133 34.138 34.133 18.85 0 34.133-15.283 34.133-34.133 0-18.854-15.283-34.133-34.133-34.133-18.854 0-34.138 15.279-34.138 34.133zM691.285 448c0-18.854 15.283-34.133 34.133-34.133 18.854 0 34.138 15.279 34.138 34.133 0 18.85-15.283 34.133-34.138 34.133-18.85 0-34.133-15.283-34.133-34.133zM264.442 448c0 18.85 15.282 34.133 34.134 34.133s34.134-15.283 34.134-34.133c0-18.854-15.282-34.133-34.134-34.133s-34.134 15.279-34.134 34.133zM405.287 375.424c-18.852 0-34.134-15.283-34.134-34.138 0-18.85 15.282-34.133 34.134-34.133s34.132 15.283 34.132 34.133c0 18.854-15.281 34.138-34.132 34.138zM477.862 234.577c0 18.85 15.283 34.133 34.138 34.133 18.85 0 34.133-15.283 34.133-34.133s-15.283-34.133-34.133-34.133c-18.854 0-34.138 15.283-34.138 34.133zM691.285 234.577c0-18.85 15.283-34.133 34.133-34.133 18.854 0 34.138 15.283 34.138 34.133s-15.283 34.133-34.138 34.133c-18.85 0-34.133-15.283-34.133-34.133zM264.442 234.577c0 18.85 15.282 34.133 34.134 34.133s34.134-15.283 34.134-34.133c0-18.85-15.282-34.133-34.134-34.133s-34.134 15.283-34.134 34.133zM584.576 341.286c0-18.85 15.283-34.133 34.133-34.133s34.133 15.283 34.133 34.133c0 18.854-15.283 34.138-34.133 34.138s-34.133-15.283-34.133-34.138z" />
304
304
  <glyph unicode="&#xea26;" glyph-name="browser-internet-web-windows" d="M810.667 864h-426.667c-64.853 0-117.333-52.48-117.333-117.333v-53.333h-53.333c-64.853 0-117.333-52.48-117.333-117.333v-426.667c0-64.853 52.48-117.333 117.333-117.333h426.667c64.853 0 117.333 52.48 117.333 117.333v96h53.333c64.853 0 117.333 52.48 117.333 117.333v384c0 64.853-52.48 117.333-117.333 117.333zM693.333 149.333c0-29.44-23.893-53.333-53.333-53.333h-426.667c-29.44 0-53.333 23.893-53.333 53.333v266.667h533.333v-266.667zM693.333 480h-533.333v96c0 29.44 23.893 53.333 53.333 53.333h426.667c29.44 0 53.333-23.893 53.333-53.333v-96zM861.867 361.813c0-29.44-23.893-53.333-53.333-53.333h-53.333v266.667c0 64.853-52.48 117.333-117.333 117.333h-309.333v53.333c0 29.44 23.893 53.333 53.333 53.333h426.667c29.44 0 53.333-23.893 53.333-53.333v-384zM256 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427zM362.667 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427zM469.76 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427z" />
305
305
  <glyph unicode="&#xea27;" glyph-name="crown-style-circle" d="M512 821.333c-206.186 0-373.333-167.147-373.333-373.333s167.147-373.333 373.333-373.333c206.187 0 373.333 167.147 373.333 373.333s-167.147 373.333-373.333 373.333zM74.667 448c0 241.533 195.801 437.333 437.333 437.333s437.333-195.801 437.333-437.333c0-241.532-195.802-437.333-437.333-437.333s-437.333 195.802-437.333 437.333zM459.153 650.078c14.007 14.034 33.020 21.92 52.847 21.92s38.844-7.887 52.847-21.92l69.060-69.193 55.386 11.099c25.254 5.060 51.337-3.253 69.001-21.996 17.668-18.743 24.431-45.269 17.886-70.178l-57.809-220.109c0 0 0 0 0 0-8.619-32.819-38.285-55.701-72.218-55.701h-268.305c-33.932 0-63.597 22.882-72.217 55.701 0 0 0 0 0 0l-57.809 220.105c-6.543 24.913 0.216 51.439 17.884 70.182s43.748 27.057 69.004 21.996l55.387-11.099 69.058 69.193zM504.452 604.867c0 0 0 0 0 0l-81.176-81.334c-7.569-7.582-18.431-10.876-28.937-8.772l-72.205 14.473c0 0 0 0 0 0-3.608 0.721-7.334-0.465-9.858-3.145-2.524-2.675-3.49-6.464-2.555-10.027 0 0 0 0 0 0l57.809-220.105c1.231-4.689 5.469-7.957 10.317-7.957h268.305c4.847 0 9.084 3.268 10.317 7.957l57.809 220.105c0 0 0 0.004 0 0 0.934 3.558-0.030 7.351-2.556 10.027-2.522 2.679-6.246 3.866-9.856 3.145l-72.205-14.473c-10.505-2.103-21.367 1.19-28.937 8.772l-81.173 81.334c0 0 0 0 0 0-2.001 2.005-4.719 3.132-7.552 3.132s-5.547-1.127-7.548-3.132z" />
306
- <glyph unicode="" glyph-name="crown-style-circle" d="M512 821.333c-206.186 0-373.333-167.147-373.333-373.333s167.147-373.333 373.333-373.333c206.187 0 373.333 167.147 373.333 373.333s-167.147 373.333-373.333 373.333zM74.667 448c0 241.533 195.801 437.333 437.333 437.333s437.333-195.801 437.333-437.333c0-241.532-195.802-437.333-437.333-437.333s-437.333 195.802-437.333 437.333zM459.153 650.078c14.007 14.034 33.020 21.92 52.847 21.92s38.844-7.887 52.847-21.92l69.060-69.193 55.386 11.099c25.254 5.060 51.337-3.253 69.001-21.996 17.668-18.743 24.431-45.269 17.886-70.178l-57.809-220.109c0 0 0 0 0 0-8.619-32.819-38.285-55.701-72.218-55.701h-268.305c-33.932 0-63.597 22.882-72.217 55.701 0 0 0 0 0 0l-57.809 220.105c-6.543 24.913 0.216 51.439 17.884 70.182s43.748 27.057 69.004 21.996l55.387-11.099 69.058 69.193zM504.452 604.867c0 0 0 0 0 0l-81.176-81.334c-7.569-7.582-18.431-10.876-28.937-8.772l-72.205 14.473c0 0 0 0 0 0-3.608 0.721-7.334-0.465-9.858-3.145-2.524-2.675-3.49-6.464-2.555-10.027 0 0 0 0 0 0l57.809-220.105c1.231-4.689 5.469-7.957 10.317-7.957h268.305c4.847 0 9.084 3.268 10.317 7.957l57.809 220.105c0 0 0 0.004 0 0 0.934 3.558-0.030 7.351-2.556 10.027-2.522 2.679-6.246 3.866-9.856 3.145l-72.205-14.473c-10.505-2.103-21.367 1.19-28.937 8.772l-81.173 81.334c0 0 0 0 0 0-2.001 2.005-4.719 3.132-7.552 3.132s-5.547-1.127-7.548-3.132z" />
306
+ <glyph unicode="&#xea28;" glyph-name="technology-cube-3d" d="M887.893 668.587s0 0 0 0c0 0 0 0 0 0-10.667 17.92-25.6 33.28-44.373 44.373l-270.080 156.16c-37.973 21.76-84.48 21.76-122.027 0l-270.080-156.16c-18.773-10.667-33.707-26.027-44.373-44.373 0 0 0 0 0 0s0 0 0 0c-10.667-18.347-16.64-39.253-16.64-61.013v-318.293c0-21.76 5.973-42.667 16.64-61.013 0 0 0 0 0 0s0 0 0 0c10.667-17.92 25.6-33.28 44.373-44.373l270.080-156.16c37.973-21.76 84.48-21.76 122.027 0l270.080 156.16c18.773 10.667 33.707 26.027 44.373 44.373 0 0 0 0 0 0s0 0 0 0c10.667 18.347 16.64 39.253 16.64 61.013v318.293c0 21.76-5.973 42.667-16.64 61.013zM840.107 292.693l-55.467 32.427c-15.36 8.96-34.987 3.84-43.947-11.52s-3.84-34.987 11.52-43.947l56.32-32.853-264.533-152.747v65.28c0 17.493-14.507 32-32 32s-32-14.507-32-32v-65.28l-264.533 152.747 56.32 32.853c15.36 8.96 20.48 28.587 11.52 43.947s-28.587 20.48-43.947 11.52l-55.467-32.427v311.040l55.467-32.427c15.36-8.96 34.987-3.84 43.947 11.52s3.84 34.987-11.52 43.947l-56.32 32.853 264.533 152.747v-65.28c0-17.493 14.507-32 32-32s32 14.507 32 32v65.28l264.533-152.747-56.32-32.853c-15.36-8.96-20.48-28.587-11.52-43.947s28.587-20.48 43.947-11.52l55.467 32.427v-311.040zM677.547 587.947l-128 73.813c-23.040 13.227-51.627 13.227-74.667 0l-128-73.813c-23.040-13.227-37.547-37.973-37.547-64.853v-151.040c0-26.88 14.080-51.2 37.547-64.853l128-73.813c11.52-6.4 24.32-9.813 37.12-9.813h0.853c12.8 0 25.6 3.413 37.12 9.813l128 73.813c23.040 13.227 37.547 37.973 37.547 64.853v151.040c0 26.88-14.080 51.2-37.547 64.853zM480 304.64l-101.547 58.453c-3.413 1.707-5.12 5.547-5.12 9.387v119.893l101.547-58.453s3.413-2.133 5.12-2.987v-126.72zM512.853 488.107s-0.427 0-0.853 0-0.427 0-0.853 0c-1.707 0-2.987 0.427-4.693 1.28l-101.12 58.453 101.547 58.453c3.413 1.707 7.253 1.707 10.667 0l101.547-58.453-101.547-58.453s-2.987-1.28-4.693-1.28zM650.667 372.48c0-3.84-2.133-7.253-5.12-9.387l-101.547-58.453v126.72s3.413 1.707 5.12 2.987l101.547 58.453v-119.893z" />
307
+ <glyph unicode="&#xea2a;" glyph-name="target-space-object-select" d="M234.667 778.667c-29.474 0-53.333-23.86-53.333-53.333v-554.667c0-29.474 23.86-53.333 53.333-53.333h554.667c29.474 0 53.333 23.859 53.333 53.333v554.667c0 29.474-23.859 53.333-53.333 53.333h-554.667zM117.333 725.333c0 64.82 52.514 117.333 117.333 117.333h554.667c64.819 0 117.333-52.514 117.333-117.333v-554.667c0-64.819-52.514-117.333-117.333-117.333h-554.667c-64.82 0-117.333 52.514-117.333 117.333v554.667zM549.423 689.919c0-20.646-16.734-37.383-37.38-37.383s-37.385 16.737-37.385 37.383c0 20.646 16.738 37.383 37.385 37.383s37.38-16.737 37.38-37.383zM549.423 568.742c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.739-37.385 37.385c0 20.646 16.738 37.382 37.385 37.382s37.38-16.737 37.38-37.382zM549.423 448.004c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.738-37.385 37.385c0 20.646 16.738 37.38 37.385 37.38s37.38-16.734 37.38-37.38zM428.706 448.004c0-20.646-16.737-37.385-37.383-37.385s-37.383 16.738-37.383 37.385c0 20.646 16.737 37.38 37.383 37.38s37.383-16.734 37.383-37.38zM307.987 448.004c0-20.646-16.737-37.385-37.382-37.385s-37.383 16.738-37.383 37.385c0 20.646 16.737 37.38 37.383 37.38s37.382-16.734 37.382-37.38zM670.131 448.004c0-20.646-16.738-37.385-37.385-37.385s-37.38 16.738-37.38 37.385c0 20.646 16.734 37.38 37.38 37.38s37.385-16.734 37.385-37.38zM791.3 448.004c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.738-37.385 37.385c0 20.646 16.738 37.38 37.385 37.38s37.38-16.734 37.38-37.38zM549.423 327.241c0-20.646-16.734-37.38-37.38-37.38s-37.385 16.734-37.385 37.38c0 20.646 16.738 37.385 37.385 37.385s37.38-16.738 37.38-37.385zM549.423 206.481c0-20.646-16.734-37.38-37.38-37.38s-37.385 16.734-37.385 37.38c0 20.646 16.738 37.385 37.385 37.385s37.38-16.738 37.38-37.385z" />
308
+ <glyph unicode="&#xbea29;" glyph-name="brightness-photo-edit" d="M512 909.333c19.145 0 34.667-15.521 34.667-34.667v-42.667c0-19.146-15.522-34.667-34.667-34.667s-34.667 15.521-34.667 34.667v42.667c0 19.146 15.522 34.667 34.667 34.667zM185.834 774.166c13.538 13.539 35.488 13.539 49.026 0l30.293-30.293c13.539-13.538 13.539-35.488 0-49.026s-35.488-13.539-49.026 0l-30.293 30.293c-13.539 13.538-13.539 35.488 0 49.026zM838.165 774.166c13.538-13.538 13.538-35.488 0-49.026l-30.293-30.293c-13.538-13.539-35.486-13.539-49.024 0s-13.538 35.488 0 49.026l30.293 30.293c13.538 13.538 35.486 13.539 49.024 0zM653.423 589.422c-78.106 78.104-204.74 78.104-282.844 0s-78.104-204.739 0-282.845c78.103-78.101 204.738-78.101 282.844 0 78.106 78.106 78.106 204.74 0 282.845zM321.553 638.447c105.181 105.181 275.712 105.181 380.893 0s105.182-275.712 0-380.894c-105.182-105.182-275.712-105.182-380.893 0s-105.181 275.712 0 380.894zM50.667 448c0 19.145 15.521 34.667 34.667 34.667h42.667c19.146 0 34.667-15.522 34.667-34.667s-15.521-34.667-34.667-34.667h-42.667c-19.146 0-34.667 15.522-34.667 34.667zM861.333 448c0 19.145 15.522 34.667 34.667 34.667h42.667c19.145 0 34.667-15.522 34.667-34.667s-15.522-34.667-34.667-34.667h-42.667c-19.145 0-34.667 15.522-34.667 34.667zM265.153 201.152c13.539-13.538 13.539-35.486 0-49.024l-30.293-30.293c-13.538-13.538-35.488-13.538-49.026 0s-13.538 35.486 0 49.024l30.293 30.293c13.538 13.538 35.488 13.538 49.026 0zM758.848 201.152c13.538 13.538 35.486 13.538 49.024 0l30.293-30.293c13.538-13.538 13.538-35.486 0-49.024s-35.486-13.538-49.024 0l-30.293 30.293c-13.538 13.538-13.538 35.486 0 49.024zM512 98.667c19.145 0 34.667-15.522 34.667-34.667v-42.667c0-19.145-15.522-34.667-34.667-34.667s-34.667 15.522-34.667 34.667v42.667c0 19.145 15.522 34.667 34.667 34.667z" />
307
309
  <glyph unicode="zendesk-logo" glyph-name="zendesk-logo" d="M479.326 606.897v-463.998h-384.322l384.322 463.998zM479.326 773.404c0-50.964-20.245-99.841-56.284-135.878-36.037-36.037-84.913-56.282-135.878-56.282s-99.841 20.245-135.878 56.282c-36.037 36.037-56.283 84.914-56.283 135.878h384.322zM542.639 142.861c0 50.961 20.245 99.84 56.282 135.876s84.915 56.282 135.876 56.282c50.965 0 99.844-20.245 135.881-56.282s56.282-84.915 56.282-135.876h-384.32zM542.639 309.367v464.036h384.401l-384.401-464.036z" />
308
310
  <glyph unicode="youtube" glyph-name="youtube" d="M512 66.987c-27.733 0-273.493 0.427-343.040 22.187-47.787 14.933-84.907 58.027-97.28 111.787-18.347 80.213-18.773 240.64-18.773 247.040s0 166.826 18.773 247.040c12.373 54.187 49.493 96.853 97.28 111.787 69.12 21.76 315.306 22.187 343.040 22.187s273.92-0.427 343.040-22.187c47.787-14.933 84.907-57.6 97.28-111.787 18.347-80.213 18.773-240.64 18.773-247.040s0-166.827-18.773-247.040c-12.373-54.187-49.493-96.853-97.28-111.787-69.12-21.76-315.307-22.187-343.040-22.187zM512 765.013c-72.96 0-273.066-3.413-323.84-19.2-26.027-8.107-46.507-32.853-53.76-64.853-16.64-73.387-17.067-231.253-17.067-232.96s0-159.573 17.067-232.96c7.253-32 27.733-56.747 53.76-64.853 50.773-15.787 250.88-19.2 323.84-19.2s273.067 3.413 323.84 19.2c26.027 8.107 46.507 32.853 53.76 64.853 16.64 73.387 17.067 231.253 17.067 232.96s0 159.573-17.067 232.96c-7.253 32-27.733 56.747-53.76 64.853-50.773 15.787-250.88 19.2-323.84 19.2zM426.667 288c-5.546 0-11.093 1.28-16.213 4.267-9.813 5.547-16.213 16.213-16.213 27.733v256c0 11.52 5.973 22.187 16.213 27.733 9.813 5.547 22.186 5.547 32 0l221.867-128c9.813-5.547 16.213-16.213 16.213-27.733s-5.973-22.187-16.213-27.733l-221.867-128c-5.12-2.987-10.667-4.267-16.213-4.267h0.426zM458.667 520.533v-145.067l125.867 72.533-125.867 72.533z" />
309
311
  <glyph unicode="workspace-mode" glyph-name="workspace-mode" d="M96 832c0 17.673 14.327 32 32 32h256c17.673 0 32-14.327 32-32s-14.327-32-32-32h-256c-17.673 0-32 14.327-32 32zM597.333 800c-5.879 0-10.667-4.788-10.667-10.667v-256c0-5.879 4.787-10.667 10.667-10.667h256c5.879 0 10.667 4.787 10.667 10.667v256c0 5.879-4.787 10.667-10.667 10.667h-256zM522.667 789.333c0 41.225 33.442 74.667 74.667 74.667h256c41.225 0 74.667-33.442 74.667-74.667v-256c0-41.225-33.442-74.667-74.667-74.667h-256c-41.225 0-74.667 33.442-74.667 74.667v256zM96 661.333c0 17.673 14.327 32 32 32h256c17.673 0 32-14.327 32-32s-14.327-32-32-32h-256c-17.673 0-32 14.327-32 32zM96 490.667c0 17.673 14.327 32 32 32h256c17.673 0 32-14.327 32-32s-14.327-32-32-32h-256c-17.673 0-32 14.327-32 32zM170.667 288c-5.879 0-10.667-4.787-10.667-10.667v-170.667c0-5.879 4.788-10.667 10.667-10.667h682.667c5.879 0 10.667 4.787 10.667 10.667v170.667c0 5.879-4.787 10.667-10.667 10.667h-682.667zM96 277.333c0 41.225 33.442 74.667 74.667 74.667h682.667c41.225 0 74.667-33.442 74.667-74.667v-170.667c0-41.225-33.442-74.667-74.667-74.667h-682.667c-41.225 0-74.667 33.442-74.667 74.667v170.667z" />
@@ -343,7 +345,9 @@
343
345
  <glyph unicode="text-cross" glyph-name="text-cross" d="M757.333 320c0-88.367-71.633-160-160-160h-256c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c53.018 0 96 42.982 96 96h64zM181.333 448c0 17.673 14.327 32 32 32h597.333c17.673 0 32-14.327 32-32s-14.327-32-32-32h-597.333c-17.673 0-32 14.327-32 32zM309.333 576c0 88.366 71.634 160 160 160h213.333c17.673 0 32-14.327 32-32s-14.327-32-32-32h-213.333c-53.019 0-96-42.981-96-96h-64z" />
344
346
  <glyph unicode="text-bold" glyph-name="text-bold" d="M266.667 704c0 17.673 14.327 32 32 32h250.667c88.367 0 160-71.634 160-160 0-43.025-16.981-82.086-44.612-110.839 54.694-25.434 92.612-80.87 92.612-145.161 0-88.367-71.633-160-160-160h-298.667c-17.673 0-32 14.327-32 32v512zM330.667 416v-192h266.667c53.018 0 96 42.982 96 96s-42.982 96-96 96h-266.667zM330.667 480h218.667c53.018 0 96 42.982 96 96s-42.982 96-96 96h-218.667v-192z" />
345
347
  <glyph unicode="test-lab-flask" glyph-name="test-lab-flask" d="M815.817 284.702l-168.96 270.935v212.053h18.347c17.493 0 32 14.507 32 32s-14.507 32-32 32h-301.226c-17.493 0-32-14.507-32-32s14.507-32 32-32h17.92v-212.053l-168.96-270.935c-32-51.2-33.707-115.627-4.267-168.533 29.44-52.48 84.907-85.333 145.067-85.333h321.279c60.16 0 115.627 32.853 144.64 85.76 29.013 52.48 27.307 116.907-4.267 168.107h0.427zM582.857 767.69v-203.947h-136.96v203.947h136.96zM764.19 147.742c-17.92-32.427-52.053-52.48-88.747-52.48h-321.279c-37.12 0-71.253 20.053-89.173 52.48s-17.067 72.107 2.56 103.253l155.307 248.747h183.466l155.307-248.747c19.627-31.147 20.48-70.827 2.56-103.253z" />
348
+ <glyph unicode="technology-cube-3d" glyph-name="technology-cube-3d" d="M887.893 668.587s0 0 0 0c0 0 0 0 0 0-10.667 17.92-25.6 33.28-44.373 44.373l-270.080 156.16c-37.973 21.76-84.48 21.76-122.027 0l-270.080-156.16c-18.773-10.667-33.707-26.027-44.373-44.373 0 0 0 0 0 0s0 0 0 0c-10.667-18.347-16.64-39.253-16.64-61.013v-318.293c0-21.76 5.973-42.667 16.64-61.013 0 0 0 0 0 0s0 0 0 0c10.667-17.92 25.6-33.28 44.373-44.373l270.080-156.16c37.973-21.76 84.48-21.76 122.027 0l270.080 156.16c18.773 10.667 33.707 26.027 44.373 44.373 0 0 0 0 0 0s0 0 0 0c10.667 18.347 16.64 39.253 16.64 61.013v318.293c0 21.76-5.973 42.667-16.64 61.013zM840.107 292.693l-55.467 32.427c-15.36 8.96-34.987 3.84-43.947-11.52s-3.84-34.987 11.52-43.947l56.32-32.853-264.533-152.747v65.28c0 17.493-14.507 32-32 32s-32-14.507-32-32v-65.28l-264.533 152.747 56.32 32.853c15.36 8.96 20.48 28.587 11.52 43.947s-28.587 20.48-43.947 11.52l-55.467-32.427v311.040l55.467-32.427c15.36-8.96 34.987-3.84 43.947 11.52s3.84 34.987-11.52 43.947l-56.32 32.853 264.533 152.747v-65.28c0-17.493 14.507-32 32-32s32 14.507 32 32v65.28l264.533-152.747-56.32-32.853c-15.36-8.96-20.48-28.587-11.52-43.947s28.587-20.48 43.947-11.52l55.467 32.427v-311.040zM677.547 587.947l-128 73.813c-23.040 13.227-51.627 13.227-74.667 0l-128-73.813c-23.040-13.227-37.547-37.973-37.547-64.853v-151.040c0-26.88 14.080-51.2 37.547-64.853l128-73.813c11.52-6.4 24.32-9.813 37.12-9.813h0.853c12.8 0 25.6 3.413 37.12 9.813l128 73.813c23.040 13.227 37.547 37.973 37.547 64.853v151.040c0 26.88-14.080 51.2-37.547 64.853zM480 304.64l-101.547 58.453c-3.413 1.707-5.12 5.547-5.12 9.387v119.893l101.547-58.453s3.413-2.133 5.12-2.987v-126.72zM512.853 488.107s-0.427 0-0.853 0-0.427 0-0.853 0c-1.707 0-2.987 0.427-4.693 1.28l-101.12 58.453 101.547 58.453c3.413 1.707 7.253 1.707 10.667 0l101.547-58.453-101.547-58.453s-2.987-1.28-4.693-1.28zM650.667 372.48c0-3.84-2.133-7.253-5.12-9.387l-101.547-58.453v126.72s3.413 1.707 5.12 2.987l101.547 58.453v-119.893z" />
346
349
  <glyph unicode="tasklist-to-do-checkmark" glyph-name="tasklist-to-do-checkmark" d="M361.387 404.053c12.373-12.373 32.853-12.373 45.227 0l64 64c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0l-41.387-41.387-20.053 20.053c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l42.667-42.667zM768 778.667h-53.333v10.667c0 41.387-33.28 74.667-74.667 74.667h-256c-41.387 0-74.667-33.28-74.667-74.667v-10.667h-53.333c-64.853 0-117.333-52.48-117.333-117.333v-512c0-64.853 52.48-117.333 117.333-117.333h512c64.853 0 117.333 52.48 117.333 117.333v512c0 64.853-52.48 117.333-117.333 117.333zM373.333 789.333c0 5.973 4.693 10.667 10.667 10.667h256c5.973 0 10.667-4.693 10.667-10.667v-85.333c0-5.973-4.693-10.667-10.667-10.667h-256c-5.973 0-10.667 4.693-10.667 10.667v85.333zM821.333 149.333c0-29.44-23.893-53.333-53.333-53.333h-512c-29.44 0-53.333 23.893-53.333 53.333v512c0 29.44 23.893 53.333 53.333 53.333h53.333v-10.667c0-41.387 33.28-74.667 74.667-74.667h256c41.387 0 74.667 33.28 74.667 74.667v10.667h53.333c29.44 0 53.333-23.893 53.333-53.333v-512zM682.667 309.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32zM682.667 480h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z" />
350
+ <glyph unicode="target-space-object-select" glyph-name="target-space-object-select" d="M234.667 778.667c-29.474 0-53.333-23.86-53.333-53.333v-554.667c0-29.474 23.86-53.333 53.333-53.333h554.667c29.474 0 53.333 23.859 53.333 53.333v554.667c0 29.474-23.859 53.333-53.333 53.333h-554.667zM117.333 725.333c0 64.82 52.514 117.333 117.333 117.333h554.667c64.819 0 117.333-52.514 117.333-117.333v-554.667c0-64.819-52.514-117.333-117.333-117.333h-554.667c-64.82 0-117.333 52.514-117.333 117.333v554.667zM549.423 689.919c0-20.646-16.734-37.383-37.38-37.383s-37.385 16.737-37.385 37.383c0 20.646 16.738 37.383 37.385 37.383s37.38-16.737 37.38-37.383zM549.423 568.742c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.739-37.385 37.385c0 20.646 16.738 37.382 37.385 37.382s37.38-16.737 37.38-37.382zM549.423 448.004c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.738-37.385 37.385c0 20.646 16.738 37.38 37.385 37.38s37.38-16.734 37.38-37.38zM428.706 448.004c0-20.646-16.737-37.385-37.383-37.385s-37.383 16.738-37.383 37.385c0 20.646 16.737 37.38 37.383 37.38s37.383-16.734 37.383-37.38zM307.987 448.004c0-20.646-16.737-37.385-37.382-37.385s-37.383 16.738-37.383 37.385c0 20.646 16.737 37.38 37.383 37.38s37.382-16.734 37.382-37.38zM670.131 448.004c0-20.646-16.738-37.385-37.385-37.385s-37.38 16.738-37.38 37.385c0 20.646 16.734 37.38 37.38 37.38s37.385-16.734 37.385-37.38zM791.3 448.004c0-20.646-16.734-37.385-37.38-37.385s-37.385 16.738-37.385 37.385c0 20.646 16.738 37.38 37.385 37.38s37.38-16.734 37.38-37.38zM549.423 327.241c0-20.646-16.734-37.38-37.38-37.38s-37.385 16.734-37.385 37.38c0 20.646 16.738 37.385 37.385 37.385s37.38-16.738 37.38-37.385zM549.423 206.481c0-20.646-16.734-37.38-37.38-37.38s-37.385 16.734-37.385 37.38c0 20.646 16.738 37.385 37.385 37.385s37.38-16.738 37.38-37.385z" />
347
351
  <glyph unicode="target" glyph-name="target" d="M512 864c17.673 0 32-14.327 32-32v-54.876c73.664-7.121 145.395-38.889 201.813-95.307s88.188-128.151 95.309-201.817h54.878c17.673 0 32-14.327 32-32s-14.327-32-32-32h-54.878c-7.121-73.664-38.891-145.399-95.309-201.818s-128.149-88.183-201.813-95.305v-54.878c0-17.673-14.327-32-32-32s-32 14.327-32 32v54.878c-73.666 7.117-145.4 38.886-201.818 95.305s-88.187 128.154-95.308 201.818h-54.874c-17.673 0-32 14.327-32 32s14.327 32 32 32h54.874c7.12 73.666 38.889 145.399 95.308 201.817s128.152 88.188 201.818 95.308v54.876c0 17.673 14.327 32 32 32zM480 712.751c-57.225-6.877-112.647-32.273-156.564-76.189s-69.312-99.338-76.189-156.562h51.42c17.673 0 32-14.327 32-32s-14.327-32-32-32h-51.42c6.877-57.225 32.274-112.644 76.189-156.561s99.339-69.312 156.564-76.19v51.418c0 17.673 14.327 32 32 32s32-14.327 32-32v-51.418c57.225 6.878 112.644 32.273 156.561 76.19 43.913 43.917 69.312 99.337 76.19 156.561h-51.418c-17.673 0-32 14.327-32 32s14.327 32 32 32h51.418c-6.878 57.224-32.277 112.646-76.19 156.562-43.917 43.915-99.337 69.312-156.561 76.189v-51.418c0-17.673-14.327-32-32-32s-32 14.327-32 32v51.418z" />
348
352
  <glyph unicode="switch" glyph-name="switch" d="M96 448c0 123.7 100.3 224 224 224s224-100.3 224-224c0-123.699-100.301-224-224-224s-224 100.301-224 224zM320 608c-88.354 0-160-71.646-160-160s71.646-160 160-160c88.354 0 160 71.646 160 160s-71.646 160-160 160zM431.104 576c0 17.673 14.327 32 32 32h304.896c88.371 0 160-71.628 160-160s-71.629-160-160-160h-304.896c-17.673 0-32 14.327-32 32s14.327 32 32 32h304.896c53.026 0 96 42.974 96 96s-42.974 96-96 96h-304.896c-17.673 0-32 14.327-32 32z" />
349
353
  <glyph unicode="substract-group" glyph-name="substract-group" d="M552.218 826.008c-22.212 22.211-58.223 22.211-80.435 0s-22.208-58.222 0-80.433c22.212-22.211 58.223-22.211 80.435 0 22.208 22.211 22.208 58.222 0 80.433zM426.528 871.263c47.204 47.205 123.739 47.204 170.941 0 47.206-47.204 47.206-123.738 0-170.943-47.202-47.204-123.738-47.204-170.941 0s-47.204 123.738 0 170.943zM350.583 739.254c10.021-14.557 6.344-34.482-8.214-44.503-30.192-20.783-56.336-46.927-77.12-77.119-10.021-14.557-29.946-18.235-44.503-8.214s-18.235 29.946-8.214 44.503c25.211 36.624 56.923 68.336 93.548 93.548 14.557 10.021 34.482 6.343 44.503-8.214zM673.417 739.254c10.022 14.557 29.948 18.235 44.506 8.214 36.621-25.211 68.335-56.923 93.547-93.548 10.018-14.557 6.345-34.482-8.213-44.503s-34.483-6.343-44.506 8.214c-20.783 30.192-46.925 56.336-77.12 77.119-14.558 10.021-18.231 29.946-8.213 44.503zM214.424 488.218c-22.211 22.208-58.222 22.208-80.433 0-22.211-22.212-22.211-58.223 0-80.435s58.222-22.208 80.433 0c22.211 22.212 22.211 58.223 0 80.435zM259.679 533.471c47.204-47.203 47.204-123.739 0-170.941-47.204-47.206-123.738-47.206-170.943 0-47.204 47.202-47.204 123.738 0 170.941s123.738 47.204 170.943 0zM890.010 488.218c-22.212 22.208-58.223 22.208-80.435 0-22.208-22.212-22.208-58.223 0-80.435 22.212-22.212 58.223-22.208 80.435 0 22.208 22.212 22.208 58.223 0 80.435zM935.262 533.471c47.206-47.203 47.206-123.739 0-170.941-47.202-47.206-123.738-47.206-170.94 0-47.206 47.202-47.206 123.738 0 170.941 47.202 47.204 123.738 47.204 170.94 0zM212.532 242.078c-10.021 14.558-6.343 34.483 8.214 44.506 14.557 10.018 34.482 6.345 44.503-8.213 20.783-30.195 46.927-56.337 77.12-77.12 14.557-10.022 18.235-29.948 8.214-44.506s-29.946-18.231-44.503-8.213c-36.624 25.212-68.336 56.926-93.548 93.547zM803.255 286.583c14.558-10.022 18.231-29.948 8.213-44.506-25.212-36.621-56.926-68.335-93.547-93.547-14.558-10.018-34.483-6.345-44.506 8.213-10.018 14.558-6.345 34.483 8.213 44.506 30.195 20.783 56.337 46.925 77.12 77.12 10.022 14.558 29.948 18.231 44.506 8.213zM552.218 150.426c-22.212 22.208-58.223 22.208-80.435 0-22.212-22.212-22.208-58.223 0-80.435 22.212-22.208 58.223-22.208 80.435 0 22.208 22.212 22.208 58.223 0 80.435zM597.47 195.678c47.206-47.202 47.206-123.738 0-170.94-47.202-47.206-123.738-47.206-170.941 0-47.205 47.202-47.204 123.738 0 170.94 47.204 47.206 123.739 47.206 170.941 0z" />
@@ -571,6 +575,7 @@
571
575
  <glyph unicode="bucket-paint" glyph-name="bucket-paint" d="M127.572 396.373l159.573-159.573c23.893-23.893 55.040-35.84 86.613-35.84s62.721 11.947 86.615 35.84l240.213 240.213c5.973 5.973 9.387 13.653 9.387 22.613 0 9.387-4.267 17.493-10.667 23.467l-286.295 286.293-46.080 46.933c-12.373 12.373-32.427 12.8-45.227 0-12.8-12.373-12.8-32.853 0-45.227l24.32-24.747-218.027-218.027c-15.787-15.787-26.453-35.84-32-57.173-0.853-3.413-1.707-6.827-2.133-10.667 0-0.427 0-1.28 0-1.707 0 0 0 0 0-0.427-0.853-5.547-1.707-10.667-1.707-16.213 0-32.853 12.8-63.573 35.84-86.613l-0.427 0.853zM600.32 532.053h-419.841l209.92 209.92 209.921-209.92zM414.719 282.027c-22.613-22.613-59.733-22.613-82.347 0l-159.573 159.573c-7.253 7.253-11.52 16.64-14.080 26.453h442.028l-186.028-186.027zM829.013 393.813c-12.373 13.227-34.987 13.227-46.933 0-16.64-17.92-98.987-110.507-98.987-179.627s55.040-122.453 122.453-122.453c67.413 0 122.453 55.040 122.453 122.453s-82.347 161.707-98.987 179.627zM805.547 155.733c-32 0-58.453 26.027-58.453 58.453 0 25.6 29.44 72.107 58.453 108.8 29.013-36.693 58.453-83.2 58.453-108.8 0-32-26.027-58.453-58.453-58.453zM512 77.227h-366.081c-17.493 0-32-14.507-32-32s14.507-32 32-32h366.081c17.493 0 32 14.507 32 32s-14.507 32-32 32z" />
572
576
  <glyph unicode="brush-edit-create" glyph-name="brush-edit-create" d="M885.333 799.572c-45.227 45.227-118.187 47.787-166.4 5.547l-343.039-299.946c-24.32-21.333-38.827-52.053-40.107-84.48 0-5.12 0.427-9.813 0.853-14.933-16.213 1.707-33.28 0.853-49.92-2.56-53.76-11.52-97.28-49.067-116.48-100.693l-64.853-173.227c-5.973-15.36-3.413-32.853 5.973-46.507s25.173-21.76 41.387-21.76h157.867c72.107 0 133.972 41.387 161.705 107.947 11.52 27.307 15.36 55.467 12.8 83.2 5.547-0.853 11.093-1.707 16.64-1.707 1.28 0 2.56 0 3.84 0 32.427 0.853 63.147 15.787 84.48 40.107l299.947 343.039c41.813 47.787 39.68 121.173-5.547 165.973h0.853zM413.868 193.28c-13.653-33.28-47.787-68.693-102.4-68.693h-138.667l58.027 154.88c11.947 31.573 37.12 53.333 69.973 60.587s65.28-2.56 88.747-26.027c38.825-38.827 37.972-87.893 23.893-120.747h0.427zM504.32 314.453c-14.507-1.28-29.013 5.12-39.68 15.787l-49.065 49.067c-10.667 10.667-16.213 24.747-15.787 39.68s6.827 28.587 18.347 38.4l43.945 38.4 118.613-118.613-38.4-43.947c-9.813-11.093-23.467-17.493-38.4-18.347l0.427-0.427zM842.667 675.412l-219.307-250.879-112.64 112.639 250.88 219.307c11.093 9.387 24.32 14.080 37.973 14.080 14.933 0 29.44-5.547 40.96-16.64 21.333-21.333 22.613-55.893 2.56-78.933l-0.427 0.427z" />
573
577
  <glyph unicode="browser-internet-web-windows" glyph-name="browser-internet-web-windows" d="M810.667 864h-426.667c-64.853 0-117.333-52.48-117.333-117.333v-53.333h-53.333c-64.853 0-117.333-52.48-117.333-117.333v-426.667c0-64.853 52.48-117.333 117.333-117.333h426.667c64.853 0 117.333 52.48 117.333 117.333v96h53.333c64.853 0 117.333 52.48 117.333 117.333v384c0 64.853-52.48 117.333-117.333 117.333zM693.333 149.333c0-29.44-23.893-53.333-53.333-53.333h-426.667c-29.44 0-53.333 23.893-53.333 53.333v266.667h533.333v-266.667zM693.333 480h-533.333v96c0 29.44 23.893 53.333 53.333 53.333h426.667c29.44 0 53.333-23.893 53.333-53.333v-96zM861.867 361.813c0-29.44-23.893-53.333-53.333-53.333h-53.333v266.667c0 64.853-52.48 117.333-117.333 117.333h-309.333v53.333c0 29.44 23.893 53.333 53.333 53.333h426.667c29.44 0 53.333-23.893 53.333-53.333v-384zM256 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427zM362.667 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427zM469.76 586.667c-17.92 0-32.427-14.507-32.427-32.427s14.507-32.427 32.427-32.427 32.427 14.507 32.427 32.427-14.507 32.427-32.427 32.427z" />
578
+ <glyph unicode="brightness-photo-edit" glyph-name="brightness-photo-edit" d="M512 909.333c19.145 0 34.667-15.521 34.667-34.667v-42.667c0-19.146-15.522-34.667-34.667-34.667s-34.667 15.521-34.667 34.667v42.667c0 19.146 15.522 34.667 34.667 34.667zM185.834 774.166c13.538 13.539 35.488 13.539 49.026 0l30.293-30.293c13.539-13.538 13.539-35.488 0-49.026s-35.488-13.539-49.026 0l-30.293 30.293c-13.539 13.538-13.539 35.488 0 49.026zM838.165 774.166c13.538-13.538 13.538-35.488 0-49.026l-30.293-30.293c-13.538-13.539-35.486-13.539-49.024 0s-13.538 35.488 0 49.026l30.293 30.293c13.538 13.538 35.486 13.539 49.024 0zM653.423 589.422c-78.106 78.104-204.74 78.104-282.844 0s-78.104-204.739 0-282.845c78.103-78.101 204.738-78.101 282.844 0 78.106 78.106 78.106 204.74 0 282.845zM321.553 638.447c105.181 105.181 275.712 105.181 380.893 0s105.182-275.712 0-380.894c-105.182-105.182-275.712-105.182-380.893 0s-105.181 275.712 0 380.894zM50.667 448c0 19.145 15.521 34.667 34.667 34.667h42.667c19.146 0 34.667-15.522 34.667-34.667s-15.521-34.667-34.667-34.667h-42.667c-19.146 0-34.667 15.522-34.667 34.667zM861.333 448c0 19.145 15.522 34.667 34.667 34.667h42.667c19.145 0 34.667-15.522 34.667-34.667s-15.522-34.667-34.667-34.667h-42.667c-19.145 0-34.667 15.522-34.667 34.667zM265.153 201.152c13.539-13.538 13.539-35.486 0-49.024l-30.293-30.293c-13.538-13.538-35.488-13.538-49.026 0s-13.538 35.486 0 49.024l30.293 30.293c13.538 13.538 35.488 13.538 49.026 0zM758.848 201.152c13.538 13.538 35.486 13.538 49.024 0l30.293-30.293c13.538-13.538 13.538-35.486 0-49.024s-35.486-13.538-49.024 0l-30.293 30.293c-13.538 13.538-13.538 35.486 0 49.024zM512 98.667c19.145 0 34.667-15.522 34.667-34.667v-42.667c0-19.145-15.522-34.667-34.667-34.667s-34.667 15.522-34.667 34.667v42.667c0 19.145 15.522 34.667 34.667 34.667z" />
574
579
  <glyph unicode="brain" glyph-name="brain" d="M518.878 829.333c42.735 34.135 99.942 44.083 151.693 26.379s90.88-60.609 103.753-113.768l0.158-0.694c0.934-4.268 4.254-7.605 8.512-8.563 59.068-12.077 108.284-52.717 131.315-108.449 23.057-55.807 16.836-119.431-16.602-169.71l-0.196-0.299c-2.475-3.631-2.475-8.401-0.004-12.032l0.205-0.294c33.434-50.283 39.654-113.907 16.597-169.715-23.031-55.731-72.243-96.371-131.315-108.446-4.258-0.96-7.578-4.297-8.512-8.563l-0.137-0.606c-12.732-53.252-51.806-96.299-103.578-114.121-51.772-17.818-109.056-7.936-151.868 26.197l-0.179 0.145c-3.921 3.17-9.523 3.17-13.44 0l-0.158-0.128c-42.735-34.133-99.945-44.083-151.695-26.377-51.75 17.702-90.877 60.608-103.75 113.766l-0.16 0.695c-0.934 4.267-4.254 7.603-8.509 8.563-59.062 12.066-108.276 52.693-131.313 108.412-23.068 55.795-16.865 119.407 16.547 169.694l0.226 0.341c2.482 3.635 2.484 8.418 0.002 12.049l-0.23 0.337c-33.412 50.287-39.613 113.904-16.545 169.698 23.037 55.718 72.25 96.343 131.311 108.413 4.256 0.958 7.577 4.295 8.51 8.564l0.149 0.649c12.803 53.205 51.902 96.181 103.663 113.943s109.007 7.847 151.781-26.287l0.171-0.134c3.499-2.831 8.337-3.135 12.126-0.912 0.474 0.43 0.964 0.847 1.472 1.251zM560.977 780.999c-0.64-0.611-1.306-1.199-2.001-1.76-27.362-22.138-66.462-22.166-93.85-0.082-25.664 20.442-59.988 26.373-91.025 15.723-30.98-10.631-54.401-36.312-62.149-68.123-6.421-28.631-28.911-50.932-57.624-57.096l-0.35-0.075c-38.292-7.772-70.209-34.084-85.138-70.193-14.908-36.058-10.926-77.161 10.618-109.686 17.166-25.31 17.166-58.53 0-83.84-21.544-32.525-25.526-73.63-10.618-109.687 14.929-36.109 46.845-62.421 85.137-70.195l0.351-0.068c28.701-6.161 51.184-28.45 57.616-57.062 7.791-31.782 31.228-57.417 62.199-68.011 31.032-10.615 65.337-4.663 90.975 15.782 27.358 22.059 66.394 22.063 93.756 0.004 25.681-20.433 60.028-26.342 91.068-15.659 30.989 10.667 54.396 36.399 62.101 68.245 6.413 28.642 28.907 50.957 57.63 57.122l0.346 0.077c38.298 7.774 70.217 34.095 85.137 70.212 14.908 36.075 10.906 77.197-10.662 109.717-17.118 25.289-17.118 58.449 0 83.738 21.568 32.521 25.57 73.642 10.662 109.715-14.921 36.117-46.839 62.441-85.137 70.217l-0.35 0.071c-28.698 6.161-51.183 28.449-57.613 57.064-7.791 31.779-31.228 57.413-62.199 68.008-30.195 10.33-63.484 4.974-88.879-14.158zM512 826.683c17.673 0 32-14.327 32-32v-693.324c0-17.673-14.327-32-32-32s-32 14.327-32 32v693.324c0 17.673 14.327 32 32 32zM725.423 330.633c-29.474 0-53.372-23.898-53.372-53.372 0-17.673-14.323-32-32-32-17.673 0-32 14.327-32 32 0 64.823 52.548 117.372 117.372 117.372 17.673 0 32-14.327 32-32s-14.327-32-32-32zM383.946 650.738c17.673 0 32-14.327 32-32 0-64.821-52.548-117.37-117.369-117.37-17.673 0-32 14.327-32 32.001s14.327 32 32 32c29.475 0 53.369 23.894 53.369 53.369 0 17.673 14.327 32 32 32zM266.577 362.633c0 17.673 14.327 32 32 32 64.821 0 117.369-52.548 117.369-117.372 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 29.474-23.894 53.372-53.369 53.372-17.673 0-32 14.327-32 32zM640.051 650.738c17.677 0 32-14.327 32-32 0-29.475 23.898-53.369 53.372-53.369 17.673 0 32-14.327 32-32s-14.327-32.001-32-32.001c-64.823 0-117.372 52.549-117.372 117.37 0 17.673 14.327 32 32 32z" />
575
580
  <glyph unicode="bookmark-plus-add" glyph-name="bookmark-plus-add" d="M789.333 74.667c-11.093 0-21.76 3.413-31.147 10.24l-246.187 175.787-246.614-175.787c-16.213-11.52-37.547-13.227-55.467-3.84-17.92 8.96-29.013 27.307-29.013 47.36v532.907c0 88.32 71.68 160 160 160h341.334c88.32 0 160-71.68 160-160v-533.333c0-20.053-11.093-38.4-29.013-47.36-7.68-3.84-16.213-5.973-24.32-5.973h0.427zM512 327.253c11.093 0 21.76-3.413 31.147-9.813l235.52-168.533v512.427c0 52.907-43.093 96-96 96h-341.334c-52.907 0-96-43.093-96-96v-512.853l235.947 168.533c9.387 6.827 20.053 9.813 31.147 9.813l-0.427 0.427zM512 650.667c17.673 0 32-14.327 32-32v-170.667c0-17.673-14.327-32-32-32s-32 14.327-32 32v170.667c0 17.673 14.327 32 32 32zM394.667 533.333c0 17.673 14.327 32 32 32h170.257c17.673 0 32-14.327 32-32s-14.327-32-32-32h-170.257c-17.673 0-32 14.327-32 32z" />
576
581
  <glyph unicode="bookmark" glyph-name="bookmark" d="M789.333 74.667c-11.093 0-21.76 3.413-31.147 10.24l-246.187 175.787-246.614-175.787c-16.213-11.52-37.547-13.227-55.467-3.84-17.92 8.96-29.013 27.307-29.013 47.36v532.907c0 88.32 71.68 160 160 160h341.334c88.32 0 160-71.68 160-160v-533.333c0-20.053-11.093-38.4-29.013-47.36-7.68-3.84-16.213-5.973-24.32-5.973h0.427zM512 327.253c11.093 0 21.76-3.413 31.147-9.813l235.52-168.533v512.427c0 52.907-43.093 96-96 96h-341.334c-52.907 0-96-43.093-96-96v-512.853l235.947 168.533c9.387 6.827 20.053 9.813 31.147 9.813l-0.427 0.427z" />
@@ -0,0 +1,4 @@
1
+ <!-- Generated by IcoMoon.io -->
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
3
+ <path d="M16 1.583c0.598 0 1.083 0.485 1.083 1.083v1.333c0 0.598-0.485 1.083-1.083 1.083s-1.083-0.485-1.083-1.083v-1.333c0-0.598 0.485-1.083 1.083-1.083zM5.807 5.807c0.423-0.423 1.109-0.423 1.532 0l0.947 0.947c0.423 0.423 0.423 1.109 0 1.532s-1.109 0.423-1.532 0l-0.947-0.947c-0.423-0.423-0.423-1.109 0-1.532zM26.193 5.807c0.423 0.423 0.423 1.109 0 1.532l-0.947 0.947c-0.423 0.423-1.109 0.423-1.532 0s-0.423-1.109 0-1.532l0.947-0.947c0.423-0.423 1.109-0.423 1.532 0zM20.419 11.581c-2.441-2.441-6.398-2.441-8.839 0s-2.441 6.398 0 8.839c2.441 2.441 6.398 2.441 8.839 0s2.441-6.398 0-8.839zM10.049 10.049c3.287-3.287 8.616-3.287 11.903 0s3.287 8.616 0 11.903c-3.287 3.287-8.616 3.287-11.903 0s-3.287-8.616 0-11.903zM1.583 16c0-0.598 0.485-1.083 1.083-1.083h1.333c0.598 0 1.083 0.485 1.083 1.083s-0.485 1.083-1.083 1.083h-1.333c-0.598 0-1.083-0.485-1.083-1.083zM26.917 16c0-0.598 0.485-1.083 1.083-1.083h1.333c0.598 0 1.083 0.485 1.083 1.083s-0.485 1.083-1.083 1.083h-1.333c-0.598 0-1.083-0.485-1.083-1.083zM8.286 23.714c0.423 0.423 0.423 1.109 0 1.532l-0.947 0.947c-0.423 0.423-1.109 0.423-1.532 0s-0.423-1.109 0-1.532l0.947-0.947c0.423-0.423 1.109-0.423 1.532 0zM23.714 23.714c0.423-0.423 1.109-0.423 1.532 0l0.947 0.947c0.423 0.423 0.423 1.109 0 1.532s-1.109 0.423-1.532 0l-0.947-0.947c-0.423-0.423-0.423-1.109 0-1.532zM16 26.917c0.598 0 1.083 0.485 1.083 1.083v1.333c0 0.598-0.485 1.083-1.083 1.083s-1.083-0.485-1.083-1.083v-1.333c0-0.598 0.485-1.083 1.083-1.083z"></path>
4
+ </svg>
@@ -0,0 +1,13 @@
1
+ <!-- Generated by IcoMoon.io -->
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
3
+ <path d="M7.333 5.667c-0.921 0-1.667 0.746-1.667 1.667v17.333c0 0.921 0.746 1.667 1.667 1.667h17.333c0.921 0 1.667-0.746 1.667-1.667v-17.333c0-0.921-0.746-1.667-1.667-1.667h-17.333zM3.667 7.333c0-2.026 1.641-3.667 3.667-3.667h17.333c2.026 0 3.667 1.641 3.667 3.667v17.333c0 2.026-1.641 3.667-3.667 3.667h-17.333c-2.026 0-3.667-1.641-3.667-3.667v-17.333z"></path>
4
+ <path d="M17.169 8.44c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
5
+ <path d="M17.169 12.227c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
6
+ <path d="M17.169 16c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
7
+ <path d="M13.397 16c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
8
+ <path d="M9.625 16c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
9
+ <path d="M20.942 16c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
10
+ <path d="M24.728 16c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
11
+ <path d="M17.169 19.774c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
12
+ <path d="M17.169 23.547c0 0.645-0.523 1.168-1.168 1.168s-1.168-0.523-1.168-1.168c0-0.645 0.523-1.168 1.168-1.168s1.168 0.523 1.168 1.168z"></path>
13
+ </svg>
@@ -0,0 +1,5 @@
1
+ <!-- Generated by IcoMoon.io -->
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
3
+ <path d="M27.747 9.107s0 0 0 0c0 0 0 0 0 0-0.333-0.56-0.8-1.040-1.387-1.387l-8.44-4.88c-1.187-0.68-2.64-0.68-3.813 0l-8.44 4.88c-0.587 0.333-1.053 0.813-1.387 1.387 0 0 0 0 0 0s0 0 0 0c-0.333 0.573-0.52 1.227-0.52 1.907v9.947c0 0.68 0.187 1.333 0.52 1.907 0 0 0 0 0 0s0 0 0 0c0.333 0.56 0.8 1.040 1.387 1.387l8.44 4.88c1.187 0.68 2.64 0.68 3.813 0l8.44-4.88c0.587-0.333 1.053-0.813 1.387-1.387 0 0 0 0 0 0s0 0 0 0c0.333-0.573 0.52-1.227 0.52-1.907v-9.947c0-0.68-0.187-1.333-0.52-1.907zM26.253 20.853l-1.733-1.013c-0.48-0.28-1.093-0.12-1.373 0.36s-0.12 1.093 0.36 1.373l1.76 1.027-8.267 4.773v-2.040c0-0.547-0.453-1-1-1s-1 0.453-1 1v2.040l-8.267-4.773 1.76-1.027c0.48-0.28 0.64-0.893 0.36-1.373s-0.893-0.64-1.373-0.36l-1.733 1.013v-9.72l1.733 1.013c0.48 0.28 1.093 0.12 1.373-0.36s0.12-1.093-0.36-1.373l-1.76-1.027 8.267-4.773v2.040c0 0.547 0.453 1 1 1s1-0.453 1-1v-2.040l8.267 4.773-1.76 1.027c-0.48 0.28-0.64 0.893-0.36 1.373s0.893 0.64 1.373 0.36l1.733-1.013v9.72z"></path>
4
+ <path d="M21.173 11.627l-4-2.307c-0.72-0.413-1.613-0.413-2.333 0l-4 2.307c-0.72 0.413-1.173 1.187-1.173 2.027v4.72c0 0.84 0.44 1.6 1.173 2.027l4 2.307c0.36 0.2 0.76 0.307 1.16 0.307h0.027c0.4 0 0.8-0.107 1.16-0.307l4-2.307c0.72-0.413 1.173-1.187 1.173-2.027v-4.72c0-0.84-0.44-1.6-1.173-2.027zM15 20.48l-3.173-1.827c-0.107-0.053-0.16-0.173-0.16-0.293v-3.747l3.173 1.827s0.107 0.067 0.16 0.093v3.96zM16.027 14.747s-0.013 0-0.027 0-0.013 0-0.027 0c-0.053 0-0.093-0.013-0.147-0.040l-3.16-1.827 3.173-1.827c0.107-0.053 0.227-0.053 0.333 0l3.173 1.827-3.173 1.827s-0.093 0.040-0.147 0.040zM20.333 18.36c0 0.12-0.067 0.227-0.16 0.293l-3.173 1.827v-3.96s0.107-0.053 0.16-0.093l3.173-1.827v3.747z"></path>
5
+ </svg>
@@ -1,8 +1,9 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { IconType } from '../icon/icon.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FwAlertComponent {
4
5
  description?: string;
5
- icon?: string;
6
+ icon?: IconType;
6
7
  severity?: 'info' | 'success' | 'warning' | 'error';
7
8
  title?: string;
8
9
  variant?: 'standard' | 'outlined' | 'filled';
@@ -1,7 +1,8 @@
1
+ import { IconType } from '../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwAppIconComponent {
3
4
  title?: string;
4
- icon?: string;
5
+ icon?: IconType;
5
6
  imageUrl?: string;
6
7
  color?: 'primary' | 'dark' | 'light' | 'gradient' | 'transparent';
7
8
  fontColor?: 'contrast' | 'base';
@@ -1,3 +1,4 @@
1
+ import { IconType } from '../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwAvatarComponent {
3
4
  get classes(): string;
@@ -8,7 +9,7 @@ export declare class FwAvatarComponent {
8
9
  initial?: string;
9
10
  imageUrl?: string;
10
11
  imageAltText?: string;
11
- icon?: string;
12
+ icon?: IconType;
12
13
  isImageBroken: boolean;
13
14
  loadImage(): void;
14
15
  errorImage(): void;
@@ -1,3 +1,4 @@
1
+ import { IconType } from '../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwButtonComponent {
3
4
  get classes(): string;
@@ -6,8 +7,8 @@ export declare class FwButtonComponent {
6
7
  variant?: 'ghost' | 'solid' | 'outline' | 'progress';
7
8
  disabled?: boolean;
8
9
  fullWidth?: boolean;
9
- leftIcon?: string;
10
- rightIcon?: string;
10
+ leftIcon?: IconType;
11
+ rightIcon?: IconType;
11
12
  getMappedColor(): 'primary' | 'secondary' | 'red' | 'slate' | 'orange' | 'green' | undefined;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonComponent, never>;
13
14
  static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonComponent, "fw-button", never, { "color": "color"; "size": "size"; "variant": "variant"; "disabled": "disabled"; "fullWidth": "fullWidth"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; }, {}, never, ["*"], false>;
@@ -1,8 +1,9 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { IconType } from '../../icon/icon.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FwButtonToggleItemComponent {
4
5
  title?: string;
5
- icon?: string;
6
+ icon?: IconType;
6
7
  selectedIcon?: string;
7
8
  value: string;
8
9
  selected: boolean;
@@ -1,22 +1,34 @@
1
- import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
1
+ import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
2
3
  import { FwButtonToggleItemComponent } from './button-toggle-item/button-toggle-item.component';
3
4
  import * as i0 from "@angular/core";
4
- export declare class FwButtonToggleComponent implements OnChanges, OnDestroy, AfterContentInit {
5
+ export declare class FwButtonToggleComponent implements ControlValueAccessor, OnChanges, OnDestroy, AfterContentInit {
5
6
  private cdref;
6
7
  get classes(): string;
7
8
  layout?: 'basic' | 'compact';
8
9
  size?: 'small' | 'medium' | 'large';
9
10
  multiple?: boolean;
10
- value?: string | string[];
11
+ disabled?: boolean;
11
12
  color?: 'primary' | 'secondary' | 'danger' | 'slate' | 'skeleton' | 'warning' | 'success';
12
13
  selectedColor?: 'primary' | 'secondary' | 'danger' | 'slate' | 'skeleton' | 'warning' | 'success';
13
14
  toggleButtons: QueryList<FwButtonToggleItemComponent>;
14
15
  private subscriptions;
16
+ change: EventEmitter<string | string[]>;
17
+ private _value;
18
+ get value(): string | string[];
19
+ set value(newValue: string | string[]);
15
20
  constructor(cdref: ChangeDetectorRef);
21
+ onChange: (value: string | string[]) => void;
22
+ onTouched: () => void;
23
+ registerOnChange(fn: (value: string | string[]) => void): void;
24
+ registerOnTouched(fn: () => void): void;
25
+ setDisabledState?(isDisabled: boolean): void;
26
+ writeValue(value: string | string[]): void;
16
27
  ngOnChanges(changes: SimpleChanges): void;
17
28
  ngOnDestroy(): void;
18
29
  ngAfterContentInit(): void;
30
+ updateValue(value: string | string[]): void;
19
31
  formatToggles(): void;
20
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FwButtonToggleComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonToggleComponent, "fw-button-toggle", never, { "layout": "layout"; "size": "size"; "multiple": "multiple"; "value": "value"; "color": "color"; "selectedColor": "selectedColor"; }, {}, ["toggleButtons"], ["fw-button-toggle-item"], false>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwButtonToggleComponent, "fw-button-toggle", never, { "layout": "layout"; "size": "size"; "multiple": "multiple"; "disabled": "disabled"; "color": "color"; "selectedColor": "selectedColor"; "value": "value"; }, { "change": "change"; }, ["toggleButtons"], ["fw-button-toggle-item,fw-tooltip"], false>;
22
34
  }
@@ -1,6 +1,7 @@
1
+ import { IconType } from '../../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwCardAttributeComponent {
3
- icon: string;
4
+ icon: IconType;
4
5
  title: string;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<FwCardAttributeComponent, never>;
6
7
  static ɵcmp: i0.ɵɵComponentDeclaration<FwCardAttributeComponent, "fw-card-attr", never, { "icon": "icon"; "title": "title"; }, {}, never, ["*"], false>;
@@ -1,8 +1,10 @@
1
+ import { IconType } from '../../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwCardHeaderComponent {
3
4
  title?: string;
4
5
  description?: string;
5
- leftIcon?: string;
6
+ leftIcon?: IconType;
7
+ iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate' | 'muted' | 'typography';
6
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FwCardHeaderComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<FwCardHeaderComponent, "fw-card-header", never, { "title": "title"; "description": "description"; "leftIcon": "leftIcon"; }, {}, never, ["fw-app-icon", "*"], false>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwCardHeaderComponent, "fw-card-header", never, { "title": "title"; "description": "description"; "leftIcon": "leftIcon"; "iconColor": "iconColor"; }, {}, never, ["fw-app-icon", "*"], false>;
8
10
  }
@@ -1,10 +1,11 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { IconType } from '../icon/icon.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FwChipComponent {
4
5
  value?: object | string;
5
6
  variant?: 'enabled' | 'hovered' | 'focused' | 'disabled';
6
7
  color?: 'slate' | 'primary' | 'secondary' | 'red' | 'green' | 'orange';
7
- icon?: string;
8
+ icon?: IconType;
8
9
  title?: string;
9
10
  description?: string;
10
11
  showClose?: boolean;
@@ -0,0 +1,36 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
3
+ import { IconType } from '../icon/icon.types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwDateInputComponent implements ControlValueAccessor {
6
+ disabled?: boolean;
7
+ useActionableIcons?: boolean;
8
+ leftIcon?: IconType;
9
+ leftIconAction?: EventEmitter<void>;
10
+ prefix?: string;
11
+ helperText?: string;
12
+ errorText?: string;
13
+ placeholder?: string;
14
+ readOnly?: boolean;
15
+ size?: 'small' | 'medium' | 'large';
16
+ type?: 'date' | 'time' | 'datetime-local';
17
+ max?: string;
18
+ min?: string;
19
+ step?: number;
20
+ autofocus?: string;
21
+ autocomplete?: string;
22
+ error?: boolean;
23
+ value: string;
24
+ externalControl: FormControl;
25
+ onTouch: () => void;
26
+ onChange: (value: string) => void;
27
+ writeValue(obj: string): void;
28
+ registerOnChange(fn: any): void;
29
+ registerOnTouched(fn: any): void;
30
+ setDisabledState(isDisabled: boolean): void;
31
+ changeHandler(event: KeyboardEvent): void;
32
+ blurHandler(): void;
33
+ onLeftIconClick(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwDateInputComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwDateInputComponent, "fw-date-input", never, { "disabled": "disabled"; "useActionableIcons": "useActionableIcons"; "leftIcon": "leftIcon"; "prefix": "prefix"; "helperText": "helperText"; "errorText": "errorText"; "placeholder": "placeholder"; "readOnly": "readOnly"; "size": "size"; "type": "type"; "max": "max"; "min": "min"; "step": "step"; "autofocus": "autofocus"; "autocomplete": "autocomplete"; "error": "error"; "value": "value"; }, { "leftIconAction": "leftIconAction"; }, never, never, false>;
36
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./date-input.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../icon/icon.module";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class FwDateInputModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwDateInputModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwDateInputModule, [typeof i1.FwDateInputComponent], [typeof i2.CommonModule, typeof i3.FwIconModule, typeof i4.ReactiveFormsModule], [typeof i1.FwDateInputComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwDateInputModule>;
10
+ }
@@ -1,11 +1,12 @@
1
1
  import { DialogRef } from '@angular/cdk/dialog';
2
2
  import { EventEmitter } from '@angular/core';
3
+ import { IconType } from '../icon/icon.types';
3
4
  import { DialogWidth } from './dialog.component';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class FwDialogConfirmComponent {
6
7
  dialogRef: DialogRef;
7
8
  title?: string;
8
- icon?: string;
9
+ icon?: IconType;
9
10
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate';
10
11
  confirmColor?: 'primary' | 'secondary' | 'danger' | 'slate' | 'warning' | 'success';
11
12
  confirmButtonText?: string;
@@ -1,11 +1,12 @@
1
1
  import { DialogRef } from '@angular/cdk/dialog';
2
2
  import { EventEmitter } from '@angular/core';
3
+ import { IconType } from '../icon/icon.types';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class FwDialogSimpleComponent {
5
6
  dialogRef: DialogRef;
6
7
  width?: 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large';
7
8
  title?: string;
8
- icon?: string;
9
+ icon?: IconType;
9
10
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate';
10
11
  showClose?: boolean;
11
12
  actionButtonText?: string;
@@ -1,5 +1,6 @@
1
1
  import { DialogRef } from '@angular/cdk/dialog';
2
2
  import { EventEmitter } from '@angular/core';
3
+ import { IconType } from '../icon/icon.types';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare enum DialogWidth {
5
6
  ExtraSmall = "extra-small",
@@ -12,7 +13,7 @@ export declare class FwDialogComponent {
12
13
  protected dialogRef: DialogRef;
13
14
  width?: 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large';
14
15
  title?: string;
15
- icon?: string;
16
+ icon?: IconType;
16
17
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate';
17
18
  showClose?: boolean;
18
19
  close: EventEmitter<void>;
@@ -6,5 +6,5 @@ export declare class FwFormHeadingComponent {
6
6
  status?: string;
7
7
  constructor();
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FwFormHeadingComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<FwFormHeadingComponent, "fw-form-heading", never, { "title": "title"; "description": "description"; "status": "status"; }, {}, never, ["fw-icon", "fw-chip", "p", "*"], false>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwFormHeadingComponent, "fw-form-heading", never, { "title": "title"; "description": "description"; "status": "status"; }, {}, never, ["fw-tooltip", "fw-icon", "fw-chip", "p", "*"], false>;
10
10
  }
@@ -0,0 +1,2 @@
1
+ export declare type IconType = typeof allIcons[number];
2
+ export declare const allIcons: readonly ["technology-cube-3d", "brightness-photo-edit", "target-space-object-select", "crown-style-circle", "hammer-legal-square", "browser-internet-web-windows", "settings-adjust", "lock-unlock", "private-mode-protection-circle", "ai", "reader-studies", "shapes-objects", "cloud-upload", "floppy-save", "text-input-form", "document-file-add-plus-bottom-left", "document-file-upload-bottom-center", "paint-roller", "brush-edit-create", "bucket-paint", "edit-erase", "grid-dot-square", "column-edit", "molecule", "invoice-checkmark-paid", "invoice", "pause", "calendar-arrow-left-center", "file-blank-image-load-mask", "closed-freehand-vector-poly", "curve-object-secet-cursor", "freehand-vector-poly", "pen-edit-circle", "code-block-embed", "italic", "list-paragraph-number", "list-paragraph", "text-bold", "text-cross", "text-h1", "text-h2", "text-underline", "twitter", "smiley-emoji-face", "exchange", "markdown", "quote", "measure-ruler-calibration", "zendesk-logo", "add-server-databases-endpoint", "cloud-network-add", "server-database-endpoint", "book-lab-flask", "list-test-lab-flask", "test-lab-flask", "message-checkmark-sent", "send-message-share", "flywheel-mark-logo", "speed-dashboard", "arrange-filter-sort", "delivery-shipment-packages", "color-ven-design-profile-central", "home-modern-door", "tasklist-to-do-checkmark", "user-profile-group-discovery", "flip-horizontal", "flip-vertical", "facebook", "github-color-login", "linkedin", "youtube", "server-databases-connect", "server-databases-download", "server-databases-minimal-download", "server-databases-sync", "graduate-hat", "blocks-code-test-checkmark", "camera-photo-capture", "photo-edit-brightness-invert", "unlimited-repeat-subscription-circle", "mute", "volume-full", "hand-money-currency", "bookmark-plus-add", "circle", "clip-attachment", "code-text", "document-status-done-checkmark", "done-check-tracked", "home-modern-option-lines", "keyboard", "line", "link-unlink", "measure-angle", "media-library-imports-dowload", "message-chat-info", "microphone-mic-rec-circle", "microphone-mic-rec", "microphone-mic-recording-circle", "pie-graph-chart-sample", "plus-add-rectangle", "polygon", "rotate-arrow-manual", "rotate-item-left", "rotate-item-right", "stars-light-sparkle", "undone-uncheck-untracked", "clap-applause-hands", "email-mail-checkmark-group", "circle-ellipses", "crosshair", "cursor-select", "draw-rectangle", "ruler-bidirectional", "ruler", "workspace-mode", "creative-commons", "free-rights", "hammer-screwdriver", "arrow-annotate", "arrow", "notebook-open", "windows", "add-new-create", "add-row-above", "add-row-below", "arrow-rotate-restore", "arrow-rotate", "arrow-back-collapse", "arrow-forward-collapse", "barcode-serial", "barcode-stack-scan", "button-form-element", "calendar-schedule", "chat-messages-bubble", "checklist-tasks-chechmark-square", "color-design-profile", "computer-chip", "contrast-photo-edit", "document-file-list-protocol", "drag-drop-indicator", "form-metadata-element", "full-screen-zoom", "layout", "header-form-element", "human-artificial-intelligence", "image-photo-copy-left-down", "image-picture-square", "items-group-elements", "layers", "menu-burger-handle", "menu-list-form-square", "message-chat-question-support", "message-question-checkmark", "minus", "mouse-big", "move", "music-play-resume", "music-stop", "notebook-add-plus", "notebook-pen-edit", "notebook", "notes-pen", "object-search-zoom-plus", "pencil-edit-create", "protection-target", "rotate", "scanner", "search-user-profile-person", "search-zoom-minus", "search-zoom-plus", "section-form-element", "server-databases-key-protection", "server-databases-sync-import", "servers-database", "target", "text-long", "text-short-form-element", "timer-clock-style", "user-document", "video-player-controls", "visible-eye-hidden", "window-finder-resize-arrow-down", "window-finder-resize-arrow-up", "window-resize-left", "window-resize-right", "window-zoom-plus-loupe", "laptop-health-medical-cross", "radiology-scan-circle", "money-coin", "brain", "dna-hospital-medical", "lung", "lungs", "protective-mask", "radiology-scan", "stomach", "cash-banknotes", "money-dollar", "money", "cloud-storage-checkmark", "modalities", "search-loop", "question-circle", "earth-globe-fail", "user-setting-gear", "user-delete-cross", "apply-copy-duplicate", "arrow-down", "arrow-up", "grid-layout", "folder-blank", "folder-group", "file-text", "edit-boxed", "chart-trend-square", "layout-grid", "files-library-content", "user-lock", "lock", "add-user", "user-checked", "user-group", "user-key", "thumbs-up-like", "apple", "gitlab", "linux", "add-server", "server-checkmark", "server-upload", "server", "data-tree", "add-circle", "bell-notification", "bookmark", "chart-square", "checklist", "clock-history", "clock-loading", "close-circled", "close", "copy-item", "done-check", "download-status", "download", "edit", "email", "file-download", "files-library", "files", "filter", "flag", "information-circle", "key", "keychain", "label-tag", "link", "loading-status-checkmark", "logout", "menu-horizontal", "menu-vertical", "open", "pie-chart", "search", "setting-gear", "settings-gear-square", "settings-gear", "settings-select", "share", "show-visible", "star", "substract-group", "switch", "trash-delete", "upload", "user", "warning-circle", "warning", "icon-placeholder", "network-storage-alert", "folder-add", "folder-checked", "folder-open", "folder-share", "document-file-blank", "document-file-download", "document-file-tar", "document-file-zip", "document-visible", "documents-files", "arrow-back", "arrow-forward", "chevron-back", "chevron-down", "chevron-forward", "chevron-up", "embed-circle", "rotate-refresh"];
@@ -1,3 +1,4 @@
1
+ import { IconType } from '../../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare enum LayoutWidth {
3
4
  Small = "small",
@@ -7,7 +8,7 @@ export declare enum LayoutWidth {
7
8
  }
8
9
  export declare class FwLayoutContextComponent {
9
10
  width?: 'small' | 'medium' | 'large' | 'extra-large';
10
- icon?: string;
11
+ icon?: IconType;
11
12
  iconColor?: 'primary' | 'secondary' | 'danger' | 'slate' | 'warning' | 'success';
12
13
  title?: string;
13
14
  description?: string;
@@ -1,4 +1,5 @@
1
1
  import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
2
+ import { IconType } from '../../icon/icon.types';
2
3
  import { FwMenuSubItemComponent } from '../menu-sub-item/menu-sub-item.component';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class FwMenuItemComponent implements OnChanges, OnDestroy, AfterContentInit {
@@ -6,7 +7,7 @@ export declare class FwMenuItemComponent implements OnChanges, OnDestroy, AfterC
6
7
  size?: 'default' | 'compact';
7
8
  title: string;
8
9
  description?: string;
9
- icon?: string;
10
+ icon?: IconType;
10
11
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate' | 'typography';
11
12
  disabled?: boolean;
12
13
  showCheckbox?: boolean;
@@ -1,11 +1,12 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { IconType } from '../../icon/icon.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FwMenuSubItemComponent {
4
5
  value?: string;
5
6
  size?: 'default' | 'compact';
6
7
  title: string;
7
8
  description?: string;
8
- icon?: string;
9
+ icon?: IconType;
9
10
  disabled?: boolean;
10
11
  hidden?: boolean;
11
12
  href?: string;
@@ -1,11 +1,12 @@
1
1
  import { AfterViewInit, OnChanges, QueryList, SimpleChanges } from '@angular/core';
2
+ import { IconType } from '../../icon/icon.types';
2
3
  import { FwNavbarSubItemComponent } from '../navbar-sub-item/navbar-sub-item.component';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class FwNavbarItemComponent implements OnChanges, AfterViewInit {
5
6
  value?: string;
6
7
  title: string;
7
8
  description?: string;
8
- icon?: string;
9
+ icon?: IconType;
9
10
  iconColor?: 'primary' | 'secondary' | 'red' | 'orange' | 'green' | 'slate' | 'typography' | 'muted';
10
11
  disabled?: boolean;
11
12
  hidden?: boolean;
@@ -1,9 +1,10 @@
1
+ import { IconType } from '../../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwNavbarSubItemComponent {
3
4
  value?: string;
4
5
  title: string;
5
6
  description?: string;
6
- icon?: string;
7
+ icon?: IconType;
7
8
  disabled?: boolean;
8
9
  hidden?: boolean;
9
10
  href?: string;
@@ -1,7 +1,7 @@
1
1
  import { CdkMenuTrigger } from '@angular/cdk/menu';
2
2
  import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
- import { CountryCode, E164Number, NationalNumber } from 'libphonenumber-js';
4
+ import { CountryCode, E164Number } from 'libphonenumber-js';
5
5
  import { FwMenuItemComponent } from '../menu/menu-item/menu-item.component';
6
6
  import { Country, PhoneNumberFormat } from './phone-input.model';
7
7
  import * as i0 from "@angular/core";
@@ -25,7 +25,7 @@ export declare class FwPhoneInputComponent implements OnInit, OnChanges, Control
25
25
  set format(value: PhoneNumberFormat);
26
26
  countryChanged: EventEmitter<Country>;
27
27
  trigger: CdkMenuTrigger;
28
- phoneFormattedNational: NationalNumber | undefined;
28
+ phoneFormattedNational: string | undefined;
29
29
  allCountryList: Array<Country>;
30
30
  preferredCountryList: Array<Country>;
31
31
  selectedCountry: Country | undefined;
@@ -1,10 +1,11 @@
1
+ import { IconType } from '../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwSectionHeadingComponent {
3
4
  class: string;
4
5
  title: string;
5
6
  description?: string;
6
7
  backButton?: boolean;
7
- icon?: string;
8
+ icon?: IconType;
8
9
  constructor();
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSectionHeadingComponent, never>;
10
11
  static ɵcmp: i0.ɵɵComponentDeclaration<FwSectionHeadingComponent, "fw-section-heading", never, { "title": "title"; "description": "description"; "backButton": "backButton"; "icon": "icon"; }, {}, never, ["fw-icon", "fw-chip", "p", "*"], false>;
@@ -1,7 +1,8 @@
1
+ import { IconType } from '../../icon/icon.types';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FwSubsectionHeadingComponent {
3
4
  title: string;
4
- icon?: string;
5
+ icon?: IconType;
5
6
  constructor();
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSubsectionHeadingComponent, never>;
7
8
  static ɵcmp: i0.ɵɵComponentDeclaration<FwSubsectionHeadingComponent, "fw-subsection-heading", never, { "title": "title"; "icon": "icon"; }, {}, never, ["*"], false>;
@@ -28,6 +28,9 @@ export declare class FwSelectMenuComponent implements ControlValueAccessor, Afte
28
28
  selectIcon: string;
29
29
  private subscriptions;
30
30
  private _isOpen;
31
+ focused: number;
32
+ inFocusOpen: boolean;
33
+ preFocusValue: any;
31
34
  get value(): any;
32
35
  set value(newValue: any);
33
36
  private _value;
@@ -68,7 +71,9 @@ export declare class FwSelectMenuComponent implements ControlValueAccessor, Afte
68
71
  ngOnDestroy(): void;
69
72
  ngAfterContentInit(): void;
70
73
  handleClick(e: string): void;
74
+ moveFocused(direction: string): void;
71
75
  handleKeyDown(event: KeyboardEvent): void;
76
+ handleKeyUp(event: KeyboardEvent): void;
72
77
  updateValue(value: any): void;
73
78
  handleReset(): void;
74
79
  static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuComponent, never>;
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { IconType } from '../icon/icon.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FwStepComponent implements OnChanges {
4
5
  stepNumber: number;
@@ -8,7 +9,7 @@ export declare class FwStepComponent implements OnChanges {
8
9
  backgroundColor?: string;
9
10
  title: string;
10
11
  description?: string;
11
- icon?: string;
12
+ icon?: IconType;
12
13
  disabled?: boolean;
13
14
  active?: boolean;
14
15
  completed?: boolean;
@@ -1,11 +1,12 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { IconType } from '../../../components/icon/icon.types';
2
3
  import { FwTabPanelComponent } from '../tab-panel/tab-panel.component';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class FwTabComponent {
5
6
  title: string;
6
7
  panel?: FwTabPanelComponent;
7
8
  color: 'primary' | 'secondary';
8
- icon?: string;
9
+ icon?: IconType;
9
10
  select: EventEmitter<FwTabComponent>;
10
11
  active: boolean;
11
12
  disabled: boolean;