@volverjs/ui-vue 0.0.10-beta.36 → 0.0.10-beta.37
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/VvAlertGroup/VvAlertGroup.es.js +6 -6
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.es.js +6 -6
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +6 -6
- package/dist/components/index.es.js +12 -12
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/package.json +1 -1
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAlertGroup/index.ts +6 -6
- package/src/components/VvDialog/index.ts +6 -6
|
@@ -40,14 +40,14 @@ export const VvAlertGroupProps = {
|
|
|
40
40
|
|
|
41
41
|
export const VvAlertGroupEvents = [
|
|
42
42
|
'close',
|
|
43
|
-
'
|
|
44
|
-
'
|
|
43
|
+
'beforeEnter',
|
|
44
|
+
'afterLeave',
|
|
45
45
|
'enter',
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
46
|
+
'afterEnter',
|
|
47
|
+
'enterCancelled',
|
|
48
|
+
'beforeLeave',
|
|
49
49
|
'leave',
|
|
50
|
-
'
|
|
50
|
+
'leaveCancelled',
|
|
51
51
|
]
|
|
52
52
|
|
|
53
53
|
export function useVvAlertGroup(props: Readonly<ExtractPropTypes<typeof VvAlertGroupProps>>, emit: (event: string, ...args: unknown[]) => void) {
|
|
@@ -4,14 +4,14 @@ export const VvDialogEvents = [
|
|
|
4
4
|
'open',
|
|
5
5
|
'close',
|
|
6
6
|
'update:modelValue',
|
|
7
|
-
'
|
|
8
|
-
'
|
|
7
|
+
'beforeEnter',
|
|
8
|
+
'afterLeave',
|
|
9
9
|
'enter',
|
|
10
|
-
'
|
|
11
|
-
'
|
|
12
|
-
'
|
|
10
|
+
'afterEnter',
|
|
11
|
+
'enterCancelled',
|
|
12
|
+
'beforeLeave',
|
|
13
13
|
'leave',
|
|
14
|
-
'
|
|
14
|
+
'leaveCancelled',
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
export const VvDialogProps = {
|