@tet/tet-components-angular 1.4.33-testing → 1.4.34-production
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.
|
@@ -570,7 +570,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
570
570
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
571
571
|
template: '<ng-content></ng-content>',
|
|
572
572
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
573
|
-
inputs: ['expandable', 'language', 'menuItems', 'theme'],
|
|
573
|
+
inputs: ['expandable', 'language', { name: 'menuItems', required: true }, 'theme'],
|
|
574
574
|
outputs: ['menu-click-event'],
|
|
575
575
|
standalone: false
|
|
576
576
|
}]
|
|
@@ -1295,11 +1295,12 @@ let TetFeedbackForm = class TetFeedbackForm {
|
|
|
1295
1295
|
constructor(c, r, z) {
|
|
1296
1296
|
this.z = z;
|
|
1297
1297
|
this.feedbackSubmitted = new EventEmitter();
|
|
1298
|
+
this.negativeFeedbackSelected = new EventEmitter();
|
|
1298
1299
|
c.detach();
|
|
1299
1300
|
this.el = r.nativeElement;
|
|
1300
1301
|
}
|
|
1301
1302
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetFeedbackForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1302
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetFeedbackForm, isStandalone: false, selector: "tet-feedback-form", inputs: { data: "data", language: "language", theme: "theme" }, outputs: { feedbackSubmitted: "feedbackSubmitted" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1303
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetFeedbackForm, isStandalone: false, selector: "tet-feedback-form", inputs: { data: "data", language: "language", theme: "theme" }, outputs: { feedbackSubmitted: "feedbackSubmitted", negativeFeedbackSelected: "negativeFeedbackSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1303
1304
|
};
|
|
1304
1305
|
TetFeedbackForm = __decorate([
|
|
1305
1306
|
ProxyCmp({
|
|
@@ -1314,11 +1315,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1314
1315
|
template: '<ng-content></ng-content>',
|
|
1315
1316
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1316
1317
|
inputs: ['data', 'language', 'theme'],
|
|
1317
|
-
outputs: ['feedbackSubmitted'],
|
|
1318
|
+
outputs: ['feedbackSubmitted', 'negativeFeedbackSelected'],
|
|
1318
1319
|
standalone: false
|
|
1319
1320
|
}]
|
|
1320
1321
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { feedbackSubmitted: [{
|
|
1321
1322
|
type: Output
|
|
1323
|
+
}], negativeFeedbackSelected: [{
|
|
1324
|
+
type: Output
|
|
1322
1325
|
}] } });
|
|
1323
1326
|
let TetFilter = class TetFilter {
|
|
1324
1327
|
constructor(c, r, z) {
|
|
@@ -2140,11 +2143,11 @@ let TetSupportSearch = class TetSupportSearch {
|
|
|
2140
2143
|
this.el = r.nativeElement;
|
|
2141
2144
|
}
|
|
2142
2145
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSupportSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2143
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSupportSearch, isStandalone: false, selector: "tet-support-search", inputs: { disabled: "disabled", labels: "labels", maxSearchResults: "maxSearchResults", minSearchLength: "minSearchLength", searchApiUrl: "searchApiUrl", showInputLabel: "showInputLabel", theme: "theme" }, outputs: { searchSubmitted: "searchSubmitted", optionSelected: "optionSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2146
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSupportSearch, isStandalone: false, selector: "tet-support-search", inputs: { disabled: "disabled", labels: "labels", maxSearchResults: "maxSearchResults", minSearchLength: "minSearchLength", searchApiUrl: "searchApiUrl", searchQuery: "searchQuery", showInputLabel: "showInputLabel", theme: "theme" }, outputs: { searchSubmitted: "searchSubmitted", optionSelected: "optionSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2144
2147
|
};
|
|
2145
2148
|
TetSupportSearch = __decorate([
|
|
2146
2149
|
ProxyCmp({
|
|
2147
|
-
inputs: ['disabled', 'labels', 'maxSearchResults', 'minSearchLength', 'searchApiUrl', 'showInputLabel', 'theme'],
|
|
2150
|
+
inputs: ['disabled', 'labels', 'maxSearchResults', 'minSearchLength', 'searchApiUrl', 'searchQuery', 'showInputLabel', 'theme'],
|
|
2148
2151
|
methods: ['resetInputState']
|
|
2149
2152
|
})
|
|
2150
2153
|
], TetSupportSearch);
|
|
@@ -2155,7 +2158,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
2155
2158
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2156
2159
|
template: '<ng-content></ng-content>',
|
|
2157
2160
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2158
|
-
inputs: ['disabled', 'labels', 'maxSearchResults', 'minSearchLength', 'searchApiUrl', 'showInputLabel', 'theme'],
|
|
2161
|
+
inputs: ['disabled', { name: 'labels', required: true }, 'maxSearchResults', 'minSearchLength', 'searchApiUrl', 'searchQuery', 'showInputLabel', 'theme'],
|
|
2159
2162
|
outputs: ['searchSubmitted', 'optionSelected'],
|
|
2160
2163
|
standalone: false
|
|
2161
2164
|
}]
|