@situaction/traq-ui-ste 1.2.0 → 1.2.1
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/main.d.ts +1 -0
- package/dist/main.js +9 -7
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -28,4 +28,5 @@ export { SidePanelHeader } from './components/panel/side-panel-header/SidePanelH
|
|
|
28
28
|
export { InputLabel } from './components/input-label/InputLabel';
|
|
29
29
|
export { EditableField } from './components/editable-field/EditableField';
|
|
30
30
|
export { EditableSelect } from './components/editable-select/EditableSelect';
|
|
31
|
+
export { Toast } from './components/toast/Toast';
|
|
31
32
|
export { ThemeProvider, useTheme } from './components/theme/ThemeContext';
|
package/dist/main.js
CHANGED
|
@@ -2,10 +2,10 @@ import { Button as t } from "./components/button/Button.js";
|
|
|
2
2
|
import { ButtonControlledScroll as p } from "./components/buttonControledScroll/ButtonControlledScroll.js";
|
|
3
3
|
import { Input as f } from "./components/input/Input.js";
|
|
4
4
|
import { Tabs as i } from "./components/tabs/Tabs.js";
|
|
5
|
-
import { IconButton as
|
|
5
|
+
import { IconButton as a } from "./components/icon-button/IconButton.js";
|
|
6
6
|
import { Tag as c } from "./components/tag/Tag.js";
|
|
7
7
|
import { Title as u } from "./components/title/Title.js";
|
|
8
|
-
import { TagCounter as
|
|
8
|
+
import { TagCounter as I } from "./components/tag-counter/TagCounter.js";
|
|
9
9
|
import { Checkbox as C } from "./components/checkbox/Checkbox.js";
|
|
10
10
|
import { Tooltip as h } from "./components/tooltip/Tooltip.js";
|
|
11
11
|
import { Select as g } from "./components/select/Select.js";
|
|
@@ -27,7 +27,8 @@ import { SidePanelHeader as $ } from "./components/panel/side-panel-header/SideP
|
|
|
27
27
|
import { InputLabel as ro } from "./components/input-label/InputLabel.js";
|
|
28
28
|
import { EditableField as to } from "./components/editable-field/EditableField.js";
|
|
29
29
|
import { EditableSelect as po } from "./components/editable-select/EditableSelect.js";
|
|
30
|
-
import {
|
|
30
|
+
import { Toast as fo } from "./components/toast/Toast.js";
|
|
31
|
+
import { ThemeProvider as io, useTheme as no } from "./components/theme/ThemeContext.js";
|
|
31
32
|
import './styles/Size.css';/* empty css */
|
|
32
33
|
export {
|
|
33
34
|
A as Accordion,
|
|
@@ -40,7 +41,7 @@ export {
|
|
|
40
41
|
to as EditableField,
|
|
41
42
|
po as EditableSelect,
|
|
42
43
|
w as Icon,
|
|
43
|
-
|
|
44
|
+
a as IconButton,
|
|
44
45
|
f as Input,
|
|
45
46
|
ro as InputLabel,
|
|
46
47
|
O as ListControls,
|
|
@@ -56,9 +57,10 @@ export {
|
|
|
56
57
|
X as Switch,
|
|
57
58
|
i as Tabs,
|
|
58
59
|
c as Tag,
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
I as TagCounter,
|
|
61
|
+
io as ThemeProvider,
|
|
61
62
|
u as Title,
|
|
63
|
+
fo as Toast,
|
|
62
64
|
h as Tooltip,
|
|
63
|
-
|
|
65
|
+
no as useTheme
|
|
64
66
|
};
|