@wemake4u/form-player-se 1.0.11 → 1.0.13
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/esm2022/lib/directives/collapse.directive.mjs +14 -7
- package/esm2022/lib/dynamic-fields/dynamic-fields.component.mjs +22 -12
- package/esm2022/lib/dynamic-form/dynamic-form.component.mjs +14 -7
- package/esm2022/lib/locale/locale-de.mjs +29 -0
- package/esm2022/lib/locale/locale-en.mjs +29 -0
- package/esm2022/lib/locale/locale-es.mjs +29 -0
- package/esm2022/lib/locale/locale-fr.mjs +29 -0
- package/esm2022/lib/locale/locale-it.mjs +2 -2
- package/esm2022/lib/locale/locale-pt.mjs +29 -0
- package/esm2022/lib/locale/locale.mjs +18 -0
- package/esm2022/lib/locale/localize.mjs +14 -0
- package/esm2022/lib/services/grid.service.mjs +38 -15
- package/esm2022/lib/utils/groupByRow.mjs +2 -1
- package/esm2022/public-api.mjs +5 -1
- package/fesm2022/wemake4u-form-player-se.mjs +254 -39
- package/fesm2022/wemake4u-form-player-se.mjs.map +1 -1
- package/lib/directives/collapse.directive.d.ts +3 -1
- package/lib/dynamic-fields/dynamic-fields.component.d.ts +176 -3
- package/lib/dynamic-form/dynamic-form.component.d.ts +173 -1
- package/lib/locale/locale-de.d.ts +28 -0
- package/lib/locale/locale-en.d.ts +28 -0
- package/lib/locale/locale-es.d.ts +28 -0
- package/lib/locale/locale-fr.d.ts +28 -0
- package/lib/locale/locale-pt.d.ts +28 -0
- package/lib/locale/locale.d.ts +198 -0
- package/lib/locale/localize.d.ts +1 -0
- package/lib/services/grid.service.d.ts +2 -1
- package/lib/utils/groupByRow.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
export declare const Texts: {
|
|
2
|
+
i18n: {
|
|
3
|
+
it: {
|
|
4
|
+
TypeToSearch: string;
|
|
5
|
+
Upload: string;
|
|
6
|
+
ScrollLeft: string;
|
|
7
|
+
ScrollRight: string;
|
|
8
|
+
AddItem: string;
|
|
9
|
+
RemoveItem: string;
|
|
10
|
+
PreviousSection: string;
|
|
11
|
+
NextSection: string;
|
|
12
|
+
Show: string;
|
|
13
|
+
Remove: string;
|
|
14
|
+
Close: string;
|
|
15
|
+
Name: string;
|
|
16
|
+
Size: string;
|
|
17
|
+
Type: string;
|
|
18
|
+
Actions: string;
|
|
19
|
+
ReadMore: string;
|
|
20
|
+
ReadLess: string;
|
|
21
|
+
SelectAll: string;
|
|
22
|
+
ChooseOne: string;
|
|
23
|
+
True: string;
|
|
24
|
+
False: string;
|
|
25
|
+
Blank: string;
|
|
26
|
+
NotBlank: string;
|
|
27
|
+
Information: string;
|
|
28
|
+
OpenMenu: string;
|
|
29
|
+
CloseMenu: string;
|
|
30
|
+
};
|
|
31
|
+
en: {
|
|
32
|
+
TypeToSearch: string;
|
|
33
|
+
Upload: string;
|
|
34
|
+
ScrollLeft: string;
|
|
35
|
+
ScrollRight: string;
|
|
36
|
+
AddItem: string;
|
|
37
|
+
RemoveItem: string;
|
|
38
|
+
PreviousSection: string;
|
|
39
|
+
NextSection: string;
|
|
40
|
+
Show: string;
|
|
41
|
+
Remove: string;
|
|
42
|
+
Close: string;
|
|
43
|
+
Name: string;
|
|
44
|
+
Size: string;
|
|
45
|
+
Type: string;
|
|
46
|
+
Actions: string;
|
|
47
|
+
ReadMore: string;
|
|
48
|
+
ReadLess: string;
|
|
49
|
+
SelectAll: string;
|
|
50
|
+
ChooseOne: string;
|
|
51
|
+
True: string;
|
|
52
|
+
False: string;
|
|
53
|
+
Blank: string;
|
|
54
|
+
NotBlank: string;
|
|
55
|
+
Information: string;
|
|
56
|
+
OpenMenu: string;
|
|
57
|
+
CloseMenu: string;
|
|
58
|
+
};
|
|
59
|
+
de: {
|
|
60
|
+
TypeToSearch: string;
|
|
61
|
+
Upload: string;
|
|
62
|
+
ScrollLeft: string;
|
|
63
|
+
ScrollRight: string;
|
|
64
|
+
AddItem: string;
|
|
65
|
+
RemoveItem: string;
|
|
66
|
+
PreviousSection: string;
|
|
67
|
+
NextSection: string;
|
|
68
|
+
Show: string;
|
|
69
|
+
Remove: string;
|
|
70
|
+
Close: string;
|
|
71
|
+
Name: string;
|
|
72
|
+
Size: string;
|
|
73
|
+
Type: string;
|
|
74
|
+
Actions: string;
|
|
75
|
+
ReadMore: string;
|
|
76
|
+
ReadLess: string;
|
|
77
|
+
SelectAll: string;
|
|
78
|
+
ChooseOne: string;
|
|
79
|
+
True: string;
|
|
80
|
+
False: string;
|
|
81
|
+
Blank: string;
|
|
82
|
+
NotBlank: string;
|
|
83
|
+
Information: string;
|
|
84
|
+
OpenMenu: string;
|
|
85
|
+
CloseMenu: string;
|
|
86
|
+
};
|
|
87
|
+
fr: {
|
|
88
|
+
TypeToSearch: string;
|
|
89
|
+
Upload: string;
|
|
90
|
+
ScrollLeft: string;
|
|
91
|
+
ScrollRight: string;
|
|
92
|
+
AddItem: string;
|
|
93
|
+
RemoveItem: string;
|
|
94
|
+
PreviousSection: string;
|
|
95
|
+
NextSection: string;
|
|
96
|
+
Show: string;
|
|
97
|
+
Remove: string;
|
|
98
|
+
Close: string;
|
|
99
|
+
Name: string;
|
|
100
|
+
Size: string;
|
|
101
|
+
Type: string;
|
|
102
|
+
Actions: string;
|
|
103
|
+
ReadMore: string;
|
|
104
|
+
ReadLess: string;
|
|
105
|
+
SelectAll: string;
|
|
106
|
+
ChooseOne: string;
|
|
107
|
+
True: string;
|
|
108
|
+
False: string;
|
|
109
|
+
Blank: string;
|
|
110
|
+
NotBlank: string;
|
|
111
|
+
Information: string;
|
|
112
|
+
OpenMenu: string;
|
|
113
|
+
CloseMenu: string;
|
|
114
|
+
};
|
|
115
|
+
es: {
|
|
116
|
+
TypeToSearch: string;
|
|
117
|
+
Upload: string;
|
|
118
|
+
ScrollLeft: string;
|
|
119
|
+
ScrollRight: string;
|
|
120
|
+
AddItem: string;
|
|
121
|
+
RemoveItem: string;
|
|
122
|
+
PreviousSection: string;
|
|
123
|
+
NextSection: string;
|
|
124
|
+
Show: string;
|
|
125
|
+
Remove: string;
|
|
126
|
+
Close: string;
|
|
127
|
+
Name: string;
|
|
128
|
+
Size: string;
|
|
129
|
+
Type: string;
|
|
130
|
+
Actions: string;
|
|
131
|
+
ReadMore: string;
|
|
132
|
+
ReadLess: string;
|
|
133
|
+
SelectAll: string;
|
|
134
|
+
ChooseOne: string;
|
|
135
|
+
True: string;
|
|
136
|
+
False: string;
|
|
137
|
+
Blank: string;
|
|
138
|
+
NotBlank: string;
|
|
139
|
+
Information: string;
|
|
140
|
+
OpenMenu: string;
|
|
141
|
+
CloseMenu: string;
|
|
142
|
+
};
|
|
143
|
+
pt: {
|
|
144
|
+
TypeToSearch: string;
|
|
145
|
+
Upload: string;
|
|
146
|
+
ScrollLeft: string;
|
|
147
|
+
ScrollRight: string;
|
|
148
|
+
AddItem: string;
|
|
149
|
+
RemoveItem: string;
|
|
150
|
+
PreviousSection: string;
|
|
151
|
+
NextSection: string;
|
|
152
|
+
Show: string;
|
|
153
|
+
Remove: string;
|
|
154
|
+
Close: string;
|
|
155
|
+
Name: string;
|
|
156
|
+
Size: string;
|
|
157
|
+
Type: string;
|
|
158
|
+
Actions: string;
|
|
159
|
+
ReadMore: string;
|
|
160
|
+
ReadLess: string;
|
|
161
|
+
SelectAll: string;
|
|
162
|
+
ChooseOne: string;
|
|
163
|
+
True: string;
|
|
164
|
+
False: string;
|
|
165
|
+
Blank: string;
|
|
166
|
+
NotBlank: string;
|
|
167
|
+
Information: string;
|
|
168
|
+
OpenMenu: string;
|
|
169
|
+
CloseMenu: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
TypeToSearch: string;
|
|
173
|
+
Upload: string;
|
|
174
|
+
ScrollLeft: string;
|
|
175
|
+
ScrollRight: string;
|
|
176
|
+
AddItem: string;
|
|
177
|
+
RemoveItem: string;
|
|
178
|
+
PreviousSection: string;
|
|
179
|
+
NextSection: string;
|
|
180
|
+
Show: string;
|
|
181
|
+
Remove: string;
|
|
182
|
+
Close: string;
|
|
183
|
+
Name: string;
|
|
184
|
+
Size: string;
|
|
185
|
+
Type: string;
|
|
186
|
+
Actions: string;
|
|
187
|
+
ReadMore: string;
|
|
188
|
+
ReadLess: string;
|
|
189
|
+
SelectAll: string;
|
|
190
|
+
ChooseOne: string;
|
|
191
|
+
True: string;
|
|
192
|
+
False: string;
|
|
193
|
+
Blank: string;
|
|
194
|
+
NotBlank: string;
|
|
195
|
+
Information: string;
|
|
196
|
+
OpenMenu: string;
|
|
197
|
+
CloseMenu: string;
|
|
198
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function localize(language: string, component: any, key: string): string;
|
|
@@ -8,7 +8,8 @@ export declare class GridService {
|
|
|
8
8
|
private programmability;
|
|
9
9
|
constructor(formatter: FormatterService, programmability: ProgrammabilityService);
|
|
10
10
|
getGridModules(): Module[];
|
|
11
|
-
getGridOptions(component: any, formGroup: FormGroup): GridOptions;
|
|
11
|
+
getGridOptions(component: any, formGroup: FormGroup, language: string): GridOptions;
|
|
12
|
+
private locale;
|
|
12
13
|
private getGridColumns;
|
|
13
14
|
private setCellDataType;
|
|
14
15
|
private setCellRenderer;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from './lib/dynamic-form/dynamic-form.component';
|
|
2
2
|
export * from './lib/utils/toFormData';
|
|
3
|
+
export * from './lib/services/toast.service';
|
|
4
|
+
export * from './lib/services/sanitize.service';
|
|
5
|
+
export * from './lib/services/feel.service';
|
|
6
|
+
export * from './lib/services/markdown.service';
|
|
3
7
|
export * from './lib/services/data.service';
|
|
4
8
|
export * from './lib/services/scope.service';
|