@spw-ds/spw-angular-library 1.4.0 → 1.4.2-alpha.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/README.md +16 -16
- package/fesm2022/spw-ds-spw-angular-library.mjs +123 -42
- package/fesm2022/spw-ds-spw-angular-library.mjs.map +1 -1
- package/lib/spw-design-system-directives.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +60 -13
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
# SPW Design System
|
|
2
|
-
|
|
3
|
-
Le **SPW Design System** est une bibliothèque de composants Web conçue pour créer des interfaces utilisateur cohérentes, accessibles et maintenables dans toutes les applications web du Service Public de Wallonie.
|
|
4
|
-
|
|
5
|
-
## Documentation et guides
|
|
6
|
-
|
|
7
|
-
- [Documentation complète sur ZeroHeight](https://zeroheight.com/2310c7a1e/p/44e962-design-system-du-spw) : Découvrez les principes de design, les guidelines, et les spécifications de chaque composant.
|
|
8
|
-
- [Storybook interactif](https://main--6698db7bdfc632c36f76afdb.chromatic.com/) : Explorez et testez les composants en action, avec des exemples détaillés et des cas d'utilisation.
|
|
9
|
-
|
|
10
|
-
## Compatibilité
|
|
11
|
-
|
|
12
|
-
Les composants sont développés en utilisant [StencilJS](https://stenciljs.com/), ce qui garantit une compatibilité native avec tous les frameworks modernes (tels que React et Angular) ainsi qu'avec des projets sans framework.
|
|
13
|
-
|
|
14
|
-
## Contribution
|
|
15
|
-
|
|
16
|
-
Pour contribuer ou poser des questions, référez-vous à [notre documentation ZeroHeight](https://zeroheight.com/2310c7a1e/p/44e962-design-system-du-spw) ou [contactez l’équipe de développement](mailto:pierre.henrion.ext@spw.wallonie.be).
|
|
1
|
+
# SPW Design System
|
|
2
|
+
|
|
3
|
+
Le **SPW Design System** est une bibliothèque de composants Web conçue pour créer des interfaces utilisateur cohérentes, accessibles et maintenables dans toutes les applications web du Service Public de Wallonie.
|
|
4
|
+
|
|
5
|
+
## Documentation et guides
|
|
6
|
+
|
|
7
|
+
- [Documentation complète sur ZeroHeight](https://zeroheight.com/2310c7a1e/p/44e962-design-system-du-spw) : Découvrez les principes de design, les guidelines, et les spécifications de chaque composant.
|
|
8
|
+
- [Storybook interactif](https://main--6698db7bdfc632c36f76afdb.chromatic.com/) : Explorez et testez les composants en action, avec des exemples détaillés et des cas d'utilisation.
|
|
9
|
+
|
|
10
|
+
## Compatibilité
|
|
11
|
+
|
|
12
|
+
Les composants sont développés en utilisant [StencilJS](https://stenciljs.com/), ce qui garantit une compatibilité native avec tous les frameworks modernes (tels que React et Angular) ainsi qu'avec des projets sans framework.
|
|
13
|
+
|
|
14
|
+
## Contribution
|
|
15
|
+
|
|
16
|
+
Pour contribuer ou poser des questions, référez-vous à [notre documentation ZeroHeight](https://zeroheight.com/2310c7a1e/p/44e962-design-system-du-spw) ou [contactez l’équipe de développement](mailto:pierre.henrion.ext@spw.wallonie.be).
|
|
@@ -213,11 +213,11 @@ let SpwButton = class SpwButton {
|
|
|
213
213
|
proxyOutputs(this, this.el, ['spwFocus', 'spwBlur', 'spwNavigate']);
|
|
214
214
|
}
|
|
215
215
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
216
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwButton, isStandalone: true, selector: "spw-button", inputs: { accAriaLabel: "accAriaLabel", disabled: "disabled", download: "download", href: "href", icon: "icon", iconPosition: "iconPosition", isFullWidth: "isFullWidth", isFullWidthMobile: "isFullWidthMobile", isIconOnly: "isIconOnly", isLoading: "isLoading", name: "name", rel: "rel", size: "size", surface: "surface", target: "target", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
216
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwButton, isStandalone: true, selector: "spw-button", inputs: { accAriaLabel: "accAriaLabel", disabled: "disabled", download: "download", hideTextOnMobile: "hideTextOnMobile", href: "href", icon: "icon", iconPosition: "iconPosition", isFullWidth: "isFullWidth", isFullWidthMobile: "isFullWidthMobile", isIconOnly: "isIconOnly", isLoading: "isLoading", name: "name", rel: "rel", size: "size", surface: "surface", target: "target", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
217
217
|
};
|
|
218
218
|
SpwButton = __decorate([
|
|
219
219
|
ProxyCmp({
|
|
220
|
-
inputs: ['accAriaLabel', 'disabled', 'download', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant']
|
|
220
|
+
inputs: ['accAriaLabel', 'disabled', 'download', 'hideTextOnMobile', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant']
|
|
221
221
|
})
|
|
222
222
|
], SpwButton);
|
|
223
223
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwButton, decorators: [{
|
|
@@ -227,7 +227,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
227
227
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
228
228
|
template: '<ng-content></ng-content>',
|
|
229
229
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
230
|
-
inputs: ['accAriaLabel', 'disabled', 'download', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant'],
|
|
230
|
+
inputs: ['accAriaLabel', 'disabled', 'download', 'hideTextOnMobile', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant'],
|
|
231
231
|
}]
|
|
232
232
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
233
233
|
let SpwCard = class SpwCard {
|
|
@@ -456,11 +456,11 @@ let SpwCustomSelect = class SpwCustomSelect {
|
|
|
456
456
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
457
457
|
}
|
|
458
458
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCustomSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
459
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCustomSelect, isStandalone: true, selector: "spw-custom-select", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", isSearch: "isSearch", items: "items", label: "label", multiple: "multiple", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
459
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCustomSelect, isStandalone: true, selector: "spw-custom-select", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", isSearch: "isSearch", items: "items", label: "label", multiple: "multiple", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
460
460
|
};
|
|
461
461
|
SpwCustomSelect = __decorate([
|
|
462
462
|
ProxyCmp({
|
|
463
|
-
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
|
|
463
|
+
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
464
464
|
methods: ['resetSelect', 'setValue', 'getValue']
|
|
465
465
|
})
|
|
466
466
|
], SpwCustomSelect);
|
|
@@ -471,7 +471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
471
471
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
472
472
|
template: '<ng-content></ng-content>',
|
|
473
473
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
474
|
-
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
|
|
474
|
+
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
475
475
|
}]
|
|
476
476
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
477
477
|
let SpwDatePicker = class SpwDatePicker {
|
|
@@ -482,11 +482,11 @@ let SpwDatePicker = class SpwDatePicker {
|
|
|
482
482
|
proxyOutputs(this, this.el, ['dateChange', 'datePickerOpen', 'datePickerClose']);
|
|
483
483
|
}
|
|
484
484
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
485
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDatePicker, isStandalone: true, selector: "spw-date-picker", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", dateFormat: "dateFormat", disabled: "disabled", disabledDates: "disabledDates", disabledDays: "disabledDays", error: "error", hint: "hint", isStart: "isStart", label: "label", maxDate: "maxDate", minDate: "minDate", name: "name", placeholder: "placeholder", position: "position", range: "range", rangeId: "rangeId", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", success: "success", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
485
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDatePicker, isStandalone: true, selector: "spw-date-picker", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", dateFormat: "dateFormat", disabled: "disabled", disabledDates: "disabledDates", disabledDays: "disabledDays", error: "error", hint: "hint", isStart: "isStart", label: "label", maxDate: "maxDate", minDate: "minDate", name: "name", placeholder: "placeholder", position: "position", range: "range", rangeId: "rangeId", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
486
486
|
};
|
|
487
487
|
SpwDatePicker = __decorate([
|
|
488
488
|
ProxyCmp({
|
|
489
|
-
inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'value', 'warning'],
|
|
489
|
+
inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
490
490
|
methods: ['open', 'close', 'setDate', 'getDate', 'getRange', 'updateConstraints', 'resetInput', 'resetConstraints']
|
|
491
491
|
})
|
|
492
492
|
], SpwDatePicker);
|
|
@@ -497,7 +497,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
497
497
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
498
498
|
template: '<ng-content></ng-content>',
|
|
499
499
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
500
|
-
inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'value', 'warning'],
|
|
500
|
+
inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
501
501
|
}]
|
|
502
502
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
503
503
|
let SpwDropdown = class SpwDropdown {
|
|
@@ -578,11 +578,11 @@ let SpwFieldLabel = class SpwFieldLabel {
|
|
|
578
578
|
this.el = r.nativeElement;
|
|
579
579
|
}
|
|
580
580
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
581
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFieldLabel, isStandalone: true, selector: "spw-field-label", inputs: { label: "label", name: "name", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
581
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFieldLabel, isStandalone: true, selector: "spw-field-label", inputs: { label: "label", name: "name", required: "required", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
582
582
|
};
|
|
583
583
|
SpwFieldLabel = __decorate([
|
|
584
584
|
ProxyCmp({
|
|
585
|
-
inputs: ['label', 'name', 'required']
|
|
585
|
+
inputs: ['label', 'name', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle']
|
|
586
586
|
})
|
|
587
587
|
], SpwFieldLabel);
|
|
588
588
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldLabel, decorators: [{
|
|
@@ -592,7 +592,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
592
592
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
593
593
|
template: '<ng-content></ng-content>',
|
|
594
594
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
595
|
-
inputs: ['label', 'name', 'required'],
|
|
595
|
+
inputs: ['label', 'name', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle'],
|
|
596
596
|
}]
|
|
597
597
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
598
598
|
let SpwFieldMessage = class SpwFieldMessage {
|
|
@@ -627,11 +627,11 @@ let SpwFileUpload = class SpwFileUpload {
|
|
|
627
627
|
proxyOutputs(this, this.el, ['spwFileChange']);
|
|
628
628
|
}
|
|
629
629
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
630
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFileUpload, isStandalone: true, selector: "spw-file-upload", inputs: { accept: "accept", disabled: "disabled", enableDropZone: "enableDropZone", error: "error", maxFileSize: "maxFileSize", maxFiles: "maxFiles", multiple: "multiple", name: "name", refuse: "refuse", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
630
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFileUpload, isStandalone: true, selector: "spw-file-upload", inputs: { accept: "accept", disabled: "disabled", enableDropZone: "enableDropZone", error: "error", maxFileSize: "maxFileSize", maxFileSizeUnit: "maxFileSizeUnit", maxFiles: "maxFiles", multiple: "multiple", name: "name", refuse: "refuse", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
631
631
|
};
|
|
632
632
|
SpwFileUpload = __decorate([
|
|
633
633
|
ProxyCmp({
|
|
634
|
-
inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
|
|
634
|
+
inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFileSizeUnit', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
|
|
635
635
|
methods: ['resetInput']
|
|
636
636
|
})
|
|
637
637
|
], SpwFileUpload);
|
|
@@ -642,7 +642,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
642
642
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
643
643
|
template: '<ng-content></ng-content>',
|
|
644
644
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
645
|
-
inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
|
|
645
|
+
inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFileSizeUnit', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
|
|
646
646
|
}]
|
|
647
647
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
648
648
|
let SpwFooter = class SpwFooter {
|
|
@@ -818,11 +818,11 @@ let SpwGroup = class SpwGroup {
|
|
|
818
818
|
this.el = r.nativeElement;
|
|
819
819
|
}
|
|
820
820
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
821
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwGroup, isStandalone: true, selector: "spw-group", inputs: { alignment: "alignment", disabled: "disabled", isFullWidth: "isFullWidth", isReversed: "isReversed", label: "label", name: "name", orientation: "orientation", required: "required", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
821
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwGroup, isStandalone: true, selector: "spw-group", inputs: { alignment: "alignment", disabled: "disabled", isFullWidth: "isFullWidth", isReversed: "isReversed", label: "label", name: "name", orientation: "orientation", required: "required", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
822
822
|
};
|
|
823
823
|
SpwGroup = __decorate([
|
|
824
824
|
ProxyCmp({
|
|
825
|
-
inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'type']
|
|
825
|
+
inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type']
|
|
826
826
|
})
|
|
827
827
|
], SpwGroup);
|
|
828
828
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGroup, decorators: [{
|
|
@@ -832,7 +832,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
832
832
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
833
833
|
template: '<ng-content></ng-content>',
|
|
834
834
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
835
|
-
inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'type'],
|
|
835
|
+
inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type'],
|
|
836
836
|
}]
|
|
837
837
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
838
838
|
let SpwHeader = class SpwHeader {
|
|
@@ -938,10 +938,12 @@ let SpwHeaderNavigationDropdown = class SpwHeaderNavigationDropdown {
|
|
|
938
938
|
this.el = r.nativeElement;
|
|
939
939
|
}
|
|
940
940
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
941
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationDropdown, isStandalone: true, selector: "spw-header-navigation-dropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
941
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationDropdown, isStandalone: true, selector: "spw-header-navigation-dropdown", inputs: { viewMoreText: "viewMoreText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
942
942
|
};
|
|
943
943
|
SpwHeaderNavigationDropdown = __decorate([
|
|
944
|
-
ProxyCmp({
|
|
944
|
+
ProxyCmp({
|
|
945
|
+
inputs: ['viewMoreText']
|
|
946
|
+
})
|
|
945
947
|
], SpwHeaderNavigationDropdown);
|
|
946
948
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationDropdown, decorators: [{
|
|
947
949
|
type: Component,
|
|
@@ -950,7 +952,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
950
952
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
951
953
|
template: '<ng-content></ng-content>',
|
|
952
954
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
953
|
-
inputs: [],
|
|
955
|
+
inputs: ['viewMoreText'],
|
|
954
956
|
}]
|
|
955
957
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
956
958
|
let SpwHeaderNavigationItem = class SpwHeaderNavigationItem {
|
|
@@ -961,11 +963,11 @@ let SpwHeaderNavigationItem = class SpwHeaderNavigationItem {
|
|
|
961
963
|
proxyOutputs(this, this.el, ['spwHeaderNavigationNavigate']);
|
|
962
964
|
}
|
|
963
965
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
964
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationItem, isStandalone: true, selector: "spw-header-navigation-item", inputs: { isActive: "isActive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
966
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationItem, isStandalone: true, selector: "spw-header-navigation-item", inputs: { isActive: "isActive", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
965
967
|
};
|
|
966
968
|
SpwHeaderNavigationItem = __decorate([
|
|
967
969
|
ProxyCmp({
|
|
968
|
-
inputs: ['isActive']
|
|
970
|
+
inputs: ['isActive', 'variant']
|
|
969
971
|
})
|
|
970
972
|
], SpwHeaderNavigationItem);
|
|
971
973
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationItem, decorators: [{
|
|
@@ -975,7 +977,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
975
977
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
976
978
|
template: '<ng-content></ng-content>',
|
|
977
979
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
978
|
-
inputs: ['isActive'],
|
|
980
|
+
inputs: ['isActive', 'variant'],
|
|
979
981
|
}]
|
|
980
982
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
981
983
|
let SpwHeaderPersona = class SpwHeaderPersona {
|
|
@@ -1098,6 +1100,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1098
1100
|
inputs: ['alt', 'height', 'variant', 'width'],
|
|
1099
1101
|
}]
|
|
1100
1102
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1103
|
+
let SpwInputSlider = class SpwInputSlider {
|
|
1104
|
+
constructor(c, r, z) {
|
|
1105
|
+
this.z = z;
|
|
1106
|
+
c.detach();
|
|
1107
|
+
this.el = r.nativeElement;
|
|
1108
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
1109
|
+
}
|
|
1110
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwInputSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1111
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwInputSlider, isStandalone: true, selector: "spw-input-slider", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hasTooltip: "hasTooltip", hint: "hint", label: "label", max: "max", min: "min", name: "name", orientation: "orientation", range: "range", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", step: "step", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1112
|
+
};
|
|
1113
|
+
SpwInputSlider = __decorate([
|
|
1114
|
+
ProxyCmp({
|
|
1115
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hasTooltip', 'hint', 'label', 'max', 'min', 'name', 'orientation', 'range', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
1116
|
+
methods: ['setValue', 'getValue']
|
|
1117
|
+
})
|
|
1118
|
+
], SpwInputSlider);
|
|
1119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwInputSlider, decorators: [{
|
|
1120
|
+
type: Component,
|
|
1121
|
+
args: [{
|
|
1122
|
+
selector: 'spw-input-slider',
|
|
1123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1124
|
+
template: '<ng-content></ng-content>',
|
|
1125
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1126
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hasTooltip', 'hint', 'label', 'max', 'min', 'name', 'orientation', 'range', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
1127
|
+
}]
|
|
1128
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1101
1129
|
let SpwLink = class SpwLink {
|
|
1102
1130
|
constructor(c, r, z) {
|
|
1103
1131
|
this.z = z;
|
|
@@ -1248,13 +1276,15 @@ let SpwMessage = class SpwMessage {
|
|
|
1248
1276
|
this.z = z;
|
|
1249
1277
|
c.detach();
|
|
1250
1278
|
this.el = r.nativeElement;
|
|
1279
|
+
proxyOutputs(this, this.el, ['spwDismiss']);
|
|
1251
1280
|
}
|
|
1252
1281
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1253
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwMessage, isStandalone: true, selector: "spw-message", inputs: { dismissableText: "dismissableText", isDismissable: "isDismissable", messageId: "messageId", messageTitle: "messageTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1282
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwMessage, isStandalone: true, selector: "spw-message", inputs: { dismissableText: "dismissableText", icon: "icon", isDismissable: "isDismissable", messageId: "messageId", messageTitle: "messageTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1254
1283
|
};
|
|
1255
1284
|
SpwMessage = __decorate([
|
|
1256
1285
|
ProxyCmp({
|
|
1257
|
-
inputs: ['dismissableText', 'isDismissable', 'messageId', 'messageTitle', 'variant']
|
|
1286
|
+
inputs: ['dismissableText', 'icon', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
|
|
1287
|
+
methods: ['showMessage', 'hideMessage']
|
|
1258
1288
|
})
|
|
1259
1289
|
], SpwMessage);
|
|
1260
1290
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMessage, decorators: [{
|
|
@@ -1264,7 +1294,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1264
1294
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1265
1295
|
template: '<ng-content></ng-content>',
|
|
1266
1296
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1267
|
-
inputs: ['dismissableText', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
|
|
1297
|
+
inputs: ['dismissableText', 'icon', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
|
|
1268
1298
|
}]
|
|
1269
1299
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1270
1300
|
let SpwModal = class SpwModal {
|
|
@@ -1399,14 +1429,14 @@ let SpwSearchField = class SpwSearchField {
|
|
|
1399
1429
|
this.z = z;
|
|
1400
1430
|
c.detach();
|
|
1401
1431
|
this.el = r.nativeElement;
|
|
1402
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
1432
|
+
proxyOutputs(this, this.el, ['valueChanged', 'optionSelected']);
|
|
1403
1433
|
}
|
|
1404
1434
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1405
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSearchField, isStandalone: true, selector: "spw-search-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", hasSubmitButton: "hasSubmitButton", isRounded: "isRounded", items: "items", label: "label", name: "name", noResults: "noResults", placeholder: "placeholder", required: "required", size: "size", viewAllResults: "viewAllResults", viewAllResultsLink: "viewAllResultsLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1435
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSearchField, isStandalone: true, selector: "spw-search-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", hasSubmitButton: "hasSubmitButton", isRounded: "isRounded", items: "items", label: "label", loadingText: "loadingText", minCharacters: "minCharacters", name: "name", noResults: "noResults", placeholder: "placeholder", required: "required", size: "size", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", viewAllResults: "viewAllResults", viewAllResultsLink: "viewAllResultsLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1406
1436
|
};
|
|
1407
1437
|
SpwSearchField = __decorate([
|
|
1408
1438
|
ProxyCmp({
|
|
1409
|
-
inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'name', 'noResults', 'placeholder', 'required', 'size', 'viewAllResults', 'viewAllResultsLink'],
|
|
1439
|
+
inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'loadingText', 'minCharacters', 'name', 'noResults', 'placeholder', 'required', 'size', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'viewAllResults', 'viewAllResultsLink'],
|
|
1410
1440
|
methods: ['resetInput', 'setValue', 'getValue']
|
|
1411
1441
|
})
|
|
1412
1442
|
], SpwSearchField);
|
|
@@ -1417,7 +1447,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1417
1447
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1418
1448
|
template: '<ng-content></ng-content>',
|
|
1419
1449
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1420
|
-
inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'name', 'noResults', 'placeholder', 'required', 'size', 'viewAllResults', 'viewAllResultsLink'],
|
|
1450
|
+
inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'loadingText', 'minCharacters', 'name', 'noResults', 'placeholder', 'required', 'size', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'viewAllResults', 'viewAllResultsLink'],
|
|
1421
1451
|
}]
|
|
1422
1452
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1423
1453
|
let SpwSelect = class SpwSelect {
|
|
@@ -1428,11 +1458,11 @@ let SpwSelect = class SpwSelect {
|
|
|
1428
1458
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
1429
1459
|
}
|
|
1430
1460
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1431
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSelect, isStandalone: true, selector: "spw-select", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", itemLabel: "itemLabel", itemValue: "itemValue", items: "items", label: "label", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1461
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSelect, isStandalone: true, selector: "spw-select", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", itemLabel: "itemLabel", itemValue: "itemValue", items: "items", label: "label", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1432
1462
|
};
|
|
1433
1463
|
SpwSelect = __decorate([
|
|
1434
1464
|
ProxyCmp({
|
|
1435
|
-
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
|
|
1465
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
1436
1466
|
methods: ['resetSelect', 'setValue', 'getValue']
|
|
1437
1467
|
})
|
|
1438
1468
|
], SpwSelect);
|
|
@@ -1443,7 +1473,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1443
1473
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1444
1474
|
template: '<ng-content></ng-content>',
|
|
1445
1475
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1446
|
-
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
|
|
1476
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
1447
1477
|
}]
|
|
1448
1478
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1449
1479
|
let SpwSeparator = class SpwSeparator {
|
|
@@ -2003,11 +2033,11 @@ let SpwTextField = class SpwTextField {
|
|
|
2003
2033
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
2004
2034
|
}
|
|
2005
2035
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2006
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextField, isStandalone: true, selector: "spw-text-field", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isClear: "isClear", isSearch: "isSearch", label: "label", mask: "mask", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", step: "step", success: "success", type: "type", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2036
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextField, isStandalone: true, selector: "spw-text-field", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isClear: "isClear", isSearch: "isSearch", label: "label", mask: "mask", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", step: "step", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", type: "type", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2007
2037
|
};
|
|
2008
2038
|
SpwTextField = __decorate([
|
|
2009
2039
|
ProxyCmp({
|
|
2010
|
-
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'type', 'value', 'warning'],
|
|
2040
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type', 'value', 'warning'],
|
|
2011
2041
|
methods: ['setValue']
|
|
2012
2042
|
})
|
|
2013
2043
|
], SpwTextField);
|
|
@@ -2018,7 +2048,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2018
2048
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2019
2049
|
template: '<ng-content></ng-content>',
|
|
2020
2050
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2021
|
-
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'type', 'value', 'warning'],
|
|
2051
|
+
inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type', 'value', 'warning'],
|
|
2022
2052
|
}]
|
|
2023
2053
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2024
2054
|
let SpwTextarea = class SpwTextarea {
|
|
@@ -2029,11 +2059,11 @@ let SpwTextarea = class SpwTextarea {
|
|
|
2029
2059
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
2030
2060
|
}
|
|
2031
2061
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2032
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextarea, isStandalone: true, selector: "spw-textarea", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isSearch: "isSearch", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", rows: "rows", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2062
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextarea, isStandalone: true, selector: "spw-textarea", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isSearch: "isSearch", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", rows: "rows", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2033
2063
|
};
|
|
2034
2064
|
SpwTextarea = __decorate([
|
|
2035
2065
|
ProxyCmp({
|
|
2036
|
-
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning']
|
|
2066
|
+
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning']
|
|
2037
2067
|
})
|
|
2038
2068
|
], SpwTextarea);
|
|
2039
2069
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextarea, decorators: [{
|
|
@@ -2043,7 +2073,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2043
2073
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2044
2074
|
template: '<ng-content></ng-content>',
|
|
2045
2075
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2046
|
-
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
|
|
2076
|
+
inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
|
|
2047
2077
|
}]
|
|
2048
2078
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2049
2079
|
let SpwThemeProvider = class SpwThemeProvider {
|
|
@@ -2138,6 +2168,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2138
2168
|
inputs: [],
|
|
2139
2169
|
}]
|
|
2140
2170
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2171
|
+
let SpwTimeline = class SpwTimeline {
|
|
2172
|
+
constructor(c, r, z) {
|
|
2173
|
+
this.z = z;
|
|
2174
|
+
c.detach();
|
|
2175
|
+
this.el = r.nativeElement;
|
|
2176
|
+
}
|
|
2177
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimeline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2178
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTimeline, isStandalone: true, selector: "spw-timeline", inputs: { showMoreText: "showMoreText", visibleItems: "visibleItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2179
|
+
};
|
|
2180
|
+
SpwTimeline = __decorate([
|
|
2181
|
+
ProxyCmp({
|
|
2182
|
+
inputs: ['showMoreText', 'visibleItems']
|
|
2183
|
+
})
|
|
2184
|
+
], SpwTimeline);
|
|
2185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimeline, decorators: [{
|
|
2186
|
+
type: Component,
|
|
2187
|
+
args: [{
|
|
2188
|
+
selector: 'spw-timeline',
|
|
2189
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2190
|
+
template: '<ng-content></ng-content>',
|
|
2191
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2192
|
+
inputs: ['showMoreText', 'visibleItems'],
|
|
2193
|
+
}]
|
|
2194
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2195
|
+
let SpwTimelineItem = class SpwTimelineItem {
|
|
2196
|
+
constructor(c, r, z) {
|
|
2197
|
+
this.z = z;
|
|
2198
|
+
c.detach();
|
|
2199
|
+
this.el = r.nativeElement;
|
|
2200
|
+
}
|
|
2201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimelineItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2202
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTimelineItem, isStandalone: true, selector: "spw-timeline-item", inputs: { accAriaLabel: "accAriaLabel", description: "description", href: "href", isLast: "isLast", label: "label", state: "state", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2203
|
+
};
|
|
2204
|
+
SpwTimelineItem = __decorate([
|
|
2205
|
+
ProxyCmp({
|
|
2206
|
+
inputs: ['accAriaLabel', 'description', 'href', 'isLast', 'label', 'state', 'target', 'variant']
|
|
2207
|
+
})
|
|
2208
|
+
], SpwTimelineItem);
|
|
2209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimelineItem, decorators: [{
|
|
2210
|
+
type: Component,
|
|
2211
|
+
args: [{
|
|
2212
|
+
selector: 'spw-timeline-item',
|
|
2213
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2214
|
+
template: '<ng-content></ng-content>',
|
|
2215
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2216
|
+
inputs: ['accAriaLabel', 'description', 'href', 'isLast', 'label', 'state', 'target', 'variant'],
|
|
2217
|
+
}]
|
|
2218
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2141
2219
|
let SpwToc = class SpwToc {
|
|
2142
2220
|
constructor(c, r, z) {
|
|
2143
2221
|
this.z = z;
|
|
@@ -2349,6 +2427,7 @@ const DIRECTIVES = [
|
|
|
2349
2427
|
SpwHero,
|
|
2350
2428
|
SpwIcon,
|
|
2351
2429
|
SpwIllustration,
|
|
2430
|
+
SpwInputSlider,
|
|
2352
2431
|
SpwLink,
|
|
2353
2432
|
SpwList,
|
|
2354
2433
|
SpwListDescription,
|
|
@@ -2392,6 +2471,8 @@ const DIRECTIVES = [
|
|
|
2392
2471
|
SpwTile,
|
|
2393
2472
|
SpwTileDescription,
|
|
2394
2473
|
SpwTileTitle,
|
|
2474
|
+
SpwTimeline,
|
|
2475
|
+
SpwTimelineItem,
|
|
2395
2476
|
SpwToc,
|
|
2396
2477
|
SpwTocContainer,
|
|
2397
2478
|
SpwTocNavigation,
|
|
@@ -2403,7 +2484,7 @@ const DIRECTIVES = [
|
|
|
2403
2484
|
|
|
2404
2485
|
class SpwDesignSystemDirectivesModule {
|
|
2405
2486
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2406
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, imports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem] }); }
|
|
2487
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, imports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem] }); }
|
|
2407
2488
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule }); }
|
|
2408
2489
|
}
|
|
2409
2490
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, decorators: [{
|
|
@@ -2444,5 +2525,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2444
2525
|
* Generated bundle index. Do not edit.
|
|
2445
2526
|
*/
|
|
2446
2527
|
|
|
2447
|
-
export { SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDesignSystemDirectivesModule, SpwDesignSystemModule, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem };
|
|
2528
|
+
export { SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDesignSystemDirectivesModule, SpwDesignSystemModule, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem };
|
|
2448
2529
|
//# sourceMappingURL=spw-ds-spw-angular-library.mjs.map
|