@dao-style/core 1.27.1-beta.1 → 1.27.1-beta.3
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/components/dialog/dialog.d.ts +3 -0
- package/dist/components/dialog/dialog.vue.d.ts +1 -0
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +3237 -3206
- package/dist/uses/index.d.ts +1 -0
- package/dist/uses/useFocusTrap.d.ts +13 -0
- package/dist/utils/assist.d.ts +2 -2
- package/package.json +1 -1
|
@@ -211,6 +211,7 @@ declare const DaoDialog: {
|
|
|
211
211
|
confirm: string;
|
|
212
212
|
cancel: string;
|
|
213
213
|
}>;
|
|
214
|
+
dialogRef: import("vue").Ref<HTMLElement | null>;
|
|
214
215
|
onBeforeEnter: () => void;
|
|
215
216
|
onAfterEnter: () => void;
|
|
216
217
|
onConfirm: () => void;
|
|
@@ -349,6 +350,7 @@ declare const DaoDialog: {
|
|
|
349
350
|
confirm: string;
|
|
350
351
|
cancel: string;
|
|
351
352
|
}>;
|
|
353
|
+
dialogRef: import("vue").Ref<HTMLElement | null>;
|
|
352
354
|
onBeforeEnter: () => void;
|
|
353
355
|
onAfterEnter: () => void;
|
|
354
356
|
onConfirm: () => void;
|
|
@@ -452,6 +454,7 @@ declare const DaoDialog: {
|
|
|
452
454
|
confirm: string;
|
|
453
455
|
cancel: string;
|
|
454
456
|
}>;
|
|
457
|
+
dialogRef: import("vue").Ref<HTMLElement | null>;
|
|
455
458
|
onBeforeEnter: () => void;
|
|
456
459
|
onAfterEnter: () => void;
|
|
457
460
|
onConfirm: () => void;
|