@quidgest/ui 0.16.14 → 0.16.15
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/ui.css +13 -0
- package/dist/ui.esm.js +2572 -2527
- package/dist/ui.js +7 -7
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +202 -200
- package/dist/ui.scss +16 -1
- package/esm/components/QDialog/QDialog.d.ts +3 -1
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +151 -108
- package/esm/components/QDialog/QDialogProvider.d.ts +6 -1
- package/esm/components/QDialog/QDialogProvider.d.ts.map +1 -1
- package/esm/components/QDialog/QDialogProvider.vue.js +22 -14
- package/esm/components/QDialog/index.d.ts +11 -2
- package/esm/components/QDialog/index.d.ts.map +1 -1
- package/esm/components/QDialog/types.d.ts +31 -1
- package/esm/components/QDialog/types.d.ts.map +1 -1
- package/esm/composables/useDialog/index.d.ts +15 -3
- package/esm/composables/useDialog/index.d.ts.map +1 -1
- package/esm/composables/useDialog/index.js +14 -14
- package/esm/composables/useDialog/types.d.ts +6 -3
- package/esm/composables/useDialog/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { QDialogProps } from '../../components/QDialog/types.ts';
|
|
1
|
+
import { QDialogProps, QDialogOptions } from '../../components/QDialog/types.ts';
|
|
2
2
|
/**
|
|
3
3
|
* Represents an instance of a dialog component.
|
|
4
4
|
*/
|
|
5
|
-
type DialogInstance = {
|
|
5
|
+
export type DialogInstance = {
|
|
6
6
|
/**
|
|
7
7
|
* A unique identifier for the dialog instance.
|
|
8
8
|
*/
|
|
@@ -11,6 +11,10 @@ type DialogInstance = {
|
|
|
11
11
|
* The properties applied to the dialog, conforming to `QDialogProps`.
|
|
12
12
|
*/
|
|
13
13
|
props: QDialogProps;
|
|
14
|
+
/**
|
|
15
|
+
* The options applied to the dialog, conforming to `QDialogOptions`.
|
|
16
|
+
*/
|
|
17
|
+
options?: QDialogOptions;
|
|
14
18
|
};
|
|
15
19
|
/**
|
|
16
20
|
* Represents the state for dialog management.
|
|
@@ -21,5 +25,4 @@ export type DialogState = {
|
|
|
21
25
|
*/
|
|
22
26
|
dialogs: DialogInstance[];
|
|
23
27
|
};
|
|
24
|
-
export {};
|
|
25
28
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AAErF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,KAAK,EAAE,YAAY,CAAA;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,cAAc,CAAA;CACxB,CAAA;AAED;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACzB;;OAEG;IACH,OAAO,EAAE,cAAc,EAAE,CAAA;CACzB,CAAA"}
|