@vuu-ui/vuu-data-types 3.3.2 → 3.3.4
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/index.d.ts +4 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ export interface DataValueDescriptor {
|
|
|
153
153
|
label?: string;
|
|
154
154
|
/** unique name for this data value */
|
|
155
155
|
name: string;
|
|
156
|
+
/** Whether the field is required or can be empty/nullable */
|
|
157
|
+
required?: boolean;
|
|
156
158
|
/** The type defined on server for this data value */
|
|
157
159
|
serverDataType?: VuuColumnDataType;
|
|
158
160
|
/** Type hints for the UI that supplement the serverDataType */
|
|
@@ -703,6 +705,7 @@ export interface DataSourceBase<
|
|
|
703
705
|
freezeTimestamp?: number | undefined;
|
|
704
706
|
select?: (selectRequest: Omit<SelectRequest, "vpId">) => void;
|
|
705
707
|
|
|
708
|
+
isRemote?: boolean;
|
|
706
709
|
status: DataSourceStatus;
|
|
707
710
|
/**
|
|
708
711
|
*
|
|
@@ -1096,4 +1099,4 @@ export interface ServerAPI {
|
|
|
1096
1099
|
callback: PostMessageToClientCallback,
|
|
1097
1100
|
) => void;
|
|
1098
1101
|
unsubscribe: (viewport: string) => void;
|
|
1099
|
-
}
|
|
1102
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.4",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "3.3.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "3.3.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "3.3.4",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "3.3.4"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|