@symphony-talent/component-library 4.92.0 → 4.94.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/atoms.module.mjs +12 -4
  2. package/esm2020/lib/atoms/button-dropdown/button-dropdown.component.mjs +25 -0
  3. package/esm2020/lib/atoms/button-dropdown/button-dropdown.model.mjs +2 -0
  4. package/esm2020/lib/atoms/button-dropdown/button-dropdown.module.mjs +33 -0
  5. package/esm2020/lib/atoms/input-radio-toggle/input-radio-toggle.component.mjs +26 -0
  6. package/esm2020/lib/atoms/input-radio-toggle/input-radio-toggle.module.mjs +24 -0
  7. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +12 -4
  8. package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.component.mjs +25 -0
  9. package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.model.mjs +2 -0
  10. package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.module.mjs +33 -0
  11. package/esm2020/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.component.mjs +26 -0
  12. package/esm2020/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.module.mjs +24 -0
  13. package/esm2020/projects/component-library/public-api.mjs +6 -1
  14. package/esm2020/public-api.mjs +6 -1
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +136 -42
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +136 -42
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +136 -42
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +136 -42
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/atoms/atoms.module.d.ts +3 -1
  24. package/lib/atoms/button-dropdown/button-dropdown.component.d.ts +11 -0
  25. package/lib/atoms/button-dropdown/button-dropdown.model.d.ts +8 -0
  26. package/lib/atoms/button-dropdown/button-dropdown.module.d.ts +11 -0
  27. package/lib/atoms/input-radio-toggle/input-radio-toggle.component.d.ts +12 -0
  28. package/lib/atoms/input-radio-toggle/input-radio-toggle.module.d.ts +8 -0
  29. package/package.json +1 -1
  30. package/projects/component-library/lib/atoms/atoms.module.d.ts +3 -1
  31. package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.component.d.ts +11 -0
  32. package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.model.d.ts +8 -0
  33. package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.module.d.ts +11 -0
  34. package/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.component.d.ts +12 -0
  35. package/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.module.d.ts +8 -0
  36. package/projects/component-library/public-api.d.ts +5 -0
  37. package/public-api.d.ts +5 -0
@@ -170,6 +170,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
170
170
  }]
171
171
  }] });
172
172
 
173
+ class TrimIdPipe {
174
+ transform(value) {
175
+ return value?.replace(/[^\w]/g, "");
176
+ }
177
+ }
178
+ TrimIdPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
179
+ TrimIdPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, name: "trimId" });
180
+ TrimIdPipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, providedIn: 'root' });
181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, decorators: [{
182
+ type: Pipe,
183
+ args: [{
184
+ name: 'trimId'
185
+ }]
186
+ }, {
187
+ type: Injectable,
188
+ args: [{
189
+ providedIn: 'root',
190
+ }]
191
+ }] });
192
+
193
+ class ButtonDropdownComponent {
194
+ constructor() {
195
+ this.itemClicked = new EventEmitter();
196
+ }
197
+ itemClick(item) {
198
+ this.dropdownModel.selectedValue = item.label;
199
+ this.itemClicked.emit(item);
200
+ }
201
+ }
202
+ ButtonDropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
203
+ ButtonDropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonDropdownComponent, selector: "symphony-button-dropdown", inputs: { dropdownModel: "dropdownModel" }, outputs: { itemClicked: "itemClicked" }, ngImport: i0, template: "<div\n *ngIf=\"dropdownModel\"\n class=\"sfx-button-dropdown btn-group\"\n dropdown\n>\n <button\n dropdownToggle\n type=\"button\"\n aria-controls=\"dropdown-basic\"\n class=\"btn\"\n id=\"button-dropdown\"\n >\n {{ dropdownModel.selectedValue\n }}<i class=\"si-arrow-hide-reveal sfx-font18\"></i>\n </button>\n <ul id=\"dropdown-basic\" *dropdownMenu class=\"dropdown-menu\" role=\"menu\">\n <li\n *ngFor=\"let btnDropdownItem of dropdownModel.dropdownList\"\n (click)=\"itemClick(btnDropdownItem)\"\n >\n <a\n id=\"btn-dropdown-{{ btnDropdownItem.label | trimId }}\"\n href=\"javascript:;\"\n >{{ btnDropdownItem.label }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".sfx-button-dropdown .btn{min-width:110px;text-align:center;border-radius:40px!important;font-size:14px;position:relative;background:#F1F2F5;height:30px;padding:6px 10px;line-height:1;display:flex;justify-content:center;align-items:center;font-weight:500;outline:none;box-shadow:none}.sfx-button-dropdown .btn i{transform:rotate(180deg);transition:linear .1s}.sfx-button-dropdown .btn:hover{color:#000}.sfx-button-dropdown .dropdown-menu{min-width:110px;border-radius:10px;padding:10px 0;border:none;box-shadow:2px 0 20px rgba(0,0,0,.2)}.sfx-button-dropdown .dropdown-menu li a{padding:8px 10px 8px 20px;color:#000}.sfx-button-dropdown .dropdown-menu li a:hover{background:#e4e7ef;color:#000}.sfx-button-dropdown.open .btn{color:#000}.sfx-button-dropdown.open .btn i{transform:rotate(0);transition:linear .1s}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "trimId": TrimIdPipe } });
204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownComponent, decorators: [{
205
+ type: Component,
206
+ args: [{ selector: 'symphony-button-dropdown', template: "<div\n *ngIf=\"dropdownModel\"\n class=\"sfx-button-dropdown btn-group\"\n dropdown\n>\n <button\n dropdownToggle\n type=\"button\"\n aria-controls=\"dropdown-basic\"\n class=\"btn\"\n id=\"button-dropdown\"\n >\n {{ dropdownModel.selectedValue\n }}<i class=\"si-arrow-hide-reveal sfx-font18\"></i>\n </button>\n <ul id=\"dropdown-basic\" *dropdownMenu class=\"dropdown-menu\" role=\"menu\">\n <li\n *ngFor=\"let btnDropdownItem of dropdownModel.dropdownList\"\n (click)=\"itemClick(btnDropdownItem)\"\n >\n <a\n id=\"btn-dropdown-{{ btnDropdownItem.label | trimId }}\"\n href=\"javascript:;\"\n >{{ btnDropdownItem.label }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".sfx-button-dropdown .btn{min-width:110px;text-align:center;border-radius:40px!important;font-size:14px;position:relative;background:#F1F2F5;height:30px;padding:6px 10px;line-height:1;display:flex;justify-content:center;align-items:center;font-weight:500;outline:none;box-shadow:none}.sfx-button-dropdown .btn i{transform:rotate(180deg);transition:linear .1s}.sfx-button-dropdown .btn:hover{color:#000}.sfx-button-dropdown .dropdown-menu{min-width:110px;border-radius:10px;padding:10px 0;border:none;box-shadow:2px 0 20px rgba(0,0,0,.2)}.sfx-button-dropdown .dropdown-menu li a{padding:8px 10px 8px 20px;color:#000}.sfx-button-dropdown .dropdown-menu li a:hover{background:#e4e7ef;color:#000}.sfx-button-dropdown.open .btn{color:#000}.sfx-button-dropdown.open .btn i{transform:rotate(0);transition:linear .1s}\n"] }]
207
+ }], ctorParameters: function () { return []; }, propDecorators: { dropdownModel: [{
208
+ type: Input
209
+ }], itemClicked: [{
210
+ type: Output
211
+ }] } });
212
+
213
+ class PipeModule {
214
+ }
215
+ PipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
216
+ PipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, declarations: [TrimIdPipe], imports: [CommonModule], exports: [TrimIdPipe] });
217
+ PipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, imports: [[
218
+ CommonModule,
219
+ ]] });
220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, decorators: [{
221
+ type: NgModule,
222
+ args: [{
223
+ declarations: [TrimIdPipe],
224
+ imports: [
225
+ CommonModule,
226
+ ],
227
+ exports: [TrimIdPipe]
228
+ }]
229
+ }] });
230
+
231
+ class ButtonDropdownModule {
232
+ }
233
+ ButtonDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
234
+ ButtonDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownModule, declarations: [ButtonDropdownComponent], imports: [CommonModule, i1$1.BsDropdownModule, BrowserAnimationsModule,
235
+ PipeModule], exports: [ButtonDropdownComponent] });
236
+ ButtonDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownModule, imports: [[
237
+ CommonModule,
238
+ BsDropdownModule.forRoot(),
239
+ BrowserAnimationsModule,
240
+ PipeModule,
241
+ ]] });
242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonDropdownModule, decorators: [{
243
+ type: NgModule,
244
+ args: [{
245
+ declarations: [ButtonDropdownComponent],
246
+ imports: [
247
+ CommonModule,
248
+ BsDropdownModule.forRoot(),
249
+ BrowserAnimationsModule,
250
+ PipeModule,
251
+ ],
252
+ exports: [ButtonDropdownComponent],
253
+ }]
254
+ }] });
255
+
173
256
  class ButtonV2Component extends ButtonComponent {
174
257
  constructor() {
175
258
  super();
@@ -263,26 +346,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
263
346
  }]
264
347
  }] });
265
348
 
266
- class TrimIdPipe {
267
- transform(value) {
268
- return value?.replace(/[^\w]/g, "");
269
- }
270
- }
271
- TrimIdPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
272
- TrimIdPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, name: "trimId" });
273
- TrimIdPipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, providedIn: 'root' });
274
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, decorators: [{
275
- type: Pipe,
276
- args: [{
277
- name: 'trimId'
278
- }]
279
- }, {
280
- type: Injectable,
281
- args: [{
282
- providedIn: 'root',
283
- }]
284
- }] });
285
-
286
349
  class ContextualMenuComponent {
287
350
  constructor() {
288
351
  this.model = {
@@ -306,24 +369,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
306
369
  type: Output
307
370
  }] } });
308
371
 
309
- class PipeModule {
310
- }
311
- PipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
312
- PipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, declarations: [TrimIdPipe], imports: [CommonModule], exports: [TrimIdPipe] });
313
- PipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, imports: [[
314
- CommonModule,
315
- ]] });
316
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PipeModule, decorators: [{
317
- type: NgModule,
318
- args: [{
319
- declarations: [TrimIdPipe],
320
- imports: [
321
- CommonModule,
322
- ],
323
- exports: [TrimIdPipe]
324
- }]
325
- }] });
326
-
327
372
  class ContextualMenuModule {
328
373
  }
329
374
  ContextualMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1686,6 +1731,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1686
1731
  }]
1687
1732
  }] });
1688
1733
 
1734
+ class InputRadioToggleComponent {
1735
+ constructor() {
1736
+ this.changedValue = new EventEmitter();
1737
+ }
1738
+ onChange(value) {
1739
+ this.changedValue.emit(value);
1740
+ }
1741
+ }
1742
+ InputRadioToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1743
+ InputRadioToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputRadioToggleComponent, selector: "symphony-input-radio-toggle", inputs: { radioLabel1: "radioLabel1", radioLabel2: "radioLabel2", isDisabled: "isDisabled" }, outputs: { changedValue: "changedValue" }, ngImport: i0, template: "<div class=\"sfx-radio-toggle\" [ngClass]=\"{'radio-disabled': isDisabled}\">\n <input\n checked=\"true\"\n type=\"radio\"\n value=\"{{ radioLabel1 }}\"\n id=\"radio-{{ radioLabel1 }}\"\n name=\"radio-toggle\"\n (change)=\"onChange(radioLabel1)\"\n /><label for=\"radio-{{radioLabel1}}\">{{ radioLabel1 }}</label\n ><input\n type=\"radio\"\n value=\"{{ radioLabel2 }}\"\n id=\"radio-{{ radioLabel2 }}\"\n name=\"radio-toggle\"\n (change)=\"onChange(radioLabel2)\"\n /><label for=\"radio-{{radioLabel2}}\">{{ radioLabel2 }}</label>\n </div>\n ", styles: [".sfx-radio-toggle{display:flex;overflow:hidden}.sfx-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.sfx-radio-toggle input:checked+label{background-color:#334860;color:#fff}.sfx-radio-toggle label{background-color:#fff;color:#000;font-size:12px;line-height:18px;text-align:center;border:1px solid #334860;transition:all .1s ease-in-out;text-transform:uppercase;font-weight:500;margin:0;min-width:50px}.sfx-radio-toggle label:hover{cursor:pointer}.sfx-radio-toggle label:first-of-type{border-radius:20px 0 0 20px;border-right:none}.sfx-radio-toggle label:last-of-type{border-radius:0 20px 20px 0;border-left:none}.sfx-radio-toggle.radio-disabled label{pointer-events:none;opacity:.5}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleComponent, decorators: [{
1745
+ type: Component,
1746
+ args: [{ selector: 'symphony-input-radio-toggle', template: "<div class=\"sfx-radio-toggle\" [ngClass]=\"{'radio-disabled': isDisabled}\">\n <input\n checked=\"true\"\n type=\"radio\"\n value=\"{{ radioLabel1 }}\"\n id=\"radio-{{ radioLabel1 }}\"\n name=\"radio-toggle\"\n (change)=\"onChange(radioLabel1)\"\n /><label for=\"radio-{{radioLabel1}}\">{{ radioLabel1 }}</label\n ><input\n type=\"radio\"\n value=\"{{ radioLabel2 }}\"\n id=\"radio-{{ radioLabel2 }}\"\n name=\"radio-toggle\"\n (change)=\"onChange(radioLabel2)\"\n /><label for=\"radio-{{radioLabel2}}\">{{ radioLabel2 }}</label>\n </div>\n ", styles: [".sfx-radio-toggle{display:flex;overflow:hidden}.sfx-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.sfx-radio-toggle input:checked+label{background-color:#334860;color:#fff}.sfx-radio-toggle label{background-color:#fff;color:#000;font-size:12px;line-height:18px;text-align:center;border:1px solid #334860;transition:all .1s ease-in-out;text-transform:uppercase;font-weight:500;margin:0;min-width:50px}.sfx-radio-toggle label:hover{cursor:pointer}.sfx-radio-toggle label:first-of-type{border-radius:20px 0 0 20px;border-right:none}.sfx-radio-toggle label:last-of-type{border-radius:0 20px 20px 0;border-left:none}.sfx-radio-toggle.radio-disabled label{pointer-events:none;opacity:.5}\n"] }]
1747
+ }], ctorParameters: function () { return []; }, propDecorators: { radioLabel1: [{
1748
+ type: Input
1749
+ }], radioLabel2: [{
1750
+ type: Input
1751
+ }], isDisabled: [{
1752
+ type: Input
1753
+ }], changedValue: [{
1754
+ type: Output
1755
+ }] } });
1756
+
1757
+ class InputRadioToggleModule {
1758
+ }
1759
+ InputRadioToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1760
+ InputRadioToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, declarations: [InputRadioToggleComponent], imports: [CommonModule], exports: [InputRadioToggleComponent] });
1761
+ InputRadioToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, imports: [[
1762
+ CommonModule
1763
+ ]] });
1764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, decorators: [{
1765
+ type: NgModule,
1766
+ args: [{
1767
+ declarations: [
1768
+ InputRadioToggleComponent
1769
+ ],
1770
+ imports: [
1771
+ CommonModule
1772
+ ],
1773
+ exports: [InputRadioToggleComponent]
1774
+ }]
1775
+ }] });
1776
+
1689
1777
  class InputChipsModel {
1690
1778
  }
1691
1779
  const emailPattern = /^((?!\.)(?!.*\.\.)[a-zA-Z0-9\-._+]*[^.])(@[a-zA-Z0-9]+)(\.[a-zA-Z0-9]+(\.[a-zA-Z0-9])?[^\_.\W])$/;
@@ -2710,7 +2798,9 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2710
2798
  InputFileUploadModule,
2711
2799
  ChatHistoryMessageAvatarModule,
2712
2800
  ChatHistoryMessageBubbleModule,
2713
- ChatHistoryDateStampModule] });
2801
+ ChatHistoryDateStampModule,
2802
+ InputRadioToggleModule,
2803
+ ButtonDropdownModule] });
2714
2804
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2715
2805
  ContextualMenuModule,
2716
2806
  AvatarModule,
@@ -2750,7 +2840,9 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2750
2840
  InputFileUploadModule,
2751
2841
  ChatHistoryMessageAvatarModule,
2752
2842
  ChatHistoryMessageBubbleModule,
2753
- ChatHistoryDateStampModule] });
2843
+ ChatHistoryDateStampModule,
2844
+ InputRadioToggleModule,
2845
+ ButtonDropdownModule] });
2754
2846
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2755
2847
  type: NgModule,
2756
2848
  args: [{
@@ -2796,7 +2888,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2796
2888
  InputFileUploadModule,
2797
2889
  ChatHistoryMessageAvatarModule,
2798
2890
  ChatHistoryMessageBubbleModule,
2799
- ChatHistoryDateStampModule
2891
+ ChatHistoryDateStampModule,
2892
+ InputRadioToggleModule,
2893
+ ButtonDropdownModule
2800
2894
  ]
2801
2895
  }]
2802
2896
  }] });
@@ -8705,5 +8799,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
8705
8799
  * Generated bundle index. Do not edit.
8706
8800
  */
8707
8801
 
8708
- export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryDateStampComponent, ChatHistoryDateStampModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ChatHistoryMessageItemComponent, ChatHistoryMessageItemModule, ChatHistoryMessageListComponent, ChatHistoryMessageListModule, ChatbotHistoryModalComponent, ChatbotHistoryModalModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
8802
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonDropdownComponent, ButtonDropdownModule, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryDateStampComponent, ChatHistoryDateStampModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ChatHistoryMessageItemComponent, ChatHistoryMessageItemModule, ChatHistoryMessageListComponent, ChatHistoryMessageListModule, ChatbotHistoryModalComponent, ChatbotHistoryModalModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputRadioComponent, InputRadioModule, InputRadioToggleComponent, InputRadioToggleModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
8709
8803
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map