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