labsense-ui-kit 1.1.33 → 1.1.34
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/Themes/Colors.d.ts +69 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -151,6 +151,9 @@ var dark = {
|
|
|
151
151
|
lightBlue: '#ADD8E6'
|
|
152
152
|
}
|
|
153
153
|
};
|
|
154
|
+
var getColorVariables = function getColorVariables() {
|
|
155
|
+
return document.documentElement.classList.contains('dark') ? dark : light;
|
|
156
|
+
};
|
|
154
157
|
var colorVariables = document.documentElement.classList.contains('dark') ? dark : light;
|
|
155
158
|
|
|
156
159
|
var Add = function Add(_ref) {
|
|
@@ -6499,5 +6502,5 @@ var InternalTabs = function InternalTabs(_ref) {
|
|
|
6499
6502
|
}));
|
|
6500
6503
|
};
|
|
6501
6504
|
|
|
6502
|
-
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, convertEpochToDateString, convertEpochToOnlyDate, convertToEpoch, formatCalendarDateTime, formatDate, formatEpochToIST, formatTimestamp, getSystemTimezoneAbbreviation, timeAgo, timeStringToSeconds, useClickOutside, useCustomModal, useNotification };
|
|
6505
|
+
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, convertEpochToDateString, convertEpochToOnlyDate, convertToEpoch, formatCalendarDateTime, formatDate, formatEpochToIST, formatTimestamp, getColorVariables, getSystemTimezoneAbbreviation, timeAgo, timeStringToSeconds, useClickOutside, useCustomModal, useNotification };
|
|
6503
6506
|
//# sourceMappingURL=index.modern.js.map
|