@vuu-ui/vuu-data-types 0.13.113 → 0.13.115-alpha.1
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 +14 -12
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export declare type DataValueType =
|
|
|
134
134
|
|
|
135
135
|
export declare type TimeDataValueTypeSimple = "time";
|
|
136
136
|
export declare type DateTimeDataValueTypeSimple = "date/time";
|
|
137
|
-
export declare type DecimalValueTypeSimple = "decimal";
|
|
137
|
+
export declare type DecimalValueTypeSimple = "decimal" | "scaleddecimal";
|
|
138
138
|
|
|
139
139
|
export declare type DateTimeDataValueType =
|
|
140
140
|
| DateTimeColumnTypeSimple
|
|
@@ -396,9 +396,9 @@ export declare type TableSchemaTable = VuuTable & {
|
|
|
396
396
|
};
|
|
397
397
|
|
|
398
398
|
export declare type TableSchema = {
|
|
399
|
-
columns: SchemaColumn[];
|
|
400
|
-
key: string;
|
|
401
|
-
table: TableSchemaTable;
|
|
399
|
+
columns: readonly SchemaColumn[];
|
|
400
|
+
key: readonly string;
|
|
401
|
+
table: readonly TableSchemaTable;
|
|
402
402
|
};
|
|
403
403
|
|
|
404
404
|
/**
|
|
@@ -817,6 +817,14 @@ export interface VuuUIMessageOutUnsubscribe {
|
|
|
817
817
|
type: "unsubscribe";
|
|
818
818
|
viewport: string;
|
|
819
819
|
}
|
|
820
|
+
|
|
821
|
+
export interface VuuUIMessageOutDisableAllActive {
|
|
822
|
+
type: "disable-all-active";
|
|
823
|
+
}
|
|
824
|
+
export interface VuuUIMessageOutEnableAllActive {
|
|
825
|
+
type: "enable-all-active";
|
|
826
|
+
}
|
|
827
|
+
|
|
820
828
|
export interface VuuUIMessageOutSuspend {
|
|
821
829
|
/**
|
|
822
830
|
* suspend is purely a client-side mechanism to avoid sending
|
|
@@ -833,10 +841,6 @@ export interface VuuUIMessageOutSuspend {
|
|
|
833
841
|
type: "suspend";
|
|
834
842
|
viewport: string;
|
|
835
843
|
}
|
|
836
|
-
export interface VuuUIMessageOutResume {
|
|
837
|
-
type: "resume";
|
|
838
|
-
viewport: string;
|
|
839
|
-
}
|
|
840
844
|
|
|
841
845
|
export interface ViewportMessageOut {
|
|
842
846
|
viewport: string;
|
|
@@ -898,10 +902,6 @@ export interface VuuUIMessageOutSelectNone extends ViewportMessageOut {
|
|
|
898
902
|
type: "selectNone";
|
|
899
903
|
}
|
|
900
904
|
|
|
901
|
-
export interface VuuUIMessageOutSuspend extends ViewportMessageOut {
|
|
902
|
-
type: "suspend";
|
|
903
|
-
}
|
|
904
|
-
|
|
905
905
|
export interface VuuUIMessageOutConfig extends ViewportMessageOut {
|
|
906
906
|
config: WithFullConfig;
|
|
907
907
|
type: "config";
|
|
@@ -926,6 +926,8 @@ export declare type WithRequestId<T> = T & { requestId: string };
|
|
|
926
926
|
export declare type VuuUIMessageOut =
|
|
927
927
|
| VuuUIMessageOutConnect
|
|
928
928
|
| VuuUIMessageOutDisconnect
|
|
929
|
+
| VuuUIMessageOutDisableAllActive
|
|
930
|
+
| VuuUIMessageOutEnableAllActive
|
|
929
931
|
| VuuUIMessageOutSubscribe
|
|
930
932
|
| VuuUIMessageOutUnsubscribe
|
|
931
933
|
| VuuUIMessageOutViewport
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.115-alpha.1",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.13.115-alpha.1",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.13.115-alpha.1"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|