-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdefineAllComponents.ts
More file actions
151 lines (149 loc) · 6.43 KB
/
defineAllComponents.ts
File metadata and controls
151 lines (149 loc) · 6.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import IgcAccordionComponent from '../../accordion/accordion.js';
import IgcAvatarComponent from '../../avatar/avatar.js';
import IgcBadgeComponent from '../../badge/badge.js';
import IgcBannerComponent from '../../banner/banner.js';
import IgcButtonComponent from '../../button/button.js';
import IgcIconButtonComponent from '../../button/icon-button.js';
import IgcButtonGroupComponent from '../../button-group/button-group.js';
import IgcToggleButtonComponent from '../../button-group/toggle-button.js';
import IgcCalendarComponent from '../../calendar/calendar.js';
import IgcCardActionsComponent from '../../card/card.actions.js';
import IgcCardContentComponent from '../../card/card.content.js';
import IgcCardHeaderComponent from '../../card/card.header.js';
import IgcCardComponent from '../../card/card.js';
import IgcCardMediaComponent from '../../card/card.media.js';
import IgcCarouselComponent from '../../carousel/carousel.js';
import IgcCarouselIndicatorComponent from '../../carousel/carousel-indicator.js';
import IgcCarouselSlideComponent from '../../carousel/carousel-slide.js';
import IgcChatComponent from '../../chat/chat.js';
import IgcCheckboxComponent from '../../checkbox/checkbox.js';
import IgcSwitchComponent from '../../checkbox/switch.js';
import IgcChipComponent from '../../chip/chip.js';
import IgcComboComponent from '../../combo/combo.js';
import IgcDatePickerComponent from '../../date-picker/date-picker.js';
import IgcDateRangePickerComponent from '../../date-range-picker/date-range-picker.js';
import IgcDateTimeInputComponent from '../../date-time-input/date-time-input.js';
import IgcDialogComponent from '../../dialog/dialog.js';
import IgcDividerComponent from '../../divider/divider.js';
import IgcDropdownComponent from '../../dropdown/dropdown.js';
import IgcDropdownGroupComponent from '../../dropdown/dropdown-group.js';
import IgcDropdownHeaderComponent from '../../dropdown/dropdown-header.js';
import IgcDropdownItemComponent from '../../dropdown/dropdown-item.js';
import IgcExpansionPanelComponent from '../../expansion-panel/expansion-panel.js';
import IgcIconComponent from '../../icon/icon.js';
import IgcInputComponent from '../../input/input.js';
import IgcListComponent from '../../list/list.js';
import IgcListHeaderComponent from '../../list/list-header.js';
import IgcListItemComponent from '../../list/list-item.js';
import IgcMaskInputComponent from '../../mask-input/mask-input.js';
import IgcNavDrawerComponent from '../../nav-drawer/nav-drawer.js';
import IgcNavDrawerHeaderItemComponent from '../../nav-drawer/nav-drawer-header-item.js';
import IgcNavDrawerItemComponent from '../../nav-drawer/nav-drawer-item.js';
import IgcNavbarComponent from '../../navbar/navbar.js';
import IgcCircularGradientComponent from '../../progress/circular-gradient.js';
import IgcCircularProgressComponent from '../../progress/circular-progress.js';
import IgcLinearProgressComponent from '../../progress/linear-progress.js';
import IgcRadioComponent from '../../radio/radio.js';
import IgcRadioGroupComponent from '../../radio-group/radio-group.js';
import IgcRatingComponent from '../../rating/rating.js';
import IgcRatingSymbolComponent from '../../rating/rating-symbol.js';
import IgcRippleComponent from '../../ripple/ripple.js';
import IgcSelectComponent from '../../select/select.js';
import IgcSelectGroupComponent from '../../select/select-group.js';
import IgcSelectHeaderComponent from '../../select/select-header.js';
import IgcSelectItemComponent from '../../select/select-item.js';
import IgcRangeSliderComponent from '../../slider/range-slider.js';
import IgcSliderComponent from '../../slider/slider.js';
import IgcSliderLabelComponent from '../../slider/slider-label.js';
import IgcSnackbarComponent from '../../snackbar/snackbar.js';
import IgcSplitterComponent from '../../splitter/splitter.js';
import IgcStepComponent from '../../stepper/step.js';
import IgcStepperComponent from '../../stepper/stepper.js';
import IgcTabComponent from '../../tabs/tab.js';
import IgcTabsComponent from '../../tabs/tabs.js';
import IgcTextareaComponent from '../../textarea/textarea.js';
import IgcThemeProviderComponent from '../../theme-provider/theme-provider.js';
import IgcTileComponent from '../../tile-manager/tile.js';
import IgcTileManagerComponent from '../../tile-manager/tile-manager.js';
import IgcToastComponent from '../../toast/toast.js';
import IgcTooltipComponent from '../../tooltip/tooltip.js';
import IgcTreeComponent from '../../tree/tree.js';
import IgcTreeItemComponent from '../../tree/tree-item.js';
import { defineComponents } from './defineComponents.js';
import type { IgniteComponent } from './register.js';
const allComponents: IgniteComponent[] = [
IgcThemeProviderComponent,
IgcAvatarComponent,
IgcAccordionComponent,
IgcBadgeComponent,
IgcBannerComponent,
IgcButtonComponent,
IgcIconButtonComponent,
IgcToggleButtonComponent,
IgcButtonGroupComponent,
IgcCalendarComponent,
IgcCardActionsComponent,
IgcCardContentComponent,
IgcCardHeaderComponent,
IgcCardMediaComponent,
IgcCardComponent,
IgcCarouselComponent,
IgcCarouselIndicatorComponent,
IgcCarouselSlideComponent,
IgcChatComponent,
IgcCheckboxComponent,
IgcChipComponent,
IgcComboComponent,
IgcDatePickerComponent,
IgcDateRangePickerComponent,
IgcDropdownComponent,
IgcDropdownGroupComponent,
IgcDropdownHeaderComponent,
IgcDropdownItemComponent,
IgcDialogComponent,
IgcDividerComponent,
IgcSwitchComponent,
IgcExpansionPanelComponent,
IgcIconComponent,
IgcInputComponent,
IgcListHeaderComponent,
IgcListItemComponent,
IgcListComponent,
IgcMaskInputComponent,
IgcNavDrawerHeaderItemComponent,
IgcNavDrawerItemComponent,
IgcNavDrawerComponent,
IgcNavbarComponent,
IgcRadioComponent,
IgcRadioGroupComponent,
IgcRatingComponent,
IgcRatingSymbolComponent,
IgcRippleComponent,
IgcSelectGroupComponent,
IgcSelectHeaderComponent,
IgcSelectItemComponent,
IgcSelectComponent,
IgcTreeComponent,
IgcTreeItemComponent,
IgcSliderComponent,
IgcToastComponent,
IgcSliderLabelComponent,
IgcRangeSliderComponent,
IgcTabsComponent,
IgcTabComponent,
IgcCircularProgressComponent,
IgcLinearProgressComponent,
IgcCircularGradientComponent,
IgcSnackbarComponent,
IgcDateTimeInputComponent,
IgcSplitterComponent,
IgcStepperComponent,
IgcStepComponent,
IgcTextareaComponent,
IgcTileComponent,
IgcTileManagerComponent,
IgcTooltipComponent,
];
export function defineAllComponents() {
defineComponents(...allComponents);
}