@tet/tet-components-angular 1.4.15-testing → 1.4.16-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.
@@ -694,11 +694,11 @@ let TetCheckbox = class TetCheckbox {
694
694
  this.el = r.nativeElement;
695
695
  }
696
696
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
697
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCheckbox, isStandalone: false, selector: "tet-checkbox", inputs: { checked: "checked", disabled: "disabled", error: "error", focusStyleOnContainer: "focusStyleOnContainer", indeterminate: "indeterminate", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
697
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCheckbox, isStandalone: false, selector: "tet-checkbox", inputs: { accessibilityLabel: "accessibilityLabel", alignCenter: "alignCenter", checked: "checked", disabled: "disabled", error: "error", focusStyleOnContainer: "focusStyleOnContainer", iconName: "iconName", indeterminate: "indeterminate", label: "label", labelFont: "labelFont", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
698
698
  };
699
699
  TetCheckbox = __decorate([
700
700
  ProxyCmp({
701
- inputs: ['checked', 'disabled', 'error', 'focusStyleOnContainer', 'indeterminate', 'label', 'name', 'theme', 'value'],
701
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'error', 'focusStyleOnContainer', 'iconName', 'indeterminate', 'label', 'labelFont', 'name', 'theme', 'value'],
702
702
  methods: ['setChecked', 'setIndeterminate', 'setError']
703
703
  })
704
704
  ], TetCheckbox);
@@ -709,7 +709,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
709
709
  changeDetection: ChangeDetectionStrategy.OnPush,
710
710
  template: '<ng-content></ng-content>',
711
711
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
712
- inputs: ['checked', 'disabled', 'error', 'focusStyleOnContainer', 'indeterminate', 'label', 'name', 'theme', 'value'],
712
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'error', 'focusStyleOnContainer', 'iconName', 'indeterminate', 'label', 'labelFont', 'name', 'theme', 'value'],
713
713
  outputs: ['check'],
714
714
  standalone: false
715
715
  }]
@@ -1312,6 +1312,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
1312
1312
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { filterChange: [{
1313
1313
  type: Output
1314
1314
  }] } });
1315
+ let TetFloatingBlock = class TetFloatingBlock {
1316
+ constructor(c, r, z) {
1317
+ this.z = z;
1318
+ this.contentItemClick = new EventEmitter();
1319
+ c.detach();
1320
+ this.el = r.nativeElement;
1321
+ }
1322
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetFloatingBlock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1323
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetFloatingBlock, isStandalone: false, selector: "tet-floating-block", inputs: { content: "content", header: "header", theme: "theme" }, outputs: { "content-item-click": "content-item-click", contentItemClick: "contentItemClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1324
+ };
1325
+ TetFloatingBlock = __decorate([
1326
+ ProxyCmp({
1327
+ inputs: ['content', 'header', 'theme']
1328
+ })
1329
+ ], TetFloatingBlock);
1330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetFloatingBlock, decorators: [{
1331
+ type: Component,
1332
+ args: [{
1333
+ selector: 'tet-floating-block',
1334
+ changeDetection: ChangeDetectionStrategy.OnPush,
1335
+ template: '<ng-content></ng-content>',
1336
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1337
+ inputs: ['content', 'header', 'theme'],
1338
+ outputs: ['content-item-click'],
1339
+ standalone: false
1340
+ }]
1341
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { contentItemClick: [{
1342
+ type: Output
1343
+ }] } });
1315
1344
  let TetIcon = class TetIcon {
1316
1345
  constructor(c, r, z) {
1317
1346
  this.z = z;
@@ -1691,12 +1720,12 @@ let TetRadio = class TetRadio {
1691
1720
  this.el = r.nativeElement;
1692
1721
  }
1693
1722
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1694
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetRadio, isStandalone: false, selector: "tet-radio", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", inputAutofocus: "inputAutofocus", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1723
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetRadio, isStandalone: false, selector: "tet-radio", inputs: { accessibilityLabel: "accessibilityLabel", alignCenter: "alignCenter", checked: "checked", disabled: "disabled", error: "error", focusStyleOnContainer: "focusStyleOnContainer", iconName: "iconName", inputAutofocus: "inputAutofocus", label: "label", labelFont: "labelFont", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1695
1724
  };
1696
1725
  TetRadio = __decorate([
1697
1726
  ProxyCmp({
1698
- inputs: ['accessibilityLabel', 'checked', 'disabled', 'inputAutofocus', 'label', 'name', 'theme', 'value'],
1699
- methods: ['setChecked']
1727
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'error', 'focusStyleOnContainer', 'iconName', 'inputAutofocus', 'label', 'labelFont', 'name', 'theme', 'value'],
1728
+ methods: ['setChecked', 'setError']
1700
1729
  })
1701
1730
  ], TetRadio);
1702
1731
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRadio, decorators: [{
@@ -1706,7 +1735,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
1706
1735
  changeDetection: ChangeDetectionStrategy.OnPush,
1707
1736
  template: '<ng-content></ng-content>',
1708
1737
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1709
- inputs: ['accessibilityLabel', 'checked', 'disabled', 'inputAutofocus', 'label', 'name', 'theme', 'value'],
1738
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'error', 'focusStyleOnContainer', 'iconName', 'inputAutofocus', 'label', 'labelFont', 'name', 'theme', 'value'],
1710
1739
  outputs: ['check'],
1711
1740
  standalone: false
1712
1741
  }]
@@ -1971,11 +2000,11 @@ let TetSwitch = class TetSwitch {
1971
2000
  this.el = r.nativeElement;
1972
2001
  }
1973
2002
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1974
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSwitch, isStandalone: false, selector: "tet-switch", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2003
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSwitch, isStandalone: false, selector: "tet-switch", inputs: { accessibilityLabel: "accessibilityLabel", alignCenter: "alignCenter", checked: "checked", disabled: "disabled", focusStyleOnContainer: "focusStyleOnContainer", label: "label", labelFont: "labelFont", labelPosition: "labelPosition", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1975
2004
  };
1976
2005
  TetSwitch = __decorate([
1977
2006
  ProxyCmp({
1978
- inputs: ['accessibilityLabel', 'checked', 'disabled', 'label', 'name', 'theme', 'value'],
2007
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'focusStyleOnContainer', 'label', 'labelFont', 'labelPosition', 'name', 'theme', 'value'],
1979
2008
  methods: ['setChecked']
1980
2009
  })
1981
2010
  ], TetSwitch);
@@ -1986,7 +2015,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
1986
2015
  changeDetection: ChangeDetectionStrategy.OnPush,
1987
2016
  template: '<ng-content></ng-content>',
1988
2017
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1989
- inputs: ['accessibilityLabel', 'checked', 'disabled', 'label', 'name', 'theme', 'value'],
2018
+ inputs: ['accessibilityLabel', 'alignCenter', 'checked', 'disabled', 'focusStyleOnContainer', 'label', 'labelFont', 'labelPosition', 'name', 'theme', 'value'],
1990
2019
  outputs: ['check'],
1991
2020
  standalone: false
1992
2021
  }]
@@ -2334,6 +2363,7 @@ const DIRECTIVES = [
2334
2363
  TetExpansionPanel,
2335
2364
  TetFeedbackForm,
2336
2365
  TetFilter,
2366
+ TetFloatingBlock,
2337
2367
  TetIcon,
2338
2368
  TetInlineMessage,
2339
2369
  TetInput,
@@ -2385,7 +2415,7 @@ class TetComponentsAngularModule {
2385
2415
  };
2386
2416
  }
2387
2417
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2388
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, declarations: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip], exports: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip] }); }
2418
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, declarations: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetFloatingBlock, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip], exports: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetFloatingBlock, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip] }); }
2389
2419
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule }); }
2390
2420
  }
2391
2421
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, decorators: [{
@@ -2402,5 +2432,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
2402
2432
  * Generated bundle index. Do not edit.
2403
2433
  */
2404
2434
 
2405
- export { DIRECTIVES, TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetComponentsAngularModule, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip };
2435
+ export { DIRECTIVES, TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetComponentsAngularModule, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFeedbackForm, TetFilter, TetFloatingBlock, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip };
2406
2436
  //# sourceMappingURL=tet-tet-components-angular.mjs.map