@vuu-ui/vuu-protocol-types 0.13.114 → 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 +16 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -657,8 +657,22 @@ export declare type VuuRpcMenuAction =
|
|
|
657
657
|
| NoAction
|
|
658
658
|
| ShowNotificationAction;
|
|
659
659
|
|
|
660
|
-
|
|
661
|
-
|
|
660
|
+
export declare type StringNumericType =
|
|
661
|
+
| "long"
|
|
662
|
+
| "scaleddecimal2"
|
|
663
|
+
| "scaleddecimal4"
|
|
664
|
+
| "scaleddecimal6"
|
|
665
|
+
| "scaleddecimal8";
|
|
666
|
+
|
|
667
|
+
export declare type VuuColumnDataType =
|
|
668
|
+
| "int"
|
|
669
|
+
| "double"
|
|
670
|
+
| "string"
|
|
671
|
+
| "char"
|
|
672
|
+
| "boolean"
|
|
673
|
+
| "epochtimestamp"
|
|
674
|
+
| StringNumericType;
|
|
675
|
+
|
|
662
676
|
export declare type VuuMenuContext = "cell" | "row" | "grid" | "selected-rows";
|
|
663
677
|
export declare type VuuTable = {
|
|
664
678
|
table: string;
|