@coorpacademy/components 11.33.16 → 11.34.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.
Files changed (53) hide show
  1. package/es/atom/button-link/style.css +2 -1
  2. package/es/molecule/base-modal/index.d.ts +3 -0
  3. package/es/molecule/base-modal/index.d.ts.map +1 -1
  4. package/es/molecule/base-modal/index.js +19 -10
  5. package/es/molecule/base-modal/index.js.map +1 -1
  6. package/es/molecule/base-modal/style.css +6 -9
  7. package/es/molecule/bullet-point-menu-button/index.js +3 -3
  8. package/es/molecule/bullet-point-menu-button/index.js.map +1 -1
  9. package/es/molecule/draggable/style.css +1 -3
  10. package/es/organism/content-skill-modal/index.d.ts +660 -0
  11. package/es/organism/content-skill-modal/index.d.ts.map +1 -0
  12. package/es/organism/content-skill-modal/index.js +72 -0
  13. package/es/organism/content-skill-modal/index.js.map +1 -0
  14. package/es/organism/content-skill-modal/style.css +20 -0
  15. package/es/organism/content-skill-modal/types.d.ts +667 -0
  16. package/es/organism/content-skill-modal/types.d.ts.map +1 -0
  17. package/es/organism/content-skill-modal/types.js +16 -0
  18. package/es/organism/content-skill-modal/types.js.map +1 -0
  19. package/es/organism/filter-checkbox-and-search/index.d.ts.map +1 -1
  20. package/es/organism/filter-checkbox-and-search/index.js +21 -18
  21. package/es/organism/filter-checkbox-and-search/index.js.map +1 -1
  22. package/es/organism/filter-checkbox-and-search/style.css +16 -3
  23. package/es/variables/colors.d.ts +1 -0
  24. package/es/variables/colors.d.ts.map +1 -1
  25. package/es/variables/colors.js +1 -0
  26. package/es/variables/colors.js.map +1 -1
  27. package/lib/atom/button-link/style.css +2 -1
  28. package/lib/molecule/base-modal/index.d.ts +3 -0
  29. package/lib/molecule/base-modal/index.d.ts.map +1 -1
  30. package/lib/molecule/base-modal/index.js +19 -10
  31. package/lib/molecule/base-modal/index.js.map +1 -1
  32. package/lib/molecule/base-modal/style.css +6 -9
  33. package/lib/molecule/bullet-point-menu-button/index.js +3 -3
  34. package/lib/molecule/bullet-point-menu-button/index.js.map +1 -1
  35. package/lib/molecule/draggable/style.css +1 -3
  36. package/lib/organism/content-skill-modal/index.d.ts +660 -0
  37. package/lib/organism/content-skill-modal/index.d.ts.map +1 -0
  38. package/lib/organism/content-skill-modal/index.js +79 -0
  39. package/lib/organism/content-skill-modal/index.js.map +1 -0
  40. package/lib/organism/content-skill-modal/style.css +20 -0
  41. package/lib/organism/content-skill-modal/types.d.ts +667 -0
  42. package/lib/organism/content-skill-modal/types.d.ts.map +1 -0
  43. package/lib/organism/content-skill-modal/types.js +21 -0
  44. package/lib/organism/content-skill-modal/types.js.map +1 -0
  45. package/lib/organism/filter-checkbox-and-search/index.d.ts.map +1 -1
  46. package/lib/organism/filter-checkbox-and-search/index.js +21 -18
  47. package/lib/organism/filter-checkbox-and-search/index.js.map +1 -1
  48. package/lib/organism/filter-checkbox-and-search/style.css +16 -3
  49. package/lib/variables/colors.d.ts +1 -0
  50. package/lib/variables/colors.d.ts.map +1 -1
  51. package/lib/variables/colors.js +1 -0
  52. package/lib/variables/colors.js.map +1 -1
  53. package/package.json +2 -2
@@ -0,0 +1,660 @@
1
+ /// <reference types="react" />
2
+ import { ContentSkillModalProps } from './types';
3
+ declare const ContentSkillModal: {
4
+ (props: ContentSkillModalProps): JSX.Element | null;
5
+ contextTypes: {
6
+ translate: import("prop-types").Requireable<(...args: any[]) => any>;
7
+ };
8
+ propTypes: {
9
+ contentList: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
10
+ 'aria-label': import("prop-types").Requireable<string>;
11
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
12
+ type: import("prop-types").Requireable<string>;
13
+ usage: import("prop-types").Requireable<string>;
14
+ label: import("prop-types").Requireable<string>;
15
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
16
+ 'aria-label': import("prop-types").Requireable<string>;
17
+ tooltipText: import("prop-types").Requireable<string>;
18
+ tooltipPlacement: import("prop-types").Requireable<string>;
19
+ 'data-name': import("prop-types").Requireable<string>;
20
+ 'data-testid': import("prop-types").Requireable<string>;
21
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
22
+ position: import("prop-types").Requireable<string>;
23
+ type: import("prop-types").Requireable<string>;
24
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
25
+ name: import("prop-types").Validator<string>;
26
+ color: import("prop-types").Requireable<string>;
27
+ backgroundColor: import("prop-types").Requireable<string>;
28
+ size: import("prop-types").Requireable<number>;
29
+ customStyle: import("prop-types").Requireable<{
30
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
31
+ }>;
32
+ }>>;
33
+ }>>;
34
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
35
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
36
+ href: import("prop-types").Requireable<string>;
37
+ download: import("prop-types").Requireable<boolean>;
38
+ target: import("prop-types").Requireable<string>;
39
+ }>>;
40
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
41
+ hoverColor: import("prop-types").Requireable<string>;
42
+ disabled: import("prop-types").Requireable<boolean>;
43
+ className: import("prop-types").Requireable<string>;
44
+ customStyle: import("prop-types").Requireable<{
45
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
46
+ }>;
47
+ }>>;
48
+ selectMultiple: import("prop-types").Requireable<import("prop-types").InferProps<{
49
+ title: import("prop-types").Requireable<string>;
50
+ placeholder: import("prop-types").Requireable<string>;
51
+ description: import("prop-types").Requireable<string>;
52
+ hint: import("prop-types").Requireable<string>;
53
+ options: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
54
+ selected: import("prop-types").Validator<boolean>;
55
+ name: import("prop-types").Validator<string>;
56
+ value: import("prop-types").Requireable<string>;
57
+ }>>[]>;
58
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
59
+ onError: import("prop-types").Requireable<(...args: any[]) => any>;
60
+ multiple: import("prop-types").Requireable<boolean>;
61
+ modified: import("prop-types").Requireable<boolean>;
62
+ disabled: import("prop-types").Requireable<boolean>;
63
+ error: import("prop-types").Requireable<string>;
64
+ theme: import("prop-types").Requireable<string>;
65
+ }>>;
66
+ content: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
67
+ items: import("prop-types").Requireable<(import("prop-types").InferProps<{
68
+ title: import("prop-types").Validator<string>;
69
+ subtitle: import("prop-types").Requireable<string>;
70
+ 'data-name': import("prop-types").Requireable<string>;
71
+ provider: import("prop-types").Requireable<import("prop-types").InferProps<{
72
+ label: import("prop-types").Requireable<string>;
73
+ type: import("prop-types").Requireable<string>;
74
+ }>>;
75
+ selected: import("prop-types").Requireable<boolean>;
76
+ selectedColor: import("prop-types").Requireable<string>;
77
+ dataColumns: import("prop-types").Requireable<(import("prop-types").InferProps<{
78
+ label: import("prop-types").Requireable<string>;
79
+ type: import("prop-types").Requireable<string>;
80
+ className: import("prop-types").Requireable<string>;
81
+ }> | null | undefined)[]>;
82
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
83
+ type: import("prop-types").Requireable<string>;
84
+ label: import("prop-types").Requireable<string>;
85
+ ariaLabel: import("prop-types").Requireable<string>;
86
+ dataName: import("prop-types").Requireable<string>;
87
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
88
+ position: import("prop-types").Requireable<string>;
89
+ type: import("prop-types").Requireable<string>;
90
+ }>>;
91
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
92
+ }>>;
93
+ secondButtonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
94
+ type: import("prop-types").Requireable<string>;
95
+ label: import("prop-types").Requireable<string>;
96
+ ariaLabel: import("prop-types").Requireable<string>;
97
+ dataName: import("prop-types").Requireable<string>;
98
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
99
+ position: import("prop-types").Requireable<string>;
100
+ type: import("prop-types").Requireable<string>;
101
+ }>>;
102
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
103
+ }>>;
104
+ bulletPointMenuButton: import("prop-types").Requireable<import("prop-types").InferProps<{
105
+ buttonAriaLabel: import("prop-types").Requireable<string>;
106
+ menuAriaLabel: import("prop-types").Requireable<string>;
107
+ buttons: import("prop-types").Requireable<(import("prop-types").InferProps<{
108
+ 'data-name': import("prop-types").Requireable<string>;
109
+ label: import("prop-types").Requireable<string>;
110
+ type: import("prop-types").Requireable<string>;
111
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
112
+ }> | null | undefined)[]>;
113
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
114
+ }>>;
115
+ tags: import("prop-types").Requireable<(import("prop-types").InferProps<{
116
+ label: import("prop-types").Requireable<string>;
117
+ type: import("prop-types").Requireable<string>;
118
+ }> | null | undefined)[]>;
119
+ disabled: import("prop-types").Requireable<boolean>;
120
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
121
+ isBulkStyle: import("prop-types").Requireable<boolean>;
122
+ isOverflowHidden: import("prop-types").Requireable<boolean>;
123
+ order: import("prop-types").Requireable<number>;
124
+ 'aria-label': import("prop-types").Requireable<string>;
125
+ contentType: import("prop-types").Requireable<string>;
126
+ id: import("prop-types").Requireable<string>;
127
+ leftIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
128
+ iconName: import("prop-types").Requireable<string>;
129
+ iconColor: import("prop-types").Requireable<string>;
130
+ backgroundColor: import("prop-types").Requireable<string>;
131
+ borderRadius: import("prop-types").Requireable<string>;
132
+ preset: import("prop-types").Requireable<string>;
133
+ gradientBackground: import("prop-types").Requireable<boolean>;
134
+ size: import("prop-types").Requireable<number>;
135
+ wrapperSize: import("prop-types").Requireable<number>;
136
+ }>>;
137
+ image: import("prop-types").Requireable<string>;
138
+ checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
139
+ title: import("prop-types").Requireable<string>;
140
+ name: import("prop-types").Requireable<string>;
141
+ checked: import("prop-types").Requireable<boolean>;
142
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
143
+ 'aria-label': import("prop-types").Requireable<string>;
144
+ 'data-name': import("prop-types").Requireable<string>;
145
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
146
+ iconName: import("prop-types").Requireable<string>;
147
+ iconColor: import("prop-types").Requireable<string>;
148
+ preset: import("prop-types").Requireable<string>;
149
+ }>>;
150
+ customStyle: import("prop-types").Requireable<{
151
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
152
+ }>;
153
+ }>>;
154
+ }> | null | undefined)[]>;
155
+ type: import("prop-types").Requireable<string>;
156
+ itemType: import("prop-types").Requireable<string>;
157
+ onDrop: import("prop-types").Requireable<(...args: any[]) => any>;
158
+ isDraggable: import("prop-types").Requireable<boolean>;
159
+ tableHeader: import("prop-types").Requireable<(string | null | undefined)[]>;
160
+ emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
161
+ title: import("prop-types").Requireable<string>;
162
+ description: import("prop-types").Requireable<string>;
163
+ button: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
164
+ type: import("prop-types").Requireable<string>;
165
+ usage: import("prop-types").Requireable<string>;
166
+ label: import("prop-types").Requireable<string>;
167
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
168
+ 'aria-label': import("prop-types").Requireable<string>;
169
+ tooltipText: import("prop-types").Requireable<string>;
170
+ tooltipPlacement: import("prop-types").Requireable<string>;
171
+ 'data-name': import("prop-types").Requireable<string>;
172
+ 'data-testid': import("prop-types").Requireable<string>;
173
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
174
+ position: import("prop-types").Requireable<string>;
175
+ type: import("prop-types").Requireable<string>;
176
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
177
+ name: import("prop-types").Validator<string>;
178
+ color: import("prop-types").Requireable<string>;
179
+ backgroundColor: import("prop-types").Requireable<string>;
180
+ size: import("prop-types").Requireable<number>;
181
+ customStyle: import("prop-types").Requireable<{
182
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
183
+ }>;
184
+ }>>;
185
+ }>>;
186
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
187
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
188
+ href: import("prop-types").Requireable<string>;
189
+ download: import("prop-types").Requireable<boolean>;
190
+ target: import("prop-types").Requireable<string>;
191
+ }>>;
192
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
193
+ hoverColor: import("prop-types").Requireable<string>;
194
+ disabled: import("prop-types").Requireable<boolean>;
195
+ className: import("prop-types").Requireable<string>;
196
+ customStyle: import("prop-types").Requireable<{
197
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
198
+ }>;
199
+ }> | import("prop-types").InferProps<{
200
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
201
+ type: import("prop-types").Requireable<string>;
202
+ usage: import("prop-types").Requireable<string>;
203
+ label: import("prop-types").Requireable<string>;
204
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
205
+ 'aria-label': import("prop-types").Requireable<string>;
206
+ tooltipText: import("prop-types").Requireable<string>;
207
+ tooltipPlacement: import("prop-types").Requireable<string>;
208
+ 'data-name': import("prop-types").Requireable<string>;
209
+ 'data-testid': import("prop-types").Requireable<string>;
210
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
211
+ position: import("prop-types").Requireable<string>;
212
+ type: import("prop-types").Requireable<string>;
213
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
214
+ name: import("prop-types").Validator<string>;
215
+ color: import("prop-types").Requireable<string>;
216
+ backgroundColor: import("prop-types").Requireable<string>;
217
+ size: import("prop-types").Requireable<number>;
218
+ customStyle: import("prop-types").Requireable<{
219
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
220
+ }>;
221
+ }>>;
222
+ }>>;
223
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
224
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
225
+ href: import("prop-types").Requireable<string>;
226
+ download: import("prop-types").Requireable<boolean>;
227
+ target: import("prop-types").Requireable<string>;
228
+ }>>;
229
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
230
+ hoverColor: import("prop-types").Requireable<string>;
231
+ disabled: import("prop-types").Requireable<boolean>;
232
+ className: import("prop-types").Requireable<string>;
233
+ customStyle: import("prop-types").Requireable<{
234
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
235
+ }>;
236
+ }>>>;
237
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
238
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
239
+ 'data-name': import("prop-types").Requireable<string>;
240
+ disabled: import("prop-types").Requireable<boolean>;
241
+ label: import("prop-types").Validator<string>;
242
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
243
+ type: import("prop-types").Requireable<string>;
244
+ buttonLinkType: import("prop-types").Requireable<string>;
245
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
246
+ theme: import("prop-types").Requireable<string>;
247
+ position: import("prop-types").Requireable<string>;
248
+ type: import("prop-types").Requireable<string>;
249
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
250
+ name: import("prop-types").Validator<string>;
251
+ color: import("prop-types").Requireable<string>;
252
+ backgroundColor: import("prop-types").Requireable<string>;
253
+ size: import("prop-types").Requireable<number>;
254
+ customStyle: import("prop-types").Requireable<{
255
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
256
+ }>;
257
+ }>>;
258
+ }>>;
259
+ customStyle: import("prop-types").Requireable<{
260
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
261
+ }>;
262
+ }> | null | undefined)[]>;
263
+ 'data-name': import("prop-types").Requireable<string>;
264
+ 'aria-label': import("prop-types").Requireable<string>;
265
+ }>>>;
266
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
267
+ ariaLabel: import("prop-types").Requireable<string>;
268
+ customStyle: import("prop-types").Requireable<{
269
+ [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
270
+ }>;
271
+ }>>;
272
+ }> | null | undefined>>;
273
+ }>>;
274
+ }> | import("prop-types").InferProps<{
275
+ type: import("prop-types").Requireable<string>;
276
+ columns: import("prop-types").Requireable<(import("prop-types").InferProps<{
277
+ title: import("prop-types").Validator<string>;
278
+ }> | null | undefined)[]>;
279
+ rows: import("prop-types").Requireable<(import("prop-types").InferProps<{
280
+ fields: import("prop-types").Requireable<(NonNullable<string | import("prop-types").InferProps<{
281
+ type: import("prop-types").Requireable<string>;
282
+ current: import("prop-types").Requireable<boolean>;
283
+ selected: import("prop-types").Requireable<boolean>;
284
+ icon: import("prop-types").Requireable<string>;
285
+ value: import("prop-types").Requireable<string>;
286
+ }> | null | undefined> | null | undefined)[]>;
287
+ isRowExpandible: import("prop-types").Requireable<boolean>;
288
+ lastField: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
289
+ type: import("prop-types").Requireable<string>;
290
+ 'data-name': import("prop-types").Requireable<string>;
291
+ disabled: import("prop-types").Requireable<boolean>;
292
+ buttonAriaLabel: import("prop-types").Requireable<string>;
293
+ menuAriaLabel: import("prop-types").Requireable<string>;
294
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
295
+ 'data-name': import("prop-types").Requireable<string>;
296
+ disabled: import("prop-types").Requireable<boolean>;
297
+ label: import("prop-types").Validator<string>;
298
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
299
+ type: import("prop-types").Requireable<string>;
300
+ buttonLinkType: import("prop-types").Requireable<string>;
301
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
302
+ theme: import("prop-types").Requireable<string>;
303
+ position: import("prop-types").Requireable<string>;
304
+ type: import("prop-types").Requireable<string>;
305
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
306
+ name: import("prop-types").Validator<string>;
307
+ color: import("prop-types").Requireable<string>;
308
+ backgroundColor: import("prop-types").Requireable<string>;
309
+ size: import("prop-types").Requireable<number>;
310
+ customStyle: import("prop-types").Requireable<{
311
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
312
+ }>;
313
+ }>>;
314
+ }>>;
315
+ customStyle: import("prop-types").Requireable<{
316
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
317
+ }>;
318
+ }> | null | undefined)[]>;
319
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
320
+ menuButtonClassName: import("prop-types").Requireable<string>;
321
+ isBulkMenu: import("prop-types").Requireable<boolean>;
322
+ }> | null | undefined>>;
323
+ }> | null | undefined)[]>;
324
+ stickyFirstColumn: import("prop-types").Requireable<boolean>;
325
+ stickyLastColumn: import("prop-types").Requireable<boolean>;
326
+ columnWidth: import("prop-types").Requireable<string>;
327
+ ariaDescribedby: import("prop-types").Requireable<string>;
328
+ lastField: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
329
+ componentType: import("prop-types").Requireable<string>;
330
+ type: import("prop-types").Requireable<string>;
331
+ usage: import("prop-types").Requireable<string>;
332
+ label: import("prop-types").Requireable<string>;
333
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
334
+ 'aria-label': import("prop-types").Requireable<string>;
335
+ tooltipText: import("prop-types").Requireable<string>;
336
+ tooltipPlacement: import("prop-types").Requireable<string>;
337
+ 'data-name': import("prop-types").Requireable<string>;
338
+ 'data-testid': import("prop-types").Requireable<string>;
339
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
340
+ position: import("prop-types").Requireable<string>;
341
+ type: import("prop-types").Requireable<string>;
342
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
343
+ name: import("prop-types").Validator<string>;
344
+ color: import("prop-types").Requireable<string>;
345
+ backgroundColor: import("prop-types").Requireable<string>;
346
+ size: import("prop-types").Requireable<number>;
347
+ customStyle: import("prop-types").Requireable<{
348
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
349
+ }>;
350
+ }>>;
351
+ }>>;
352
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
353
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
354
+ href: import("prop-types").Requireable<string>;
355
+ download: import("prop-types").Requireable<boolean>;
356
+ target: import("prop-types").Requireable<string>;
357
+ }>>;
358
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
359
+ hoverColor: import("prop-types").Requireable<string>;
360
+ disabled: import("prop-types").Requireable<boolean>;
361
+ className: import("prop-types").Requireable<string>;
362
+ customStyle: import("prop-types").Requireable<{
363
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
364
+ }>;
365
+ }> | import("prop-types").InferProps<{
366
+ componentType: import("prop-types").Requireable<string>;
367
+ 'data-name': import("prop-types").Requireable<string>;
368
+ disabled: import("prop-types").Requireable<boolean>;
369
+ buttonAriaLabel: import("prop-types").Requireable<string>;
370
+ menuAriaLabel: import("prop-types").Requireable<string>;
371
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
372
+ 'data-name': import("prop-types").Requireable<string>;
373
+ disabled: import("prop-types").Requireable<boolean>;
374
+ label: import("prop-types").Validator<string>;
375
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
376
+ type: import("prop-types").Requireable<string>;
377
+ buttonLinkType: import("prop-types").Requireable<string>;
378
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
379
+ theme: import("prop-types").Requireable<string>;
380
+ position: import("prop-types").Requireable<string>;
381
+ type: import("prop-types").Requireable<string>;
382
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
383
+ name: import("prop-types").Validator<string>;
384
+ color: import("prop-types").Requireable<string>;
385
+ backgroundColor: import("prop-types").Requireable<string>;
386
+ size: import("prop-types").Requireable<number>;
387
+ customStyle: import("prop-types").Requireable<{
388
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
389
+ }>;
390
+ }>>;
391
+ }>>;
392
+ customStyle: import("prop-types").Requireable<{
393
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
394
+ }>;
395
+ }> | null | undefined)[]>;
396
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
397
+ menuButtonClassName: import("prop-types").Requireable<string>;
398
+ isBulkMenu: import("prop-types").Requireable<boolean>;
399
+ }> | null | undefined>>;
400
+ isNestedTable: import("prop-types").Requireable<boolean>;
401
+ emptyStateFirstMessage: import("prop-types").Requireable<string>;
402
+ emptyStateSecondMessage: import("prop-types").Requireable<string>;
403
+ }> | null | undefined>>;
404
+ title: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
405
+ title: import("prop-types").Requireable<string>;
406
+ subtitle: import("prop-types").Requireable<string>;
407
+ type: import("prop-types").Requireable<string>;
408
+ 'data-name': import("prop-types").Requireable<string>;
409
+ titleSize: import("prop-types").Requireable<string>;
410
+ subtitleSize: import("prop-types").Requireable<string>;
411
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
412
+ tag: import("prop-types").Requireable<import("prop-types").InferProps<{
413
+ label: import("prop-types").Requireable<string>;
414
+ type: import("prop-types").Requireable<string>;
415
+ size: import("prop-types").Requireable<string>;
416
+ customStyle: import("prop-types").Requireable<{
417
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
418
+ }>;
419
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
420
+ }>>;
421
+ button: import("prop-types").Requireable<import("prop-types").InferProps<{
422
+ type: import("prop-types").Requireable<string>;
423
+ usage: import("prop-types").Requireable<string>;
424
+ label: import("prop-types").Requireable<string>;
425
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
426
+ 'aria-label': import("prop-types").Requireable<string>;
427
+ tooltipText: import("prop-types").Requireable<string>;
428
+ tooltipPlacement: import("prop-types").Requireable<string>;
429
+ 'data-name': import("prop-types").Requireable<string>;
430
+ 'data-testid': import("prop-types").Requireable<string>;
431
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
432
+ position: import("prop-types").Requireable<string>;
433
+ type: import("prop-types").Requireable<string>;
434
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
435
+ name: import("prop-types").Validator<string>;
436
+ color: import("prop-types").Requireable<string>;
437
+ backgroundColor: import("prop-types").Requireable<string>;
438
+ size: import("prop-types").Requireable<number>;
439
+ customStyle: import("prop-types").Requireable<{
440
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
441
+ }>;
442
+ }>>;
443
+ }>>;
444
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
445
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
446
+ href: import("prop-types").Requireable<string>;
447
+ download: import("prop-types").Requireable<boolean>;
448
+ target: import("prop-types").Requireable<string>;
449
+ }>>;
450
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
451
+ hoverColor: import("prop-types").Requireable<string>;
452
+ disabled: import("prop-types").Requireable<boolean>;
453
+ className: import("prop-types").Requireable<string>;
454
+ customStyle: import("prop-types").Requireable<{
455
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
456
+ }>;
457
+ }>>;
458
+ required: import("prop-types").Requireable<boolean>;
459
+ }> | null | undefined>>;
460
+ isFetching: import("prop-types").Requireable<boolean>;
461
+ search: import("prop-types").Requireable<import("prop-types").InferProps<{
462
+ value: import("prop-types").Requireable<string>;
463
+ placeholder: import("prop-types").Validator<string>;
464
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
465
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
466
+ onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
467
+ onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
468
+ theme: import("prop-types").Requireable<string>;
469
+ dataTestId: import("prop-types").Requireable<string>;
470
+ }>>;
471
+ checkboxWithTitle: import("prop-types").Requireable<import("prop-types").InferProps<{
472
+ title: import("prop-types").Requireable<string>;
473
+ name: import("prop-types").Requireable<string>;
474
+ checked: import("prop-types").Requireable<boolean>;
475
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
476
+ 'aria-label': import("prop-types").Requireable<string>;
477
+ 'data-name': import("prop-types").Requireable<string>;
478
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
479
+ iconName: import("prop-types").Requireable<string>;
480
+ iconColor: import("prop-types").Requireable<string>;
481
+ preset: import("prop-types").Requireable<string>;
482
+ }>>;
483
+ customStyle: import("prop-types").Requireable<{
484
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
485
+ }>;
486
+ }>>;
487
+ actionButtons: import("prop-types").Requireable<(import("prop-types").InferProps<{
488
+ type: import("prop-types").Requireable<string>;
489
+ usage: import("prop-types").Requireable<string>;
490
+ label: import("prop-types").Requireable<string>;
491
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
492
+ 'aria-label': import("prop-types").Requireable<string>;
493
+ tooltipText: import("prop-types").Requireable<string>;
494
+ tooltipPlacement: import("prop-types").Requireable<string>;
495
+ 'data-name': import("prop-types").Requireable<string>;
496
+ 'data-testid': import("prop-types").Requireable<string>;
497
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
498
+ position: import("prop-types").Requireable<string>;
499
+ type: import("prop-types").Requireable<string>;
500
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
501
+ name: import("prop-types").Validator<string>;
502
+ color: import("prop-types").Requireable<string>;
503
+ backgroundColor: import("prop-types").Requireable<string>;
504
+ size: import("prop-types").Requireable<number>;
505
+ customStyle: import("prop-types").Requireable<{
506
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
507
+ }>;
508
+ }>>;
509
+ }>>;
510
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
511
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
512
+ href: import("prop-types").Requireable<string>;
513
+ download: import("prop-types").Requireable<boolean>;
514
+ target: import("prop-types").Requireable<string>;
515
+ }>>;
516
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
517
+ hoverColor: import("prop-types").Requireable<string>;
518
+ disabled: import("prop-types").Requireable<boolean>;
519
+ className: import("prop-types").Requireable<string>;
520
+ customStyle: import("prop-types").Requireable<{
521
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
522
+ }>;
523
+ }> | null | undefined)[]>;
524
+ buttonMenuAction: import("prop-types").Requireable<import("prop-types").InferProps<{
525
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
526
+ type: import("prop-types").Requireable<string>;
527
+ usage: import("prop-types").Requireable<string>;
528
+ label: import("prop-types").Requireable<string>;
529
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
530
+ 'aria-label': import("prop-types").Requireable<string>;
531
+ tooltipText: import("prop-types").Requireable<string>;
532
+ tooltipPlacement: import("prop-types").Requireable<string>;
533
+ 'data-name': import("prop-types").Requireable<string>;
534
+ 'data-testid': import("prop-types").Requireable<string>;
535
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
536
+ position: import("prop-types").Requireable<string>;
537
+ type: import("prop-types").Requireable<string>;
538
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
539
+ name: import("prop-types").Validator<string>;
540
+ color: import("prop-types").Requireable<string>;
541
+ backgroundColor: import("prop-types").Requireable<string>;
542
+ size: import("prop-types").Requireable<number>;
543
+ customStyle: import("prop-types").Requireable<{
544
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
545
+ }>;
546
+ }>>;
547
+ }>>;
548
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
549
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
550
+ href: import("prop-types").Requireable<string>;
551
+ download: import("prop-types").Requireable<boolean>;
552
+ target: import("prop-types").Requireable<string>;
553
+ }>>;
554
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
555
+ hoverColor: import("prop-types").Requireable<string>;
556
+ disabled: import("prop-types").Requireable<boolean>;
557
+ className: import("prop-types").Requireable<string>;
558
+ customStyle: import("prop-types").Requireable<{
559
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
560
+ }>;
561
+ }>>>;
562
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
563
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
564
+ 'data-name': import("prop-types").Requireable<string>;
565
+ disabled: import("prop-types").Requireable<boolean>;
566
+ label: import("prop-types").Validator<string>;
567
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
568
+ type: import("prop-types").Requireable<string>;
569
+ buttonLinkType: import("prop-types").Requireable<string>;
570
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
571
+ theme: import("prop-types").Requireable<string>;
572
+ position: import("prop-types").Requireable<string>;
573
+ type: import("prop-types").Requireable<string>;
574
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
575
+ name: import("prop-types").Validator<string>;
576
+ color: import("prop-types").Requireable<string>;
577
+ backgroundColor: import("prop-types").Requireable<string>;
578
+ size: import("prop-types").Requireable<number>;
579
+ customStyle: import("prop-types").Requireable<{
580
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
581
+ }>;
582
+ }>>;
583
+ }>>;
584
+ customStyle: import("prop-types").Requireable<{
585
+ [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
586
+ }>;
587
+ }> | null | undefined)[]>;
588
+ 'data-name': import("prop-types").Requireable<string>;
589
+ 'aria-label': import("prop-types").Requireable<string>;
590
+ }>>>;
591
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
592
+ ariaLabel: import("prop-types").Requireable<string>;
593
+ customStyle: import("prop-types").Requireable<{
594
+ [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
595
+ }>;
596
+ }>>;
597
+ }>>;
598
+ }>>>;
599
+ filters: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
600
+ title: import("prop-types").Requireable<string>;
601
+ onClearAll: import("prop-types").Requireable<(...args: any[]) => any>;
602
+ options: import("prop-types").Requireable<(NonNullable<import("prop-types").InferProps<{
603
+ type: import("prop-types").Requireable<string>;
604
+ options: import("prop-types").Requireable<import("prop-types").InferProps<{
605
+ title: import("prop-types").Requireable<string>;
606
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
607
+ options: import("prop-types").Requireable<(import("prop-types").InferProps<{
608
+ label: import("prop-types").Requireable<string>;
609
+ type: import("prop-types").Requireable<string>;
610
+ selected: import("prop-types").Requireable<boolean>;
611
+ icon: import("prop-types").Requireable<string>;
612
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
613
+ }> | null | undefined)[]>;
614
+ }>>;
615
+ }> | import("prop-types").InferProps<{
616
+ type: import("prop-types").Requireable<string>;
617
+ options: import("prop-types").Requireable<import("prop-types").InferProps<{
618
+ title: import("prop-types").Requireable<string>;
619
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
620
+ options: import("prop-types").Requireable<(import("prop-types").InferProps<{
621
+ label: import("prop-types").Requireable<string>;
622
+ value: import("prop-types").Requireable<string>;
623
+ selected: import("prop-types").Requireable<boolean>;
624
+ ref: import("prop-types").Requireable<string>;
625
+ count: import("prop-types").Requireable<number>;
626
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
627
+ }> | null | undefined)[]>;
628
+ searchOptions: import("prop-types").Requireable<import("prop-types").InferProps<{
629
+ action: import("prop-types").Requireable<string>;
630
+ method: import("prop-types").Requireable<string>;
631
+ onSubmit: import("prop-types").Requireable<(...args: any[]) => any>;
632
+ onReset: import("prop-types").Requireable<(...args: any[]) => any>;
633
+ onSearchFocus: import("prop-types").Requireable<(...args: any[]) => any>;
634
+ onSearchBlur: import("prop-types").Requireable<(...args: any[]) => any>;
635
+ search: import("prop-types").Requireable<import("prop-types").InferProps<{
636
+ value: import("prop-types").Requireable<string>;
637
+ placeholder: import("prop-types").Validator<string>;
638
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
639
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
640
+ onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
641
+ onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
642
+ theme: import("prop-types").Requireable<string>;
643
+ dataTestId: import("prop-types").Requireable<string>;
644
+ }>>;
645
+ 'search-reset-aria-label': import("prop-types").Requireable<string>;
646
+ dataTestId: import("prop-types").Requireable<string>;
647
+ }>>;
648
+ }>>;
649
+ }> | null | undefined> | null | undefined)[]>;
650
+ }>>>;
651
+ modal: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
652
+ isOpen: import("prop-types").Requireable<boolean>;
653
+ onCancel: import("prop-types").Requireable<(...args: any[]) => any>;
654
+ onConfirm: import("prop-types").Requireable<(...args: any[]) => any>;
655
+ onClose: import("prop-types").Requireable<(...args: any[]) => any>;
656
+ }>>>;
657
+ };
658
+ };
659
+ export default ContentSkillModal;
660
+ //# sourceMappingURL=index.d.ts.map