@tet/tet-components-angular 1.4.15-testing → 1.4.16-staging
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/index.d.ts
CHANGED
|
@@ -375,7 +375,7 @@ declare class TetCheckbox {
|
|
|
375
375
|
check: EventEmitter<CustomEvent<CheckboxCheckEventInterface>>;
|
|
376
376
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
377
377
|
static ɵfac: i0.ɵɵFactoryDeclaration<TetCheckbox, never>;
|
|
378
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TetCheckbox, "tet-checkbox", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "focusStyleOnContainer": { "alias": "focusStyleOnContainer"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
378
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetCheckbox, "tet-checkbox", never, { "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "alignCenter": { "alias": "alignCenter"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "focusStyleOnContainer": { "alias": "focusStyleOnContainer"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
379
379
|
}
|
|
380
380
|
declare interface TetCheckbox extends Components.TetCheckbox {
|
|
381
381
|
/**
|
|
@@ -723,6 +723,20 @@ declare interface TetFilter extends Components.TetFilter {
|
|
|
723
723
|
*/
|
|
724
724
|
filterChange: EventEmitter<CustomEvent<FilterState[]>>;
|
|
725
725
|
}
|
|
726
|
+
declare class TetFloatingBlock {
|
|
727
|
+
protected z: NgZone;
|
|
728
|
+
protected el: HTMLTetFloatingBlockElement;
|
|
729
|
+
contentItemClick: EventEmitter<CustomEvent<string>>;
|
|
730
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
731
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TetFloatingBlock, never>;
|
|
732
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetFloatingBlock, "tet-floating-block", never, { "content": { "alias": "content"; "required": false; }; "header": { "alias": "header"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "content-item-click": "content-item-click"; "contentItemClick": "contentItemClick"; }, never, ["*"], false, never>;
|
|
733
|
+
}
|
|
734
|
+
declare interface TetFloatingBlock extends Components.TetFloatingBlock {
|
|
735
|
+
/**
|
|
736
|
+
* Event emitted when a content item is clicked.
|
|
737
|
+
*/
|
|
738
|
+
'content-item-click': EventEmitter<CustomEvent<string>>;
|
|
739
|
+
}
|
|
726
740
|
declare class TetIcon {
|
|
727
741
|
protected z: NgZone;
|
|
728
742
|
protected el: HTMLTetIconElement;
|
|
@@ -886,7 +900,7 @@ declare class TetRadio {
|
|
|
886
900
|
check: EventEmitter<CustomEvent<RadioCheckEventInterface>>;
|
|
887
901
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
888
902
|
static ɵfac: i0.ɵɵFactoryDeclaration<TetRadio, never>;
|
|
889
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TetRadio, "tet-radio", never, { "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inputAutofocus": { "alias": "inputAutofocus"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
903
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetRadio, "tet-radio", never, { "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "alignCenter": { "alias": "alignCenter"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "focusStyleOnContainer": { "alias": "focusStyleOnContainer"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "inputAutofocus": { "alias": "inputAutofocus"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
890
904
|
}
|
|
891
905
|
declare interface TetRadio extends Components.TetRadio {
|
|
892
906
|
/**
|
|
@@ -1011,7 +1025,7 @@ declare class TetSwitch {
|
|
|
1011
1025
|
check: EventEmitter<CustomEvent<SwitchCheckEventInterface>>;
|
|
1012
1026
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1013
1027
|
static ɵfac: i0.ɵɵFactoryDeclaration<TetSwitch, never>;
|
|
1014
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TetSwitch, "tet-switch", never, { "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
1028
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetSwitch, "tet-switch", never, { "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "alignCenter": { "alias": "alignCenter"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "focusStyleOnContainer": { "alias": "focusStyleOnContainer"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "check": "check"; }, never, ["*"], false, never>;
|
|
1015
1029
|
}
|
|
1016
1030
|
declare interface TetSwitch extends Components.TetSwitch {
|
|
1017
1031
|
/**
|
|
@@ -1147,10 +1161,10 @@ declare interface TetTooltip extends Components.TetTooltip {
|
|
|
1147
1161
|
declare class TetComponentsAngularModule {
|
|
1148
1162
|
static forRoot(resourcesUrl?: string): ModuleWithProviders<TetComponentsAngularModule>;
|
|
1149
1163
|
static ɵfac: i0.ɵɵFactoryDeclaration<TetComponentsAngularModule, never>;
|
|
1150
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TetComponentsAngularModule, [typeof TetAccordion, typeof TetAddressOffersFiltersProducts, typeof TetAddressSearch, typeof TetAssetAddresses, typeof TetAssetAvailabilityAddresses, typeof TetAutocomplete, typeof TetAutocompleteDropdown, typeof TetAvailabilityContactForm, typeof TetB2bCheckOutForm, typeof TetB2bCompareCard, typeof TetB2bConfigurator, typeof TetB2bConfiguratorCart, typeof TetBannerNav, typeof TetBarGraph, typeof TetBusinessLines, typeof TetBusinessNavigation, typeof TetBusinessRoundStepper, typeof TetBusinessSummaryCard, typeof TetButton, typeof TetCarousel, typeof TetCheckbox, typeof TetCloudApplicationFormDialog, typeof TetCloudConfigurator, typeof TetCompareCardV2, typeof TetContactForm, typeof TetContactInfo, typeof TetContainer, typeof TetCustomerAssets, typeof TetDatepicker, typeof TetDatepickerHeader, typeof TetDatepickerMonthView, typeof TetDatepickerMultiYearView, typeof TetDatepickerYearView, typeof TetDialog, typeof TetDropdown, typeof TetDynamicCard, typeof TetExpandableInput, typeof TetExpansionPanel, typeof TetFeedbackForm, typeof TetFilter, typeof TetIcon, typeof TetInlineMessage, typeof TetInput, typeof TetLabel, typeof TetLinkCardList, typeof TetLoader, typeof TetMenu, typeof TetMenuMobile, typeof TetMultiStepDialog, typeof TetNavigationMobile, typeof TetNotification, typeof TetNumberInput, typeof TetPlaceholder, typeof TetPriceView, typeof TetRadio, typeof TetRangeSlider, typeof TetReferral, typeof TetRoundStepper, typeof TetSelectionList, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip], never, [typeof TetAccordion, typeof TetAddressOffersFiltersProducts, typeof TetAddressSearch, typeof TetAssetAddresses, typeof TetAssetAvailabilityAddresses, typeof TetAutocomplete, typeof TetAutocompleteDropdown, typeof TetAvailabilityContactForm, typeof TetB2bCheckOutForm, typeof TetB2bCompareCard, typeof TetB2bConfigurator, typeof TetB2bConfiguratorCart, typeof TetBannerNav, typeof TetBarGraph, typeof TetBusinessLines, typeof TetBusinessNavigation, typeof TetBusinessRoundStepper, typeof TetBusinessSummaryCard, typeof TetButton, typeof TetCarousel, typeof TetCheckbox, typeof TetCloudApplicationFormDialog, typeof TetCloudConfigurator, typeof TetCompareCardV2, typeof TetContactForm, typeof TetContactInfo, typeof TetContainer, typeof TetCustomerAssets, typeof TetDatepicker, typeof TetDatepickerHeader, typeof TetDatepickerMonthView, typeof TetDatepickerMultiYearView, typeof TetDatepickerYearView, typeof TetDialog, typeof TetDropdown, typeof TetDynamicCard, typeof TetExpandableInput, typeof TetExpansionPanel, typeof TetFeedbackForm, typeof TetFilter, typeof TetIcon, typeof TetInlineMessage, typeof TetInput, typeof TetLabel, typeof TetLinkCardList, typeof TetLoader, typeof TetMenu, typeof TetMenuMobile, typeof TetMultiStepDialog, typeof TetNavigationMobile, typeof TetNotification, typeof TetNumberInput, typeof TetPlaceholder, typeof TetPriceView, typeof TetRadio, typeof TetRangeSlider, typeof TetReferral, typeof TetRoundStepper, typeof TetSelectionList, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip]>;
|
|
1164
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TetComponentsAngularModule, [typeof TetAccordion, typeof TetAddressOffersFiltersProducts, typeof TetAddressSearch, typeof TetAssetAddresses, typeof TetAssetAvailabilityAddresses, typeof TetAutocomplete, typeof TetAutocompleteDropdown, typeof TetAvailabilityContactForm, typeof TetB2bCheckOutForm, typeof TetB2bCompareCard, typeof TetB2bConfigurator, typeof TetB2bConfiguratorCart, typeof TetBannerNav, typeof TetBarGraph, typeof TetBusinessLines, typeof TetBusinessNavigation, typeof TetBusinessRoundStepper, typeof TetBusinessSummaryCard, typeof TetButton, typeof TetCarousel, typeof TetCheckbox, typeof TetCloudApplicationFormDialog, typeof TetCloudConfigurator, typeof TetCompareCardV2, typeof TetContactForm, typeof TetContactInfo, typeof TetContainer, typeof TetCustomerAssets, typeof TetDatepicker, typeof TetDatepickerHeader, typeof TetDatepickerMonthView, typeof TetDatepickerMultiYearView, typeof TetDatepickerYearView, typeof TetDialog, typeof TetDropdown, typeof TetDynamicCard, typeof TetExpandableInput, typeof TetExpansionPanel, typeof TetFeedbackForm, typeof TetFilter, typeof TetFloatingBlock, typeof TetIcon, typeof TetInlineMessage, typeof TetInput, typeof TetLabel, typeof TetLinkCardList, typeof TetLoader, typeof TetMenu, typeof TetMenuMobile, typeof TetMultiStepDialog, typeof TetNavigationMobile, typeof TetNotification, typeof TetNumberInput, typeof TetPlaceholder, typeof TetPriceView, typeof TetRadio, typeof TetRangeSlider, typeof TetReferral, typeof TetRoundStepper, typeof TetSelectionList, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip], never, [typeof TetAccordion, typeof TetAddressOffersFiltersProducts, typeof TetAddressSearch, typeof TetAssetAddresses, typeof TetAssetAvailabilityAddresses, typeof TetAutocomplete, typeof TetAutocompleteDropdown, typeof TetAvailabilityContactForm, typeof TetB2bCheckOutForm, typeof TetB2bCompareCard, typeof TetB2bConfigurator, typeof TetB2bConfiguratorCart, typeof TetBannerNav, typeof TetBarGraph, typeof TetBusinessLines, typeof TetBusinessNavigation, typeof TetBusinessRoundStepper, typeof TetBusinessSummaryCard, typeof TetButton, typeof TetCarousel, typeof TetCheckbox, typeof TetCloudApplicationFormDialog, typeof TetCloudConfigurator, typeof TetCompareCardV2, typeof TetContactForm, typeof TetContactInfo, typeof TetContainer, typeof TetCustomerAssets, typeof TetDatepicker, typeof TetDatepickerHeader, typeof TetDatepickerMonthView, typeof TetDatepickerMultiYearView, typeof TetDatepickerYearView, typeof TetDialog, typeof TetDropdown, typeof TetDynamicCard, typeof TetExpandableInput, typeof TetExpansionPanel, typeof TetFeedbackForm, typeof TetFilter, typeof TetFloatingBlock, typeof TetIcon, typeof TetInlineMessage, typeof TetInput, typeof TetLabel, typeof TetLinkCardList, typeof TetLoader, typeof TetMenu, typeof TetMenuMobile, typeof TetMultiStepDialog, typeof TetNavigationMobile, typeof TetNotification, typeof TetNumberInput, typeof TetPlaceholder, typeof TetPriceView, typeof TetRadio, typeof TetRangeSlider, typeof TetReferral, typeof TetRoundStepper, typeof TetSelectionList, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip]>;
|
|
1151
1165
|
static ɵinj: i0.ɵɵInjectorDeclaration<TetComponentsAngularModule>;
|
|
1152
1166
|
}
|
|
1153
1167
|
|
|
1154
|
-
declare const DIRECTIVES: (typeof TetAccordion | typeof TetAddressOffersFiltersProducts | typeof TetAddressSearch | typeof TetAssetAddresses | typeof TetAssetAvailabilityAddresses | typeof TetAutocomplete | typeof TetAutocompleteDropdown | typeof TetAvailabilityContactForm | typeof TetB2bCheckOutForm | typeof TetB2bCompareCard | typeof TetB2bConfigurator | typeof TetB2bConfiguratorCart | typeof TetBannerNav | typeof TetBarGraph | typeof TetBusinessLines | typeof TetBusinessNavigation | typeof TetBusinessRoundStepper | typeof TetBusinessSummaryCard | typeof TetButton | typeof TetCarousel | typeof TetCheckbox | typeof TetCloudApplicationFormDialog | typeof TetCloudConfigurator | typeof TetCompareCardV2 | typeof TetContactForm | typeof TetContactInfo | typeof TetContainer | typeof TetCustomerAssets | typeof TetDatepicker | typeof TetDatepickerHeader | typeof TetDatepickerMonthView | typeof TetDatepickerMultiYearView | typeof TetDatepickerYearView | typeof TetDialog | typeof TetDropdown | typeof TetDynamicCard | typeof TetExpandableInput | typeof TetExpansionPanel | typeof TetFeedbackForm | typeof TetFilter | typeof TetIcon | typeof TetInlineMessage | typeof TetInput | typeof TetLabel | typeof TetLinkCardList | typeof TetLoader | typeof TetMenu | typeof TetMenuMobile | typeof TetMultiStepDialog | typeof TetNavigationMobile | typeof TetNotification | typeof TetNumberInput | typeof TetPlaceholder | typeof TetPriceView | typeof TetRadio | typeof TetRangeSlider | typeof TetReferral | typeof TetRoundStepper | typeof TetSelectionList | typeof TetSpinner | typeof TetStepper | typeof TetStepperInput | typeof TetStepperV2 | typeof TetStepperV3 | typeof TetSwitch | typeof TetTabContent | typeof TetTabHeader | typeof TetTable | typeof TetTag | typeof TetTagGroup | typeof TetTextList | typeof TetTextarea | typeof TetThankYouView | typeof TetThankYouViewV2 | typeof TetThankYouViewV3 | typeof TetTooltip)[];
|
|
1168
|
+
declare const DIRECTIVES: (typeof TetAccordion | typeof TetAddressOffersFiltersProducts | typeof TetAddressSearch | typeof TetAssetAddresses | typeof TetAssetAvailabilityAddresses | typeof TetAutocomplete | typeof TetAutocompleteDropdown | typeof TetAvailabilityContactForm | typeof TetB2bCheckOutForm | typeof TetB2bCompareCard | typeof TetB2bConfigurator | typeof TetB2bConfiguratorCart | typeof TetBannerNav | typeof TetBarGraph | typeof TetBusinessLines | typeof TetBusinessNavigation | typeof TetBusinessRoundStepper | typeof TetBusinessSummaryCard | typeof TetButton | typeof TetCarousel | typeof TetCheckbox | typeof TetCloudApplicationFormDialog | typeof TetCloudConfigurator | typeof TetCompareCardV2 | typeof TetContactForm | typeof TetContactInfo | typeof TetContainer | typeof TetCustomerAssets | typeof TetDatepicker | typeof TetDatepickerHeader | typeof TetDatepickerMonthView | typeof TetDatepickerMultiYearView | typeof TetDatepickerYearView | typeof TetDialog | typeof TetDropdown | typeof TetDynamicCard | typeof TetExpandableInput | typeof TetExpansionPanel | typeof TetFeedbackForm | typeof TetFilter | typeof TetFloatingBlock | typeof TetIcon | typeof TetInlineMessage | typeof TetInput | typeof TetLabel | typeof TetLinkCardList | typeof TetLoader | typeof TetMenu | typeof TetMenuMobile | typeof TetMultiStepDialog | typeof TetNavigationMobile | typeof TetNotification | typeof TetNumberInput | typeof TetPlaceholder | typeof TetPriceView | typeof TetRadio | typeof TetRangeSlider | typeof TetReferral | typeof TetRoundStepper | typeof TetSelectionList | typeof TetSpinner | typeof TetStepper | typeof TetStepperInput | typeof TetStepperV2 | typeof TetStepperV3 | typeof TetSwitch | typeof TetTabContent | typeof TetTabHeader | typeof TetTable | typeof TetTag | typeof TetTagGroup | typeof TetTextList | typeof TetTextarea | typeof TetThankYouView | typeof TetThankYouViewV2 | typeof TetThankYouViewV3 | typeof TetTooltip)[];
|
|
1155
1169
|
|
|
1156
|
-
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 };
|
|
1170
|
+
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 };
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tet/tet-components-angular",
|
|
3
|
-
"version": "v1.4.
|
|
3
|
+
"version": "v1.4.16-staging",
|
|
4
4
|
"description": "A Stencil-based Web Components library for reusable UI elements.",
|
|
5
5
|
"homepage": "https://tet.lv",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@angular/common": ">=19.0.0 <22.0.0",
|
|
8
8
|
"@angular/core": ">=19.0.0 <22.0.0",
|
|
9
|
-
"@tet/tet-components": "v1.4.
|
|
9
|
+
"@tet/tet-components": "v1.4.16-staging"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|