@xola/ui-kit 3.0.6 → 3.4.0
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/README.md +61 -12
- package/build/components/Alert.d.ts +18 -0
- package/build/components/Alert.js +28 -0
- package/build/components/Animation/FadeIn.d.ts +13 -0
- package/build/components/Animation/FadeIn.js +29 -0
- package/build/components/Animation/SlideDown.d.ts +6 -0
- package/build/components/Animation/SlideDown.js +20 -0
- package/build/components/Avatar.d.ts +16 -0
- package/build/components/Avatar.js +21 -0
- package/build/components/Badge.d.ts +27 -0
- package/build/components/Badge.js +40 -0
- package/build/components/Breadcrumb.d.ts +21 -0
- package/build/components/Breadcrumb.js +27 -0
- package/build/components/Breakdown.d.ts +63 -0
- package/build/components/Breakdown.js +89 -0
- package/build/components/Buttons/Button.d.ts +53 -0
- package/build/components/Buttons/Button.js +83 -0
- package/build/components/Buttons/ButtonGroup.d.ts +35 -0
- package/build/components/Buttons/ButtonGroup.js +55 -0
- package/build/components/Buttons/SubmitButton.d.ts +11 -0
- package/build/components/Buttons/SubmitButton.js +83 -0
- package/build/components/Buttons/ToggleButton.d.ts +21 -0
- package/build/components/Buttons/ToggleButton.js +34 -0
- package/build/components/Charts/BaseChartOptions.d.ts +136 -0
- package/build/components/Charts/BaseChartOptions.js +95 -0
- package/build/components/Charts/HistogramOptions.d.ts +192 -0
- package/build/components/Charts/HistogramOptions.js +69 -0
- package/build/components/Charts/PieOptions.d.ts +177 -0
- package/build/components/Charts/PieOptions.js +55 -0
- package/build/components/Counter.d.ts +5 -0
- package/build/components/Counter.js +16 -0
- package/build/components/DatePicker/DatePicker.d.ts +41 -0
- package/build/components/DatePicker/DatePicker.helpers.d.ts +17 -0
- package/build/components/DatePicker/DatePicker.helpers.js +22 -0
- package/build/components/DatePicker/DatePicker.js +241 -0
- package/build/components/DatePicker/DatePickerPopover.d.ts +29 -0
- package/build/components/DatePicker/DatePickerPopover.js +81 -0
- package/build/components/DatePicker/Day.d.ts +13 -0
- package/build/components/DatePicker/Day.js +40 -0
- package/build/components/DatePicker/LocalizedDayPicker.d.ts +6 -0
- package/build/components/DatePicker/LocalizedDayPicker.js +20 -0
- package/build/components/DatePicker/MonthGrid.d.ts +11 -0
- package/build/components/DatePicker/MonthGrid.js +52 -0
- package/build/components/DatePicker/MonthPicker.d.ts +7 -0
- package/build/components/DatePicker/MonthPicker.js +28 -0
- package/build/components/DatePicker/MonthSelector.d.ts +8 -0
- package/build/components/DatePicker/MonthSelector.js +47 -0
- package/build/components/DatePicker/MonthYearSelector.d.ts +8 -0
- package/build/components/DatePicker/MonthYearSelector.js +44 -0
- package/build/components/DatePicker/NavbarElement.d.ts +15 -0
- package/build/components/DatePicker/NavbarElement.js +43 -0
- package/build/components/DatePicker/RangeDatePicker.d.ts +25 -0
- package/build/components/DatePicker/RangeDatePicker.js +134 -0
- package/build/components/DatePicker/RelativeDateRange.d.ts +51 -0
- package/build/components/DatePicker/RelativeDateRange.js +280 -0
- package/build/components/DatePicker/UpcomingDatePicker.d.ts +11 -0
- package/build/components/DatePicker/UpcomingDatePicker.js +27 -0
- package/build/components/Dot/Dot.d.ts +24 -0
- package/build/components/Dot/Dot.js +24 -0
- package/build/components/Dot/DotProgress.d.ts +6 -0
- package/build/components/Dot/DotProgress.js +10 -0
- package/build/components/Drawer.d.ts +28 -0
- package/build/components/Drawer.js +126 -0
- package/build/components/Forms/BaseInput.d.ts +20 -0
- package/build/components/Forms/BaseInput.js +41 -0
- package/build/components/Forms/Checkbox.d.ts +10 -0
- package/build/components/Forms/Checkbox.js +34 -0
- package/build/components/Forms/Checkbox.module.css.js +7 -0
- package/build/components/Forms/ComboBox.d.ts +8 -0
- package/build/components/Forms/ComboBox.js +41 -0
- package/build/components/Forms/FormGroup.d.ts +5 -0
- package/build/components/Forms/FormGroup.js +6 -0
- package/build/components/Forms/InlineValuePopover.d.ts +17 -0
- package/build/components/Forms/InlineValuePopover.js +47 -0
- package/build/components/Forms/Input.d.ts +6 -0
- package/build/components/Forms/Input.js +9 -0
- package/build/components/Forms/Label.d.ts +7 -0
- package/build/components/Forms/Label.js +17 -0
- package/build/components/Forms/RangeSlider.d.ts +33 -0
- package/build/components/Forms/RangeSlider.js +39 -0
- package/build/components/Forms/Select.d.ts +5 -0
- package/build/components/Forms/Select.js +8 -0
- package/build/components/Forms/Switch.d.ts +46 -0
- package/build/components/Forms/Switch.js +62 -0
- package/build/components/Forms/Textarea.d.ts +6 -0
- package/build/components/Forms/Textarea.js +35 -0
- package/build/components/Forms/ValuePopoverText.d.ts +6 -0
- package/build/components/Forms/ValuePopoverText.js +10 -0
- package/build/components/GooglePlacesAutocomplete.d.ts +14 -0
- package/build/components/HeaderToolbar.d.ts +21 -0
- package/build/components/HeaderToolbar.js +33 -0
- package/build/components/ImageUpload.d.ts +17 -0
- package/build/components/ImageUpload.js +86 -0
- package/build/components/Key.d.ts +6 -0
- package/build/components/Key.js +28 -0
- package/build/components/Logo.d.ts +19 -0
- package/build/components/Logo.js +10 -0
- package/build/components/Modal.d.ts +52 -0
- package/build/components/Modal.js +126 -0
- package/build/components/Popover/Popover.d.ts +20 -0
- package/build/components/Popover/Popover.js +50 -0
- package/build/components/Popover/Popover.module.css.js +7 -0
- package/build/components/Popover/PopoverList.d.ts +25 -0
- package/build/components/Popover/PopoverList.js +59 -0
- package/build/components/Popover/PopoverScroll.module.css.js +4 -0
- package/build/components/Provider.d.ts +18 -0
- package/build/components/Provider.js +17 -0
- package/build/components/Screens/Login.d.ts +25 -0
- package/build/components/Screens/Login.js +144 -0
- package/build/components/Search.d.ts +16 -0
- package/build/components/Search.js +174 -0
- package/build/components/Sidebar/Sidebar.Account.d.ts +13 -0
- package/build/components/Sidebar/Sidebar.Account.js +56 -0
- package/build/components/Sidebar/Sidebar.Button.d.ts +10 -0
- package/build/components/Sidebar/Sidebar.Button.js +21 -0
- package/build/components/Sidebar/Sidebar.Footer.d.ts +8 -0
- package/build/components/Sidebar/Sidebar.Footer.js +9 -0
- package/build/components/Sidebar/Sidebar.Heading.d.ts +10 -0
- package/build/components/Sidebar/Sidebar.Heading.js +10 -0
- package/build/components/Sidebar/Sidebar.Link.d.ts +24 -0
- package/build/components/Sidebar/Sidebar.Link.js +56 -0
- package/build/components/Sidebar/Sidebar.Menu.d.ts +10 -0
- package/build/components/Sidebar/Sidebar.Menu.js +28 -0
- package/build/components/Sidebar/Sidebar.Menu.module.css.js +7 -0
- package/build/components/Sidebar/Sidebar.d.ts +58 -0
- package/build/components/Sidebar/Sidebar.js +218 -0
- package/build/components/Sidebar/SidebarScroll.module.css.js +4 -0
- package/build/components/Sidebar/index.d.ts +8 -0
- package/build/components/Skeleton.d.ts +13 -0
- package/build/components/Skeleton.js +29 -0
- package/build/components/Skeleton.module.css.js +7 -0
- package/build/components/Spinner.d.ts +26 -0
- package/build/components/Spinner.js +27 -0
- package/build/components/Table.d.ts +59 -0
- package/build/components/Table.js +71 -0
- package/build/components/Tabs/Tabs.Panel.d.ts +9 -0
- package/build/components/Tabs/Tabs.Panel.js +7 -0
- package/build/components/Tabs/Tabs.Tab.d.ts +19 -0
- package/build/components/Tabs/Tabs.Tab.js +37 -0
- package/build/components/Tabs/Tabs.d.ts +27 -0
- package/build/components/Tabs/Tabs.js +28 -0
- package/build/components/Tabs/index.d.ts +4 -0
- package/build/components/Tag.d.ts +25 -0
- package/build/components/Tag.js +36 -0
- package/build/components/Tooltip.d.ts +8 -0
- package/build/components/Tooltip.js +8 -0
- package/build/components/Utilities/Currency.d.ts +32 -0
- package/build/components/Utilities/Currency.js +49 -0
- package/build/components/Utilities/Number.d.ts +8 -0
- package/build/components/Utilities/Number.js +15 -0
- package/build/components/Utilities/Phone.d.ts +8 -0
- package/build/components/Utilities/Phone.js +19 -0
- package/build/helpers/avatar.d.ts +1 -0
- package/build/helpers/avatar.js +8 -0
- package/build/helpers/browser.d.ts +2 -0
- package/build/helpers/browser.js +9 -0
- package/build/helpers/children.d.ts +3 -0
- package/build/helpers/children.js +6 -0
- package/build/helpers/classnames.d.ts +5 -0
- package/build/helpers/currency.d.ts +2 -0
- package/build/helpers/currency.js +11 -0
- package/build/helpers/date.d.ts +12 -0
- package/build/helpers/date.js +44 -0
- package/build/helpers/flash.d.ts +21 -0
- package/build/helpers/flash.js +87 -0
- package/build/helpers/numbers.d.ts +4 -0
- package/build/helpers/numbers.js +23 -0
- package/build/helpers/phone.d.ts +11 -0
- package/build/helpers/phone.js +25 -0
- package/build/hooks/useId.d.ts +1 -0
- package/build/hooks/useId.js +9 -0
- package/build/hooks/useIsClient.d.ts +1 -0
- package/build/hooks/useIsClient.js +10 -0
- package/build/hooks/useViewportHeight.d.ts +1 -0
- package/build/hooks/useViewportHeight.js +15 -0
- package/build/icons/build/AnnounceIcon.js +6 -0
- package/build/icons/build/BellIcon.js +23 -0
- package/build/icons/build/CalendarIcon.js +15 -0
- package/build/icons/build/CheckIcon.js +7 -0
- package/build/icons/build/ChevronDownIcon.js +7 -0
- package/build/icons/build/ChevronLeftIcon.js +7 -0
- package/build/icons/build/ChevronRightIcon.js +7 -0
- package/build/icons/build/CircleNotch.js +5 -0
- package/build/icons/build/CloseIcon.js +7 -0
- package/build/icons/build/DownArrowIcon.js +15 -0
- package/build/icons/build/ImageIcon.js +23 -0
- package/build/icons/build/SearchIcon.js +15 -0
- package/build/icons/build/TrashIcon.js +16 -0
- package/build/icons/build/WarningDiamondIcon.js +23 -0
- package/build/icons/build/helpers/classnames.js +8 -0
- package/build/icons/build/helpers/icon.js +10 -0
- package/build/icons/build/helpers/iconSizes.js +13 -0
- package/build/icons/build/images/XolaLogoSimple.js +13 -0
- package/build/index.d.ts +66 -0
- package/build/index.js +142 -0
- package/build/theme.d.ts +413 -0
- package/build/theme.js +372 -0
- package/build/types/index.d.ts +22 -0
- package/build/types/migration.d.ts +2 -0
- package/build/ui-kit.css +1 -0
- package/build/utils/avatar.d.ts +1 -0
- package/build/utils/avatar.js +8 -0
- package/build/utils/currency.d.ts +2 -0
- package/build/utils/currency.js +11 -0
- package/build/utils/date.d.ts +12 -0
- package/build/utils/date.js +23 -0
- package/build/utils/index.d.ts +5 -0
- package/build/utils/numbers.d.ts +4 -0
- package/build/utils/numbers.js +19 -0
- package/build/utils/phone.d.ts +2 -0
- package/build/utils/phone.js +17 -0
- package/index.css +18 -1
- package/package.json +77 -47
- package/postcss.config.js +1 -1
- package/tailwind.config.js +29 -9
- package/build/style.css +0 -1
- package/build/ui-kit.es.js +0 -12101
- package/index.d.ts +0 -277
package/index.d.ts
DELETED
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
// This is just to make the auto-import work.
|
|
2
|
-
// Next step is to add types for the props.
|
|
3
|
-
export {
|
|
4
|
-
AccountIcon,
|
|
5
|
-
AddNoteIcon,
|
|
6
|
-
AddSquareIcon,
|
|
7
|
-
Alert,
|
|
8
|
-
almostZero,
|
|
9
|
-
AnnounceIcon,
|
|
10
|
-
AppIcon,
|
|
11
|
-
AppStoreBadge,
|
|
12
|
-
ArchiveIcon,
|
|
13
|
-
ArrowCcwIcon,
|
|
14
|
-
ArrowCwIcon,
|
|
15
|
-
ArrowDownIcon,
|
|
16
|
-
ArrowRightIcon,
|
|
17
|
-
ArrowTopRightIcon,
|
|
18
|
-
ArrowUpIcon,
|
|
19
|
-
AtIcon,
|
|
20
|
-
Avatar,
|
|
21
|
-
Badge,
|
|
22
|
-
BalloonIcon,
|
|
23
|
-
BankCheckIcon,
|
|
24
|
-
BarGraphIcon,
|
|
25
|
-
BaseInput,
|
|
26
|
-
BellIcon,
|
|
27
|
-
BookIcon,
|
|
28
|
-
BookmarkIcon,
|
|
29
|
-
BoxIcon,
|
|
30
|
-
BugIcon,
|
|
31
|
-
Breadcrumb,
|
|
32
|
-
Breakdown,
|
|
33
|
-
BriefcaseIcon,
|
|
34
|
-
Button,
|
|
35
|
-
ButtonCodeIcon,
|
|
36
|
-
ButtonGroup,
|
|
37
|
-
CakeIcon,
|
|
38
|
-
CalendarDayIcon,
|
|
39
|
-
CalendarIcon,
|
|
40
|
-
CalendarMonthIcon,
|
|
41
|
-
CalendarWeekIcon,
|
|
42
|
-
CapacityIcon,
|
|
43
|
-
CardAltIcon,
|
|
44
|
-
CardIcon,
|
|
45
|
-
CartIcon,
|
|
46
|
-
CashIcon,
|
|
47
|
-
Checkbox,
|
|
48
|
-
CheckboxIcon,
|
|
49
|
-
CheckIcon,
|
|
50
|
-
ChecklistIcon,
|
|
51
|
-
ChevronDownIcon,
|
|
52
|
-
ChevronLeftIcon,
|
|
53
|
-
ChevronRightIcon,
|
|
54
|
-
ChevronUpIcon,
|
|
55
|
-
ChipIcon,
|
|
56
|
-
CircleCheckIcon,
|
|
57
|
-
CircleCrossIcon,
|
|
58
|
-
CircleCrownIcon,
|
|
59
|
-
CircleDollarIcon,
|
|
60
|
-
CircleDotIcon,
|
|
61
|
-
CircleInfinityIcon,
|
|
62
|
-
CircleInfoIcon,
|
|
63
|
-
CircleKeyIcon,
|
|
64
|
-
CircleNotch,
|
|
65
|
-
CirclePauseIcon,
|
|
66
|
-
CirclePlusIcon,
|
|
67
|
-
CircleSubtractIcon,
|
|
68
|
-
ClipboardIcon,
|
|
69
|
-
ClockAltIcon,
|
|
70
|
-
ClockIcon,
|
|
71
|
-
ClockManualIcon,
|
|
72
|
-
CloseCircleIcon,
|
|
73
|
-
CloseIcon,
|
|
74
|
-
CollapseIcon,
|
|
75
|
-
ComboBox,
|
|
76
|
-
CommentAltIcon,
|
|
77
|
-
CommentIcon,
|
|
78
|
-
compactNumber,
|
|
79
|
-
CompassIcon,
|
|
80
|
-
CopyIcon,
|
|
81
|
-
Counter,
|
|
82
|
-
CouponIcon,
|
|
83
|
-
CrmIcon,
|
|
84
|
-
CrownIcon,
|
|
85
|
-
Currency,
|
|
86
|
-
DashboardIcon,
|
|
87
|
-
dateFromObjectId,
|
|
88
|
-
DatePicker,
|
|
89
|
-
DatePickerPopover,
|
|
90
|
-
DecreaseIcon,
|
|
91
|
-
DepositIcon,
|
|
92
|
-
DisabledIcon,
|
|
93
|
-
DisputeIcon,
|
|
94
|
-
Dot,
|
|
95
|
-
DotProgress,
|
|
96
|
-
DotCircleIcon,
|
|
97
|
-
DoubleCheckIcon,
|
|
98
|
-
DownArrowIcon,
|
|
99
|
-
DownloadIcon,
|
|
100
|
-
Drawer,
|
|
101
|
-
DropdownIcon,
|
|
102
|
-
DumbbellIcon,
|
|
103
|
-
DuplicateIcon,
|
|
104
|
-
DurationIcon,
|
|
105
|
-
EditIcon,
|
|
106
|
-
EditNoteIcon,
|
|
107
|
-
EditNotesIcon,
|
|
108
|
-
EllipsisIcon,
|
|
109
|
-
EmailCheckedIcon,
|
|
110
|
-
EmailIcon,
|
|
111
|
-
EmailResendIcon,
|
|
112
|
-
EmailSendIcon,
|
|
113
|
-
EmptyChecklistIcon,
|
|
114
|
-
EquipmentIcon,
|
|
115
|
-
ExportIcon,
|
|
116
|
-
EyeClosedIcon,
|
|
117
|
-
EyeIcon,
|
|
118
|
-
FaceNeutralIcon,
|
|
119
|
-
FaceSadIcon,
|
|
120
|
-
FaceSmileIcon,
|
|
121
|
-
FadeIn,
|
|
122
|
-
FeedbackLightBulbIcon,
|
|
123
|
-
FilterIcon,
|
|
124
|
-
FilterIconOld,
|
|
125
|
-
FlagIcon,
|
|
126
|
-
flash,
|
|
127
|
-
FlexFee2Icon,
|
|
128
|
-
FlexFeeIcon,
|
|
129
|
-
FoodIcon,
|
|
130
|
-
ForkIcon,
|
|
131
|
-
formatDate,
|
|
132
|
-
formatTime,
|
|
133
|
-
FormGroup,
|
|
134
|
-
FunnelIcon,
|
|
135
|
-
getChildByType,
|
|
136
|
-
getChildrenByType,
|
|
137
|
-
getInitials,
|
|
138
|
-
getSymbol,
|
|
139
|
-
GiftIcon,
|
|
140
|
-
GlobeIcon,
|
|
141
|
-
HandIcon,
|
|
142
|
-
HandshakeIcon,
|
|
143
|
-
HeaderToolbar,
|
|
144
|
-
HelpCenterIcon,
|
|
145
|
-
HiddenIcon,
|
|
146
|
-
HouseIcon,
|
|
147
|
-
ImageIcon,
|
|
148
|
-
ImageUpload,
|
|
149
|
-
InfinityIcon,
|
|
150
|
-
InlineValuePopover,
|
|
151
|
-
Input,
|
|
152
|
-
InvoiceIcon,
|
|
153
|
-
isOSX,
|
|
154
|
-
isZeroDecimal,
|
|
155
|
-
Key,
|
|
156
|
-
KeyIcon,
|
|
157
|
-
KioskIcon,
|
|
158
|
-
Label,
|
|
159
|
-
LabelIcon,
|
|
160
|
-
LandscapeIcon,
|
|
161
|
-
LightIcon,
|
|
162
|
-
LightningIcon,
|
|
163
|
-
LinkIcon,
|
|
164
|
-
LockIcon,
|
|
165
|
-
Login,
|
|
166
|
-
Logo,
|
|
167
|
-
LogoutIcon,
|
|
168
|
-
MagicIcon,
|
|
169
|
-
MedicalIcon,
|
|
170
|
-
MegaphoneIcon,
|
|
171
|
-
MenuIcon,
|
|
172
|
-
MinusIcon,
|
|
173
|
-
MixedChecklistIcon,
|
|
174
|
-
MobileIcon,
|
|
175
|
-
Modal,
|
|
176
|
-
MoneyAddIcon,
|
|
177
|
-
MoneyBackIcon,
|
|
178
|
-
MoneyIcon,
|
|
179
|
-
MountainIcon,
|
|
180
|
-
MouseIcon,
|
|
181
|
-
Number,
|
|
182
|
-
numberFormat,
|
|
183
|
-
PassIcon,
|
|
184
|
-
PauseIcon,
|
|
185
|
-
PenIcon,
|
|
186
|
-
Phone,
|
|
187
|
-
PhoneIcon,
|
|
188
|
-
PhotosIcon,
|
|
189
|
-
PiggyBankIcon,
|
|
190
|
-
PinIcon,
|
|
191
|
-
PipeIcon,
|
|
192
|
-
PlayIcon,
|
|
193
|
-
PlayMarketBadge,
|
|
194
|
-
PlusIcon,
|
|
195
|
-
PolicyIcon,
|
|
196
|
-
Popover,
|
|
197
|
-
PopoverList,
|
|
198
|
-
PrintIcon,
|
|
199
|
-
ProductsIcon,
|
|
200
|
-
Provider,
|
|
201
|
-
QuestionIcon,
|
|
202
|
-
QuestionnaireIcon,
|
|
203
|
-
RangeSlider,
|
|
204
|
-
ReceiptIcon,
|
|
205
|
-
ReceptionBellIcon,
|
|
206
|
-
ReceptionBellMoneyIcon,
|
|
207
|
-
RefreshIcon,
|
|
208
|
-
RefundIcon,
|
|
209
|
-
RelativeDateRange,
|
|
210
|
-
RosterIcon,
|
|
211
|
-
RoundedSquareIcon,
|
|
212
|
-
roundNumber,
|
|
213
|
-
RulerIcon,
|
|
214
|
-
Search,
|
|
215
|
-
SearchAltIcon,
|
|
216
|
-
SearchIcon,
|
|
217
|
-
Select,
|
|
218
|
-
SendIcon,
|
|
219
|
-
SeniorIcon,
|
|
220
|
-
SeniorV2Icon,
|
|
221
|
-
SeniorV3Icon,
|
|
222
|
-
ServiceIcon,
|
|
223
|
-
SettingsIcon,
|
|
224
|
-
ShapesIcon,
|
|
225
|
-
ShareIcon,
|
|
226
|
-
ShirtIcon,
|
|
227
|
-
ShoppingBagIcon,
|
|
228
|
-
Sidebar,
|
|
229
|
-
Skeleton,
|
|
230
|
-
SlideDown,
|
|
231
|
-
Spinner,
|
|
232
|
-
SplitPaymentIcon,
|
|
233
|
-
SquareIcon,
|
|
234
|
-
StackIcon,
|
|
235
|
-
StarFilledIcon,
|
|
236
|
-
StarIcon,
|
|
237
|
-
StoreCreditIcon,
|
|
238
|
-
SubmitButton,
|
|
239
|
-
Switch,
|
|
240
|
-
Table,
|
|
241
|
-
Tabs,
|
|
242
|
-
Tag,
|
|
243
|
-
TaxIcon,
|
|
244
|
-
Textarea,
|
|
245
|
-
theme,
|
|
246
|
-
ThumbsDownIcon,
|
|
247
|
-
ThumbsUpIcon,
|
|
248
|
-
TicketIcon,
|
|
249
|
-
ToggleButton,
|
|
250
|
-
Tooltip,
|
|
251
|
-
TransferArrowIcon,
|
|
252
|
-
TrashIcon,
|
|
253
|
-
TutorialsBadgeIcon,
|
|
254
|
-
TutorialsButtonIcon,
|
|
255
|
-
TutorialsSquareIcon,
|
|
256
|
-
UnlinkIcon,
|
|
257
|
-
useId,
|
|
258
|
-
useIsClient,
|
|
259
|
-
useViewportHeight,
|
|
260
|
-
UserAddIcon,
|
|
261
|
-
UserChangedIcon,
|
|
262
|
-
UserIcon,
|
|
263
|
-
UserSubtractIcon,
|
|
264
|
-
ValuePopoverText,
|
|
265
|
-
VeteranIcon,
|
|
266
|
-
ViewNotesIcon,
|
|
267
|
-
VoucherIcon,
|
|
268
|
-
WaitlistIcon,
|
|
269
|
-
WarningDiamondIcon,
|
|
270
|
-
WarningIcon,
|
|
271
|
-
WarningTriangleIcon,
|
|
272
|
-
WeightIcon,
|
|
273
|
-
WifiIcon,
|
|
274
|
-
WriteIcon,
|
|
275
|
-
XolaBotIcon,
|
|
276
|
-
XrayIcon,
|
|
277
|
-
} from "./build/ui-kit.es";
|