tsv2-library 1.0.61-alpha.111 → 1.0.61-alpha.113
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/src/components/v2/DialogCoordinate/DialogCoordinate.vue.d.ts +4 -0
- package/dist/src/components/v2/DialogForm/DialogForm.vue.d.ts +6 -0
- package/dist/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +3 -3
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +21 -11
- package/dist/tsv2-library.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/v2/DialogCoordinate/DialogCoordinate.vue.d.ts +4 -0
- package/src/components/v2/DialogForm/DialogForm.vue.d.ts +6 -0
- package/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +3 -3
package/package.json
CHANGED
|
@@ -122,6 +122,12 @@ export interface DialogFormProps extends FormProps {
|
|
|
122
122
|
* The severity will determine the dialog icons and color scheme.
|
|
123
123
|
*/
|
|
124
124
|
severity?: 'success' | 'danger' | 'primary';
|
|
125
|
+
maskClass?: string | string[];
|
|
126
|
+
/**
|
|
127
|
+
* Whether to automatically manage layering.
|
|
128
|
+
* @defaultValue true
|
|
129
|
+
*/
|
|
130
|
+
autoZIndex?: boolean | undefined;
|
|
125
131
|
}
|
|
126
132
|
|
|
127
133
|
export interface ConfirmSlots {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { DefineComponent } from 'vue';
|
|
2
2
|
import { Nullable } from '../ts-helpers';
|
|
3
|
-
import {
|
|
3
|
+
import { CoordinateValue } from '../DialogCoordinate/DialogCoordinate.vue.d';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* InputCoordinate component props
|
|
7
7
|
*/
|
|
8
8
|
export interface InputCoordinateProps {
|
|
9
|
-
modelValue?: Nullable<
|
|
9
|
+
modelValue?: Nullable<CoordinateValue>;
|
|
10
10
|
/**
|
|
11
11
|
* Disabled state for both input fields.
|
|
12
12
|
*/
|
|
@@ -43,7 +43,7 @@ export interface InputCoordinateProps {
|
|
|
43
43
|
* InputCoordinate component emits
|
|
44
44
|
*/
|
|
45
45
|
export type InputCoordinateEmits = {
|
|
46
|
-
'update:modelValue': [payload?: Nullable<
|
|
46
|
+
'update:modelValue': [payload?: Nullable<CoordinateValue>];
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
/**
|