labsense-ui-kit 1.1.32 → 1.1.33
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 +0 -136
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -17
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -17
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -151,22 +151,7 @@ var dark = {
|
|
|
151
151
|
lightBlue: '#ADD8E6'
|
|
152
152
|
}
|
|
153
153
|
};
|
|
154
|
-
var
|
|
155
|
-
if (typeof document !== 'undefined') {
|
|
156
|
-
return document.documentElement.classList.contains('dark') ? dark : light;
|
|
157
|
-
}
|
|
158
|
-
return light;
|
|
159
|
-
};
|
|
160
|
-
var colorVariables = new Proxy({}, {
|
|
161
|
-
get: function get(_, prop) {
|
|
162
|
-
var currentTheme = getCurrentTheme();
|
|
163
|
-
return currentTheme[prop];
|
|
164
|
-
}
|
|
165
|
-
});
|
|
166
|
-
var themes = {
|
|
167
|
-
light: light,
|
|
168
|
-
dark: dark
|
|
169
|
-
};
|
|
154
|
+
var colorVariables = document.documentElement.classList.contains('dark') ? dark : light;
|
|
170
155
|
|
|
171
156
|
var Add = function Add(_ref) {
|
|
172
157
|
var size = _ref.size,
|
|
@@ -6514,5 +6499,5 @@ var InternalTabs = function InternalTabs(_ref) {
|
|
|
6514
6499
|
}));
|
|
6515
6500
|
};
|
|
6516
6501
|
|
|
6517
|
-
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,
|
|
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 };
|
|
6518
6503
|
//# sourceMappingURL=index.modern.js.map
|