@chayns-components/core 5.0.0-beta.920 → 5.0.0-beta.921
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/lib/cjs/utils/file.js +20 -378
- package/lib/cjs/utils/file.js.map +1 -1
- package/lib/esm/utils/file.js +18 -376
- package/lib/esm/utils/file.js.map +1 -1
- package/lib/types/utils/file.d.ts +4 -357
- package/package.json +2 -2
|
@@ -1,373 +1,20 @@
|
|
|
1
|
+
export declare const hasDuplicate: <T>(items: T[], newItem: T, comparator: (a: T, b: T) => boolean) => boolean;
|
|
1
2
|
interface FilerDuplicateFileOptions {
|
|
2
3
|
files: File[];
|
|
3
4
|
newFile: File;
|
|
4
5
|
}
|
|
5
|
-
export declare const filterDuplicateFile: ({
|
|
6
|
+
export declare const filterDuplicateFile: ({ files, newFile }: FilerDuplicateFileOptions) => boolean;
|
|
6
7
|
interface FilterDuplicateFileUrlsOptions {
|
|
7
8
|
files: string[];
|
|
8
9
|
newFile: string;
|
|
9
10
|
}
|
|
10
|
-
export declare const filterDuplicateFileUrls: ({
|
|
11
|
+
export declare const filterDuplicateFileUrls: ({ files, newFile }: FilterDuplicateFileUrlsOptions) => boolean;
|
|
11
12
|
export declare const getHumanSize: (bytes: number) => string;
|
|
12
13
|
interface IsValidFileTypeOptions {
|
|
13
14
|
file: File;
|
|
14
15
|
types: string;
|
|
15
16
|
}
|
|
16
17
|
export declare const isValidFileType: ({ types, file }: IsValidFileTypeOptions) => boolean;
|
|
17
|
-
export declare const MIME_TYPE_MAPPING:
|
|
18
|
-
'application/vnd.ms-excel': string;
|
|
19
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': string;
|
|
20
|
-
'application/vnd.ms-excel.sheet.macroEnabled.12': string;
|
|
21
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': string;
|
|
22
|
-
'application/vnd.ms-excel.template.macroEnabled.12': string;
|
|
23
|
-
'application/vnd.ms-excel.addin.macroEnabled.12': string;
|
|
24
|
-
'application/vnd.ms-excel.sheet.binary.macroEnabled.12': string;
|
|
25
|
-
'application/msexcel': string;
|
|
26
|
-
'application/x-msexcel': string;
|
|
27
|
-
'application/x-ms-excel': string;
|
|
28
|
-
'application/x-excel': string;
|
|
29
|
-
'application/x-dos_ms_excel': string;
|
|
30
|
-
'application/xls': string;
|
|
31
|
-
'application/x-xls': string;
|
|
32
|
-
'application/vnd.ms-excel.sheet': string;
|
|
33
|
-
'appliaction/msexcel': string;
|
|
34
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml': string;
|
|
35
|
-
'application/vnd.oasis.opendocument.spreadsheet': string;
|
|
36
|
-
'application/msword': string;
|
|
37
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': string;
|
|
38
|
-
'application/vnd.ms-word.document.macroEnabled.12': string;
|
|
39
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': string;
|
|
40
|
-
'application/vnd.ms-word.template.macroEnabled.12': string;
|
|
41
|
-
'application/doc': string;
|
|
42
|
-
'application/vnd.ms-word': string;
|
|
43
|
-
'application/vnd.ms-word.document.macroEnabled': string;
|
|
44
|
-
'application/vnd.ms-word.template.macroEnabled': string;
|
|
45
|
-
'application/word': string;
|
|
46
|
-
'application/x-msword': string;
|
|
47
|
-
'application/x-msword-template': string;
|
|
48
|
-
'application/vnd.ms-word.document': string;
|
|
49
|
-
'application/rtf': string;
|
|
50
|
-
'application/vnd.oasis.opendocument.text': string;
|
|
51
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml': string;
|
|
52
|
-
'application/pdf': string;
|
|
53
|
-
'application/x-pdf': string;
|
|
54
|
-
'application/vnd.pdf': string;
|
|
55
|
-
'text/pdf': string;
|
|
56
|
-
'application/x-bzpdf': string;
|
|
57
|
-
'application/x-gzpdf': string;
|
|
58
|
-
'application/x-xzpdf': string;
|
|
59
|
-
'application/vnd.adobe.pdf': string;
|
|
60
|
-
'application/vnd.adobe.x-mars': string;
|
|
61
|
-
'application/vnd.fdf': string;
|
|
62
|
-
'application/vnd.adobe.xfdf': string;
|
|
63
|
-
'application/vnd.adobe.xdp+xml': string;
|
|
64
|
-
'application/vnd.adobe.xfd+xml': string;
|
|
65
|
-
'application/vnd.adobe.xslfo+xml': string;
|
|
66
|
-
'application/vnd.adobe.pdx': string;
|
|
67
|
-
'application/vnd.adobe.xsp+xml': string;
|
|
68
|
-
'application/vnd.adobe.xp+xml': string;
|
|
69
|
-
'application/vnd.adobe.xpp+xml': string;
|
|
70
|
-
'application/vnd.adobe.xdp+zip': string;
|
|
71
|
-
'application/vnd.adobe.xfd+zip': string;
|
|
72
|
-
'application/vnd.adobe.xfdf+zip': string;
|
|
73
|
-
'application/vnd.adobe.xslt+xml': string;
|
|
74
|
-
'application/vnd.adobe.xfm+xml': string;
|
|
75
|
-
'application/vnd.adobe.xsf+xml': string;
|
|
76
|
-
'application/vnd.adobe.xdpxml': string;
|
|
77
|
-
'application/vnd.adobe.xfa': string;
|
|
78
|
-
'application/vnd.adobe.xpinstall': string;
|
|
79
|
-
'application/vnd.adobe.xquery': string;
|
|
80
|
-
'application/vnd.adobe.xrd+xml': string;
|
|
81
|
-
'application/vnd.adobe.xspf+xml': string;
|
|
82
|
-
'application/vnd.adobe.xliff+xml': string;
|
|
83
|
-
'application/vnd.adobe.xfdf+xml': string;
|
|
84
|
-
'application/vnd.adobe.xmp+xml': string;
|
|
85
|
-
'application/vnd.adobe.xmp+zip': string;
|
|
86
|
-
'application/vnd.adobe.xna+xml': string;
|
|
87
|
-
'application/vnd.adobe.cif+xml': string;
|
|
88
|
-
'application/vnd.adobe.edn+xml': string;
|
|
89
|
-
'application/vnd.adobe.eps': string;
|
|
90
|
-
'application/vnd.adobe.encase.package+xml': string;
|
|
91
|
-
'application/vnd.adobe.flash.movie': string;
|
|
92
|
-
'application/vnd.adobe.formscentral.fcdt': string;
|
|
93
|
-
'application/vnd.adobe.illustrator': string;
|
|
94
|
-
'application/vnd.adobe.flash-movie': string;
|
|
95
|
-
'application/vnd.adobe.air-application-installer-package+zip': string;
|
|
96
|
-
'application/zip': string;
|
|
97
|
-
'application/x-rar-compressed': string;
|
|
98
|
-
'application/x-tar': string;
|
|
99
|
-
'application/x-7z-compressed': string;
|
|
100
|
-
'application/x-gzip': string;
|
|
101
|
-
'application/x-bzip2': string;
|
|
102
|
-
'application/x-xz': string;
|
|
103
|
-
'application/x-zip-compressed': string;
|
|
104
|
-
'application/java-archive': string;
|
|
105
|
-
'application/vnd.ms-cab-compressed': string;
|
|
106
|
-
'application/x-ace-compressed': string;
|
|
107
|
-
'application/x-apple-diskimage': string;
|
|
108
|
-
'application/x-stuffit': string;
|
|
109
|
-
'application/x-deb': string;
|
|
110
|
-
'application/x-lzip': string;
|
|
111
|
-
'application/x-lzma': string;
|
|
112
|
-
'application/x-lz4': string;
|
|
113
|
-
'application/x-arj': string;
|
|
114
|
-
'application/x-gtar': string;
|
|
115
|
-
'application/x-gtar-compressed': string;
|
|
116
|
-
'application/x-compress': string;
|
|
117
|
-
'application/x-bzip': string;
|
|
118
|
-
'application/x-bzip2-compressed-tar': string;
|
|
119
|
-
'application/x-iso9660-image': string;
|
|
120
|
-
'application/x-nrg': string;
|
|
121
|
-
'application/x-cpio': string;
|
|
122
|
-
'application/x-rpm': string;
|
|
123
|
-
'application/x-msdownload': string;
|
|
124
|
-
'application/x-ace': string;
|
|
125
|
-
'application/x-gca-compressed': string;
|
|
126
|
-
'application/x-java-pack200': string;
|
|
127
|
-
'application/x-tarz': string;
|
|
128
|
-
'application/x-vhd': string;
|
|
129
|
-
'application/x-virtualbox-hdd': string;
|
|
130
|
-
'application/x-lha': string;
|
|
131
|
-
'application/x-lzx': string;
|
|
132
|
-
'application/x-nsis': string;
|
|
133
|
-
'application/x-sit': string;
|
|
134
|
-
'application/x-squashfs': string;
|
|
135
|
-
'application/x-tzo': string;
|
|
136
|
-
'application/x-lzh-compressed': string;
|
|
137
|
-
'application/x-xar': string;
|
|
138
|
-
'application/x-war': string;
|
|
139
|
-
'application/x-cfs-compressed': string;
|
|
140
|
-
'application/x-zoo': string;
|
|
141
|
-
'application/x-ice': string;
|
|
142
|
-
'application/x-b1': string;
|
|
143
|
-
'application/x-arc': string;
|
|
144
|
-
'application/x-uc2': string;
|
|
145
|
-
'application/x-gzcompressed': string;
|
|
146
|
-
'application/x-cab-compressed': string;
|
|
147
|
-
'application/x-egg': string;
|
|
148
|
-
'application/x-ipynb+zip': string;
|
|
149
|
-
'application/x-iso9660-appimage': string;
|
|
150
|
-
'application/x-java-archive-diff': string;
|
|
151
|
-
'application/x-lhz': string;
|
|
152
|
-
'application/x-ms-wim': string;
|
|
153
|
-
'application/x-rar': string;
|
|
154
|
-
'application/x-sfx': string;
|
|
155
|
-
'application/x-shar': string;
|
|
156
|
-
'application/x-tar-gz': string;
|
|
157
|
-
'application/x-tar-bz2': string;
|
|
158
|
-
'application/x-tar-xz': string;
|
|
159
|
-
'application/x-tar-z': string;
|
|
160
|
-
'application/x-tar-zstd': string;
|
|
161
|
-
'application/x-tar.lz': string;
|
|
162
|
-
'application/x-tar.lzo': string;
|
|
163
|
-
'application/x-ustar': string;
|
|
164
|
-
'application/x-wim': string;
|
|
165
|
-
'application/x-xpinstall': string;
|
|
166
|
-
'application/x-xz-compressed-tar': string;
|
|
167
|
-
'application/xz-compressed-tar': string;
|
|
168
|
-
'application/x-zip': string;
|
|
169
|
-
'application/x-zip-sfx': string;
|
|
170
|
-
'application/x-zipx': string;
|
|
171
|
-
'application/xz': string;
|
|
172
|
-
'application/zlib': string;
|
|
173
|
-
'application/vnd.apple.installer+xml': string;
|
|
174
|
-
'application/vnd.debian.binary-package': string;
|
|
175
|
-
'application/vnd.ms-office.addin.macroEnabled.12': string;
|
|
176
|
-
'application/vnd.ms-office.activex+xml': string;
|
|
177
|
-
'application/vnd.ms-pki.seccat': string;
|
|
178
|
-
'application/vnd.ms-pki.stl': string;
|
|
179
|
-
'application/vnd.ms-powerpoint.addin.macroEnabled.12': string;
|
|
180
|
-
'application/vnd.ms-powerpoint.presentation.macroEnabled.12': string;
|
|
181
|
-
'application/vnd.ms-powerpoint.slide.macroEnabled.12': string;
|
|
182
|
-
'application/vnd.ms-powerpoint.slideshow.macroEnabled.12': string;
|
|
183
|
-
'application/vnd.ms-powerpoint.template.macroEnabled.12': string;
|
|
184
|
-
'application/vnd.ms-visio.drawing': string;
|
|
185
|
-
'application/vnd.ms-visio.drawing.macroEnabled.12': string;
|
|
186
|
-
'application/vnd.ms-visio.stencil': string;
|
|
187
|
-
'application/vnd.ms-visio.stencil.macroEnabled.12': string;
|
|
188
|
-
'application/vnd.ms-visio.template': string;
|
|
189
|
-
'application/vnd.ms-visio.template.macroEnabled.12': string;
|
|
190
|
-
'application/vnd.ms-xpsdocument': string;
|
|
191
|
-
'application/octet-stream': string;
|
|
192
|
-
'application/gzip': string;
|
|
193
|
-
'application/vnd.ms-powerpoint': string;
|
|
194
|
-
'application/vnd.openxmlformats-officedocument.presentationml.presentation': string;
|
|
195
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': string;
|
|
196
|
-
'application/vnd.openxmlformats-officedocument.presentationml.template': string;
|
|
197
|
-
'application/vnd.ms-powerpoint.slide+xml': string;
|
|
198
|
-
'application/vnd.ms-powerpoint.slide.show+xml': string;
|
|
199
|
-
'application/vnd.ms-powerpoint.slide.show.macroEnabled.12': string;
|
|
200
|
-
'application/vnd.ms-powerpoint.slideLayout+xml': string;
|
|
201
|
-
'application/vnd.ms-powerpoint.slideMaster+xml': string;
|
|
202
|
-
'application/vnd.ms-powerpoint.slideshow+xml': string;
|
|
203
|
-
'application/vnd.ms-powerpoint.template+xml': string;
|
|
204
|
-
'application/vnd.ms-powerpoint.presentation+xml': string;
|
|
205
|
-
'application/vnd.ms-powerpoint.addin+xml': string;
|
|
206
|
-
'application/vnd.ms-powerpoint.presentation.macroEnabled+xml': string;
|
|
207
|
-
'application/vnd.ms-powerpoint.presentation.main+xml': string;
|
|
208
|
-
'application/vnd.ms-powerpoint.slide.show.macroEnabled+xml': string;
|
|
209
|
-
'application/vnd.ms-powerpoint.template.macroEnabled+xml': string;
|
|
210
|
-
'application/x-mspowerpoint': string;
|
|
211
|
-
'application/x-ms-powerpoint': string;
|
|
212
|
-
'application/mspowerpoint': string;
|
|
213
|
-
'application/ppt': string;
|
|
214
|
-
'application/vnd.ms-ppt': string;
|
|
215
|
-
'application/powerpoint': string;
|
|
216
|
-
'application/x-ppt': string;
|
|
217
|
-
'application/pptx': string;
|
|
218
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slide': string;
|
|
219
|
-
'application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml': string;
|
|
220
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml': string;
|
|
221
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml': string;
|
|
222
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml': string;
|
|
223
|
-
'application/vnd.openxmlformats-officedocument.presentationml': string;
|
|
224
|
-
'application/vnd.oasis.opendocument.presentation': string;
|
|
225
|
-
'text/plain': string;
|
|
226
|
-
'text/csv': string;
|
|
227
|
-
'application/csv': string;
|
|
228
|
-
'application/x-csv': string;
|
|
229
|
-
'text/comma-separated-values': string;
|
|
230
|
-
'text/x-comma-separated-values': string;
|
|
231
|
-
'text/tab-separated-values': string;
|
|
232
|
-
'application/x-sqlite3': string;
|
|
233
|
-
'application/vnd.oasis.opendocument.graphics': string;
|
|
234
|
-
'application/vnd.oasis.opendocument.chart': string;
|
|
235
|
-
'application/vnd.oasis.opendocument.database': string;
|
|
236
|
-
'application/vnd.oasis.opendocument.formula': string;
|
|
237
|
-
'application/vnd.oasis.opendocument.image': string;
|
|
238
|
-
'application/vnd.oasis.opendocument.text-master': string;
|
|
239
|
-
'application/vnd.oasis.opendocument.presentation-master': string;
|
|
240
|
-
'application/vnd.oasis.opendocument.spreadsheet-template': string;
|
|
241
|
-
'application/vnd.oasis.opendocument.text-template': string;
|
|
242
|
-
'application/vnd.oasis.opendocument.presentation-template': string;
|
|
243
|
-
'application/vnd.oasis.opendocument.graphics-template': string;
|
|
244
|
-
'application/vnd.oasis.opendocument.chart-template': string;
|
|
245
|
-
'application/vnd.oasis.opendocument.database-template': string;
|
|
246
|
-
'application/vnd.oasis.opendocument.formula-template': string;
|
|
247
|
-
'application/vnd.oasis.opendocument.image-template': string;
|
|
248
|
-
'application/vnd.sun.xml.writer': string;
|
|
249
|
-
'application/vnd.sun.xml.writer.template': string;
|
|
250
|
-
'application/vnd.sun.xml.calc': string;
|
|
251
|
-
'application/vnd.sun.xml.calc.template': string;
|
|
252
|
-
'application/vnd.sun.xml.impress': string;
|
|
253
|
-
'application/vnd.sun.xml.impress.template': string;
|
|
254
|
-
'application/vnd.sun.xml.draw': string;
|
|
255
|
-
'application/vnd.sun.xml.draw.template': string;
|
|
256
|
-
'application/vnd.sun.xml.math': string;
|
|
257
|
-
'text/x-sass': string;
|
|
258
|
-
'text/x-scheme': string;
|
|
259
|
-
'text/x-scons': string;
|
|
260
|
-
'text/x-stsrc': string;
|
|
261
|
-
'text/x-tcl': string;
|
|
262
|
-
'text/x-tex': string;
|
|
263
|
-
'text/x-texinfo': string;
|
|
264
|
-
'text/x-toml': string;
|
|
265
|
-
'text/x-uuencode': string;
|
|
266
|
-
'text/x-vala': string;
|
|
267
|
-
'text/x-vbdotnet': string;
|
|
268
|
-
'text/x-vbnet': string;
|
|
269
|
-
'text/x-verilog': string;
|
|
270
|
-
'text/x-vhdl': string;
|
|
271
|
-
'text/x-yaml': string;
|
|
272
|
-
'application/x-gnuplot': string;
|
|
273
|
-
'application/x-haml': string;
|
|
274
|
-
'application/x-ini': string;
|
|
275
|
-
'application/x-mumps': string;
|
|
276
|
-
'application/x-ocaml': string;
|
|
277
|
-
'application/x-ooc': string;
|
|
278
|
-
'application/x-patch': string;
|
|
279
|
-
'application/x-prolog': string;
|
|
280
|
-
'application/x-properties': string;
|
|
281
|
-
'application/x-rsrc': string;
|
|
282
|
-
'application/x-sass': string;
|
|
283
|
-
'application/x-scheme': string;
|
|
284
|
-
'application/x-scons': string;
|
|
285
|
-
'application/x-stsrc': string;
|
|
286
|
-
'application/x-tcl': string;
|
|
287
|
-
'application/x-tex': string;
|
|
288
|
-
'application/x-texinfo': string;
|
|
289
|
-
'application/x-toml': string;
|
|
290
|
-
'application/x-uuencode': string;
|
|
291
|
-
'application/x-vala': string;
|
|
292
|
-
'application/x-vbdotnet': string;
|
|
293
|
-
'application/x-vbnet': string;
|
|
294
|
-
'application/x-vhdl': string;
|
|
295
|
-
'application/x-verilog': string;
|
|
296
|
-
'application/x-yaml': string;
|
|
297
|
-
'text/x-arduino': string;
|
|
298
|
-
'text/x-bibtex': string;
|
|
299
|
-
'text/x-coffeescript': string;
|
|
300
|
-
'text/x-dtd': string;
|
|
301
|
-
'text/x-erlang': string;
|
|
302
|
-
'text/x-gnuplot': string;
|
|
303
|
-
'text/x-go': string;
|
|
304
|
-
'text/x-gwt-rpc': string;
|
|
305
|
-
'text/x-handlebars': string;
|
|
306
|
-
'text/x-haml': string;
|
|
307
|
-
'text/x-ini': string;
|
|
308
|
-
'text/x-json': string;
|
|
309
|
-
'text/x-kotlin': string;
|
|
310
|
-
'text/x-liquid': string;
|
|
311
|
-
'text/x-literate-haskell': string;
|
|
312
|
-
'text/x-lua': string;
|
|
313
|
-
'text/x-makefile': string;
|
|
314
|
-
'text/x-nfo': string;
|
|
315
|
-
'text/x-ocaml': string;
|
|
316
|
-
'text/x-ooc': string;
|
|
317
|
-
'text/x-patch': string;
|
|
318
|
-
'text/x-prolog': string;
|
|
319
|
-
'text/x-properties': string;
|
|
320
|
-
'text/x-rsrc': string;
|
|
321
|
-
'text/x-rust': string;
|
|
322
|
-
'text/html': string;
|
|
323
|
-
'text/css': string;
|
|
324
|
-
'text/javascript': string;
|
|
325
|
-
'application/javascript': string;
|
|
326
|
-
'application/json': string;
|
|
327
|
-
'application/xml': string;
|
|
328
|
-
'application/xhtml+xml': string;
|
|
329
|
-
'application/atom+xml': string;
|
|
330
|
-
'application/rss+xml': string;
|
|
331
|
-
'application/x-latex': string;
|
|
332
|
-
'application/x-sh': string;
|
|
333
|
-
'application/x-python': string;
|
|
334
|
-
'application/x-perl': string;
|
|
335
|
-
'application/x-ruby': string;
|
|
336
|
-
'application/x-php': string;
|
|
337
|
-
'application/x-java': string;
|
|
338
|
-
'application/x-c++': string;
|
|
339
|
-
'application/x-c': string;
|
|
340
|
-
'application/x-shellscript': string;
|
|
341
|
-
'application/x-diff': string;
|
|
342
|
-
'application/x-go': string;
|
|
343
|
-
'application/x-swift': string;
|
|
344
|
-
'application/x-objective-c': string;
|
|
345
|
-
'application/x-scala': string;
|
|
346
|
-
'application/x-rust': string;
|
|
347
|
-
'application/x-haskell': string;
|
|
348
|
-
'application/x-lua': string;
|
|
349
|
-
'application/x-matlab': string;
|
|
350
|
-
'application/x-fortran': string;
|
|
351
|
-
'application/x-csharp': string;
|
|
352
|
-
'application/x-vb': string;
|
|
353
|
-
'application/x-pascal': string;
|
|
354
|
-
'application/x-cobol': string;
|
|
355
|
-
'application/x-groovy': string;
|
|
356
|
-
'application/x-sql': string;
|
|
357
|
-
'application/x-typescript': string;
|
|
358
|
-
'application/x-kotlin': string;
|
|
359
|
-
'application/x-erlang': string;
|
|
360
|
-
'application/x-clojure': string;
|
|
361
|
-
'application/x-less': string;
|
|
362
|
-
'application/x-stylus': string;
|
|
363
|
-
'application/x-markdown': string;
|
|
364
|
-
'application/x-coffeescript': string;
|
|
365
|
-
'application/x-dart': string;
|
|
366
|
-
'application/x-lisp': string;
|
|
367
|
-
'application/x-powershell': string;
|
|
368
|
-
image: string;
|
|
369
|
-
audio: string;
|
|
370
|
-
video: string;
|
|
371
|
-
};
|
|
18
|
+
export declare const MIME_TYPE_MAPPING: Record<string, string>;
|
|
372
19
|
export declare const getIconByMimeType: (mimeType?: string) => string;
|
|
373
20
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/core",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.921",
|
|
4
4
|
"description": "A set of beautiful React components for developing your own applications with chayns.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"browserslist": [
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "7b1332c3aa20828cbf959627dc1addd3553a863e"
|
|
91
91
|
}
|