@vuu-ui/vuu-utils 0.13.47 → 0.13.48
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,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.13.
|
|
2
|
+
"version": "0.13.48",
|
|
3
3
|
"author": "heswell",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"types": "types/index.d.ts",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-data-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-table-types": "0.13.
|
|
9
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
10
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-data-types": "0.13.48",
|
|
8
|
+
"@vuu-ui/vuu-table-types": "0.13.48",
|
|
9
|
+
"@vuu-ui/vuu-filter-types": "0.13.48",
|
|
10
|
+
"@vuu-ui/vuu-protocol-types": "0.13.48"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"@internationalized/date": "^3.0.0",
|
|
14
|
-
"@vuu-ui/vuu-filter-parser": "0.13.
|
|
14
|
+
"@vuu-ui/vuu-filter-parser": "0.13.48",
|
|
15
15
|
"clsx": "^2.0.0",
|
|
16
16
|
"react": "^19.1.0",
|
|
17
17
|
"react-dom": "^19.1.0"
|
|
@@ -40,7 +40,7 @@ export declare const stripFilterFromColumns: (columns: RuntimeColumnDescriptor[]
|
|
|
40
40
|
sorted?: import("@vuu-ui/vuu-table-types").ColumnSort;
|
|
41
41
|
valueFormatter: import("@vuu-ui/vuu-table-types").ValueFormatter;
|
|
42
42
|
width: number;
|
|
43
|
-
aggregate?: import("
|
|
43
|
+
aggregate?: import("@vuu-ui/vuu-protocol-types").VuuAggType;
|
|
44
44
|
allowColumnHeaderMenu?: false;
|
|
45
45
|
colHeaderContentRenderer?: string;
|
|
46
46
|
colHeaderLabelRenderer?: string;
|
|
@@ -54,7 +54,7 @@ export declare const stripFilterFromColumns: (columns: RuntimeColumnDescriptor[]
|
|
|
54
54
|
editable?: boolean;
|
|
55
55
|
editableBulk?: import("@vuu-ui/vuu-data-types").BulkEdit;
|
|
56
56
|
name: string;
|
|
57
|
-
serverDataType?: import("
|
|
57
|
+
serverDataType?: import("@vuu-ui/vuu-protocol-types").VuuColumnDataType;
|
|
58
58
|
type?: import("@vuu-ui/vuu-data-types").DataValueType;
|
|
59
59
|
}[];
|
|
60
60
|
export declare const extractFilterForColumn: (filter: Filter | undefined, columnName: string) => Filter | undefined;
|
|
@@ -4,7 +4,7 @@ export type ValueFormatters = {
|
|
|
4
4
|
};
|
|
5
5
|
export declare const defaultValueFormatter: (value: unknown) => string;
|
|
6
6
|
export declare const numericFormatter: ({ align, type, }: Partial<ColumnDescriptor>) => (value: unknown) => string;
|
|
7
|
-
export declare const getValueFormatter: (column: ColumnDescriptor, serverDataType?: import("
|
|
7
|
+
export declare const getValueFormatter: (column: ColumnDescriptor, serverDataType?: import("@vuu-ui/vuu-protocol-types").VuuColumnDataType | undefined) => ValueFormatter;
|
|
8
8
|
/**
|
|
9
9
|
* Lowercases a string and returns as Lowercase typescript type
|
|
10
10
|
*
|