tsv2-library 1.0.61-alpha.112 → 1.0.61-alpha.114

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tsv2-library",
3
3
  "author": "fixedassetv2-fe",
4
- "version": "1.0.61-alpha.112",
4
+ "version": "1.0.61-alpha.114",
5
5
  "license": "ISC",
6
6
  "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
7
  "repository": {
@@ -80,7 +80,7 @@ export interface MapFocusConfig {
80
80
  }
81
81
 
82
82
  export interface DialogCoordinateProps {
83
- value?: LatLngValue;
83
+ value?: LatLngValue & { _id?: string };
84
84
  center?: [number, number];
85
85
  zoom?: number;
86
86
  mode?: InputMapMode;
@@ -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 {