@fewangsit/wangsvue-fats 1.0.1-alpha.46 → 1.0.1-alpha.47
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/config/locale.es.js +45 -3
- package/package.json +1 -1
- package/plugins/WangsVue.d.ts +1 -1
- package/plugins/WangsVue.es.js +1 -0
- package/stats.html +1 -1
- package/wangsvue-fats.esm.browser.js +2134 -2093
- package/wangsvue-fats.system.js +70 -70
package/config/locale.es.js
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { D as e } from "../plugins/WangsVue.es.js";
|
|
2
|
+
const t = {
|
|
3
|
+
global: {
|
|
4
|
+
...e,
|
|
5
|
+
monthNames: [
|
|
6
|
+
"January",
|
|
7
|
+
"February",
|
|
8
|
+
"March",
|
|
9
|
+
"April",
|
|
10
|
+
"May",
|
|
11
|
+
"June",
|
|
12
|
+
"July",
|
|
13
|
+
"August",
|
|
14
|
+
"September",
|
|
15
|
+
"October",
|
|
16
|
+
"November",
|
|
17
|
+
"December"
|
|
18
|
+
],
|
|
19
|
+
monthNamesShort: [
|
|
20
|
+
"Jan",
|
|
21
|
+
"Feb",
|
|
22
|
+
"Mar",
|
|
23
|
+
"Apr",
|
|
24
|
+
"May",
|
|
25
|
+
"Jun",
|
|
26
|
+
"Jul",
|
|
27
|
+
"Aug",
|
|
28
|
+
"Sep",
|
|
29
|
+
"Oct",
|
|
30
|
+
"Nov",
|
|
31
|
+
"Dec"
|
|
32
|
+
],
|
|
33
|
+
dayNames: [
|
|
34
|
+
"Sunday",
|
|
35
|
+
"Monday",
|
|
36
|
+
"Tuesday",
|
|
37
|
+
"Wednesday",
|
|
38
|
+
"Thursday",
|
|
39
|
+
"Friday",
|
|
40
|
+
"Saturday"
|
|
41
|
+
],
|
|
42
|
+
dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
|
43
|
+
dayNamesMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
|
|
44
|
+
},
|
|
3
45
|
components: {
|
|
4
46
|
FieldWrapper: {
|
|
5
47
|
labelRequired: "*"
|
|
@@ -82,5 +124,5 @@ const e = {
|
|
|
82
124
|
}
|
|
83
125
|
};
|
|
84
126
|
export {
|
|
85
|
-
|
|
127
|
+
t as l
|
|
86
128
|
};
|
package/package.json
CHANGED
package/plugins/WangsVue.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ export interface WangsVueInstance {
|
|
|
144
144
|
componentName: ComponentName,
|
|
145
145
|
): WangsVueComponentConfig<ComponentName>;
|
|
146
146
|
}
|
|
147
|
-
declare const DEFAULT_GLOBAL_LOCALE_CONFIG: {
|
|
147
|
+
export declare const DEFAULT_GLOBAL_LOCALE_CONFIG: {
|
|
148
148
|
startsWith: string;
|
|
149
149
|
contains: string;
|
|
150
150
|
notContains: string;
|