@antscorp/antsomi-ui 1.3.5-beta.966 → 1.3.5-beta.967
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/es/components/molecules/AddDynamicContent/components/DisplayFormat/DisplayFormat.d.ts +1 -0
- package/es/components/molecules/DisplayFormat/components/FormatNumber.d.ts +5 -5
- package/es/components/molecules/DisplayFormat/constants.d.ts +5 -5
- package/es/components/molecules/DisplayFormat/constants.js +7 -7
- package/es/components/molecules/DisplayFormat/utils.d.ts +1 -0
- package/es/components/molecules/DisplayFormat/utils.js +1 -0
- package/es/components/template/TemplateListing/Loadable.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,29 +3,29 @@ import { PayloadInfo } from '@antscorp/antsomi-ui/es/types';
|
|
|
3
3
|
declare const groupingOptions: {
|
|
4
4
|
readonly COMMA: {
|
|
5
5
|
readonly index: 0;
|
|
6
|
-
readonly label:
|
|
6
|
+
readonly label: string;
|
|
7
7
|
readonly value: ",";
|
|
8
8
|
};
|
|
9
9
|
readonly DOT: {
|
|
10
10
|
readonly index: 1;
|
|
11
|
-
readonly label:
|
|
11
|
+
readonly label: string;
|
|
12
12
|
readonly value: ".";
|
|
13
13
|
};
|
|
14
14
|
readonly NONE: {
|
|
15
15
|
readonly index: 2;
|
|
16
|
-
readonly label:
|
|
16
|
+
readonly label: string;
|
|
17
17
|
readonly value: "none";
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
declare const decimalOptions: {
|
|
21
21
|
readonly COMMA: {
|
|
22
22
|
readonly index: 0;
|
|
23
|
-
readonly label:
|
|
23
|
+
readonly label: string;
|
|
24
24
|
readonly value: ",";
|
|
25
25
|
};
|
|
26
26
|
readonly DOT: {
|
|
27
27
|
readonly index: 1;
|
|
28
|
-
readonly label:
|
|
28
|
+
readonly label: string;
|
|
29
29
|
readonly value: ".";
|
|
30
30
|
};
|
|
31
31
|
};
|
|
@@ -74,29 +74,29 @@ export declare const ATTRIBUTE_NUMBERIC_FORMAT_OPTION: {
|
|
|
74
74
|
readonly DECIMAL_SEPARATOR: {
|
|
75
75
|
readonly COMMA: {
|
|
76
76
|
readonly index: 0;
|
|
77
|
-
readonly label:
|
|
77
|
+
readonly label: string;
|
|
78
78
|
readonly value: ",";
|
|
79
79
|
};
|
|
80
80
|
readonly DOT: {
|
|
81
81
|
readonly index: 1;
|
|
82
|
-
readonly label:
|
|
82
|
+
readonly label: string;
|
|
83
83
|
readonly value: ".";
|
|
84
84
|
};
|
|
85
85
|
};
|
|
86
86
|
readonly GROUPING_SEPARATOR: {
|
|
87
87
|
readonly COMMA: {
|
|
88
88
|
readonly index: 0;
|
|
89
|
-
readonly label:
|
|
89
|
+
readonly label: string;
|
|
90
90
|
readonly value: ",";
|
|
91
91
|
};
|
|
92
92
|
readonly DOT: {
|
|
93
93
|
readonly index: 1;
|
|
94
|
-
readonly label:
|
|
94
|
+
readonly label: string;
|
|
95
95
|
readonly value: ".";
|
|
96
96
|
};
|
|
97
97
|
readonly NONE: {
|
|
98
98
|
readonly index: 2;
|
|
99
|
-
readonly label:
|
|
99
|
+
readonly label: string;
|
|
100
100
|
readonly value: "none";
|
|
101
101
|
};
|
|
102
102
|
};
|
|
@@ -54,7 +54,7 @@ export const DYNAMIC_CONTENT_TYPE = {
|
|
|
54
54
|
};
|
|
55
55
|
export const DYNAMIC_CONTENT_ATTR_DF_TYPE = [
|
|
56
56
|
{
|
|
57
|
-
label: translate(translations.
|
|
57
|
+
label: translate(translations._TITL_NUMBER),
|
|
58
58
|
value: 'number',
|
|
59
59
|
dataType: 'number',
|
|
60
60
|
},
|
|
@@ -69,7 +69,7 @@ export const DYNAMIC_CONTENT_ATTR_DF_TYPE = [
|
|
|
69
69
|
dataType: 'number',
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
label: translate(translations.
|
|
72
|
+
label: translate(translations._TITL_DATE_TIME_DEFAULT_FORMAT),
|
|
73
73
|
value: 'datetime',
|
|
74
74
|
dataType: 'datetime',
|
|
75
75
|
},
|
|
@@ -122,29 +122,29 @@ export const ATTRIBUTE_NUMBERIC_FORMAT_OPTION = {
|
|
|
122
122
|
DECIMAL_SEPARATOR: {
|
|
123
123
|
COMMA: {
|
|
124
124
|
index: 0,
|
|
125
|
-
label:
|
|
125
|
+
label: translate(translations._PERSONALIZE_PROCESS_CODE_DELIMETER_1),
|
|
126
126
|
value: ',',
|
|
127
127
|
},
|
|
128
128
|
DOT: {
|
|
129
129
|
index: 1,
|
|
130
|
-
label:
|
|
130
|
+
label: translate(translations._PERSONALIZE_PROCESS_CODE_DELIMETER_2),
|
|
131
131
|
value: '.',
|
|
132
132
|
},
|
|
133
133
|
},
|
|
134
134
|
GROUPING_SEPARATOR: {
|
|
135
135
|
COMMA: {
|
|
136
136
|
index: 0,
|
|
137
|
-
label:
|
|
137
|
+
label: translate(translations._PERSONALIZE_PROCESS_CODE_DELIMETER_1),
|
|
138
138
|
value: ',',
|
|
139
139
|
},
|
|
140
140
|
DOT: {
|
|
141
141
|
index: 1,
|
|
142
|
-
label:
|
|
142
|
+
label: translate(translations._PERSONALIZE_PROCESS_CODE_DELIMETER_2),
|
|
143
143
|
value: '.',
|
|
144
144
|
},
|
|
145
145
|
NONE: {
|
|
146
146
|
index: 2,
|
|
147
|
-
label:
|
|
147
|
+
label: translate(translations._TITL_NONE),
|
|
148
148
|
value: 'none',
|
|
149
149
|
},
|
|
150
150
|
},
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import dayjs from 'dayjs';
|
|
2
|
+
import 'dayjs/locale/vi';
|
|
2
3
|
import type { TDatetimeFormatSetting, TNumberFormatSettings } from './components';
|
|
3
4
|
import { LabeledTreeValue, LabeledValue } from '../AddDynamicContent';
|
|
4
5
|
export declare function getStringFormatDateDF(formatSettings: TDatetimeFormatSetting): string;
|