@appcorp/stellar-solutions-invoice-module 0.1.27 → 0.1.29
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.
|
@@ -24,12 +24,19 @@ export declare const INVOICE_API_ROUTES: {
|
|
|
24
24
|
export declare const tableBodyCols: ({
|
|
25
25
|
componentType: VISTA_TABLE_CELL_TYPE;
|
|
26
26
|
key: string;
|
|
27
|
+
expression?: undefined;
|
|
27
28
|
} | {
|
|
28
29
|
componentType: VISTA_TABLE_CELL_TYPE;
|
|
29
30
|
key: string[];
|
|
31
|
+
expression?: undefined;
|
|
32
|
+
} | {
|
|
33
|
+
componentType: VISTA_TABLE_CELL_TYPE;
|
|
34
|
+
key: string[];
|
|
35
|
+
expression: (text: string) => string;
|
|
30
36
|
} | {
|
|
31
37
|
componentType: VISTA_TABLE_CELL_TYPE;
|
|
32
38
|
key?: undefined;
|
|
39
|
+
expression?: undefined;
|
|
33
40
|
})[];
|
|
34
41
|
export declare const messages: {
|
|
35
42
|
buyPrice: string;
|
|
@@ -516,6 +516,7 @@ exports.tableBodyCols = [
|
|
|
516
516
|
{
|
|
517
517
|
componentType: vista_table_type_1.VISTA_TABLE_CELL_TYPE.MULTIPLE_TEXT_LINES,
|
|
518
518
|
key: ['date', 'expiryDate'],
|
|
519
|
+
expression: function (text) { return (0, util_functions_1.formatDate)(text, util_functions_1.DATE_FORMATS.LOCALE_DATE); },
|
|
519
520
|
},
|
|
520
521
|
{
|
|
521
522
|
componentType: vista_table_type_1.VISTA_TABLE_CELL_TYPE.TEXT,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/stellar-solutions-invoice-module",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib",
|
|
6
6
|
"build:next": "next build",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@appcorp/app-corp-designs": "^0.4.79",
|
|
22
|
-
"@appcorp/app-corp-vista": "^0.2.
|
|
22
|
+
"@appcorp/app-corp-vista": "^0.2.26",
|
|
23
23
|
"@appcorp/stellar-solutions-company-module": "^0.1.16",
|
|
24
24
|
"@appcorp/stellar-solutions-modules": "^0.1.5",
|
|
25
25
|
"@appcorp/stellar-solutions-product-module": "^0.1.87",
|