@haiilo/catalyst-angular 0.5.12 → 0.7.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/catalyst.module.mjs +5 -5
- package/esm2020/lib/directives/proxies.mjs +135 -59
- package/fesm2015/haiilo-catalyst-angular.mjs +136 -63
- package/fesm2015/haiilo-catalyst-angular.mjs.map +1 -1
- package/fesm2020/haiilo-catalyst-angular.mjs +136 -63
- package/fesm2020/haiilo-catalyst-angular.mjs.map +1 -1
- package/lib/directives/proxies.d.ts +36 -5
- package/package.json +2 -2
|
@@ -62,15 +62,15 @@ let CatAlert = class CatAlert {
|
|
|
62
62
|
this.el = r.nativeElement;
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
|
-
CatAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
66
|
-
CatAlert.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
65
|
+
CatAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
66
|
+
CatAlert.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatAlert, selector: "cat-alert", inputs: { color: "color" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
67
|
CatAlert = __decorate([
|
|
68
68
|
ProxyCmp({
|
|
69
69
|
defineCustomElementFn: undefined,
|
|
70
70
|
inputs: ['color']
|
|
71
71
|
})
|
|
72
72
|
], CatAlert);
|
|
73
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
73
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatAlert, decorators: [{
|
|
74
74
|
type: Component,
|
|
75
75
|
args: [{
|
|
76
76
|
selector: 'cat-alert',
|
|
@@ -79,6 +79,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.5", ngImpor
|
|
|
79
79
|
inputs: ['color']
|
|
80
80
|
}]
|
|
81
81
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
82
|
+
let CatAvatar = class CatAvatar {
|
|
83
|
+
constructor(c, r, z) {
|
|
84
|
+
this.z = z;
|
|
85
|
+
c.detach();
|
|
86
|
+
this.el = r.nativeElement;
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
CatAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
90
|
+
CatAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatAvatar, selector: "cat-avatar", inputs: { icon: "icon", initials: "initials", label: "label", round: "round", size: "size", src: "src", url: "url", urlTarget: "urlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
91
|
+
CatAvatar = __decorate([
|
|
92
|
+
ProxyCmp({
|
|
93
|
+
defineCustomElementFn: undefined,
|
|
94
|
+
inputs: ['icon', 'initials', 'label', 'round', 'size', 'src', 'url', 'urlTarget']
|
|
95
|
+
})
|
|
96
|
+
], CatAvatar);
|
|
97
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatAvatar, decorators: [{
|
|
98
|
+
type: Component,
|
|
99
|
+
args: [{
|
|
100
|
+
selector: 'cat-avatar',
|
|
101
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
|
+
template: '<ng-content></ng-content>',
|
|
103
|
+
inputs: ['icon', 'initials', 'label', 'round', 'size', 'src', 'url', 'urlTarget']
|
|
104
|
+
}]
|
|
105
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
82
106
|
let CatBadge = class CatBadge {
|
|
83
107
|
constructor(c, r, z) {
|
|
84
108
|
this.z = z;
|
|
@@ -86,15 +110,15 @@ let CatBadge = class CatBadge {
|
|
|
86
110
|
this.el = r.nativeElement;
|
|
87
111
|
}
|
|
88
112
|
};
|
|
89
|
-
CatBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
90
|
-
CatBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
113
|
+
CatBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
114
|
+
CatBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatBadge, selector: "cat-badge", inputs: { color: "color", pulse: "pulse", round: "round", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
91
115
|
CatBadge = __decorate([
|
|
92
116
|
ProxyCmp({
|
|
93
117
|
defineCustomElementFn: undefined,
|
|
94
118
|
inputs: ['color', 'pulse', 'round', 'size', 'variant']
|
|
95
119
|
})
|
|
96
120
|
], CatBadge);
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatBadge, decorators: [{
|
|
98
122
|
type: Component,
|
|
99
123
|
args: [{
|
|
100
124
|
selector: 'cat-badge',
|
|
@@ -111,22 +135,22 @@ let CatButton = class CatButton {
|
|
|
111
135
|
proxyOutputs(this, this.el, ['catClick', 'catFocus', 'catBlur']);
|
|
112
136
|
}
|
|
113
137
|
};
|
|
114
|
-
CatButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
115
|
-
CatButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
138
|
+
CatButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
139
|
+
CatButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatButton, selector: "cat-button", inputs: { a11yLabel: "a11yLabel", active: "active", buttonId: "buttonId", color: "color", disabled: "disabled", icon: "icon", iconOnly: "iconOnly", iconRight: "iconRight", loading: "loading", name: "name", noEllipsis: "noEllipsis", round: "round", size: "size", submit: "submit", url: "url", urlTarget: "urlTarget", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
116
140
|
CatButton = __decorate([
|
|
117
141
|
ProxyCmp({
|
|
118
142
|
defineCustomElementFn: undefined,
|
|
119
|
-
inputs: ['a11yLabel', 'active', 'buttonId', 'color', 'disabled', '
|
|
143
|
+
inputs: ['a11yLabel', 'active', 'buttonId', 'color', 'disabled', 'icon', 'iconOnly', 'iconRight', 'loading', 'name', 'noEllipsis', 'round', 'size', 'submit', 'url', 'urlTarget', 'value', 'variant'],
|
|
120
144
|
methods: ['setFocus']
|
|
121
145
|
})
|
|
122
146
|
], CatButton);
|
|
123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatButton, decorators: [{
|
|
124
148
|
type: Component,
|
|
125
149
|
args: [{
|
|
126
150
|
selector: 'cat-button',
|
|
127
151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
128
152
|
template: '<ng-content></ng-content>',
|
|
129
|
-
inputs: ['a11yLabel', 'active', 'buttonId', 'color', 'disabled', '
|
|
153
|
+
inputs: ['a11yLabel', 'active', 'buttonId', 'color', 'disabled', 'icon', 'iconOnly', 'iconRight', 'loading', 'name', 'noEllipsis', 'round', 'size', 'submit', 'url', 'urlTarget', 'value', 'variant']
|
|
130
154
|
}]
|
|
131
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
132
156
|
let CatCard = class CatCard {
|
|
@@ -136,14 +160,14 @@ let CatCard = class CatCard {
|
|
|
136
160
|
this.el = r.nativeElement;
|
|
137
161
|
}
|
|
138
162
|
};
|
|
139
|
-
CatCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
140
|
-
CatCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
163
|
+
CatCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
164
|
+
CatCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatCard, selector: "cat-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
141
165
|
CatCard = __decorate([
|
|
142
166
|
ProxyCmp({
|
|
143
167
|
defineCustomElementFn: undefined
|
|
144
168
|
})
|
|
145
169
|
], CatCard);
|
|
146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatCard, decorators: [{
|
|
147
171
|
type: Component,
|
|
148
172
|
args: [{
|
|
149
173
|
selector: 'cat-card',
|
|
@@ -159,22 +183,22 @@ let CatCheckbox = class CatCheckbox {
|
|
|
159
183
|
proxyOutputs(this, this.el, ['catChange', 'catFocus', 'catBlur']);
|
|
160
184
|
}
|
|
161
185
|
};
|
|
162
|
-
CatCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
163
|
-
CatCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
186
|
+
CatCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
187
|
+
CatCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatCheckbox, selector: "cat-checkbox", inputs: { checked: "checked", disabled: "disabled", hint: "hint", indeterminate: "indeterminate", label: "label", labelHidden: "labelHidden", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
164
188
|
CatCheckbox = __decorate([
|
|
165
189
|
ProxyCmp({
|
|
166
190
|
defineCustomElementFn: undefined,
|
|
167
|
-
inputs: ['checked', 'disabled', 'indeterminate', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
191
|
+
inputs: ['checked', 'disabled', 'hint', 'indeterminate', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
168
192
|
methods: ['setFocus']
|
|
169
193
|
})
|
|
170
194
|
], CatCheckbox);
|
|
171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatCheckbox, decorators: [{
|
|
172
196
|
type: Component,
|
|
173
197
|
args: [{
|
|
174
198
|
selector: 'cat-checkbox',
|
|
175
199
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
176
200
|
template: '<ng-content></ng-content>',
|
|
177
|
-
inputs: ['checked', 'disabled', 'indeterminate', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
201
|
+
inputs: ['checked', 'disabled', 'hint', 'indeterminate', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
178
202
|
}]
|
|
179
203
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
180
204
|
let CatIcon = class CatIcon {
|
|
@@ -184,15 +208,15 @@ let CatIcon = class CatIcon {
|
|
|
184
208
|
this.el = r.nativeElement;
|
|
185
209
|
}
|
|
186
210
|
};
|
|
187
|
-
CatIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
188
|
-
CatIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
211
|
+
CatIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
212
|
+
CatIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatIcon, selector: "cat-icon", inputs: { a11yLabel: "a11yLabel", icon: "icon", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
189
213
|
CatIcon = __decorate([
|
|
190
214
|
ProxyCmp({
|
|
191
215
|
defineCustomElementFn: undefined,
|
|
192
216
|
inputs: ['a11yLabel', 'icon', 'size']
|
|
193
217
|
})
|
|
194
218
|
], CatIcon);
|
|
195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
219
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatIcon, decorators: [{
|
|
196
220
|
type: Component,
|
|
197
221
|
args: [{
|
|
198
222
|
selector: 'cat-icon',
|
|
@@ -209,8 +233,8 @@ let CatInput = class CatInput {
|
|
|
209
233
|
proxyOutputs(this, this.el, ['catChange', 'catFocus', 'catBlur']);
|
|
210
234
|
}
|
|
211
235
|
};
|
|
212
|
-
CatInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
213
|
-
CatInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
236
|
+
CatInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
237
|
+
CatInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatInput, selector: "cat-input", inputs: { autoComplete: "autoComplete", clearable: "clearable", disabled: "disabled", hint: "hint", icon: "icon", iconRight: "iconRight", label: "label", labelHidden: "labelHidden", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", round: "round", textPrefix: "textPrefix", textSuffix: "textSuffix", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
214
238
|
CatInput = __decorate([
|
|
215
239
|
ProxyCmp({
|
|
216
240
|
defineCustomElementFn: undefined,
|
|
@@ -218,7 +242,7 @@ CatInput = __decorate([
|
|
|
218
242
|
methods: ['setFocus', 'clear']
|
|
219
243
|
})
|
|
220
244
|
], CatInput);
|
|
221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatInput, decorators: [{
|
|
222
246
|
type: Component,
|
|
223
247
|
args: [{
|
|
224
248
|
selector: 'cat-input',
|
|
@@ -235,15 +259,15 @@ let CatMenu = class CatMenu {
|
|
|
235
259
|
proxyOutputs(this, this.el, ['catOpen', 'catClose']);
|
|
236
260
|
}
|
|
237
261
|
};
|
|
238
|
-
CatMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
239
|
-
CatMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
262
|
+
CatMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
263
|
+
CatMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatMenu, selector: "cat-menu", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
240
264
|
CatMenu = __decorate([
|
|
241
265
|
ProxyCmp({
|
|
242
266
|
defineCustomElementFn: undefined,
|
|
243
267
|
inputs: ['placement']
|
|
244
268
|
})
|
|
245
269
|
], CatMenu);
|
|
246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatMenu, decorators: [{
|
|
247
271
|
type: Component,
|
|
248
272
|
args: [{
|
|
249
273
|
selector: 'cat-menu',
|
|
@@ -260,22 +284,22 @@ let CatRadio = class CatRadio {
|
|
|
260
284
|
proxyOutputs(this, this.el, ['catChange', 'catFocus', 'catBlur']);
|
|
261
285
|
}
|
|
262
286
|
};
|
|
263
|
-
CatRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
264
|
-
CatRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
287
|
+
CatRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
288
|
+
CatRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatRadio, selector: "cat-radio", inputs: { checked: "checked", disabled: "disabled", hint: "hint", label: "label", labelHidden: "labelHidden", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
265
289
|
CatRadio = __decorate([
|
|
266
290
|
ProxyCmp({
|
|
267
291
|
defineCustomElementFn: undefined,
|
|
268
|
-
inputs: ['checked', 'disabled', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
292
|
+
inputs: ['checked', 'disabled', 'hint', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
269
293
|
methods: ['setFocus']
|
|
270
294
|
})
|
|
271
295
|
], CatRadio);
|
|
272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatRadio, decorators: [{
|
|
273
297
|
type: Component,
|
|
274
298
|
args: [{
|
|
275
299
|
selector: 'cat-radio',
|
|
276
300
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
277
301
|
template: '<ng-content></ng-content>',
|
|
278
|
-
inputs: ['checked', 'disabled', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
302
|
+
inputs: ['checked', 'disabled', 'hint', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
279
303
|
}]
|
|
280
304
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
281
305
|
let CatScrollable = class CatScrollable {
|
|
@@ -286,21 +310,21 @@ let CatScrollable = class CatScrollable {
|
|
|
286
310
|
proxyOutputs(this, this.el, ['scrolledTop', 'scrolledLeft', 'scrolledRight', 'scrolledBottom']);
|
|
287
311
|
}
|
|
288
312
|
};
|
|
289
|
-
CatScrollable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
290
|
-
CatScrollable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
313
|
+
CatScrollable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatScrollable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
314
|
+
CatScrollable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatScrollable, selector: "cat-scrollable", inputs: { noOverflowX: "noOverflowX", noOverflowY: "noOverflowY", noOverscroll: "noOverscroll", noScrolledInit: "noScrolledInit", noShadowX: "noShadowX", noShadowY: "noShadowY", scrolledBuffer: "scrolledBuffer" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
291
315
|
CatScrollable = __decorate([
|
|
292
316
|
ProxyCmp({
|
|
293
317
|
defineCustomElementFn: undefined,
|
|
294
|
-
inputs: ['
|
|
318
|
+
inputs: ['noOverflowX', 'noOverflowY', 'noOverscroll', 'noScrolledInit', 'noShadowX', 'noShadowY', 'scrolledBuffer']
|
|
295
319
|
})
|
|
296
320
|
], CatScrollable);
|
|
297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatScrollable, decorators: [{
|
|
298
322
|
type: Component,
|
|
299
323
|
args: [{
|
|
300
324
|
selector: 'cat-scrollable',
|
|
301
325
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
302
326
|
template: '<ng-content></ng-content>',
|
|
303
|
-
inputs: ['
|
|
327
|
+
inputs: ['noOverflowX', 'noOverflowY', 'noOverscroll', 'noScrolledInit', 'noShadowX', 'noShadowY', 'scrolledBuffer']
|
|
304
328
|
}]
|
|
305
329
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
306
330
|
let CatSkeleton = class CatSkeleton {
|
|
@@ -310,15 +334,15 @@ let CatSkeleton = class CatSkeleton {
|
|
|
310
334
|
this.el = r.nativeElement;
|
|
311
335
|
}
|
|
312
336
|
};
|
|
313
|
-
CatSkeleton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
314
|
-
CatSkeleton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
337
|
+
CatSkeleton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
338
|
+
CatSkeleton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatSkeleton, selector: "cat-skeleton", inputs: { effect: "effect", lines: "lines", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
315
339
|
CatSkeleton = __decorate([
|
|
316
340
|
ProxyCmp({
|
|
317
341
|
defineCustomElementFn: undefined,
|
|
318
342
|
inputs: ['effect', 'lines', 'size', 'variant']
|
|
319
343
|
})
|
|
320
344
|
], CatSkeleton);
|
|
321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatSkeleton, decorators: [{
|
|
322
346
|
type: Component,
|
|
323
347
|
args: [{
|
|
324
348
|
selector: 'cat-skeleton',
|
|
@@ -334,15 +358,15 @@ let CatSpinner = class CatSpinner {
|
|
|
334
358
|
this.el = r.nativeElement;
|
|
335
359
|
}
|
|
336
360
|
};
|
|
337
|
-
CatSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
338
|
-
CatSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
361
|
+
CatSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
362
|
+
CatSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatSpinner, selector: "cat-spinner", inputs: { a11yLabel: "a11yLabel", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
339
363
|
CatSpinner = __decorate([
|
|
340
364
|
ProxyCmp({
|
|
341
365
|
defineCustomElementFn: undefined,
|
|
342
366
|
inputs: ['a11yLabel', 'size']
|
|
343
367
|
})
|
|
344
368
|
], CatSpinner);
|
|
345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatSpinner, decorators: [{
|
|
346
370
|
type: Component,
|
|
347
371
|
args: [{
|
|
348
372
|
selector: 'cat-spinner',
|
|
@@ -351,6 +375,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.5", ngImpor
|
|
|
351
375
|
inputs: ['a11yLabel', 'size']
|
|
352
376
|
}]
|
|
353
377
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
378
|
+
let CatTab = class CatTab {
|
|
379
|
+
constructor(c, r, z) {
|
|
380
|
+
this.z = z;
|
|
381
|
+
c.detach();
|
|
382
|
+
this.el = r.nativeElement;
|
|
383
|
+
proxyOutputs(this, this.el, ['tabClick']);
|
|
384
|
+
}
|
|
385
|
+
};
|
|
386
|
+
CatTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
387
|
+
CatTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatTab, selector: "cat-tab", inputs: { deactivated: "deactivated", icon: "icon", iconOnly: "iconOnly", iconRight: "iconRight", label: "label", url: "url", urlTarget: "urlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
|
+
CatTab = __decorate([
|
|
389
|
+
ProxyCmp({
|
|
390
|
+
defineCustomElementFn: undefined,
|
|
391
|
+
inputs: ['deactivated', 'icon', 'iconOnly', 'iconRight', 'label', 'url', 'urlTarget']
|
|
392
|
+
})
|
|
393
|
+
], CatTab);
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTab, decorators: [{
|
|
395
|
+
type: Component,
|
|
396
|
+
args: [{
|
|
397
|
+
selector: 'cat-tab',
|
|
398
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
399
|
+
template: '<ng-content></ng-content>',
|
|
400
|
+
inputs: ['deactivated', 'icon', 'iconOnly', 'iconRight', 'label', 'url', 'urlTarget']
|
|
401
|
+
}]
|
|
402
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
|
+
let CatTabs = class CatTabs {
|
|
404
|
+
constructor(c, r, z) {
|
|
405
|
+
this.z = z;
|
|
406
|
+
c.detach();
|
|
407
|
+
this.el = r.nativeElement;
|
|
408
|
+
}
|
|
409
|
+
};
|
|
410
|
+
CatTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
411
|
+
CatTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatTabs, selector: "cat-tabs", inputs: { activeTab: "activeTab", tabsAlign: "tabsAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
412
|
+
CatTabs = __decorate([
|
|
413
|
+
ProxyCmp({
|
|
414
|
+
defineCustomElementFn: undefined,
|
|
415
|
+
inputs: ['activeTab', 'tabsAlign']
|
|
416
|
+
})
|
|
417
|
+
], CatTabs);
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTabs, decorators: [{
|
|
419
|
+
type: Component,
|
|
420
|
+
args: [{
|
|
421
|
+
selector: 'cat-tabs',
|
|
422
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
423
|
+
template: '<ng-content></ng-content>',
|
|
424
|
+
inputs: ['activeTab', 'tabsAlign']
|
|
425
|
+
}]
|
|
426
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
354
427
|
let CatTextarea = class CatTextarea {
|
|
355
428
|
constructor(c, r, z) {
|
|
356
429
|
this.z = z;
|
|
@@ -359,8 +432,8 @@ let CatTextarea = class CatTextarea {
|
|
|
359
432
|
proxyOutputs(this, this.el, ['catChange', 'catFocus', 'catBlur']);
|
|
360
433
|
}
|
|
361
434
|
};
|
|
362
|
-
CatTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
363
|
-
CatTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
435
|
+
CatTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
436
|
+
CatTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatTextarea, selector: "cat-textarea", inputs: { disabled: "disabled", hint: "hint", label: "label", labelHidden: "labelHidden", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
364
437
|
CatTextarea = __decorate([
|
|
365
438
|
ProxyCmp({
|
|
366
439
|
defineCustomElementFn: undefined,
|
|
@@ -368,7 +441,7 @@ CatTextarea = __decorate([
|
|
|
368
441
|
methods: ['setFocus']
|
|
369
442
|
})
|
|
370
443
|
], CatTextarea);
|
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTextarea, decorators: [{
|
|
372
445
|
type: Component,
|
|
373
446
|
args: [{
|
|
374
447
|
selector: 'cat-textarea',
|
|
@@ -384,14 +457,14 @@ let CatToastDemo = class CatToastDemo {
|
|
|
384
457
|
this.el = r.nativeElement;
|
|
385
458
|
}
|
|
386
459
|
};
|
|
387
|
-
CatToastDemo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
388
|
-
CatToastDemo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
460
|
+
CatToastDemo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatToastDemo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
461
|
+
CatToastDemo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatToastDemo, selector: "cat-toast-demo", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
389
462
|
CatToastDemo = __decorate([
|
|
390
463
|
ProxyCmp({
|
|
391
464
|
defineCustomElementFn: undefined
|
|
392
465
|
})
|
|
393
466
|
], CatToastDemo);
|
|
394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatToastDemo, decorators: [{
|
|
395
468
|
type: Component,
|
|
396
469
|
args: [{
|
|
397
470
|
selector: 'cat-toast-demo',
|
|
@@ -407,22 +480,22 @@ let CatToggle = class CatToggle {
|
|
|
407
480
|
proxyOutputs(this, this.el, ['catChange', 'catFocus', 'catBlur']);
|
|
408
481
|
}
|
|
409
482
|
};
|
|
410
|
-
CatToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
411
|
-
CatToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
483
|
+
CatToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
484
|
+
CatToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatToggle, selector: "cat-toggle", inputs: { checked: "checked", disabled: "disabled", hint: "hint", label: "label", labelHidden: "labelHidden", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
412
485
|
CatToggle = __decorate([
|
|
413
486
|
ProxyCmp({
|
|
414
487
|
defineCustomElementFn: undefined,
|
|
415
|
-
inputs: ['checked', 'disabled', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
488
|
+
inputs: ['checked', 'disabled', 'hint', 'label', 'labelHidden', 'name', 'required', 'value'],
|
|
416
489
|
methods: ['setFocus']
|
|
417
490
|
})
|
|
418
491
|
], CatToggle);
|
|
419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatToggle, decorators: [{
|
|
420
493
|
type: Component,
|
|
421
494
|
args: [{
|
|
422
495
|
selector: 'cat-toggle',
|
|
423
496
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
424
497
|
template: '<ng-content></ng-content>',
|
|
425
|
-
inputs: ['checked', 'disabled', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
498
|
+
inputs: ['checked', 'disabled', 'hint', 'label', 'labelHidden', 'name', 'required', 'value']
|
|
426
499
|
}]
|
|
427
500
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
428
501
|
let CatTooltip = class CatTooltip {
|
|
@@ -432,15 +505,15 @@ let CatTooltip = class CatTooltip {
|
|
|
432
505
|
this.el = r.nativeElement;
|
|
433
506
|
}
|
|
434
507
|
};
|
|
435
|
-
CatTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
436
|
-
CatTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.
|
|
508
|
+
CatTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
509
|
+
CatTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatTooltip, selector: "cat-tooltip", inputs: { content: "content", disabled: "disabled", hideDelay: "hideDelay", longTouchDuration: "longTouchDuration", placement: "placement", showDelay: "showDelay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
437
510
|
CatTooltip = __decorate([
|
|
438
511
|
ProxyCmp({
|
|
439
512
|
defineCustomElementFn: undefined,
|
|
440
513
|
inputs: ['content', 'disabled', 'hideDelay', 'longTouchDuration', 'placement', 'showDelay']
|
|
441
514
|
})
|
|
442
515
|
], CatTooltip);
|
|
443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatTooltip, decorators: [{
|
|
444
517
|
type: Component,
|
|
445
518
|
args: [{
|
|
446
519
|
selector: 'cat-tooltip',
|
|
@@ -475,10 +548,10 @@ class CatalystModule {
|
|
|
475
548
|
};
|
|
476
549
|
}
|
|
477
550
|
}
|
|
478
|
-
CatalystModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
479
|
-
CatalystModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.
|
|
480
|
-
CatalystModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.
|
|
481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.
|
|
551
|
+
CatalystModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalystModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
552
|
+
CatalystModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalystModule, declarations: [CatButton, CatIcon, CatSpinner, CatScrollable, CatAlert, CatBadge, CatSkeleton, CatCard, CatInput, CatCheckbox, CatMenu, CatRadio, CatTextarea, CatToggle, CatTooltip], exports: [CatButton, CatIcon, CatSpinner, CatScrollable, CatAlert, CatBadge, CatSkeleton, CatCard, CatInput, CatCheckbox, CatMenu, CatRadio, CatTextarea, CatToggle, CatTooltip] });
|
|
553
|
+
CatalystModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalystModule, providers: [], imports: [[]] });
|
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalystModule, decorators: [{
|
|
482
555
|
type: NgModule,
|
|
483
556
|
args: [{
|
|
484
557
|
imports: [],
|
|
@@ -492,5 +565,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.5", ngImpor
|
|
|
492
565
|
* Generated bundle index. Do not edit.
|
|
493
566
|
*/
|
|
494
567
|
|
|
495
|
-
export { CatAlert, CatBadge, CatButton, CatCard, CatCheckbox, CatIcon, CatInput, CatMenu, CatRadio, CatScrollable, CatSkeleton, CatSpinner, CatTextarea, CatToastDemo, CatToggle, CatTooltip, CatalystModule };
|
|
568
|
+
export { CatAlert, CatAvatar, CatBadge, CatButton, CatCard, CatCheckbox, CatIcon, CatInput, CatMenu, CatRadio, CatScrollable, CatSkeleton, CatSpinner, CatTab, CatTabs, CatTextarea, CatToastDemo, CatToggle, CatTooltip, CatalystModule };
|
|
496
569
|
//# sourceMappingURL=haiilo-catalyst-angular.mjs.map
|