@gearbox-protocol/permissionless-ui 1.19.0 → 1.20.0
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/cjs/components/dialog/dialog-container.cjs +1 -1
- package/dist/cjs/components/dialog/dialog-modal-container.cjs +1 -0
- package/dist/cjs/components/dialog/dialog-modal.cjs +1 -0
- package/dist/cjs/components/dialog/index.cjs +1 -1
- package/dist/cjs/components/filter/filter-modal.cjs +1 -1
- package/dist/cjs/components/index.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/components/dialog/dialog-container.js +20 -67
- package/dist/esm/components/dialog/dialog-modal-container.js +26 -0
- package/dist/esm/components/dialog/dialog-modal.js +76 -0
- package/dist/esm/components/dialog/index.js +19 -15
- package/dist/esm/components/filter/filter-modal.js +4 -2
- package/dist/esm/components/index.js +426 -422
- package/dist/esm/index.js +559 -555
- package/dist/globals.css +1 -1
- package/dist/types/components/dialog/dialog-container.d.ts +0 -17
- package/dist/types/components/dialog/dialog-modal-container.d.ts +23 -0
- package/dist/types/components/dialog/dialog-modal.d.ts +30 -0
- package/dist/types/components/dialog/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -19,6 +19,8 @@ import "../dialog/dialog-description.js";
|
|
|
19
19
|
import { DialogFooter as W } from "../dialog/dialog-footer.js";
|
|
20
20
|
import { DialogHeader as X } from "../dialog/dialog-header.js";
|
|
21
21
|
import { DialogTitle as Y } from "../dialog/dialog-title.js";
|
|
22
|
+
import "../dialog/dialog-modal.js";
|
|
23
|
+
import "../dialog/dialog-modal-container.js";
|
|
22
24
|
import "../dialog/dialog-overlay.js";
|
|
23
25
|
import "viem";
|
|
24
26
|
import "../input/input.js";
|
|
@@ -28,7 +30,7 @@ import { Tabs as _, TabsList as $, TabsTrigger as ee, TabsContent as re } from "
|
|
|
28
30
|
function m(c, o) {
|
|
29
31
|
return c ? Array.isArray(c) ? c.includes(o) : c.has(o) : !1;
|
|
30
32
|
}
|
|
31
|
-
function
|
|
33
|
+
function Le({
|
|
32
34
|
title: c,
|
|
33
35
|
state: o,
|
|
34
36
|
modalShow: d,
|
|
@@ -184,5 +186,5 @@ function Me({
|
|
|
184
186
|
);
|
|
185
187
|
}
|
|
186
188
|
export {
|
|
187
|
-
|
|
189
|
+
Le as FilterModal
|
|
188
190
|
};
|