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.
@@ -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
  */
@@ -62,6 +62,11 @@ export interface DialogConfirmProps {
62
62
  * @default true;
63
63
  */
64
64
  showIcon?: boolean;
65
+ /**
66
+ * Wether show cancel / close button or not.
67
+ * @default true;
68
+ */
69
+ closable?: boolean;
65
70
  }
66
71
 
67
72
  /**
@@ -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
  /**
@@ -91,6 +91,10 @@ export interface TreeProps {
91
91
  */
92
92
  autoSelectAll?: boolean;
93
93
  selectLastNode?: boolean;
94
+ /**
95
+ * Disable node 'All' selection
96
+ */
97
+ disableNodeAll?: boolean;
94
98
  disableKeys?: number[];
95
99
  exactDisableKey?: number;
96
100
  /**