@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.
- package/esm2020/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/lib/atoms/button-dropdown/button-dropdown.component.mjs +25 -0
- package/esm2020/lib/atoms/button-dropdown/button-dropdown.model.mjs +2 -0
- package/esm2020/lib/atoms/button-dropdown/button-dropdown.module.mjs +33 -0
- package/esm2020/lib/atoms/input-radio-toggle/input-radio-toggle.component.mjs +26 -0
- package/esm2020/lib/atoms/input-radio-toggle/input-radio-toggle.module.mjs +24 -0
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.component.mjs +25 -0
- package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/button-dropdown/button-dropdown.module.mjs +33 -0
- package/esm2020/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.component.mjs +26 -0
- package/esm2020/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.module.mjs +24 -0
- package/esm2020/projects/component-library/public-api.mjs +6 -1
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +136 -42
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +136 -42
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +136 -42
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +136 -42
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +3 -1
- package/lib/atoms/button-dropdown/button-dropdown.component.d.ts +11 -0
- package/lib/atoms/button-dropdown/button-dropdown.model.d.ts +8 -0
- package/lib/atoms/button-dropdown/button-dropdown.module.d.ts +11 -0
- package/lib/atoms/input-radio-toggle/input-radio-toggle.component.d.ts +12 -0
- package/lib/atoms/input-radio-toggle/input-radio-toggle.module.d.ts +8 -0
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/atoms.module.d.ts +3 -1
- package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.component.d.ts +11 -0
- package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.model.d.ts +8 -0
- package/projects/component-library/lib/atoms/button-dropdown/button-dropdown.module.d.ts +11 -0
- package/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.component.d.ts +12 -0
- package/projects/component-library/lib/atoms/input-radio-toggle/input-radio-toggle.module.d.ts +8 -0
- package/projects/component-library/public-api.d.ts +5 -0
- 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 === null || value === void 0 ? void 0 : 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 === null || value === void 0 ? void 0 : 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 });
|
|
@@ -1687,6 +1732,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1687
1732
|
}]
|
|
1688
1733
|
}] });
|
|
1689
1734
|
|
|
1735
|
+
class InputRadioToggleComponent {
|
|
1736
|
+
constructor() {
|
|
1737
|
+
this.changedValue = new EventEmitter();
|
|
1738
|
+
}
|
|
1739
|
+
onChange(value) {
|
|
1740
|
+
this.changedValue.emit(value);
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
InputRadioToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1744
|
+
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"] }] });
|
|
1745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleComponent, decorators: [{
|
|
1746
|
+
type: Component,
|
|
1747
|
+
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"] }]
|
|
1748
|
+
}], ctorParameters: function () { return []; }, propDecorators: { radioLabel1: [{
|
|
1749
|
+
type: Input
|
|
1750
|
+
}], radioLabel2: [{
|
|
1751
|
+
type: Input
|
|
1752
|
+
}], isDisabled: [{
|
|
1753
|
+
type: Input
|
|
1754
|
+
}], changedValue: [{
|
|
1755
|
+
type: Output
|
|
1756
|
+
}] } });
|
|
1757
|
+
|
|
1758
|
+
class InputRadioToggleModule {
|
|
1759
|
+
}
|
|
1760
|
+
InputRadioToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1761
|
+
InputRadioToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, declarations: [InputRadioToggleComponent], imports: [CommonModule], exports: [InputRadioToggleComponent] });
|
|
1762
|
+
InputRadioToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, imports: [[
|
|
1763
|
+
CommonModule
|
|
1764
|
+
]] });
|
|
1765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioToggleModule, decorators: [{
|
|
1766
|
+
type: NgModule,
|
|
1767
|
+
args: [{
|
|
1768
|
+
declarations: [
|
|
1769
|
+
InputRadioToggleComponent
|
|
1770
|
+
],
|
|
1771
|
+
imports: [
|
|
1772
|
+
CommonModule
|
|
1773
|
+
],
|
|
1774
|
+
exports: [InputRadioToggleComponent]
|
|
1775
|
+
}]
|
|
1776
|
+
}] });
|
|
1777
|
+
|
|
1690
1778
|
class InputChipsModel {
|
|
1691
1779
|
}
|
|
1692
1780
|
const emailPattern = /^((?!\.)(?!.*\.\.)[a-zA-Z0-9\-._+]*[^.])(@[a-zA-Z0-9]+)(\.[a-zA-Z0-9]+(\.[a-zA-Z0-9])?[^\_.\W])$/;
|
|
@@ -2712,7 +2800,9 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
2712
2800
|
InputFileUploadModule,
|
|
2713
2801
|
ChatHistoryMessageAvatarModule,
|
|
2714
2802
|
ChatHistoryMessageBubbleModule,
|
|
2715
|
-
ChatHistoryDateStampModule
|
|
2803
|
+
ChatHistoryDateStampModule,
|
|
2804
|
+
InputRadioToggleModule,
|
|
2805
|
+
ButtonDropdownModule] });
|
|
2716
2806
|
AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
|
|
2717
2807
|
ContextualMenuModule,
|
|
2718
2808
|
AvatarModule,
|
|
@@ -2752,7 +2842,9 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
|
|
|
2752
2842
|
InputFileUploadModule,
|
|
2753
2843
|
ChatHistoryMessageAvatarModule,
|
|
2754
2844
|
ChatHistoryMessageBubbleModule,
|
|
2755
|
-
ChatHistoryDateStampModule
|
|
2845
|
+
ChatHistoryDateStampModule,
|
|
2846
|
+
InputRadioToggleModule,
|
|
2847
|
+
ButtonDropdownModule] });
|
|
2756
2848
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
|
|
2757
2849
|
type: NgModule,
|
|
2758
2850
|
args: [{
|
|
@@ -2798,7 +2890,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2798
2890
|
InputFileUploadModule,
|
|
2799
2891
|
ChatHistoryMessageAvatarModule,
|
|
2800
2892
|
ChatHistoryMessageBubbleModule,
|
|
2801
|
-
ChatHistoryDateStampModule
|
|
2893
|
+
ChatHistoryDateStampModule,
|
|
2894
|
+
InputRadioToggleModule,
|
|
2895
|
+
ButtonDropdownModule
|
|
2802
2896
|
]
|
|
2803
2897
|
}]
|
|
2804
2898
|
}] });
|
|
@@ -8709,5 +8803,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
8709
8803
|
* Generated bundle index. Do not edit.
|
|
8710
8804
|
*/
|
|
8711
8805
|
|
|
8712
|
-
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 };
|
|
8806
|
+
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 };
|
|
8713
8807
|
//# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map
|