@symphony-talent/component-library 4.219.0 → 4.221.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 (37) hide show
  1. package/esm2020/lib/atoms/icon/icon.enum.mjs +2 -1
  2. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
  3. package/esm2020/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component.mjs +28 -0
  4. package/esm2020/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model.mjs +2 -0
  5. package/esm2020/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module.mjs +46 -0
  6. package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +2 -1
  7. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
  8. package/esm2020/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component.mjs +28 -0
  9. package/esm2020/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model.mjs +2 -0
  10. package/esm2020/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module.mjs +46 -0
  11. package/esm2020/projects/component-library/public-api.mjs +4 -1
  12. package/esm2020/public-api.mjs +4 -1
  13. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +63 -1
  14. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  15. package/fesm2015/symphony-talent-component-library.mjs +63 -1
  16. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  17. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +63 -1
  18. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library.mjs +63 -1
  20. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  21. package/lib/atoms/icon/icon.enum.d.ts +2 -1
  22. package/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component.d.ts +10 -0
  23. package/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model.d.ts +7 -0
  24. package/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module.d.ts +14 -0
  25. package/package.json +1 -1
  26. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot +0 -0
  27. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg +1 -0
  28. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf +0 -0
  29. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff +0 -0
  30. package/projects/component-library/global-assets/iconography/library-icons.css +8 -5
  31. package/projects/component-library/global-assets/iconography/{sfx-icons-v12.json → sfx-icons-v13.json} +74 -36
  32. package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +2 -1
  33. package/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component.d.ts +10 -0
  34. package/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model.d.ts +7 -0
  35. package/projects/component-library/lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module.d.ts +14 -0
  36. package/projects/component-library/public-api.d.ts +3 -0
  37. package/public-api.d.ts +3 -0
@@ -101,5 +101,6 @@ export declare enum Icons {
101
101
  SPARKLES = "si-ai-withoutBorder",
102
102
  STARTOVER = "si-start-over",
103
103
  RESTORENEXT = "si-restore-next",
104
- RESTOREPREVIOUS = "si-restore-previous"
104
+ RESTOREPREVIOUS = "si-restore-previous",
105
+ VIDEO = "si-video-icon"
105
106
  }
@@ -0,0 +1,10 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { CalendarAvailabilityModalModel } from './calendar-availability-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CalendarAvailabilityModalComponent {
5
+ calendarAvailabilityModel: CalendarAvailabilityModalModel;
6
+ closeButtonClicked: EventEmitter<void>;
7
+ onCloseButtonClick(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarAvailabilityModalComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarAvailabilityModalComponent, "symphony-calendar-availability-modal", never, { "calendarAvailabilityModel": "calendarAvailabilityModel"; }, { "closeButtonClicked": "closeButtonClicked"; }, never, ["[calendar-availability-body]"]>;
10
+ }
@@ -0,0 +1,7 @@
1
+ export interface CalendarAvailabilityModalModel {
2
+ isLoading?: boolean;
3
+ errorText?: string;
4
+ modalTitle: string;
5
+ modalSubtitle: string;
6
+ calendarName: string;
7
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./calendar-availability-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/h4/h4.module";
6
+ import * as i5 from "../../../atoms/icon/icon.module";
7
+ import * as i6 from "../../../atoms/paragraph/paragraph.module";
8
+ import * as i7 from "../../../atoms/sfx-loader/sfx-loader.module";
9
+ import * as i8 from "../../../atoms/button-v2/button.module";
10
+ export declare class CalendarAvailabilityModalModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarAvailabilityModalModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CalendarAvailabilityModalModule, [typeof i1.CalendarAvailabilityModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.H4Module, typeof i5.IconModule, typeof i6.ParagraphModule, typeof i7.SfxLoaderModule, typeof i8.ButtonV2Module], [typeof i1.CalendarAvailabilityModalComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<CalendarAvailabilityModalModule>;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.219.0",
3
+ "version": "4.221.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -16,6 +16,7 @@
16
16
  <glyph unicode="&#xe906;" glyph-name="start-over" d="M773.12 750.080c3.326-2.6 6.653-5.201 10.080-7.88 70.317-57.065 116.691-148.537 128.16-237.88 9.567-111.368-12.443-215.195-81.92-304.64-6.721-7.772-13.543-15.459-20.48-23.040-3.023-3.491-6.046-6.983-9.16-10.58-65.638-71.364-168.818-118.509-265.16-123.18-26.459-0.605-26.459-0.605-38 0.64-10.24 10.24-10.24 10.24-11.52 28.16 1.28 17.92 1.28 17.92 11.52 28.16 14.958 2.619 29.754 4.785 44.8 6.72 91.837 13.322 178.569 49.386 237.967 124.065 58.851 79.581 81.366 171.094 69.14 269.368-14.324 85.152-58.126 164.901-127.947 216.807-80.533 56.376-172.984 78.3-270.040 64-90.691-18.252-166.052-65.77-219.8-141.48-11.575-18.825-21.4-37.739-30.44-57.88-1.404-3.109-2.808-6.218-4.255-9.421-13.653-32.56-18.874-62.75-27.105-98.419 123.341 1.69 246.682 3.379 373.76 5.12-23.654 23.654-47.309 47.309-71.68 71.68 0 25.6 0 25.6 5.76 34.88 14.404 9.122 23.478 8.162 40.32 6.080 11.672-8.673 20.816-16.618 30.82-26.92 2.785-2.768 5.571-5.536 8.441-8.389 5.858-5.86 11.679-11.758 17.463-17.691 8.839-9.042 17.819-17.925 26.826-26.8 5.686-5.724 11.363-11.457 17.030-17.2 4.016-3.962 4.016-3.962 8.112-8.004 16.441-17.090 24.549-29.698 24.428-53.716-5.72-10.25-5.72-10.25-14.72-19.36-3.326-3.465-6.653-6.93-10.080-10.5-3.643-3.663-7.286-7.326-11.040-11.1-7.469-8.051-14.936-16.104-22.4-24.16-7.879-8.174-15.773-16.334-23.68-24.48-3.934-4.211-7.867-8.422-11.92-12.76-29.244-29.941-29.244-29.941-54.32-34.12-15.68 3.36-15.68 3.36-25.92 13.6-2.88 13.64-2.88 13.64 0 30.72 10.425 14.211 22.929 25.821 35.84 37.76 3.419 3.28 6.838 6.56 10.36 9.94 8.428 8.067 16.92 16.054 25.48 23.98-7.952 0.062-7.952 0.062-16.064 0.125-49.877 0.396-99.753 0.845-149.629 1.347-25.644 0.256-51.287 0.493-76.932 0.688-24.733 0.188-49.464 0.426-74.196 0.697-9.452 0.095-18.903 0.172-28.355 0.232-13.205 0.086-26.407 0.235-39.611 0.398-3.937 0.011-7.874 0.022-11.93 0.034-27.075 0.431-27.075 0.431-38.483 11.839-12.16 94.119 28.726 192.842 83.64 267.040 58.937 75.499 147.447 134.912 244.040 147.68 3.656 0.614 7.313 1.228 11.080 1.86 113.839 15.8 234.431-19.031 321.72-94.020z" />
17
17
  <glyph unicode="&#xe907;" glyph-name="restore-next" horiz-adv-x="1243" d="M1097.143 588.286l51.719-51.72 51.719 51.72-51.719 51.72-51.719-51.72zM0 76.288c0-40.397 32.747-73.143 73.143-73.143s73.143 32.746 73.143 73.143h-146.286zM777.143 268.286l51.719-51.717 320 319.997-103.439 103.44-320.001-320 51.72-51.72zM1097.143 588.286l51.719 51.72-320 320-103.439-103.44 320.001-320 51.719 51.72zM1097.143 588.286v73.143h-585.143v-146.286h585.143v73.143zM73.143 149.431h-73.143v-73.143h146.286v73.143h-73.143zM512 588.286v73.143c-282.77 0-512-229.23-512-511.998h146.286c0 201.976 163.736 365.712 365.714 365.712v73.143z" />
18
18
  <glyph unicode="&#xe908;" glyph-name="restore-previous" horiz-adv-x="1243" d="M103.439 588.286l-51.719-51.72-51.72 51.72 51.72 51.72 51.719-51.72zM1200.581 76.288c0-40.397-32.746-73.143-73.143-73.143s-73.143 32.746-73.143 73.143h146.286zM423.44 268.286l-51.72-51.717-320 319.997 103.44 103.44 320-320-51.719-51.72zM103.439 588.286l-51.719 51.72 320 320 103.439-103.44-320-320-51.72 51.72zM103.439 588.286v73.143h585.144v-146.286h-585.144v73.143zM1127.439 149.431h73.143v-73.143h-146.286v73.143h73.143zM688.583 588.286v73.143c282.769 0 511.999-229.23 511.999-511.998h-146.286c0 201.976-163.738 365.712-365.713 365.712v73.143z" />
19
+ <glyph unicode="&#xe909;" glyph-name="video-icon" d="M977.067 577.894c-28.82 14.604-63.431 11.56-89.259-7.85l-78.211-58.070c-11.088 108.944-102.758 191.862-212.264 192h-3.624l-175.874 175.83c-23.934 24.102-56.528 37.61-90.496 37.504h-284.674c-23.564 0-42.666-19.104-42.666-42.668s19.102-42.666 42.666-42.666h284.672c11.31-0.030 22.15-4.522 30.166-12.502l115.498-115.498h-259.668c-117.762-0.142-213.192-95.572-213.334-213.334v-341.336c0.142-117.76 95.572-213.191 213.334-213.333h383.999c109.511 0.142 201.176 83.058 212.264 192l78.086-58.197c37.7-28.274 91.187-20.634 119.461 17.067 11.082 14.774 17.067 32.74 17.067 51.2v363.566c0.114 32.338-18.17 61.924-47.144 76.288zM725.333 149.311c0-70.696-57.31-128-128-128h-383.999c-70.692 0-128 57.304-128 128v341.33c0 70.692 57.308 128 128 128h383.999c70.69 0 128-57.308 128-128v-341.33zM938.667 138.342l-128 95.403v172.458l128 95.402v-363.262z" />
19
20
  <glyph unicode="&#xe95d;" glyph-name="email-sms-default" horiz-adv-x="1067" d="M825.805 868.644v6.467c0 31.419-25.468 56.889-56.887 56.889h-712.029c-31.419 0-56.889-25.47-56.889-56.889v-4.259l414.667-259.712 411.138 257.504zM825.805 734.392l-380.941-238.593c-18.47-11.567-41.925-11.567-60.394 0l-384.47 240.802v-316.603c0-31.415 25.47-56.887 56.889-56.887h712.029c31.42 0 56.887 25.472 56.887 56.887v314.394zM165.333 260.599h715.699c12.655 0 24.789 5.197 33.737 14.443 8.951 9.246 13.978 21.786 13.978 34.863v394.428c25.306 0 49.579-10.389 67.477-28.881 17.894-18.492 27.947-43.573 27.947-69.726v-394.428c0-26.155-10.052-51.234-27.947-69.726-17.899-18.496-42.172-28.885-67.477-28.885h-95.428v-147.908l-190.852 147.908h-381.706c-25.309 0-49.581 10.389-67.477 28.885-17.896 18.492-27.95 43.571-27.95 69.726v49.301z" />
20
21
  <glyph unicode="&#xe95e;" glyph-name="assign-to-actions" d="M921.6 516.267c-62.578 68.267-147.911 102.4-238.933 102.4s-176.356-34.133-238.933-102.4c-68.267-62.578-102.4-147.911-102.4-238.933s34.133-176.356 102.4-238.933c62.578-68.267 147.911-102.4 238.933-102.4s176.356 34.133 238.933 102.4c62.578 62.578 102.4 153.6 102.4 238.933s-34.133 176.356-102.4 238.933zM853.333 220.444h-113.778v-113.778c0-34.133-22.756-56.889-56.889-56.889s-56.889 22.756-56.889 56.889v113.778h-113.778c-34.133 0-56.889 22.756-56.889 56.889s22.756 56.889 56.889 56.889h113.778v113.778c0 34.133 22.756 56.889 56.889 56.889s56.889-22.756 56.889-56.889v-113.778h113.778c34.133 0 56.889-22.756 56.889-56.889s-22.756-56.889-56.889-56.889zM369.778 521.956c68.267 91.022 176.356 147.911 301.511 153.6 5.689 17.067 5.689 39.822 5.689 56.889 0 125.156-102.4 227.556-227.556 227.556s-227.556-102.4-227.556-227.556c0-96.711 62.578-176.356 147.911-210.489zM312.889 425.244c-164.978-51.2-290.133-199.111-312.889-375.467h358.4c-45.511 62.578-73.956 142.222-73.956 227.556 0 51.2 11.378 102.4 28.444 147.911z" />
21
22
  <glyph unicode="&#xe95f;" glyph-name="qr-code" horiz-adv-x="1097" d="M956.767 326.186c57.212 0 103.592-46.38 103.592-103.59v-146.205c0-57.212-46.38-103.592-103.592-103.592h-146.205c-57.212 0-103.593 46.38-103.593 103.592v146.205c0 57.21 46.381 103.59 103.593 103.59h146.205zM1005.502 521.172c30.296 0 54.857-24.56 54.857-54.857v-0.487c0-30.297-24.561-54.857-54.857-54.857s-54.857 24.56-54.857 54.857v0.487c0 30.297 24.561 54.857 54.857 54.857zM865.419 466.315c0-30.297-24.561-54.857-54.857-54.857h-146.206c-40.399 0-79.144 16.049-107.711 44.616s-44.616 67.312-44.616 107.711v146.205c0 30.297 24.561 54.857 54.857 54.857s54.857-24.56 54.857-54.857v-146.205c0-11.301 4.49-22.14 12.481-30.131s18.83-12.481 30.131-12.481h146.206c30.296 0 54.857-24.56 54.857-54.857zM566.886 959.786c30.297 0 54.857-24.56 54.857-54.857v-0.487c0-30.297-24.56-54.857-54.857-54.857s-54.857 24.56-54.857 54.857v0.487c0 30.297 24.561 54.857 54.857 54.857zM566.886 326.233c30.297 0 54.857-24.56 54.857-54.856v-48.737c0-30.296-24.56-54.857-54.857-54.857s-54.857 24.561-54.857 54.857v48.737c0 30.297 24.561 54.856 54.857 54.856zM621.744 27.699c0-30.296-24.56-54.857-54.857-54.857h-0.487c-30.297 0-54.857 24.561-54.857 54.857s24.561 54.857 54.857 54.857h0.487c30.297 0 54.857-24.561 54.857-54.857zM426.805 466.315c0-30.297-24.561-54.857-54.857-54.857h-0.488c-30.297 0-54.857 24.561-54.857 54.857s24.561 54.857 54.857 54.857h0.488c30.297 0 54.857-24.56 54.857-54.857zM231.865 466.315c0-30.297-24.561-54.857-54.857-54.857h-48.735c-30.297 0-54.857 24.561-54.857 54.857s24.561 54.857 54.857 54.857h48.735c30.297 0 54.857-24.56 54.857-54.857zM316.603 216.474h-133.96v-133.961h133.96v133.961zM322.725 326.186c57.212 0 103.591-46.38 103.591-103.59v-146.205c0-57.212-46.379-103.592-103.591-103.592h-146.205c-57.212 0-103.592 46.38-103.592 103.592v146.205c0 57.21 46.38 103.59 103.592 103.59h146.205zM950.645 850.071h-133.961v-133.96h133.961v133.96zM956.767 959.786c57.212 0 103.592-46.38 103.592-103.592v-146.205c0-57.212-46.38-103.591-103.592-103.591h-146.205c-57.212 0-103.593 46.38-103.593 103.591v146.205c0 57.213 46.381 103.592 103.593 103.592h146.205zM316.812 850.286h-133.96v-133.96h133.96v133.96zM322.934 960c57.212 0 103.592-46.38 103.592-103.592v-146.205c0-57.212-46.38-103.591-103.592-103.591h-146.205c-57.212 0-103.592 46.38-103.592 103.591v146.205c0 57.213 46.38 103.592 103.592 103.592h146.205z" />
@@ -1,10 +1,10 @@
1
1
  @font-face {
2
2
  font-family: 'library-icons';
3
- src: url('library-fonts/library-icons.eot?rnxdna');
4
- src: url('library-fonts/library-icons.eot?rnxdna#iefix') format('embedded-opentype'),
5
- url('library-fonts/library-icons.ttf?rnxdna') format('truetype'),
6
- url('library-fonts/library-icons.woff?rnxdna') format('woff'),
7
- url('library-fonts/library-icons.svg?rnxdna#library-icons') format('svg');
3
+ src: url('library-fonts/library-icons.eot?dd57vp');
4
+ src: url('library-fonts/library-icons.eot?dd57vp#iefix') format('embedded-opentype'),
5
+ url('library-fonts/library-icons.ttf?dd57vp') format('truetype'),
6
+ url('library-fonts/library-icons.woff?dd57vp') format('woff'),
7
+ url('library-fonts/library-icons.svg?dd57vp#library-icons') format('svg');
8
8
  font-weight: normal;
9
9
  font-style: normal;
10
10
  font-display: block;
@@ -333,4 +333,7 @@
333
333
  }
334
334
  .si-restore-previous:before {
335
335
  content: "\e908";
336
+ }
337
+ .si-video-icon:before {
338
+ content: "\e909";
336
339
  }
@@ -613,15 +613,20 @@
613
613
  "order": 3,
614
614
  "name": "restore-previous",
615
615
  "prevSize": 32
616
+ },
617
+ {
618
+ "order": 522,
619
+ "name": "video-icon",
620
+ "prevSize": 32
616
621
  }
617
622
  ],
618
623
  "metadata": {
619
624
  "name": "sfx icons",
620
625
  "importSize": {
621
- "width": 17,
622
- "height": 14
626
+ "width": 18,
627
+ "height": 18
623
628
  },
624
- "iconsHash": 1440709713
629
+ "iconsHash": 302991485
625
630
  },
626
631
  "height": 1024,
627
632
  "prevSize": 32,
@@ -641,12 +646,12 @@
641
646
  }
642
647
  ],
643
648
  "colorPermutations": {
644
- "13014515912552552551517296159391301832621911091281": [
649
+ "130145159114525112552552551517296159391301832621911091281": [
645
650
  {
646
- "f": 4
651
+ "f": 5
647
652
  },
648
653
  {
649
- "f": 4
654
+ "f": 5
650
655
  }
651
656
  ]
652
657
  },
@@ -674,7 +679,7 @@
674
679
  }
675
680
  ],
676
681
  "colorPermutations": {
677
- "13014515912552552551517296159391301832621911091281": [
682
+ "130145159114525112552552551517296159391301832621911091281": [
678
683
  {
679
684
  "f": 1
680
685
  },
@@ -719,7 +724,7 @@
719
724
  }
720
725
  ],
721
726
  "colorPermutations": {
722
- "13014515912552552551517296159391301832621911091281": [
727
+ "130145159114525112552552551517296159391301832621911091281": [
723
728
  {
724
729
  "f": 1
725
730
  },
@@ -761,7 +766,7 @@
761
766
  }
762
767
  ],
763
768
  "colorPermutations": {
764
- "13014515912552552551517296159391301832621911091281": [
769
+ "130145159114525112552552551517296159391301832621911091281": [
765
770
  {
766
771
  "f": 1
767
772
  },
@@ -794,12 +799,12 @@
794
799
  }
795
800
  ],
796
801
  "colorPermutations": {
797
- "13014515912552552551517296159391301832621911091281": [
802
+ "130145159114525112552552551517296159391301832621911091281": [
798
803
  {
799
- "f": 4
804
+ "f": 5
800
805
  },
801
806
  {
802
- "f": 4
807
+ "f": 5
803
808
  }
804
809
  ]
805
810
  },
@@ -824,9 +829,9 @@
824
829
  ],
825
830
  "isMulticolor": true,
826
831
  "colorPermutations": {
827
- "13014515912552552551517296159391301832621911091281": [
832
+ "130145159114525112552552551517296159391301832621911091281": [
828
833
  {
829
- "f": 5
834
+ "f": 6
830
835
  },
831
836
  {
832
837
  "f": 0
@@ -1244,7 +1249,7 @@
1244
1249
  }
1245
1250
  ],
1246
1251
  "colorPermutations": {
1247
- "13014515912552552551517296159391301832621911091281": [
1252
+ "130145159114525112552552551517296159391301832621911091281": [
1248
1253
  {}
1249
1254
  ]
1250
1255
  },
@@ -1915,7 +1920,7 @@
1915
1920
  }
1916
1921
  ],
1917
1922
  "colorPermutations": {
1918
- "13014515912552552551517296159391301832621911091281": [
1923
+ "130145159114525112552552551517296159391301832621911091281": [
1919
1924
  {
1920
1925
  "f": 1
1921
1926
  }
@@ -1965,7 +1970,7 @@
1965
1970
  }
1966
1971
  ],
1967
1972
  "colorPermutations": {
1968
- "13014515912552552551517296159391301832621911091281": [
1973
+ "130145159114525112552552551517296159391301832621911091281": [
1969
1974
  {
1970
1975
  "f": 1
1971
1976
  },
@@ -2008,7 +2013,7 @@
2008
2013
  }
2009
2014
  ],
2010
2015
  "colorPermutations": {
2011
- "13014515912552552551517296159391301832621911091281": [
2016
+ "130145159114525112552552551517296159391301832621911091281": [
2012
2017
  {
2013
2018
  "f": 3
2014
2019
  }
@@ -2030,7 +2035,7 @@
2030
2035
  }
2031
2036
  ],
2032
2037
  "colorPermutations": {
2033
- "13014515912552552551517296159391301832621911091281": [
2038
+ "130145159114525112552552551517296159391301832621911091281": [
2034
2039
  {
2035
2040
  "f": 3
2036
2041
  }
@@ -2052,7 +2057,7 @@
2052
2057
  }
2053
2058
  ],
2054
2059
  "colorPermutations": {
2055
- "13014515912552552551517296159391301832621911091281": [
2060
+ "130145159114525112552552551517296159391301832621911091281": [
2056
2061
  {
2057
2062
  "f": 1
2058
2063
  }
@@ -2074,7 +2079,7 @@
2074
2079
  }
2075
2080
  ],
2076
2081
  "colorPermutations": {
2077
- "13014515912552552551517296159391301832621911091281": [
2082
+ "130145159114525112552552551517296159391301832621911091281": [
2078
2083
  {
2079
2084
  "f": 1
2080
2085
  }
@@ -2104,7 +2109,7 @@
2104
2109
  }
2105
2110
  ],
2106
2111
  "colorPermutations": {
2107
- "13014515912552552551517296159391301832621911091281": [
2112
+ "130145159114525112552552551517296159391301832621911091281": [
2108
2113
  {
2109
2114
  "f": 1
2110
2115
  },
@@ -2140,7 +2145,7 @@
2140
2145
  }
2141
2146
  ],
2142
2147
  "colorPermutations": {
2143
- "13014515912552552551517296159391301832621911091281": [
2148
+ "130145159114525112552552551517296159391301832621911091281": [
2144
2149
  {
2145
2150
  "f": 1
2146
2151
  },
@@ -2172,47 +2177,69 @@
2172
2177
  "paths": [
2173
2178
  "M1097.143 371.714l51.719 51.72 51.719-51.72-51.719-51.72-51.719 51.72zM-0 883.712c-0 40.397 32.747 73.143 73.143 73.143s73.143-32.746 73.143-73.143h-146.286zM777.143 691.714l51.719 51.717 320-319.997-103.439-103.44-320.001 320 51.72 51.72zM1097.143 371.714l51.719-51.72-320-320-103.439 103.44 320.001 320 51.719-51.72zM1097.143 371.714v-73.143h-585.143v146.286h585.143v-73.143zM73.143 810.569h-73.143l-0 73.143h146.286v-73.143h-73.143zM512 371.714v-73.143c-282.77 0-512 229.23-512 511.998h146.286c0-201.976 163.736-365.712 365.714-365.712v-73.143z"
2174
2179
  ],
2180
+ "width": 1243,
2175
2181
  "attrs": [
2176
2182
  {
2177
2183
  "fill": "rgb(59, 39, 130)"
2178
2184
  }
2179
2185
  ],
2180
- "width": 1243,
2181
- "grid": 0,
2186
+ "colorPermutations": {
2187
+ "130145159114525112552552551517296159391301832621911091281": [
2188
+ {
2189
+ "f": 2
2190
+ }
2191
+ ]
2192
+ },
2182
2193
  "tags": [
2183
2194
  "restore-next"
2184
2195
  ],
2196
+ "defaultCode": 59655,
2197
+ "grid": 0
2198
+ },
2199
+ {
2200
+ "paths": [
2201
+ "M103.439 371.714l-51.719 51.72-51.72-51.72 51.72-51.72 51.719 51.72zM1200.581 883.712c0 40.397-32.746 73.143-73.143 73.143s-73.143-32.746-73.143-73.143h146.286zM423.44 691.714l-51.72 51.717-320-319.997 103.44-103.44 320 320-51.719 51.72zM103.439 371.714l-51.719-51.72 320-320 103.439 103.44-320 320-51.72-51.72zM103.439 371.714v-73.143h585.144v146.286h-585.144v-73.143zM1127.439 810.569h73.143v73.143h-146.286v-73.143h73.143zM688.583 371.714v-73.143c282.769 0 511.999 229.23 511.999 511.998h-146.286c0-201.976-163.738-365.712-365.713-365.712v-73.143z"
2202
+ ],
2203
+ "width": 1243,
2204
+ "attrs": [
2205
+ {
2206
+ "fill": "rgb(59, 39, 130)"
2207
+ }
2208
+ ],
2185
2209
  "colorPermutations": {
2186
- "13014515912552552551517296159391301832621911091281": [
2210
+ "130145159114525112552552551517296159391301832621911091281": [
2187
2211
  {
2188
2212
  "f": 2
2189
2213
  }
2190
2214
  ]
2191
2215
  },
2192
- "defaultCode": 59655
2216
+ "tags": [
2217
+ "restore-previous"
2218
+ ],
2219
+ "defaultCode": 59656,
2220
+ "grid": 0
2193
2221
  },
2194
2222
  {
2195
2223
  "paths": [
2196
- "M103.439 371.714l-51.719 51.72-51.72-51.72 51.72-51.72 51.719 51.72zM1200.581 883.712c0 40.397-32.746 73.143-73.143 73.143s-73.143-32.746-73.143-73.143h146.286zM423.44 691.714l-51.72 51.717-320-319.997 103.44-103.44 320 320-51.719 51.72zM103.439 371.714l-51.719-51.72 320-320 103.439 103.44-320 320-51.72-51.72zM103.439 371.714v-73.143h585.144v146.286h-585.144v-73.143zM1127.439 810.569h73.143v73.143h-146.286v-73.143h73.143zM688.583 371.714v-73.143c282.769 0 511.999 229.23 511.999 511.998h-146.286c0-201.976-163.738-365.712-365.713-365.712v-73.143z"
2224
+ "M977.067 382.106c-28.82-14.604-63.431-11.56-89.259 7.85l-78.211 58.070c-11.088-108.944-102.758-191.862-212.264-192h-3.624l-175.874-175.83c-23.934-24.102-56.528-37.61-90.496-37.504h-284.674c-23.564 0-42.666 19.104-42.666 42.668s19.102 42.666 42.666 42.666h284.672c11.31 0.030 22.15 4.522 30.166 12.502l115.498 115.498h-259.668c-117.762 0.142-213.192 95.572-213.334 213.334v341.336c0.142 117.76 95.572 213.191 213.334 213.333h383.999c109.511-0.142 201.176-83.058 212.264-192l78.086 58.197c37.7 28.274 91.187 20.634 119.461-17.067 11.082-14.774 17.067-32.74 17.067-51.2v-363.566c0.114-32.338-18.17-61.924-47.144-76.288zM725.333 810.689c0 70.696-57.31 128-128 128h-383.999c-70.692 0-128-57.304-128-128v-341.33c0-70.692 57.308-128 128-128h383.999c70.69 0 128 57.308 128 128v341.33zM938.667 821.658l-128-95.403v-172.458l128-95.402v363.262z"
2197
2225
  ],
2198
2226
  "attrs": [
2199
2227
  {
2200
- "fill": "rgb(59, 39, 130)"
2228
+ "fill": "rgb(0, 145, 251)"
2201
2229
  }
2202
2230
  ],
2203
- "width": 1243,
2204
2231
  "grid": 0,
2205
2232
  "tags": [
2206
- "restore-previous"
2233
+ "Video_ic"
2207
2234
  ],
2208
2235
  "colorPermutations": {
2209
- "13014515912552552551517296159391301832621911091281": [
2236
+ "130145159114525112552552551517296159391301832621911091281": [
2210
2237
  {
2211
- "f": 2
2238
+ "f": 4
2212
2239
  }
2213
2240
  ]
2214
2241
  },
2215
- "defaultCode": 59656
2242
+ "defaultCode": 59657
2216
2243
  }
2217
2244
  ],
2218
2245
  "colorThemes": [
@@ -2241,6 +2268,12 @@
2241
2268
  128,
2242
2269
  1
2243
2270
  ],
2271
+ [
2272
+ 0,
2273
+ 145,
2274
+ 251,
2275
+ 1
2276
+ ],
2244
2277
  [
2245
2278
  130,
2246
2279
  145,
@@ -2273,7 +2306,11 @@
2273
2306
  "baseline": 6.25,
2274
2307
  "whitespace": 50
2275
2308
  },
2276
- "embed": false
2309
+ "embed": false,
2310
+ "includeMetadata": false,
2311
+ "showSelector": true,
2312
+ "selector": "",
2313
+ "classSelector": ".icon"
2277
2314
  },
2278
2315
  "imagePref": {
2279
2316
  "prefix": "icon-",
@@ -2289,7 +2326,8 @@
2289
2326
  },
2290
2327
  "historySize": 50,
2291
2328
  "showCodes": true,
2292
- "gridSize": 16
2329
+ "gridSize": 16,
2330
+ "showLiga": false
2293
2331
  },
2294
2332
  "IcoMoonType": "icon-set"
2295
2333
  }
@@ -101,5 +101,6 @@ export declare enum Icons {
101
101
  SPARKLES = "si-ai-withoutBorder",
102
102
  STARTOVER = "si-start-over",
103
103
  RESTORENEXT = "si-restore-next",
104
- RESTOREPREVIOUS = "si-restore-previous"
104
+ RESTOREPREVIOUS = "si-restore-previous",
105
+ VIDEO = "si-video-icon"
105
106
  }
@@ -0,0 +1,10 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { CalendarAvailabilityModalModel } from './calendar-availability-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CalendarAvailabilityModalComponent {
5
+ calendarAvailabilityModel: CalendarAvailabilityModalModel;
6
+ closeButtonClicked: EventEmitter<void>;
7
+ onCloseButtonClick(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarAvailabilityModalComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarAvailabilityModalComponent, "symphony-calendar-availability-modal", never, { "calendarAvailabilityModel": "calendarAvailabilityModel"; }, { "closeButtonClicked": "closeButtonClicked"; }, never, ["[calendar-availability-body]"]>;
10
+ }
@@ -0,0 +1,7 @@
1
+ export interface CalendarAvailabilityModalModel {
2
+ isLoading?: boolean;
3
+ errorText?: string;
4
+ modalTitle: string;
5
+ modalSubtitle: string;
6
+ calendarName: string;
7
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./calendar-availability-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/h4/h4.module";
6
+ import * as i5 from "../../../atoms/icon/icon.module";
7
+ import * as i6 from "../../../atoms/paragraph/paragraph.module";
8
+ import * as i7 from "../../../atoms/sfx-loader/sfx-loader.module";
9
+ import * as i8 from "../../../atoms/button-v2/button.module";
10
+ export declare class CalendarAvailabilityModalModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarAvailabilityModalModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CalendarAvailabilityModalModule, [typeof i1.CalendarAvailabilityModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.H4Module, typeof i5.IconModule, typeof i6.ParagraphModule, typeof i7.SfxLoaderModule, typeof i8.ButtonV2Module], [typeof i1.CalendarAvailabilityModalComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<CalendarAvailabilityModalModule>;
14
+ }
@@ -309,6 +309,9 @@ export * from './lib/pages/modals/advance-search-modal/advance-search-modal.modu
309
309
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component';
310
310
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module';
311
311
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model';
312
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component';
313
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module';
314
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model';
312
315
  export * from './lib/pages/job-list-page/job-list-page.component';
313
316
  export * from './lib/pages/job-list-page/job-list-page.module';
314
317
  export * from './lib/pages/job-list-page/job-list-page.model';
package/public-api.d.ts CHANGED
@@ -309,6 +309,9 @@ export * from './lib/pages/modals/advance-search-modal/advance-search-modal.modu
309
309
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.component';
310
310
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.module';
311
311
  export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.model';
312
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component';
313
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module';
314
+ export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model';
312
315
  export * from './lib/pages/job-list-page/job-list-page.component';
313
316
  export * from './lib/pages/job-list-page/job-list-page.module';
314
317
  export * from './lib/pages/job-list-page/job-list-page.model';