@okaapp/oka-ui-sv 0.2.0 → 0.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.
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
left: 50%;
|
|
19
19
|
top: 50%;
|
|
20
20
|
z-index: 50;
|
|
21
|
-
width:
|
|
21
|
+
width: fit-content;
|
|
22
22
|
max-width: 800px;
|
|
23
23
|
min-width: 480px;
|
|
24
24
|
border-radius: 12px;
|
|
@@ -83,7 +83,9 @@
|
|
|
83
83
|
.dialog-body {
|
|
84
84
|
display: flex;
|
|
85
85
|
flex-direction: column;
|
|
86
|
-
width:
|
|
86
|
+
width: fit-content;
|
|
87
|
+
min-width: 480px;
|
|
88
|
+
max-width: 480px;
|
|
87
89
|
padding: 16px;
|
|
88
90
|
gap: 16px;
|
|
89
91
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as Avatar } from './components/core/avatar/Avatar.svelte';
|
|
|
2
2
|
export { default as Badge } from './components/core/badge/Badge.svelte';
|
|
3
3
|
export { default as Button } from './components/core/button/Button.svelte';
|
|
4
4
|
export { default as Checkbox } from './components/core/checkbox/Checkbox.svelte';
|
|
5
|
+
export { default as Dialog } from './components/core/dialog/Dialog.svelte';
|
|
5
6
|
export { default as Input } from './components/core/input/Input.svelte';
|
|
6
7
|
export { default as Loading } from './components/core/loading/Loading.svelte';
|
|
7
8
|
export { default as Pagination } from './components/core/pagination/Pagination.svelte';
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,7 @@ export { default as Avatar } from './components/core/avatar/Avatar.svelte';
|
|
|
3
3
|
export { default as Badge } from './components/core/badge/Badge.svelte';
|
|
4
4
|
export { default as Button } from './components/core/button/Button.svelte';
|
|
5
5
|
export { default as Checkbox } from './components/core/checkbox/Checkbox.svelte';
|
|
6
|
+
export { default as Dialog } from './components/core/dialog/Dialog.svelte';
|
|
6
7
|
export { default as Input } from './components/core/input/Input.svelte';
|
|
7
8
|
export { default as Loading } from './components/core/loading/Loading.svelte';
|
|
8
9
|
export { default as Pagination } from './components/core/pagination/Pagination.svelte';
|