labsense-ui-kit 1.1.23 → 1.1.24
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/dist/index.d.ts +3 -2
- package/dist/index.js +69 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +69 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -6491,5 +6491,73 @@ var _flattenVariables = function flattenVariables(obj, prefix) {
|
|
|
6491
6491
|
return result;
|
|
6492
6492
|
};
|
|
6493
6493
|
|
|
6494
|
-
|
|
6494
|
+
var colorVariables$1 = {
|
|
6495
|
+
brand: {
|
|
6496
|
+
primary: 'var(--brand-primary)',
|
|
6497
|
+
secondary: 'var(--brand-secondary)',
|
|
6498
|
+
light: 'var(--brand-light)'
|
|
6499
|
+
},
|
|
6500
|
+
accent: {
|
|
6501
|
+
light: 'var(--accent-light)',
|
|
6502
|
+
extraLight: 'var(--accent-extraLight)',
|
|
6503
|
+
softBlue: 'var(--accent-softBlue)',
|
|
6504
|
+
extraSoftBlue: 'var(--accent-extraSoftBlue)',
|
|
6505
|
+
boldTransparent: 'var(--accent-boldTransparent)',
|
|
6506
|
+
transparent: 'var(--accent-transparent)',
|
|
6507
|
+
lightTransparent: 'var(--accent-lightTransparent)'
|
|
6508
|
+
},
|
|
6509
|
+
"default": {
|
|
6510
|
+
primary: 'var(--default-primary)',
|
|
6511
|
+
secondary: 'var(--default-secondary)',
|
|
6512
|
+
tertiary: 'var(--default-tertiary)',
|
|
6513
|
+
error: 'var(--default-error)',
|
|
6514
|
+
success: 'var(--default-success)',
|
|
6515
|
+
warning: 'var(--default-warning)',
|
|
6516
|
+
info: 'var(--default-info)'
|
|
6517
|
+
},
|
|
6518
|
+
disabled: {
|
|
6519
|
+
primary: 'var(--disabled-primary)',
|
|
6520
|
+
secondary: 'var(--disabled-secondary)',
|
|
6521
|
+
error: 'var(--disabled-error)',
|
|
6522
|
+
success: 'var(--disabled-success)',
|
|
6523
|
+
warning: 'var(--disabled-warning)',
|
|
6524
|
+
info: 'var(--disabled-info)'
|
|
6525
|
+
},
|
|
6526
|
+
hover: {
|
|
6527
|
+
primary: 'var(--hover-primary)',
|
|
6528
|
+
secondary: 'var(--hover-secondary)',
|
|
6529
|
+
tertiary: 'var(--hover-tertiary)',
|
|
6530
|
+
error: 'var(--hover-error)',
|
|
6531
|
+
success: 'var(--hover-success)',
|
|
6532
|
+
warning: 'var(--hover-warning)',
|
|
6533
|
+
info: 'var(--hover-info)'
|
|
6534
|
+
},
|
|
6535
|
+
border: {
|
|
6536
|
+
extraBold: 'var(--border-extraBold)',
|
|
6537
|
+
bold: 'var(--border-bold)',
|
|
6538
|
+
medium: 'var(--border-medium)',
|
|
6539
|
+
light: 'var(--border-light)',
|
|
6540
|
+
extraLight: 'var(--border-extraLight)'
|
|
6541
|
+
},
|
|
6542
|
+
text: {
|
|
6543
|
+
dark: 'var(--text-dark)',
|
|
6544
|
+
medium: 'var(--text-medium)',
|
|
6545
|
+
light: 'var(--text-light)',
|
|
6546
|
+
white: 'var(--text-white)',
|
|
6547
|
+
success: 'var(--text-success)',
|
|
6548
|
+
error: 'var(--text-error)',
|
|
6549
|
+
info: 'var(--text-info)',
|
|
6550
|
+
warning: 'var(--text-warning)'
|
|
6551
|
+
},
|
|
6552
|
+
badge: {
|
|
6553
|
+
lavender: 'var(--badge-lavender)',
|
|
6554
|
+
papayaWhip: 'var(--badge-papayaWhip)',
|
|
6555
|
+
water: 'var(--badge-water)',
|
|
6556
|
+
paleBlue: 'var(--badge-paleBlue)',
|
|
6557
|
+
teaGreen: 'var(--badge-teaGreen)',
|
|
6558
|
+
lightBlue: 'var(--badge-lightBlue)'
|
|
6559
|
+
}
|
|
6560
|
+
};
|
|
6561
|
+
|
|
6562
|
+
export { Badge, Breadcrumbs, ButtonComponent as Button, ButtonCarousel, CheckBox, CircularLoader, Container, DatePicker, DropdownMenu$1 as DropdownMenu, Icon, InternalTabs, Loader, MultiSelectDropdown, OptionComponent, Options, Pagination, ProgressBar, SearchBox, SelectOption, SelectedOption, Sidebar, Span, Table, TableCell, TableRow, Tabs, TextArea, TextField, TextFieldWithDropdown, colorVariables$1 as colorVariables, convertEpochToDateString, convertEpochToOnlyDate, convertToEpoch, darkColorVariables, formatCalendarDateTime, formatDate, formatEpochToIST, formatTimestamp, getSystemTimezoneAbbreviation, injectCSSVariables, themes, timeAgo, timeStringToSeconds, useClickOutside, useCustomModal, useNotification };
|
|
6495
6563
|
//# sourceMappingURL=index.modern.js.map
|