@tet/tet-components-angular 1.4.30-testing → 1.4.31-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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { NgZone, EventEmitter, ChangeDetectorRef, ElementRef, ModuleWithProviders } from '@angular/core';
|
|
3
|
-
import { Components, AddressInterface, UniqueAddressInterface, CustomerNotFound, OptionInterface, B2bCardUpdateEvent, B2BSubmit, BusinessLine, CheckboxCheckEventInterface, TetApplicationFormDialogSubmissionData, CustomerAsset, DatepickerView, DatepickerRangeSetData, DropdownOptionInterface, SelectedOptionInterface, StateChangeInterface, FeedbackFormSubmissionData, FilterState, ListItem, RadioCheckEventInterface, OptionSelectedEventDetail, SwitchCheckEventInterface, TabSelectEventData } from '@tet/tet-components';
|
|
3
|
+
import { Components, AddressInterface, UniqueAddressInterface, CustomerNotFound, OptionInterface, B2bCardUpdateEvent, B2BSubmit, BusinessLine, CheckboxCheckEventInterface, TetApplicationFormDialogSubmissionData, CustomerAsset, DatepickerView, DatepickerRangeSetData, DropdownOptionInterface, SelectedOptionInterface, StateChangeInterface, FeedbackFormSubmissionData, FilterState, ListItem, RadioCheckEventInterface, SnickerCardSelectionState, SnickerCardGroupSelectionChangeDetail, OptionSelectedEventDetail, SwitchCheckEventInterface, TabSelectEventData } from '@tet/tet-components';
|
|
4
4
|
|
|
5
5
|
declare class TetAccordion {
|
|
6
6
|
protected z: NgZone;
|
|
@@ -988,6 +988,45 @@ declare interface TetSelectionList extends Components.TetSelectionList {
|
|
|
988
988
|
*/
|
|
989
989
|
selectionListRendered: EventEmitter<CustomEvent<string>>;
|
|
990
990
|
}
|
|
991
|
+
declare class TetSnickerCard {
|
|
992
|
+
protected z: NgZone;
|
|
993
|
+
protected el: HTMLTetSnickerCardElement;
|
|
994
|
+
bottomLinkClick: EventEmitter<CustomEvent<string>>;
|
|
995
|
+
benefitLinkClick: EventEmitter<CustomEvent<string>>;
|
|
996
|
+
cardClick: EventEmitter<CustomEvent<void>>;
|
|
997
|
+
selectionStateChange: EventEmitter<CustomEvent<SnickerCardSelectionState>>;
|
|
998
|
+
addToCart: EventEmitter<CustomEvent<SnickerCardSelectionState>>;
|
|
999
|
+
removeFromCart: EventEmitter<CustomEvent<void>>;
|
|
1000
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1001
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TetSnickerCard, never>;
|
|
1002
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetSnickerCard, "tet-snicker-card", never, { "accordionConfig": { "alias": "accordionConfig"; "required": false; }; "benefitLink": { "alias": "benefitLink"; "required": false; }; "benefits": { "alias": "benefits"; "required": false; }; "bottomLinkText": { "alias": "bottomLinkText"; "required": false; }; "bottomRemark": { "alias": "bottomRemark"; "required": false; }; "cardTitle": { "alias": "cardTitle"; "required": false; }; "count": { "alias": "count"; "required": false; }; "description": { "alias": "description"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "inlineMessage": { "alias": "inlineMessage"; "required": false; }; "isInCart": { "alias": "isInCart"; "required": false; }; "isTabStop": { "alias": "isTabStop"; "required": false; }; "packageItems": { "alias": "packageItems"; "required": false; }; "price": { "alias": "price"; "required": false; }; "primaryValue": { "alias": "primaryValue"; "required": false; }; "secondaryValue": { "alias": "secondaryValue"; "required": false; }; "selectionConfig": { "alias": "selectionConfig"; "required": false; }; "selectionType": { "alias": "selectionType"; "required": false; }; "state": { "alias": "state"; "required": false; }; "subscriptionItems": { "alias": "subscriptionItems"; "required": false; }; "subscriptionLabel": { "alias": "subscriptionLabel"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "topBadge": { "alias": "topBadge"; "required": false; }; }, { "bottomLinkClick": "bottomLinkClick"; "benefitLinkClick": "benefitLinkClick"; "cardClick": "cardClick"; "selectionStateChange": "selectionStateChange"; "addToCart": "addToCart"; "removeFromCart": "removeFromCart"; }, never, ["*"], false, never>;
|
|
1003
|
+
}
|
|
1004
|
+
declare interface TetSnickerCard extends Components.TetSnickerCard {
|
|
1005
|
+
/**
|
|
1006
|
+
* Emitted when bottom link is clicked. Emits link text.
|
|
1007
|
+
*/
|
|
1008
|
+
bottomLinkClick: EventEmitter<CustomEvent<string>>;
|
|
1009
|
+
/**
|
|
1010
|
+
* Emitted when benefit link is clicked. Emits link text.
|
|
1011
|
+
*/
|
|
1012
|
+
benefitLinkClick: EventEmitter<CustomEvent<string>>;
|
|
1013
|
+
/**
|
|
1014
|
+
* Emitted when card surface is clicked.
|
|
1015
|
+
*/
|
|
1016
|
+
cardClick: EventEmitter<CustomEvent<void>>;
|
|
1017
|
+
/**
|
|
1018
|
+
* Emitted when any selection input changes (primary, secondary, count).
|
|
1019
|
+
*/
|
|
1020
|
+
selectionStateChange: EventEmitter<CustomEvent<SnickerCardSelectionState>>;
|
|
1021
|
+
/**
|
|
1022
|
+
* Emitted when add-to-cart button is clicked.
|
|
1023
|
+
*/
|
|
1024
|
+
addToCart: EventEmitter<CustomEvent<SnickerCardSelectionState>>;
|
|
1025
|
+
/**
|
|
1026
|
+
* Emitted when remove-from-cart button is clicked.
|
|
1027
|
+
*/
|
|
1028
|
+
removeFromCart: EventEmitter<CustomEvent<void>>;
|
|
1029
|
+
}
|
|
991
1030
|
declare class TetSnickerCardBadge {
|
|
992
1031
|
protected z: NgZone;
|
|
993
1032
|
protected el: HTMLTetSnickerCardBadgeElement;
|
|
@@ -997,6 +1036,20 @@ declare class TetSnickerCardBadge {
|
|
|
997
1036
|
}
|
|
998
1037
|
declare interface TetSnickerCardBadge extends Components.TetSnickerCardBadge {
|
|
999
1038
|
}
|
|
1039
|
+
declare class TetSnickerCardGroup {
|
|
1040
|
+
protected z: NgZone;
|
|
1041
|
+
protected el: HTMLTetSnickerCardGroupElement;
|
|
1042
|
+
groupSelectionChange: EventEmitter<CustomEvent<SnickerCardGroupSelectionChangeDetail>>;
|
|
1043
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1044
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TetSnickerCardGroup, never>;
|
|
1045
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TetSnickerCardGroup, "tet-snicker-card-group", never, { "selectionType": { "alias": "selectionType"; "required": false; }; }, { "groupSelectionChange": "groupSelectionChange"; }, never, ["*"], false, never>;
|
|
1046
|
+
}
|
|
1047
|
+
declare interface TetSnickerCardGroup extends Components.TetSnickerCardGroup {
|
|
1048
|
+
/**
|
|
1049
|
+
* Emitted when group selection changes.
|
|
1050
|
+
*/
|
|
1051
|
+
groupSelectionChange: EventEmitter<CustomEvent<SnickerCardGroupSelectionChangeDetail>>;
|
|
1052
|
+
}
|
|
1000
1053
|
declare class TetSpinner {
|
|
1001
1054
|
protected z: NgZone;
|
|
1002
1055
|
protected el: HTMLTetSpinnerElement;
|
|
@@ -1208,10 +1261,10 @@ declare interface TetTooltip extends Components.TetTooltip {
|
|
|
1208
1261
|
declare class TetComponentsAngularModule {
|
|
1209
1262
|
static forRoot(resourcesUrl?: string): ModuleWithProviders<TetComponentsAngularModule>;
|
|
1210
1263
|
static ɵfac: i0.ɵɵFactoryDeclaration<TetComponentsAngularModule, never>;
|
|
1211
|
-
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 TetCounter, 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 TetSnickerCardBadge, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSupportSearch, 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 TetCounter, 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 TetSnickerCardBadge, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSupportSearch, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip]>;
|
|
1264
|
+
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 TetCounter, 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 TetSnickerCard, typeof TetSnickerCardBadge, typeof TetSnickerCardGroup, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSupportSearch, 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 TetCounter, 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 TetSnickerCard, typeof TetSnickerCardBadge, typeof TetSnickerCardGroup, typeof TetSpinner, typeof TetStepper, typeof TetStepperInput, typeof TetStepperV2, typeof TetStepperV3, typeof TetSupportSearch, typeof TetSwitch, typeof TetTabContent, typeof TetTabHeader, typeof TetTable, typeof TetTag, typeof TetTagGroup, typeof TetTextList, typeof TetTextarea, typeof TetThankYouView, typeof TetThankYouViewV2, typeof TetThankYouViewV3, typeof TetTooltip]>;
|
|
1212
1265
|
static ɵinj: i0.ɵɵInjectorDeclaration<TetComponentsAngularModule>;
|
|
1213
1266
|
}
|
|
1214
1267
|
|
|
1215
|
-
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 TetCounter | 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 TetSnickerCardBadge | typeof TetSpinner | typeof TetStepper | typeof TetStepperInput | typeof TetStepperV2 | typeof TetStepperV3 | typeof TetSupportSearch | typeof TetSwitch | typeof TetTabContent | typeof TetTabHeader | typeof TetTable | typeof TetTag | typeof TetTagGroup | typeof TetTextList | typeof TetTextarea | typeof TetThankYouView | typeof TetThankYouViewV2 | typeof TetThankYouViewV3 | typeof TetTooltip)[];
|
|
1268
|
+
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 TetCounter | 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 TetSnickerCard | typeof TetSnickerCardBadge | typeof TetSnickerCardGroup | typeof TetSpinner | typeof TetStepper | typeof TetStepperInput | typeof TetStepperV2 | typeof TetStepperV3 | typeof TetSupportSearch | typeof TetSwitch | typeof TetTabContent | typeof TetTabHeader | typeof TetTable | typeof TetTag | typeof TetTagGroup | typeof TetTextList | typeof TetTextarea | typeof TetThankYouView | typeof TetThankYouViewV2 | typeof TetThankYouViewV3 | typeof TetTooltip)[];
|
|
1216
1269
|
|
|
1217
|
-
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, TetCounter, 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, TetSnickerCardBadge, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSupportSearch, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip };
|
|
1270
|
+
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, TetCounter, 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, TetSnickerCard, TetSnickerCardBadge, TetSnickerCardGroup, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSupportSearch, 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.31-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.31-staging"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|