@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.
@@ -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;
@@ -6,6 +6,7 @@ interface Form {
6
6
  disabled: string | boolean | null;
7
7
  path: string | null;
8
8
  isTemplate: boolean | null;
9
+ i18n: any;
9
10
  components: Component[];
10
11
  }
11
12
  interface Component {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wemake4u/form-player-se",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^18.2.0",
6
6
  "@angular/common": "^18.2.0",
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';