tsv2-library 0.3.64 → 0.3.66
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/build-entry.d.ts +1 -0
- package/dist/src/components/v2/ButtonSelectTree/ButtonSelectTree.vue.d.ts +4 -0
- package/dist/src/components/v2/DialogConfirm/DialogConfirm.vue.d.ts +5 -0
- package/dist/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +4 -0
- package/dist/src/components/v2/Tree/Tree.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +19 -9
- package/dist/tsv2-library.umd.js +5 -5
- package/package.json +1 -1
- package/src/assets/locales/en.json +2 -1
- package/src/components/v2/ButtonSelectTree/ButtonSelectTree.vue.d.ts +4 -0
- package/src/components/v2/DialogConfirm/DialogConfirm.vue.d.ts +5 -0
- package/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +4 -0
- package/src/components/v2/Tree/Tree.vue.d.ts +4 -0
|
@@ -2849,6 +2849,7 @@ declare const TSi18n: import("vue-i18n").I18n<{
|
|
|
2849
2849
|
"Your_latest_change_will_not_be_save.": string;
|
|
2850
2850
|
"Your_latest_change_will_not_be_saved.": string;
|
|
2851
2851
|
ZIP_Code: string;
|
|
2852
|
+
"ZIP_Code:_{code}": string;
|
|
2852
2853
|
};
|
|
2853
2854
|
}, {}, {}, string, false>;
|
|
2854
2855
|
declare const _default: {
|
|
@@ -19,6 +19,10 @@ export interface ButtonSelectTreeProps {
|
|
|
19
19
|
keys?: KeysModelValue;
|
|
20
20
|
disableKeys?: number[];
|
|
21
21
|
exactDisableKey?: number;
|
|
22
|
+
/**
|
|
23
|
+
* Disable node 'All' selection
|
|
24
|
+
*/
|
|
25
|
+
disableNodeAll?: boolean;
|
|
22
26
|
/**
|
|
23
27
|
* The selected tree nodes object model value.
|
|
24
28
|
*/
|
|
@@ -31,6 +31,10 @@ export interface SelectTreeDialogProps {
|
|
|
31
31
|
* Choose a property from the item to be displayed on the list.
|
|
32
32
|
*/
|
|
33
33
|
listLabel?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Disable node 'All' selection
|
|
36
|
+
*/
|
|
37
|
+
disableNodeAll?: boolean;
|
|
34
38
|
disableKeys?: number[];
|
|
35
39
|
exactDisableKey?: number;
|
|
36
40
|
/**
|