-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.js
More file actions
222 lines (217 loc) · 6.98 KB
/
Copy pathmodule.js
File metadata and controls
222 lines (217 loc) · 6.98 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import accordion from './components/accordion';
import alert from './components/alert';
import avatar from './components/avatar';
import backdrop from './components/backdrop';
import badge from './components/badge';
import bottomNav from './components/bottom-nav';
import breadcrumb from './components/breadcrumb';
import bubble from './components/bubble';
import button from './components/button';
import calendar from './components/calendar';
import card from './components/card';
import carousel from './components/carousel';
import chart from './components/chart';
import checkbox from './components/checkbox';
import chip from './components/chip';
import combobox from './components/combobox';
import datepicker from './components/date-picker';
import datetimePicker from './components/datetime-picker';
import dialog from './components/dialog';
import expansionPanel from './components/expansion-panel';
import fab from './components/fab';
import fieldset from './components/fieldset';
import fileUpload from './components/file-upload';
import icon from './components/icon';
import infoPage from './components/info-page';
import input from './components/input';
import label from './components/label';
import list from './components/list';
import listbox from './components/listbox';
import menu from './components/menu';
import menubar from './components/menubar';
import monthPicker from './components/month-picker';
import navigationMenu from './components/navigation-menu';
import notifications from './components/notifications';
import otp from './components/otp';
import pagination from './components/pagination';
import popover from './components/popover';
import progress from './components/progress';
import radio from './components/radio';
import range from './components/range';
import rating from './components/rating';
import select from './components/select';
import separator from './components/separator';
import sheet from './components/sheet';
import sidebar from './components/sidebar';
import skeleton from './components/skeleton';
import slotPicker from './components/slot-picker';
import spinner from './components/spinner';
import split from './components/split';
import stepIndicator from './components/step-indicator';
import _switch from './components/switch';
import table from './components/table';
import tabs from './components/tabs';
import tag from './components/tag';
import text from './components/text';
import textarea from './components/textarea';
import tile from './components/tile';
import timepicker from './components/time-picker';
import toolbar from './components/toolbar';
import tooltip from './components/tooltip';
import tree from './components/tree';
import weekPicker from './components/week-picker';
export { version } from '../package.json';
export { getBreakpointListener } from './utils/breakpoint-listener';
export { chartToImage, chartToSvg } from './utils/chart-export';
export { createDateFormatter } from './utils/date-format';
export { getLanguageStorageKey, setLanguageStorageKey } from './utils/language';
export { getNativeNotificationPermission, isNativeNotificationSupported, requestNativeNotificationPermission, showNativeNotification } from './utils/native-notifications';
export { addColorSchemeListener, getColorScheme, getSystemColorScheme, removeColorSchemeListener, setColorScheme } from './utils/theme';
import i18next from './plugins/i18next';
import lucide from './plugins/lucide';
import dateFormat from './utils/date-format';
import focus from './utils/focus';
import include from './utils/include';
import responsive from './utils/responsive';
import template from './utils/template';
export {
accordion as Accordion,
alert as Alert,
avatar as Avatar,
backdrop as Backdrop,
badge as Badge,
bottomNav as BottomNav,
breadcrumb as Breadcrumb,
bubble as Bubble,
button as Button,
calendar as Calendar,
card as Card,
carousel as Carousel,
chart as Chart,
checkbox as Checkbox,
chip as Chip,
combobox as Combobox,
dateFormat as DateFormat,
datepicker as DatePicker,
datetimePicker as DateTimePicker,
dialog as Dialog,
expansionPanel as ExpansionPanel,
fab as Fab,
fieldset as Fieldset,
fileUpload as FileUpload,
focus as Focus,
i18next as I18next,
icon as Icon,
include as Include,
infoPage as InfoPage,
input as Input,
label as Label,
list as List,
listbox as Listbox,
lucide as Lucide,
menu as Menu,
menubar as Menubar,
monthPicker as MonthPicker,
navigationMenu as NavigationMenu,
notifications as Notifications,
otp as Otp,
pagination as Pagination,
popover as Popover,
progress as Progress,
radio as Radio,
range as Range,
rating as Rating,
responsive as Responsive,
select as Select,
separator as Separator,
sheet as Sheet,
sidebar as Sidebar,
skeleton as Skeleton,
slotPicker as SlotPicker,
spinner as Spinner,
split as Split,
stepIndicator as StepIndicator,
_switch as Switch,
table as Table,
tabs as Tabs,
tag as Tag,
template as Template,
text as Text,
textarea as Textarea,
tile as Tile,
timepicker as TimePicker,
toolbar as Toolbar,
tooltip as Tooltip,
tree as Tree,
weekPicker as WeekPicker,
};
export const registerComponents = (registerPlugin) => {
registerPlugin(accordion);
registerPlugin(alert);
registerPlugin(avatar);
registerPlugin(backdrop);
registerPlugin(badge);
registerPlugin(bottomNav);
registerPlugin(breadcrumb);
registerPlugin(bubble);
registerPlugin(button);
registerPlugin(calendar);
registerPlugin(card);
registerPlugin(carousel);
registerPlugin(chart);
registerPlugin(checkbox);
registerPlugin(chip);
registerPlugin(combobox);
registerPlugin(dateFormat);
registerPlugin(datepicker);
registerPlugin(datetimePicker);
registerPlugin(dialog);
registerPlugin(expansionPanel);
registerPlugin(fab);
registerPlugin(fieldset);
registerPlugin(fileUpload);
registerPlugin(focus);
registerPlugin(icon);
registerPlugin(include);
registerPlugin(infoPage);
registerPlugin(input);
registerPlugin(label);
registerPlugin(list);
registerPlugin(listbox);
registerPlugin(menu);
registerPlugin(menubar);
registerPlugin(monthPicker);
registerPlugin(navigationMenu);
registerPlugin(notifications);
registerPlugin(otp);
registerPlugin(pagination);
registerPlugin(popover);
registerPlugin(progress);
registerPlugin(radio);
registerPlugin(range);
registerPlugin(rating);
registerPlugin(responsive);
registerPlugin(select);
registerPlugin(separator);
registerPlugin(sheet);
registerPlugin(sidebar);
registerPlugin(skeleton);
registerPlugin(spinner);
registerPlugin(slotPicker);
registerPlugin(split);
registerPlugin(stepIndicator);
registerPlugin(_switch);
registerPlugin(table);
registerPlugin(tabs);
registerPlugin(tag);
registerPlugin(template);
registerPlugin(text);
registerPlugin(textarea);
registerPlugin(tile);
registerPlugin(timepicker);
registerPlugin(toolbar);
registerPlugin(tooltip);
registerPlugin(tree);
registerPlugin(weekPicker);
};
export default registerComponents;