@odigos/ui-kit 0.0.21 → 0.0.22
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/CHANGELOG.md +7 -0
- package/lib/components.js +2 -9
- package/lib/containers.js +344 -99
- package/lib/{index-Dboulcny.js → index-3mlRUlHD.js} +652 -1392
- package/lib/theme/index.d.ts +3 -3
- package/lib/theme.js +0 -6
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.22](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.21...ui-kit-v0.0.22) (2025-04-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* UI crashing ([#80](https://github.com/odigos-io/ui-kit/issues/80)) ([7c02be0](https://github.com/odigos-io/ui-kit/commit/7c02be0bf8dda2cacb24d49f78fd3cc8fb90c545))
|
|
9
|
+
|
|
3
10
|
## [0.0.21](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.20...ui-kit-v0.0.21) (2025-04-02)
|
|
4
11
|
|
|
5
12
|
|
package/lib/components.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as Button } from './index-
|
|
2
|
-
export { A as AutocompleteInput, a as Badge, C as CancelWarning, a1 as CenterThis, b as Checkbox, c as Code, d as ConditionDetails, D as DataCard, f as DataCardFieldTypes, e as DataCardFields, g as DataTab, h as DeleteWarning, i as Divider, j as DocsButton, k as Drawer, m as DrawerFooter, l as DrawerHeader, n as Dropdown, E as ExtendArrow, F as FadeLoader, o as FieldError, p as FieldLabel, a0 as FlexColumn, $ as FlexRow, H as Header, I as IconButton, q as IconGroup, r as IconTitleBadge, s as IconWrapped, t as IconsNav, u as ImageControlled, v as Input, w as InputList, x as InputTable, y as InteractiveTable, K as KeyValueInputsList, M as Modal, a3 as ModalBody, z as MonitorsCheckboxes, G as MonitorsIcons, N as NavigationButtons, J as NoDataFound, L as NotificationNote, a2 as Overlay, S as ScrollX, O as SectionTitle, P as Segment, Q as SkeletonLoader, R as Status, U as Stepper, a4 as TableContainer, a5 as TableTitleWrap, a6 as TableWrap, V as Text, W as TextArea, X as Toggle, T as ToggleCodeComponent, Y as Tooltip, Z as TraceLoader, _ as WarningModal } from './index-
|
|
1
|
+
import { B as Button } from './index-3mlRUlHD.js';
|
|
2
|
+
export { A as AutocompleteInput, a as Badge, C as CancelWarning, a1 as CenterThis, b as Checkbox, c as Code, d as ConditionDetails, D as DataCard, f as DataCardFieldTypes, e as DataCardFields, g as DataTab, h as DeleteWarning, i as Divider, j as DocsButton, k as Drawer, m as DrawerFooter, l as DrawerHeader, n as Dropdown, E as ExtendArrow, F as FadeLoader, o as FieldError, p as FieldLabel, a0 as FlexColumn, $ as FlexRow, H as Header, I as IconButton, q as IconGroup, r as IconTitleBadge, s as IconWrapped, t as IconsNav, u as ImageControlled, v as Input, w as InputList, x as InputTable, y as InteractiveTable, K as KeyValueInputsList, M as Modal, a3 as ModalBody, z as MonitorsCheckboxes, G as MonitorsIcons, N as NavigationButtons, J as NoDataFound, L as NotificationNote, a2 as Overlay, S as ScrollX, O as SectionTitle, P as Segment, Q as SkeletonLoader, R as Status, U as Stepper, a4 as TableContainer, a5 as TableTitleWrap, a6 as TableWrap, V as Text, W as TextArea, X as Toggle, T as ToggleCodeComponent, Y as Tooltip, Z as TraceLoader, _ as WarningModal } from './index-3mlRUlHD.js';
|
|
3
3
|
import React, { Component, createElement, createContext } from 'react';
|
|
4
4
|
import Theme from './theme.js';
|
|
5
5
|
import './types.js';
|
|
@@ -14,13 +14,6 @@ import './index-D3sp5Hx7.js';
|
|
|
14
14
|
import './index-C7Y1tYdc.js';
|
|
15
15
|
import './useTransition-D0ykOLrk.js';
|
|
16
16
|
import 'react-dom';
|
|
17
|
-
import 'babel-runtime/helpers/extends';
|
|
18
|
-
import 'babel-runtime/core-js/object/get-prototype-of';
|
|
19
|
-
import 'babel-runtime/helpers/classCallCheck';
|
|
20
|
-
import 'babel-runtime/helpers/createClass';
|
|
21
|
-
import 'babel-runtime/helpers/possibleConstructorReturn';
|
|
22
|
-
import 'babel-runtime/helpers/inherits';
|
|
23
|
-
import 'object-assign';
|
|
24
17
|
|
|
25
18
|
const ErrorBoundaryContext = createContext(null);
|
|
26
19
|
|