@symphony-talent/component-library 4.203.0 → 4.204.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/atoms/input-textarea-with-send/input-textarea-with-send.component.mjs +25 -4
  3. package/esm2020/lib/atoms/input-textarea-with-send/input-textarea-with-send.module.mjs +8 -4
  4. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
  5. package/esm2020/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.component.mjs +9 -3
  6. package/esm2020/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.model.mjs +1 -1
  7. package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +2 -1
  8. package/esm2020/projects/component-library/lib/atoms/input-textarea-with-send/input-textarea-with-send.component.mjs +25 -4
  9. package/esm2020/projects/component-library/lib/atoms/input-textarea-with-send/input-textarea-with-send.module.mjs +8 -4
  10. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
  11. package/esm2020/projects/component-library/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.component.mjs +9 -3
  12. package/esm2020/projects/component-library/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.model.mjs +1 -1
  13. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +45 -8
  14. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  15. package/fesm2015/symphony-talent-component-library.mjs +45 -8
  16. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  17. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +45 -8
  18. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library.mjs +45 -8
  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/atoms/input-textarea-with-send/input-textarea-with-send.component.d.ts +8 -1
  23. package/lib/atoms/input-textarea-with-send/input-textarea-with-send.module.d.ts +2 -1
  24. package/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.component.d.ts +3 -1
  25. package/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.model.d.ts +1 -0
  26. package/package.json +1 -1
  27. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot +0 -0
  28. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg +1 -0
  29. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf +0 -0
  30. package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff +0 -0
  31. package/projects/component-library/global-assets/iconography/library-icons.css +8 -5
  32. package/projects/component-library/global-assets/iconography/{sfx icons-v10.json → sfx icons-v11.json } +24 -9
  33. package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +2 -1
  34. package/projects/component-library/lib/atoms/input-textarea-with-send/input-textarea-with-send.component.d.ts +8 -1
  35. package/projects/component-library/lib/atoms/input-textarea-with-send/input-textarea-with-send.module.d.ts +2 -1
  36. package/projects/component-library/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.component.d.ts +3 -1
  37. package/projects/component-library/lib/organisms/ai-search-assistant-drawer/ai-search-assistant-drawer.model.d.ts +1 -0
@@ -98,5 +98,6 @@ export declare enum Icons {
98
98
  LICENSE = "si-license",
99
99
  REPORTS = "si-reports",
100
100
  SFXINSIGHTS = "si-sfx-insights-b",
101
- SPARKLES = "si-ai-withoutBorder"
101
+ SPARKLES = "si-ai-withoutBorder",
102
+ STARTOVER = "si-start-over"
102
103
  }
@@ -12,9 +12,15 @@ export declare class InputTextareaWithSendComponent implements ControlValueAcces
12
12
  sendButtonIcon: string;
13
13
  sendButtonAriaLabel: string;
14
14
  autoResize: boolean;
15
+ showStartOverButton: boolean;
16
+ startOverButtonId?: string;
17
+ startOverDisabled: boolean;
18
+ startOverButtonIcon: string;
19
+ startOverButtonTitle: string;
15
20
  sendClicked: EventEmitter<string>;
16
21
  enterPressed: EventEmitter<string>;
17
22
  valueChanged: EventEmitter<string>;
23
+ startOverClicked: EventEmitter<void>;
18
24
  textareaElement: ElementRef<HTMLTextAreaElement>;
19
25
  value: string;
20
26
  currentRows: number;
@@ -36,6 +42,7 @@ export declare class InputTextareaWithSendComponent implements ControlValueAcces
36
42
  private refreshInputState;
37
43
  focus(): void;
38
44
  clear(): void;
45
+ onStartOverClick(): void;
39
46
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaWithSendComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaWithSendComponent, "symphony-input-textarea-with-send", never, { "placeholder": "placeholder"; "isDisabled": "isDisabled"; "maxCharacterLimit": "maxCharacterLimit"; "showCharacterCount": "showCharacterCount"; "minRows": "minRows"; "maxRows": "maxRows"; "sendButtonIcon": "sendButtonIcon"; "sendButtonAriaLabel": "sendButtonAriaLabel"; "autoResize": "autoResize"; }, { "sendClicked": "sendClicked"; "enterPressed": "enterPressed"; "valueChanged": "valueChanged"; }, never, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaWithSendComponent, "symphony-input-textarea-with-send", never, { "placeholder": "placeholder"; "isDisabled": "isDisabled"; "maxCharacterLimit": "maxCharacterLimit"; "showCharacterCount": "showCharacterCount"; "minRows": "minRows"; "maxRows": "maxRows"; "sendButtonIcon": "sendButtonIcon"; "sendButtonAriaLabel": "sendButtonAriaLabel"; "autoResize": "autoResize"; "showStartOverButton": "showStartOverButton"; "startOverButtonId": "startOverButtonId"; "startOverDisabled": "startOverDisabled"; "startOverButtonIcon": "startOverButtonIcon"; "startOverButtonTitle": "startOverButtonTitle"; }, { "sendClicked": "sendClicked"; "enterPressed": "enterPressed"; "valueChanged": "valueChanged"; "startOverClicked": "startOverClicked"; }, never, never>;
41
48
  }
@@ -3,8 +3,9 @@ import * as i1 from "./input-textarea-with-send.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@angular/forms";
5
5
  import * as i4 from "../icon/icon.module";
6
+ import * as i5 from "../../pipe/pipe.module";
6
7
  export declare class InputTextareaWithSendModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaWithSendModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextareaWithSendModule, [typeof i1.InputTextareaWithSendComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.IconModule], [typeof i1.InputTextareaWithSendComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextareaWithSendModule, [typeof i1.InputTextareaWithSendComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.IconModule, typeof i5.PipeModule], [typeof i1.InputTextareaWithSendComponent]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<InputTextareaWithSendModule>;
10
11
  }
@@ -11,6 +11,7 @@ export declare class AISearchAssistantDrawerComponent implements OnInit, AfterVi
11
11
  * This allows the same component to have different Pendo tracking based on where it's used
12
12
  */
13
13
  contextId?: string;
14
+ startOverClicked: EventEmitter<any>;
14
15
  drawerClosed: EventEmitter<void>;
15
16
  promptSelected: EventEmitter<SuggestedPrompt>;
16
17
  messageSent: EventEmitter<MessageEvent>;
@@ -49,6 +50,7 @@ export declare class AISearchAssistantDrawerComponent implements OnInit, AfterVi
49
50
  */
50
51
  getPendoId(baseId: string): string;
51
52
  private addWelcomeMessageIfNeeded;
53
+ onStartOverClick(): void;
52
54
  static ɵfac: i0.ɵɵFactoryDeclaration<AISearchAssistantDrawerComponent, never>;
53
- static ɵcmp: i0.ɵɵComponentDeclaration<AISearchAssistantDrawerComponent, "symphony-ai-search-assistant-drawer", never, { "model": "model"; "config": "config"; "contextId": "contextId"; }, { "drawerClosed": "drawerClosed"; "promptSelected": "promptSelected"; "messageSent": "messageSent"; "inputChanged": "inputChanged"; "retryClicked": "retryClicked"; "taskCancelled": "taskCancelled"; "suggestionsToggled": "suggestionsToggled"; }, never, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<AISearchAssistantDrawerComponent, "symphony-ai-search-assistant-drawer", never, { "model": "model"; "config": "config"; "contextId": "contextId"; }, { "startOverClicked": "startOverClicked"; "drawerClosed": "drawerClosed"; "promptSelected": "promptSelected"; "messageSent": "messageSent"; "inputChanged": "inputChanged"; "retryClicked": "retryClicked"; "taskCancelled": "taskCancelled"; "suggestionsToggled": "suggestionsToggled"; }, never, never>;
54
56
  }
@@ -41,6 +41,7 @@ export interface AISearchAssistantConfig {
41
41
  showTimestamps?: boolean;
42
42
  enableSuggestedPrompts?: boolean;
43
43
  features?: Record<string, boolean>;
44
+ showStartOverButton?: boolean;
44
45
  }
45
46
  export interface MessageEvent {
46
47
  content: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.203.0",
3
+ "version": "4.204.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -13,6 +13,7 @@
13
13
  <glyph unicode="&#xe903;" glyph-name="reports" d="M853.333 847.407h-512v-58.074h455.111v-570.072h56.889v628.146zM796.444 106.667v-170.672h-739.556v853.339h170.667v170.667h739.556v-853.333h-170.667zM682.667 675.556h-512v-625.783h512v625.783zM549.928 484.571h-246.519v60.953h246.519v-60.953zM303.409 332.191h246.519v60.953h-246.519v-60.953zM549.928 179.809h-246.519v60.951h246.519v-60.951z" />
14
14
  <glyph unicode="&#xe904;" glyph-name="sfx-insights-b" d="M933.647 960h-843.294c-49.901 0-90.353-40.452-90.353-90.353v0c0-49.901 40.452-90.353 90.353-90.353h843.294c49.901 0 90.353 40.452 90.353 90.353v0c0 49.901-40.452 90.353-90.353 90.353zM819.868 658.827h-615.74c-49.901 0-90.353-40.452-90.353-90.353v0c0-49.901 40.452-90.353 90.353-90.353h615.74c49.901 0 90.353 40.452 90.353 90.353v0c0 49.901-40.452 90.353-90.353 90.353zM706.091 357.649c49.903 0 90.355-40.452 90.355-90.355 0-49.899-40.452-90.351-90.355-90.351h-108.757v-155.61c0-47.13-38.204-85.333-85.333-85.333s-85.333 38.204-85.333 85.333v155.61h-108.758c-49.9 0-90.353 40.452-90.353 90.351s40.452 90.355 90.353 90.355h388.182z" />
15
15
  <glyph unicode="&#xe905;" glyph-name="ai-withoutBorder" d="M182.646-3.937c21.011-40.050 31.517-60.069 44.662-60.063s23.427 19.666 43.99 58.977c16.605 31.75 34.315 62.288 46.653 74.627 13.195 13.193 47.21 32.535 81.254 50.096 37.271 19.223 55.906 28.837 55.906 42.075s-18.635 22.852-55.906 42.081c-34.045 17.562-68.059 36.898-81.254 50.096-13.195 13.193-32.535 47.206-50.097 81.254-19.226 37.268-28.838 55.905-42.077 55.905s-22.852-18.637-42.077-55.905c-17.561-34.048-36.901-68.062-50.096-81.254-12.339-12.339-42.878-30.049-74.624-46.655-39.314-20.565-58.971-30.845-58.979-43.986-0.008-13.147 20.015-23.654 60.061-44.663 28.568-14.99 56.757-32.262 73.542-49.044 16.784-16.788 34.055-44.976 49.043-73.54zM625.033 206.672c12.828-28.655 19.246-42.985 28.877-43.116s16.384 13.915 29.895 42.001c31.334 65.138 79.349 159.289 108.049 187.988 29.4 29.395 127.448 79.052 192.666 110.296 26.322 12.608 39.481 18.913 39.481 28.416s-13.158 15.807-39.481 28.416c-65.217 31.243-163.265 80.9-192.666 110.296-29.394 29.395-79.047 127.443-110.29 192.663-12.612 26.32-18.916 39.48-28.416 39.48-9.506 0-15.809-13.16-28.416-39.48-31.243-65.22-80.903-163.268-110.298-192.663-28.702-28.702-122.85-76.719-187.989-108.052-28.087-13.511-42.13-20.266-41.998-29.896s14.459-16.046 43.116-28.877c60.438-27.063 146.059-69.786 186.872-110.598 40.813-40.81 83.537-126.434 110.599-186.873zM136.985 663.712c15.758-30.034 23.637-45.052 33.496-45.046s17.57 14.749 32.992 44.235c12.454 23.81 25.736 46.714 34.99 55.967 9.897 9.897 35.408 24.402 60.941 37.573 27.953 14.419 41.929 21.629 41.929 31.558s-13.976 17.139-41.929 31.558c-25.533 13.171-51.044 27.676-60.941 37.572s-24.401 35.408-37.572 60.941c-14.419 27.953-21.629 41.93-31.558 41.93s-17.139-13.977-31.558-41.93c-13.171-25.533-27.676-51.044-37.573-60.941-9.254-9.254-32.158-22.535-55.967-34.99-29.485-15.423-44.228-23.133-44.234-32.992s15.011-17.738 45.046-33.496c21.427-11.242 42.568-24.195 55.156-36.783s25.541-33.729 36.783-55.156z" />
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" />
16
17
  <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" />
17
18
  <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" />
18
19
  <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?cglhup');
4
- src: url('library-fonts/library-icons.eot?cglhup#iefix') format('embedded-opentype'),
5
- url('library-fonts/library-icons.ttf?cglhup') format('truetype'),
6
- url('library-fonts/library-icons.woff?cglhup') format('woff'),
7
- url('library-fonts/library-icons.svg?cglhup#library-icons') format('svg');
3
+ src: url('library-fonts/library-icons.eot?raxiq0');
4
+ src: url('library-fonts/library-icons.eot?raxiq0#iefix') format('embedded-opentype'),
5
+ url('library-fonts/library-icons.ttf?raxiq0') format('truetype'),
6
+ url('library-fonts/library-icons.woff?raxiq0') format('woff'),
7
+ url('library-fonts/library-icons.svg?raxiq0#library-icons') format('svg');
8
8
  font-weight: normal;
9
9
  font-style: normal;
10
10
  font-display: block;
@@ -325,3 +325,6 @@
325
325
  .si-ai-withoutBorder:before {
326
326
  content: "\e905";
327
327
  }
328
+ .si-start-over:before {
329
+ content: "\e906";
330
+ }
@@ -598,15 +598,20 @@
598
598
  "order": 3,
599
599
  "name": "ai-withoutBorder",
600
600
  "prevSize": 32
601
+ },
602
+ {
603
+ "order": 521,
604
+ "name": "start-over",
605
+ "prevSize": 32
601
606
  }
602
607
  ],
603
608
  "metadata": {
604
609
  "name": "sfx icons",
605
610
  "importSize": {
606
- "width": 18,
607
- "height": 18
611
+ "width": 200,
612
+ "height": 200
608
613
  },
609
- "iconsHash": 2015556852
614
+ "iconsHash": 1072768589
610
615
  },
611
616
  "height": 1024,
612
617
  "prevSize": 32,
@@ -2124,10 +2129,6 @@
2124
2129
  "fill": "rgb(51, 72, 96)"
2125
2130
  }
2126
2131
  ],
2127
- "grid": 0,
2128
- "tags": [
2129
- "ai-withoutBorder"
2130
- ],
2131
2132
  "colorPermutations": {
2132
2133
  "130145159125525525515172961832621911091281": [
2133
2134
  {
@@ -2141,7 +2142,21 @@
2141
2142
  }
2142
2143
  ]
2143
2144
  },
2144
- "defaultCode": 59653
2145
+ "tags": [
2146
+ "ai-withoutBorder"
2147
+ ],
2148
+ "defaultCode": 59653,
2149
+ "grid": 0
2150
+ },
2151
+ {
2152
+ "paths": [
2153
+ "M773.12 209.92c3.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"
2154
+ ],
2155
+ "grid": 0,
2156
+ "tags": [
2157
+ "start-over"
2158
+ ],
2159
+ "defaultCode": 59654
2145
2160
  }
2146
2161
  ],
2147
2162
  "colorThemes": [
@@ -2185,7 +2200,7 @@
2185
2200
  "showQuickUse2": true,
2186
2201
  "showSVGs": true,
2187
2202
  "fontPref": {
2188
- "prefix": "si-",
2203
+ "prefix": "si",
2189
2204
  "metadata": {
2190
2205
  "fontFamily": "library-icons",
2191
2206
  "majorVersion": 1,
@@ -98,5 +98,6 @@ export declare enum Icons {
98
98
  LICENSE = "si-license",
99
99
  REPORTS = "si-reports",
100
100
  SFXINSIGHTS = "si-sfx-insights-b",
101
- SPARKLES = "si-ai-withoutBorder"
101
+ SPARKLES = "si-ai-withoutBorder",
102
+ STARTOVER = "si-start-over"
102
103
  }
@@ -12,9 +12,15 @@ export declare class InputTextareaWithSendComponent implements ControlValueAcces
12
12
  sendButtonIcon: string;
13
13
  sendButtonAriaLabel: string;
14
14
  autoResize: boolean;
15
+ showStartOverButton: boolean;
16
+ startOverButtonId?: string;
17
+ startOverDisabled: boolean;
18
+ startOverButtonIcon: string;
19
+ startOverButtonTitle: string;
15
20
  sendClicked: EventEmitter<string>;
16
21
  enterPressed: EventEmitter<string>;
17
22
  valueChanged: EventEmitter<string>;
23
+ startOverClicked: EventEmitter<void>;
18
24
  textareaElement: ElementRef<HTMLTextAreaElement>;
19
25
  value: string;
20
26
  currentRows: number;
@@ -36,6 +42,7 @@ export declare class InputTextareaWithSendComponent implements ControlValueAcces
36
42
  private refreshInputState;
37
43
  focus(): void;
38
44
  clear(): void;
45
+ onStartOverClick(): void;
39
46
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaWithSendComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaWithSendComponent, "symphony-input-textarea-with-send", never, { "placeholder": "placeholder"; "isDisabled": "isDisabled"; "maxCharacterLimit": "maxCharacterLimit"; "showCharacterCount": "showCharacterCount"; "minRows": "minRows"; "maxRows": "maxRows"; "sendButtonIcon": "sendButtonIcon"; "sendButtonAriaLabel": "sendButtonAriaLabel"; "autoResize": "autoResize"; }, { "sendClicked": "sendClicked"; "enterPressed": "enterPressed"; "valueChanged": "valueChanged"; }, never, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaWithSendComponent, "symphony-input-textarea-with-send", never, { "placeholder": "placeholder"; "isDisabled": "isDisabled"; "maxCharacterLimit": "maxCharacterLimit"; "showCharacterCount": "showCharacterCount"; "minRows": "minRows"; "maxRows": "maxRows"; "sendButtonIcon": "sendButtonIcon"; "sendButtonAriaLabel": "sendButtonAriaLabel"; "autoResize": "autoResize"; "showStartOverButton": "showStartOverButton"; "startOverButtonId": "startOverButtonId"; "startOverDisabled": "startOverDisabled"; "startOverButtonIcon": "startOverButtonIcon"; "startOverButtonTitle": "startOverButtonTitle"; }, { "sendClicked": "sendClicked"; "enterPressed": "enterPressed"; "valueChanged": "valueChanged"; "startOverClicked": "startOverClicked"; }, never, never>;
41
48
  }
@@ -3,8 +3,9 @@ import * as i1 from "./input-textarea-with-send.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@angular/forms";
5
5
  import * as i4 from "../icon/icon.module";
6
+ import * as i5 from "../../pipe/pipe.module";
6
7
  export declare class InputTextareaWithSendModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaWithSendModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextareaWithSendModule, [typeof i1.InputTextareaWithSendComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.IconModule], [typeof i1.InputTextareaWithSendComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextareaWithSendModule, [typeof i1.InputTextareaWithSendComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.IconModule, typeof i5.PipeModule], [typeof i1.InputTextareaWithSendComponent]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<InputTextareaWithSendModule>;
10
11
  }
@@ -11,6 +11,7 @@ export declare class AISearchAssistantDrawerComponent implements OnInit, AfterVi
11
11
  * This allows the same component to have different Pendo tracking based on where it's used
12
12
  */
13
13
  contextId?: string;
14
+ startOverClicked: EventEmitter<any>;
14
15
  drawerClosed: EventEmitter<void>;
15
16
  promptSelected: EventEmitter<SuggestedPrompt>;
16
17
  messageSent: EventEmitter<MessageEvent>;
@@ -49,6 +50,7 @@ export declare class AISearchAssistantDrawerComponent implements OnInit, AfterVi
49
50
  */
50
51
  getPendoId(baseId: string): string;
51
52
  private addWelcomeMessageIfNeeded;
53
+ onStartOverClick(): void;
52
54
  static ɵfac: i0.ɵɵFactoryDeclaration<AISearchAssistantDrawerComponent, never>;
53
- static ɵcmp: i0.ɵɵComponentDeclaration<AISearchAssistantDrawerComponent, "symphony-ai-search-assistant-drawer", never, { "model": "model"; "config": "config"; "contextId": "contextId"; }, { "drawerClosed": "drawerClosed"; "promptSelected": "promptSelected"; "messageSent": "messageSent"; "inputChanged": "inputChanged"; "retryClicked": "retryClicked"; "taskCancelled": "taskCancelled"; "suggestionsToggled": "suggestionsToggled"; }, never, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<AISearchAssistantDrawerComponent, "symphony-ai-search-assistant-drawer", never, { "model": "model"; "config": "config"; "contextId": "contextId"; }, { "startOverClicked": "startOverClicked"; "drawerClosed": "drawerClosed"; "promptSelected": "promptSelected"; "messageSent": "messageSent"; "inputChanged": "inputChanged"; "retryClicked": "retryClicked"; "taskCancelled": "taskCancelled"; "suggestionsToggled": "suggestionsToggled"; }, never, never>;
54
56
  }
@@ -41,6 +41,7 @@ export interface AISearchAssistantConfig {
41
41
  showTimestamps?: boolean;
42
42
  enableSuggestedPrompts?: boolean;
43
43
  features?: Record<string, boolean>;
44
+ showStartOverButton?: boolean;
44
45
  }
45
46
  export interface MessageEvent {
46
47
  content: string;