@coorpacademy/components 11.34.2 → 11.34.3-alpha.1
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/organism/skill-edition/index.d.ts +1065 -1383
- package/es/organism/skill-edition/index.d.ts.map +1 -1
- package/es/organism/skill-edition/index.js +109 -2
- package/es/organism/skill-edition/index.js.map +1 -1
- package/es/organism/skill-edition/types.d.ts +87 -370
- package/es/organism/skill-edition/types.d.ts.map +1 -1
- package/es/organism/skill-edition/types.js +39 -4
- package/es/organism/skill-edition/types.js.map +1 -1
- package/es/template/back-office/brand-update/index.d.ts +47 -366
- package/lib/organism/skill-edition/index.d.ts +1065 -1383
- package/lib/organism/skill-edition/index.d.ts.map +1 -1
- package/lib/organism/skill-edition/index.js +109 -2
- package/lib/organism/skill-edition/index.js.map +1 -1
- package/lib/organism/skill-edition/types.d.ts +87 -370
- package/lib/organism/skill-edition/types.d.ts.map +1 -1
- package/lib/organism/skill-edition/types.js +39 -4
- package/lib/organism/skill-edition/types.js.map +1 -1
- package/lib/template/back-office/brand-update/index.d.ts +47 -366
- package/locales/.mtslconfig.json +1 -0
- package/package.json +2 -2
|
@@ -1,121 +1,33 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
|
-
import BrandFormGroup from '../../molecule/brand-form-group';
|
|
3
2
|
import ListItems from '../list-items';
|
|
4
3
|
import Title from '../../atom/title';
|
|
5
|
-
import
|
|
4
|
+
import InputText from '../../atom/input-text';
|
|
5
|
+
import InputTextarea from '../../atom/input-textarea';
|
|
6
|
+
import IconPreview from '../../molecule/icon-preview';
|
|
7
|
+
import { SelectOptionPropTypes } from '../../atom/select';
|
|
6
8
|
declare const SkillEditionPropTypes: {
|
|
7
9
|
skillInformations: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
8
10
|
form: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
9
11
|
title: PropTypes.Requireable<string>;
|
|
10
12
|
subtitle: PropTypes.Requireable<string>;
|
|
11
|
-
|
|
12
|
-
subtitleSize: PropTypes.Requireable<string>;
|
|
13
|
-
fieldsLayout: PropTypes.Requireable<string>;
|
|
14
|
-
groupLayout: PropTypes.Requireable<string>;
|
|
15
|
-
fields: PropTypes.Requireable<((PropTypes.InferPropsInner<Pick<any, never>> & Partial<PropTypes.InferPropsInner<Pick<any, string | number | symbol>>>) | null | undefined)[]>;
|
|
16
|
-
}>>>;
|
|
17
|
-
iconEditor: PropTypes.Requireable<PropTypes.InferProps<{
|
|
18
|
-
title: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
13
|
+
select: PropTypes.Requireable<PropTypes.InferProps<{
|
|
19
14
|
title: PropTypes.Requireable<string>;
|
|
20
15
|
subtitle: PropTypes.Requireable<string>;
|
|
21
|
-
type: PropTypes.Requireable<string>;
|
|
22
16
|
'data-name': PropTypes.Requireable<string>;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
customStyle: PropTypes.Requireable<{
|
|
31
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
|
|
34
|
-
}>>;
|
|
35
|
-
button: PropTypes.Requireable<PropTypes.InferProps<{
|
|
36
|
-
type: PropTypes.Requireable<string>;
|
|
37
|
-
usage: PropTypes.Requireable<string>;
|
|
38
|
-
label: PropTypes.Requireable<string>;
|
|
39
|
-
content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
17
|
+
field: PropTypes.Requireable<PropTypes.InferProps<{
|
|
18
|
+
options: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
19
|
+
name: PropTypes.Validator<string>;
|
|
20
|
+
value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
21
|
+
selected: PropTypes.Requireable<boolean>;
|
|
22
|
+
validOption: PropTypes.Requireable<boolean>;
|
|
23
|
+
}> | null | undefined)[]>;
|
|
40
24
|
'aria-label': PropTypes.Requireable<string>;
|
|
41
|
-
|
|
42
|
-
tooltipPlacement: PropTypes.Requireable<string>;
|
|
43
|
-
'data-name': PropTypes.Requireable<string>;
|
|
44
|
-
'data-testid': PropTypes.Requireable<string>;
|
|
45
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
46
|
-
position: PropTypes.Requireable<string>;
|
|
47
|
-
type: PropTypes.Requireable<string>;
|
|
48
|
-
faIcon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
49
|
-
name: PropTypes.Validator<string>;
|
|
50
|
-
color: PropTypes.Requireable<string>;
|
|
51
|
-
backgroundColor: PropTypes.Requireable<string>;
|
|
52
|
-
size: PropTypes.Requireable<number>;
|
|
53
|
-
customStyle: PropTypes.Requireable<{
|
|
54
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
55
|
-
}>;
|
|
56
|
-
}>>;
|
|
57
|
-
}>>;
|
|
58
|
-
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
59
|
-
link: PropTypes.Requireable<PropTypes.InferProps<{
|
|
60
|
-
href: PropTypes.Requireable<string>;
|
|
61
|
-
download: PropTypes.Requireable<boolean>;
|
|
62
|
-
target: PropTypes.Requireable<string>;
|
|
63
|
-
}>>;
|
|
64
|
-
hoverBackgroundColor: PropTypes.Requireable<string>;
|
|
65
|
-
hoverColor: PropTypes.Requireable<string>;
|
|
66
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
67
|
-
className: PropTypes.Requireable<string>;
|
|
68
|
-
customStyle: PropTypes.Requireable<{
|
|
69
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
70
|
-
}>;
|
|
25
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
71
26
|
}>>;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
field: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
|
|
75
|
-
title: PropTypes.Requireable<string>;
|
|
76
|
-
placeholder: PropTypes.Requireable<string>;
|
|
77
|
-
description: PropTypes.Requireable<string>;
|
|
78
|
-
hint: PropTypes.Requireable<string>;
|
|
79
|
-
options: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
|
|
80
|
-
selected: PropTypes.Validator<boolean>;
|
|
81
|
-
name: PropTypes.Validator<string>;
|
|
82
|
-
value: PropTypes.Requireable<string>;
|
|
83
|
-
}>>[]>;
|
|
84
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
85
|
-
onError: PropTypes.Requireable<(...args: any[]) => any>;
|
|
86
|
-
multiple: PropTypes.Requireable<boolean>;
|
|
87
|
-
modified: PropTypes.Requireable<boolean>;
|
|
88
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
89
|
-
error: PropTypes.Requireable<string>;
|
|
90
|
-
theme: PropTypes.Requireable<string>;
|
|
91
|
-
}> | PropTypes.InferProps<{
|
|
27
|
+
}>>;
|
|
28
|
+
inputText: PropTypes.Requireable<PropTypes.InferProps<{
|
|
92
29
|
title: PropTypes.Requireable<string>;
|
|
93
|
-
|
|
94
|
-
value: PropTypes.Requireable<string>;
|
|
95
|
-
description: PropTypes.Requireable<string>;
|
|
96
|
-
required: PropTypes.Requireable<boolean>;
|
|
97
|
-
modified: PropTypes.Requireable<boolean>;
|
|
98
|
-
error: PropTypes.Requireable<boolean>;
|
|
99
|
-
errorMessage: PropTypes.Requireable<string>;
|
|
100
|
-
suggestions: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
101
|
-
name: PropTypes.Requireable<string>;
|
|
102
|
-
value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
103
|
-
}> | null | undefined)[]>;
|
|
104
|
-
theme: PropTypes.Requireable<string>;
|
|
105
|
-
onInput: PropTypes.Requireable<(...args: any[]) => any>;
|
|
106
|
-
onFetch: PropTypes.Requireable<(...args: any[]) => any>;
|
|
107
|
-
onClear: PropTypes.Requireable<(...args: any[]) => any>;
|
|
108
|
-
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
109
|
-
onSuggestionSelected: PropTypes.Requireable<(...args: any[]) => any>;
|
|
110
|
-
}> | PropTypes.InferProps<{
|
|
111
|
-
iconPreview: PropTypes.Requireable<PropTypes.InferProps<{
|
|
112
|
-
title: PropTypes.Requireable<string>;
|
|
113
|
-
icon: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
114
|
-
name: PropTypes.Validator<string>;
|
|
115
|
-
color: PropTypes.Requireable<string>;
|
|
116
|
-
}>>>;
|
|
117
|
-
}>>;
|
|
118
|
-
inputText: PropTypes.Requireable<PropTypes.InferProps<{
|
|
30
|
+
field: PropTypes.Requireable<PropTypes.InferProps<{
|
|
119
31
|
autoFocus: PropTypes.Requireable<boolean>;
|
|
120
32
|
title: PropTypes.Requireable<string>;
|
|
121
33
|
placeholder: PropTypes.Requireable<string>;
|
|
@@ -134,45 +46,35 @@ declare const SkillEditionPropTypes: {
|
|
|
134
46
|
'data-name': PropTypes.Requireable<string>;
|
|
135
47
|
inputColor: PropTypes.Requireable<boolean>;
|
|
136
48
|
}>>;
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
'data-name': PropTypes.Requireable<string>;
|
|
146
|
-
'data-testid': PropTypes.Requireable<string>;
|
|
147
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
148
|
-
position: PropTypes.Requireable<string>;
|
|
149
|
-
type: PropTypes.Requireable<string>;
|
|
150
|
-
faIcon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
151
|
-
name: PropTypes.Validator<string>;
|
|
152
|
-
color: PropTypes.Requireable<string>;
|
|
153
|
-
backgroundColor: PropTypes.Requireable<string>;
|
|
154
|
-
size: PropTypes.Requireable<number>;
|
|
155
|
-
customStyle: PropTypes.Requireable<{
|
|
156
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
157
|
-
}>;
|
|
158
|
-
}>>;
|
|
159
|
-
}>>;
|
|
160
|
-
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
161
|
-
link: PropTypes.Requireable<PropTypes.InferProps<{
|
|
162
|
-
href: PropTypes.Requireable<string>;
|
|
163
|
-
download: PropTypes.Requireable<boolean>;
|
|
164
|
-
target: PropTypes.Requireable<string>;
|
|
165
|
-
}>>;
|
|
166
|
-
hoverBackgroundColor: PropTypes.Requireable<string>;
|
|
167
|
-
hoverColor: PropTypes.Requireable<string>;
|
|
49
|
+
}>>;
|
|
50
|
+
inputTextArea: PropTypes.Requireable<PropTypes.InferProps<{
|
|
51
|
+
title: PropTypes.Requireable<string>;
|
|
52
|
+
field: PropTypes.Requireable<PropTypes.InferProps<{
|
|
53
|
+
placeholder: PropTypes.Requireable<string>;
|
|
54
|
+
title: PropTypes.Requireable<string>;
|
|
55
|
+
name: PropTypes.Requireable<string>;
|
|
56
|
+
theme: PropTypes.Requireable<string>;
|
|
168
57
|
disabled: PropTypes.Requireable<boolean>;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
58
|
+
value: PropTypes.Requireable<string>;
|
|
59
|
+
hint: PropTypes.Requireable<string>;
|
|
60
|
+
error: PropTypes.Requireable<string>;
|
|
61
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
62
|
+
description: PropTypes.Requireable<string>;
|
|
63
|
+
modified: PropTypes.Requireable<boolean>;
|
|
64
|
+
valid: PropTypes.Requireable<boolean>;
|
|
173
65
|
}>>;
|
|
174
|
-
}
|
|
175
|
-
|
|
66
|
+
}>>;
|
|
67
|
+
}>>>;
|
|
68
|
+
iconEditor: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
69
|
+
title: PropTypes.Requireable<string>;
|
|
70
|
+
iconPreview: PropTypes.Requireable<PropTypes.InferProps<{
|
|
71
|
+
title: PropTypes.Requireable<string>;
|
|
72
|
+
icon: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
73
|
+
name: PropTypes.Validator<string>;
|
|
74
|
+
color: PropTypes.Requireable<string>;
|
|
75
|
+
}>>>;
|
|
76
|
+
}>>;
|
|
77
|
+
inputText: PropTypes.Requireable<PropTypes.InferProps<{
|
|
176
78
|
autoFocus: PropTypes.Requireable<boolean>;
|
|
177
79
|
title: PropTypes.Requireable<string>;
|
|
178
80
|
placeholder: PropTypes.Requireable<string>;
|
|
@@ -190,233 +92,14 @@ declare const SkillEditionPropTypes: {
|
|
|
190
92
|
'aria-label': PropTypes.Requireable<string>;
|
|
191
93
|
'data-name': PropTypes.Requireable<string>;
|
|
192
94
|
inputColor: PropTypes.Requireable<boolean>;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
name: PropTypes.Requireable<string>;
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
hint: PropTypes.Requireable<string>;
|
|
202
|
-
error: PropTypes.Requireable<string>;
|
|
203
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
204
|
-
description: PropTypes.Requireable<string>;
|
|
205
|
-
modified: PropTypes.Requireable<boolean>;
|
|
206
|
-
valid: PropTypes.Requireable<boolean>;
|
|
207
|
-
}> | PropTypes.InferProps<{
|
|
208
|
-
size: PropTypes.Requireable<string>;
|
|
209
|
-
title: PropTypes.Requireable<string>;
|
|
210
|
-
name: PropTypes.Requireable<string>;
|
|
211
|
-
className: PropTypes.Requireable<string>;
|
|
212
|
-
borderClassName: PropTypes.Requireable<string>;
|
|
213
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
214
|
-
multiple: PropTypes.Requireable<boolean>;
|
|
215
|
-
description: PropTypes.Requireable<string>;
|
|
216
|
-
required: PropTypes.Requireable<boolean>;
|
|
217
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
218
|
-
theme: PropTypes.Requireable<string>;
|
|
219
|
-
options: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
220
|
-
name: PropTypes.Validator<string>;
|
|
221
|
-
value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
222
|
-
selected: PropTypes.Requireable<boolean>;
|
|
223
|
-
validOption: PropTypes.Requireable<boolean>;
|
|
224
|
-
}> | null | undefined)[]>;
|
|
225
|
-
optgroups: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
226
|
-
label: PropTypes.Validator<string>;
|
|
227
|
-
options: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
228
|
-
name: PropTypes.Validator<string>;
|
|
229
|
-
value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
230
|
-
selected: PropTypes.Requireable<boolean>;
|
|
231
|
-
validOption: PropTypes.Requireable<boolean>;
|
|
232
|
-
}> | null | undefined)[]>;
|
|
233
|
-
}> | null | undefined)[]>;
|
|
234
|
-
modified: PropTypes.Requireable<boolean>;
|
|
235
|
-
error: PropTypes.Requireable<boolean>;
|
|
236
|
-
'aria-label': PropTypes.Requireable<string>;
|
|
237
|
-
'aria-labelledby': PropTypes.Requireable<string>;
|
|
238
|
-
}> | PropTypes.InferProps<{
|
|
239
|
-
items: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
240
|
-
checkboxWithTitle: PropTypes.Requireable<PropTypes.InferProps<{
|
|
241
|
-
title: PropTypes.Requireable<string>;
|
|
242
|
-
name: PropTypes.Requireable<string>;
|
|
243
|
-
checked: PropTypes.Requireable<boolean>;
|
|
244
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
245
|
-
'aria-label': PropTypes.Requireable<string>;
|
|
246
|
-
'data-name': PropTypes.Requireable<string>;
|
|
247
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
248
|
-
iconName: PropTypes.Requireable<string>;
|
|
249
|
-
iconColor: PropTypes.Requireable<string>;
|
|
250
|
-
preset: PropTypes.Requireable<string>;
|
|
251
|
-
}>>;
|
|
252
|
-
customStyle: PropTypes.Requireable<{
|
|
253
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
254
|
-
}>;
|
|
255
|
-
}>>;
|
|
256
|
-
sectionTitle: PropTypes.Requireable<PropTypes.InferProps<{
|
|
257
|
-
removeMargin: PropTypes.Requireable<boolean>;
|
|
258
|
-
title: PropTypes.Requireable<string>;
|
|
259
|
-
subtitle: PropTypes.Requireable<string>;
|
|
260
|
-
type: PropTypes.Requireable<string>;
|
|
261
|
-
'data-name': PropTypes.Requireable<string>;
|
|
262
|
-
titleSize: PropTypes.Requireable<string>;
|
|
263
|
-
subtitleSize: PropTypes.Requireable<string>;
|
|
264
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
|
|
265
|
-
tag: PropTypes.Requireable<PropTypes.InferProps<{
|
|
266
|
-
label: PropTypes.Requireable<string>;
|
|
267
|
-
type: PropTypes.Requireable<string>;
|
|
268
|
-
size: PropTypes.Requireable<string>;
|
|
269
|
-
customStyle: PropTypes.Requireable<{
|
|
270
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
271
|
-
}>;
|
|
272
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
|
|
273
|
-
}>>;
|
|
274
|
-
button: PropTypes.Requireable<PropTypes.InferProps<{
|
|
275
|
-
type: PropTypes.Requireable<string>;
|
|
276
|
-
usage: PropTypes.Requireable<string>;
|
|
277
|
-
label: PropTypes.Requireable<string>;
|
|
278
|
-
content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
279
|
-
'aria-label': PropTypes.Requireable<string>;
|
|
280
|
-
tooltipText: PropTypes.Requireable<string>;
|
|
281
|
-
tooltipPlacement: PropTypes.Requireable<string>;
|
|
282
|
-
'data-name': PropTypes.Requireable<string>;
|
|
283
|
-
'data-testid': PropTypes.Requireable<string>;
|
|
284
|
-
icon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
285
|
-
position: PropTypes.Requireable<string>;
|
|
286
|
-
type: PropTypes.Requireable<string>;
|
|
287
|
-
faIcon: PropTypes.Requireable<PropTypes.InferProps<{
|
|
288
|
-
name: PropTypes.Validator<string>;
|
|
289
|
-
color: PropTypes.Requireable<string>;
|
|
290
|
-
backgroundColor: PropTypes.Requireable<string>;
|
|
291
|
-
size: PropTypes.Requireable<number>;
|
|
292
|
-
customStyle: PropTypes.Requireable<{
|
|
293
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
294
|
-
}>;
|
|
295
|
-
}>>;
|
|
296
|
-
}>>;
|
|
297
|
-
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
298
|
-
link: PropTypes.Requireable<PropTypes.InferProps<{
|
|
299
|
-
href: PropTypes.Requireable<string>;
|
|
300
|
-
download: PropTypes.Requireable<boolean>;
|
|
301
|
-
target: PropTypes.Requireable<string>;
|
|
302
|
-
}>>;
|
|
303
|
-
hoverBackgroundColor: PropTypes.Requireable<string>;
|
|
304
|
-
hoverColor: PropTypes.Requireable<string>;
|
|
305
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
306
|
-
className: PropTypes.Requireable<string>;
|
|
307
|
-
customStyle: PropTypes.Requireable<{
|
|
308
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
309
|
-
}>;
|
|
310
|
-
}>>;
|
|
311
|
-
required: PropTypes.Requireable<boolean>;
|
|
312
|
-
}>>;
|
|
313
|
-
child: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
|
|
314
|
-
childType: PropTypes.Requireable<string>;
|
|
315
|
-
inputText: PropTypes.Requireable<PropTypes.InferProps<{
|
|
316
|
-
theme: PropTypes.Requireable<string>;
|
|
317
|
-
size: PropTypes.Requireable<string>;
|
|
318
|
-
autoFocus: PropTypes.Requireable<boolean>;
|
|
319
|
-
title: PropTypes.Requireable<string>;
|
|
320
|
-
placeholder: PropTypes.Requireable<string>;
|
|
321
|
-
defaultValue: PropTypes.Requireable<string>;
|
|
322
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
323
|
-
value: PropTypes.Requireable<string>;
|
|
324
|
-
hint: PropTypes.Requireable<string>;
|
|
325
|
-
error: PropTypes.Requireable<string>;
|
|
326
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
327
|
-
description: PropTypes.Requireable<string>;
|
|
328
|
-
modified: PropTypes.Requireable<boolean>;
|
|
329
|
-
type: PropTypes.Requireable<string>;
|
|
330
|
-
valid: PropTypes.Requireable<boolean>;
|
|
331
|
-
'aria-label': PropTypes.Requireable<string>;
|
|
332
|
-
'data-name': PropTypes.Requireable<string>;
|
|
333
|
-
inputColor: PropTypes.Requireable<boolean>;
|
|
334
|
-
}>>;
|
|
335
|
-
title: PropTypes.Requireable<string>;
|
|
336
|
-
'aria-label': PropTypes.Requireable<string>;
|
|
337
|
-
'data-name': PropTypes.Requireable<string>;
|
|
338
|
-
}> | PropTypes.InferProps<{
|
|
339
|
-
childType: PropTypes.Requireable<string>;
|
|
340
|
-
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
341
|
-
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
342
|
-
name: PropTypes.Requireable<string>;
|
|
343
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
344
|
-
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
345
|
-
filesTypes: (props: any, propName: any, componentName: any) => Error | null;
|
|
346
|
-
error: PropTypes.Requireable<string>;
|
|
347
|
-
buttonAriaLabel: PropTypes.Requireable<string>;
|
|
348
|
-
errorButtonLabel: PropTypes.Requireable<string>;
|
|
349
|
-
labelLink: PropTypes.Requireable<string>;
|
|
350
|
-
hrefLink: PropTypes.Requireable<string>;
|
|
351
|
-
title: PropTypes.Requireable<string>;
|
|
352
|
-
description: PropTypes.Requireable<string>;
|
|
353
|
-
uploadLabel: PropTypes.Requireable<string>;
|
|
354
|
-
previewLabel: PropTypes.Requireable<string>;
|
|
355
|
-
previewContent: PropTypes.Requireable<PropTypes.InferProps<{
|
|
356
|
-
type: PropTypes.Requireable<string>;
|
|
357
|
-
src: PropTypes.Requireable<string>;
|
|
358
|
-
label: PropTypes.Requireable<string>;
|
|
359
|
-
}>>;
|
|
360
|
-
loading: PropTypes.Requireable<boolean>;
|
|
361
|
-
modified: PropTypes.Requireable<boolean>;
|
|
362
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
363
|
-
children: PropTypes.Requireable<(...args: any[]) => any>;
|
|
364
|
-
pdfButtonLabel: PropTypes.Requireable<string>;
|
|
365
|
-
pdfButtonAriaLabel: PropTypes.Requireable<string>;
|
|
366
|
-
multiple: PropTypes.Requireable<boolean>;
|
|
367
|
-
}> | null | undefined)[]>;
|
|
368
|
-
'data-name': PropTypes.Requireable<string>;
|
|
369
|
-
}> | PropTypes.InferProps<{
|
|
370
|
-
childType: PropTypes.Requireable<string>;
|
|
371
|
-
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
372
|
-
name: PropTypes.Requireable<string>;
|
|
373
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
374
|
-
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
375
|
-
filesTypes: (props: any, propName: any, componentName: any) => Error | null;
|
|
376
|
-
error: PropTypes.Requireable<string>;
|
|
377
|
-
buttonAriaLabel: PropTypes.Requireable<string>;
|
|
378
|
-
errorButtonLabel: PropTypes.Requireable<string>;
|
|
379
|
-
labelLink: PropTypes.Requireable<string>;
|
|
380
|
-
hrefLink: PropTypes.Requireable<string>;
|
|
381
|
-
title: PropTypes.Requireable<string>;
|
|
382
|
-
description: PropTypes.Requireable<string>;
|
|
383
|
-
uploadLabel: PropTypes.Requireable<string>;
|
|
384
|
-
previewLabel: PropTypes.Requireable<string>;
|
|
385
|
-
previewContent: PropTypes.Requireable<PropTypes.InferProps<{
|
|
386
|
-
type: PropTypes.Requireable<string>;
|
|
387
|
-
src: PropTypes.Requireable<string>;
|
|
388
|
-
label: PropTypes.Requireable<string>;
|
|
389
|
-
}>>;
|
|
390
|
-
loading: PropTypes.Requireable<boolean>;
|
|
391
|
-
modified: PropTypes.Requireable<boolean>;
|
|
392
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
393
|
-
children: PropTypes.Requireable<(...args: any[]) => any>;
|
|
394
|
-
pdfButtonLabel: PropTypes.Requireable<string>;
|
|
395
|
-
pdfButtonAriaLabel: PropTypes.Requireable<string>;
|
|
396
|
-
multiple: PropTypes.Requireable<boolean>;
|
|
397
|
-
}> | PropTypes.InferProps<{
|
|
398
|
-
childType: PropTypes.Requireable<string>;
|
|
399
|
-
title: PropTypes.Requireable<string>;
|
|
400
|
-
placeholder: PropTypes.Requireable<string>;
|
|
401
|
-
description: PropTypes.Requireable<string>;
|
|
402
|
-
hint: PropTypes.Requireable<string>;
|
|
403
|
-
options: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
|
|
404
|
-
selected: PropTypes.Validator<boolean>;
|
|
405
|
-
name: PropTypes.Validator<string>;
|
|
406
|
-
value: PropTypes.Requireable<string>;
|
|
407
|
-
}>>[]>;
|
|
408
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
409
|
-
onError: PropTypes.Requireable<(...args: any[]) => any>;
|
|
410
|
-
multiple: PropTypes.Requireable<boolean>;
|
|
411
|
-
modified: PropTypes.Requireable<boolean>;
|
|
412
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
413
|
-
error: PropTypes.Requireable<string>;
|
|
414
|
-
theme: PropTypes.Requireable<string>;
|
|
415
|
-
}> | null | undefined>>;
|
|
416
|
-
}> | null | undefined)[]>;
|
|
417
|
-
}> | null | undefined>>;
|
|
418
|
-
childType: PropTypes.Validator<string>;
|
|
419
|
-
}>>;
|
|
95
|
+
}>>;
|
|
96
|
+
buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
|
|
97
|
+
label: PropTypes.Requireable<string>;
|
|
98
|
+
ariaLabel: PropTypes.Requireable<string>;
|
|
99
|
+
'data-name': PropTypes.Requireable<string>;
|
|
100
|
+
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
101
|
+
}>>;
|
|
102
|
+
}>>>;
|
|
420
103
|
}>>>;
|
|
421
104
|
translations: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
422
105
|
'aria-label': PropTypes.Requireable<string>;
|
|
@@ -1662,9 +1345,43 @@ declare type ContentProps = {
|
|
|
1662
1345
|
title: PropTypes.InferProps<typeof Title.propTypes>;
|
|
1663
1346
|
listContent: PropTypes.InferProps<typeof ListItems.propTypes>;
|
|
1664
1347
|
};
|
|
1348
|
+
export declare type FieldSelectProps = {
|
|
1349
|
+
options: PropTypes.InferProps<typeof SelectOptionPropTypes>[];
|
|
1350
|
+
'aria-label': string;
|
|
1351
|
+
onChange: () => void;
|
|
1352
|
+
};
|
|
1353
|
+
declare type FormProps = {
|
|
1354
|
+
title: string;
|
|
1355
|
+
subtitle: string;
|
|
1356
|
+
select: {
|
|
1357
|
+
title: string;
|
|
1358
|
+
subtitle: string;
|
|
1359
|
+
'data-name': string;
|
|
1360
|
+
field: FieldSelectProps;
|
|
1361
|
+
};
|
|
1362
|
+
inputText: {
|
|
1363
|
+
title: string;
|
|
1364
|
+
field: PropTypes.InferProps<typeof InputText.propTypes>;
|
|
1365
|
+
};
|
|
1366
|
+
inputTextArea: {
|
|
1367
|
+
title: string;
|
|
1368
|
+
field: PropTypes.InferProps<typeof InputTextarea.propTypes>;
|
|
1369
|
+
};
|
|
1370
|
+
};
|
|
1371
|
+
declare type IconEditorProps = {
|
|
1372
|
+
title: string;
|
|
1373
|
+
iconPreview: PropTypes.InferProps<typeof IconPreview.propTypes>;
|
|
1374
|
+
inputText: PropTypes.InferProps<typeof InputText.propTypes>;
|
|
1375
|
+
buttonLink: {
|
|
1376
|
+
label: string;
|
|
1377
|
+
ariaLabel: string;
|
|
1378
|
+
'data-name': string;
|
|
1379
|
+
onClick: () => void;
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1665
1382
|
declare type SkillInformationsProps = {
|
|
1666
|
-
form:
|
|
1667
|
-
iconEditor:
|
|
1383
|
+
form: FormProps;
|
|
1384
|
+
iconEditor: IconEditorProps;
|
|
1668
1385
|
};
|
|
1669
1386
|
export declare type SkillEditionProps = {
|
|
1670
1387
|
skillInformations: SkillInformationsProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/skill-edition/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/skill-edition/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,15 +3,50 @@
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
exports.default = void 0;
|
|
5
5
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
6
|
-
var _brandFormGroup = _interopRequireDefault(require("../../molecule/brand-form-group"));
|
|
7
6
|
var _listItems = _interopRequireDefault(require("../list-items"));
|
|
8
7
|
var _title = _interopRequireDefault(require("../../atom/title"));
|
|
9
|
-
var
|
|
8
|
+
var _inputText = _interopRequireDefault(require("../../atom/input-text"));
|
|
9
|
+
var _inputTextarea = _interopRequireDefault(require("../../atom/input-textarea"));
|
|
10
|
+
var _iconPreview = _interopRequireDefault(require("../../molecule/icon-preview"));
|
|
11
|
+
var _select = require("../../atom/select");
|
|
10
12
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const FormPropTypes = {
|
|
14
|
+
title: _propTypes.default.string,
|
|
15
|
+
subtitle: _propTypes.default.string,
|
|
16
|
+
select: _propTypes.default.shape({
|
|
17
|
+
title: _propTypes.default.string,
|
|
18
|
+
subtitle: _propTypes.default.string,
|
|
19
|
+
'data-name': _propTypes.default.string,
|
|
20
|
+
field: _propTypes.default.shape({
|
|
21
|
+
options: _propTypes.default.arrayOf(_propTypes.default.shape(_select.SelectOptionPropTypes)),
|
|
22
|
+
'aria-label': _propTypes.default.string,
|
|
23
|
+
onChange: _propTypes.default.func
|
|
24
|
+
})
|
|
25
|
+
}),
|
|
26
|
+
inputText: _propTypes.default.shape({
|
|
27
|
+
title: _propTypes.default.string,
|
|
28
|
+
field: _propTypes.default.shape(_inputText.default.propTypes)
|
|
29
|
+
}),
|
|
30
|
+
inputTextArea: _propTypes.default.shape({
|
|
31
|
+
title: _propTypes.default.string,
|
|
32
|
+
field: _propTypes.default.shape(_inputTextarea.default.propTypes)
|
|
33
|
+
})
|
|
34
|
+
};
|
|
35
|
+
const IconEditorPropTypes = {
|
|
36
|
+
title: _propTypes.default.string,
|
|
37
|
+
iconPreview: _propTypes.default.shape(_iconPreview.default.propTypes),
|
|
38
|
+
inputText: _propTypes.default.shape(_inputText.default.propTypes),
|
|
39
|
+
buttonLink: _propTypes.default.shape({
|
|
40
|
+
label: _propTypes.default.string,
|
|
41
|
+
ariaLabel: _propTypes.default.string,
|
|
42
|
+
'data-name': _propTypes.default.string,
|
|
43
|
+
onClick: _propTypes.default.func
|
|
44
|
+
})
|
|
45
|
+
};
|
|
11
46
|
const SkillEditionPropTypes = {
|
|
12
47
|
skillInformations: _propTypes.default.shape({
|
|
13
|
-
form: _propTypes.default.shape(
|
|
14
|
-
iconEditor: _propTypes.default.shape(
|
|
48
|
+
form: _propTypes.default.shape(FormPropTypes).isRequired,
|
|
49
|
+
iconEditor: _propTypes.default.shape(IconEditorPropTypes).isRequired
|
|
15
50
|
}).isRequired,
|
|
16
51
|
translations: _propTypes.default.shape(_listItems.default.propTypes).isRequired,
|
|
17
52
|
content: _propTypes.default.shape({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","names":["_propTypes","_interopRequireDefault","require","
|
|
1
|
+
{"version":3,"file":"types.js","names":["_propTypes","_interopRequireDefault","require","_listItems","_title","_inputText","_inputTextarea","_iconPreview","_select","e","__esModule","default","FormPropTypes","title","PropTypes","string","subtitle","select","shape","field","options","arrayOf","SelectOptionPropTypes","onChange","func","inputText","InputText","propTypes","inputTextArea","InputTextarea","IconEditorPropTypes","iconPreview","IconPreview","buttonLink","label","ariaLabel","onClick","SkillEditionPropTypes","skillInformations","form","isRequired","iconEditor","translations","ListItems","content","Title","listContent","_default","exports"],"sources":["../../../src/organism/skill-edition/types.ts"],"sourcesContent":["import PropTypes from 'prop-types';\nimport ListItems from '../list-items';\nimport Title from '../../atom/title';\nimport InputText from '../../atom/input-text';\nimport InputTextarea from '../../atom/input-textarea';\nimport IconPreview from '../../molecule/icon-preview';\nimport {SelectOptionPropTypes} from '../../atom/select';\n\nconst FormPropTypes = {\n title: PropTypes.string,\n subtitle: PropTypes.string,\n select: PropTypes.shape({\n title: PropTypes.string,\n subtitle: PropTypes.string,\n 'data-name': PropTypes.string,\n field: PropTypes.shape({\n options: PropTypes.arrayOf(PropTypes.shape(SelectOptionPropTypes)),\n 'aria-label': PropTypes.string,\n onChange: PropTypes.func\n })\n }),\n inputText: PropTypes.shape({\n title: PropTypes.string,\n field: PropTypes.shape(InputText.propTypes)\n }),\n inputTextArea: PropTypes.shape({\n title: PropTypes.string,\n field: PropTypes.shape(InputTextarea.propTypes)\n })\n};\n\nconst IconEditorPropTypes = {\n title: PropTypes.string,\n iconPreview: PropTypes.shape(IconPreview.propTypes),\n inputText: PropTypes.shape(InputText.propTypes),\n buttonLink: PropTypes.shape({\n label: PropTypes.string,\n ariaLabel: PropTypes.string,\n 'data-name': PropTypes.string,\n onClick: PropTypes.func\n })\n};\n\nconst SkillEditionPropTypes = {\n skillInformations: PropTypes.shape({\n form: PropTypes.shape(FormPropTypes).isRequired,\n iconEditor: PropTypes.shape(IconEditorPropTypes).isRequired\n }).isRequired,\n translations: PropTypes.shape(ListItems.propTypes).isRequired,\n content: PropTypes.shape({\n title: PropTypes.shape(Title.propTypes).isRequired,\n listContent: PropTypes.shape(ListItems.propTypes).isRequired\n })\n};\n\nexport default SkillEditionPropTypes;\n\ntype ContentProps = {\n title: PropTypes.InferProps<typeof Title.propTypes>;\n listContent: PropTypes.InferProps<typeof ListItems.propTypes>;\n};\n\nexport type FieldSelectProps = {\n options: PropTypes.InferProps<typeof SelectOptionPropTypes>[];\n 'aria-label': string;\n onChange: () => void;\n};\n\ntype FormProps = {\n title: string;\n subtitle: string;\n select: {\n title: string;\n subtitle: string;\n 'data-name': string;\n field: FieldSelectProps;\n };\n inputText: {\n title: string;\n field: PropTypes.InferProps<typeof InputText.propTypes>;\n };\n inputTextArea: {\n title: string;\n field: PropTypes.InferProps<typeof InputTextarea.propTypes>;\n };\n};\n\ntype IconEditorProps = {\n title: string;\n iconPreview: PropTypes.InferProps<typeof IconPreview.propTypes>;\n inputText: PropTypes.InferProps<typeof InputText.propTypes>;\n buttonLink: {label: string; ariaLabel: string; 'data-name': string; onClick: () => void};\n};\n\ntype SkillInformationsProps = {\n form: FormProps;\n iconEditor: IconEditorProps;\n};\n\nexport type SkillEditionProps = {\n skillInformations: SkillInformationsProps;\n translations: PropTypes.InferProps<typeof ListItems.propTypes>;\n content: ContentProps;\n};\n"],"mappings":"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","ignoreList":[]}
|