@helpdice/ui 2.4.8 → 2.5.0

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 (25) hide show
  1. package/dist/carousal/index.d.ts +3 -3
  2. package/esm/carousal/{component/Arrow.js → Arrow.js} +1 -1
  3. package/esm/carousal/{component/Indicator.js → Indicator.js} +1 -1
  4. package/esm/carousal/{component/Thumbs.js → Thumbs.js} +6 -6
  5. package/esm/carousal/{component/animations.js → animations.js} +1 -1
  6. package/esm/carousal/{component/index.js → carousel.js} +4 -4
  7. package/esm/carousal/index.d.ts +3 -3
  8. package/esm/carousal/index.js +2 -2
  9. package/esm/carousal/{component/utils.js → utils.js} +1 -1
  10. package/package.json +579 -5
  11. /package/dist/carousal/{component/Arrow.d.ts → Arrow.d.ts} +0 -0
  12. /package/dist/carousal/{component/Indicator.d.ts → Indicator.d.ts} +0 -0
  13. /package/dist/carousal/{component/Thumbs.d.ts → Thumbs.d.ts} +0 -0
  14. /package/dist/carousal/{component/animations.d.ts → animations.d.ts} +0 -0
  15. /package/dist/carousal/{component/index.d.ts → carousel.d.ts} +0 -0
  16. /package/dist/carousal/{component/types.d.ts → types.d.ts} +0 -0
  17. /package/dist/carousal/{component/utils.d.ts → utils.d.ts} +0 -0
  18. /package/esm/carousal/{component/Arrow.d.ts → Arrow.d.ts} +0 -0
  19. /package/esm/carousal/{component/Indicator.d.ts → Indicator.d.ts} +0 -0
  20. /package/esm/carousal/{component/Thumbs.d.ts → Thumbs.d.ts} +0 -0
  21. /package/esm/carousal/{component/animations.d.ts → animations.d.ts} +0 -0
  22. /package/esm/carousal/{component/index.d.ts → carousel.d.ts} +0 -0
  23. /package/esm/carousal/{component/types.d.ts → types.d.ts} +0 -0
  24. /package/esm/carousal/{component/types.js → types.js} +0 -0
  25. /package/esm/carousal/{component/utils.d.ts → utils.d.ts} +0 -0
@@ -1,4 +1,4 @@
1
- import Carousel from './component';
2
- export type { CarouselProps } from './component/types';
3
- export { default as Thumbs } from './component/Thumbs';
1
+ import Carousel from './carousel';
2
+ export type { CarouselProps } from './types';
3
+ export { default as Thumbs } from './Thumbs';
4
4
  export default Carousel;
@@ -1,6 +1,6 @@
1
1
  import _JSXStyle from "../styled-jsx.es.js";
2
2
  import React from 'react';
3
- import klass from '../cssClasses'; // Assuming cssClasses.ts is in src/
3
+ import klass from './cssClasses'; // Assuming cssClasses.ts is in src/
4
4
 
5
5
  var Arrow = function Arrow(_ref) {
6
6
  var direction = _ref.direction,
@@ -1,6 +1,6 @@
1
1
  import _JSXStyle from "../styled-jsx.es.js";
2
2
  import React from 'react';
3
- import klass from '../cssClasses'; // Assuming cssClasses.ts is in src/
3
+ import klass from './cssClasses'; // Assuming cssClasses.ts is in src/
4
4
 
5
5
  var Indicator = function Indicator(_ref) {
6
6
  var onClickHandler = _ref.onClickHandler,
@@ -9,13 +9,13 @@ import _JSXStyle from "../styled-jsx.es.js";
9
9
  function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
10
10
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
11
11
  import React, { Component, Children } from 'react';
12
- import klass from '../cssClasses';
13
- import { outerWidth } from '../dimensions';
14
- import CSSTranslate from '../CSSTranslate';
12
+ import klass from './cssClasses';
13
+ import { outerWidth } from './dimensions';
14
+ import CSSTranslate from './CSSTranslate';
15
15
  // @ts-ignore
16
- import Swipe from '../../swipe';
17
- import getWindow from '../shims/window';
18
- import Button from '../../button';
16
+ import Swipe from '../swipe';
17
+ import getWindow from './shims/window';
18
+ import Button from '../button';
19
19
  import { ChevronLeft, ChevronRight } from '@helpdice/icons';
20
20
  var isKeyboardEvent = function isKeyboardEvent(e) {
21
21
  return e.hasOwnProperty('key');
@@ -1,6 +1,6 @@
1
1
  import _extends from "@babel/runtime/helpers/esm/extends";
2
2
  import { Children } from 'react';
3
- import CSSTranslate from '../CSSTranslate';
3
+ import CSSTranslate from './CSSTranslate';
4
4
  import { getPosition, setPosition } from './utils';
5
5
  /**
6
6
  * Main animation handler for the default 'sliding' style animation
@@ -10,11 +10,11 @@ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstruct
10
10
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
11
11
  import React, { Children } from 'react';
12
12
  // @ts-ignore
13
- import Swipe from '../../swipe';
14
- import klass from '../cssClasses';
13
+ import Swipe from '../swipe';
14
+ import klass from './cssClasses';
15
15
  import Thumbs from './Thumbs';
16
- import getDocument from '../shims/document';
17
- import getWindow from '../shims/window';
16
+ import getDocument from './shims/document';
17
+ import getWindow from './shims/window';
18
18
  import { noop, defaultStatusFormatter, isKeyboardEvent } from './utils';
19
19
  import Arrow from './Arrow';
20
20
  import Indicator from './Indicator';
@@ -1,4 +1,4 @@
1
- import Carousel from './component';
2
- export type { CarouselProps } from './component/types';
3
- export { default as Thumbs } from './component/Thumbs';
1
+ import Carousel from './carousel';
2
+ export type { CarouselProps } from './types';
3
+ export { default as Thumbs } from './Thumbs';
4
4
  export default Carousel;
@@ -1,3 +1,3 @@
1
- import Carousel from './component';
2
- export { default as Thumbs } from './component/Thumbs';
1
+ import Carousel from './carousel';
2
+ export { default as Thumbs } from './Thumbs';
3
3
  export default Carousel;
@@ -1,5 +1,5 @@
1
1
  import { Children } from 'react';
2
- import CSSTranslate from '../CSSTranslate';
2
+ import CSSTranslate from './CSSTranslate';
3
3
  export var noop = function noop() {};
4
4
  export var defaultStatusFormatter = function defaultStatusFormatter(current, total) {
5
5
  return "".concat(current, " of ").concat(total);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helpdice/ui",
3
- "version": "2.4.8",
3
+ "version": "2.5.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "esm/index.d.ts",
6
6
  "unpkg": "dist/index.min.js",
@@ -156,10 +156,584 @@
156
156
  "<rootDir>/test/setupTests.ts"
157
157
  ]
158
158
  },
159
- "exports": {
160
- "./*": {
161
- "import": "./esm/*.js",
162
- "require": "./dist/*.cjs"
159
+ "exports": {
160
+ "./package.json": "./package.json",
161
+ ".": {
162
+ "import": "./esm/index.js",
163
+ "require": "./dist/index.js",
164
+ "types": "./dist/index.d.ts"
165
+ },
166
+ "./AutoComplete": {
167
+ "import": "./esm/auto-complete/index.js",
168
+ "require": "./dist/auto-complete/index.js",
169
+ "types": "./dist/auto-complete/index.d.ts"
170
+ },
171
+ "./Avatar": {
172
+ "import": "./esm/avatar/index.js",
173
+ "require": "./dist/avatar/index.js",
174
+ "types": "./dist/avatar/index.d.ts"
175
+ },
176
+ "./Badge": {
177
+ "import": "./esm/badge/index.js",
178
+ "require": "./dist/badge/index.js",
179
+ "types": "./dist/badge/index.d.ts"
180
+ },
181
+ "./Breadcrumbs": {
182
+ "import": "./esm/breadcrumbs/index.js",
183
+ "require": "./dist/breadcrumbs/index.js",
184
+ "types": "./dist/breadcrumbs/index.d.ts"
185
+ },
186
+ "./Button": {
187
+ "import": "./esm/button/index.js",
188
+ "require": "./dist/button/index.js",
189
+ "types": "./dist/button/index.d.ts"
190
+ },
191
+ "./ButtonDropdown": {
192
+ "import": "./esm/button-dropdown/index.js",
193
+ "require": "./dist/button-dropdown/index.js",
194
+ "types": "./dist/button-dropdown/index.d.ts"
195
+ },
196
+ "./ButtonGroup": {
197
+ "import": "./esm/button-group/index.js",
198
+ "require": "./dist/button-group/index.js",
199
+ "types": "./dist/button-group/index.d.ts"
200
+ },
201
+ "./Capacity": {
202
+ "import": "./esm/capacity/index.js",
203
+ "require": "./dist/capacity/index.js",
204
+ "types": "./dist/capacity/index.d.ts"
205
+ },
206
+ "./Card": {
207
+ "import": "./esm/card/index.js",
208
+ "require": "./dist/card/index.js",
209
+ "types": "./dist/card/index.d.ts"
210
+ },
211
+ "./Carousal": {
212
+ "import": "./esm/carousal/index.js",
213
+ "require": "./dist/carousal/index.js",
214
+ "types": "./dist/carousal/index.d.ts"
215
+ },
216
+ "./Checkbox": {
217
+ "import": "./esm/checkbox/index.js",
218
+ "require": "./dist/checkbox/index.js",
219
+ "types": "./dist/checkbox/index.d.ts"
220
+ },
221
+ "./CircularProgress": {
222
+ "import": "./esm/circular-progress/index.js",
223
+ "require": "./dist/circular-progress/index.js",
224
+ "types": "./dist/circular-progress/index.d.ts"
225
+ },
226
+ "./Code": {
227
+ "import": "./esm/code/index.js",
228
+ "require": "./dist/code/index.js",
229
+ "types": "./dist/code/index.d.ts"
230
+ },
231
+ "./CodeBlock": {
232
+ "import": "./esm/code-block/index.js",
233
+ "require": "./dist/code-block/index.js",
234
+ "types": "./dist/code-block/index.d.ts"
235
+ },
236
+ "./Collapse": {
237
+ "import": "./esm/collapse/index.js",
238
+ "require": "./dist/collapse/index.js",
239
+ "types": "./dist/collapse/index.d.ts"
240
+ },
241
+ "./Container": {
242
+ "import": "./esm/container/index.js",
243
+ "require": "./dist/container/index.js",
244
+ "types": "./dist/container/index.d.ts"
245
+ },
246
+ "./CopyToClipboard": {
247
+ "import": "./esm/copy-to-clipboard/index.js",
248
+ "require": "./dist/copy-to-clipboard/index.js",
249
+ "types": "./dist/copy-to-clipboard/index.d.ts"
250
+ },
251
+ "./Description": {
252
+ "import": "./esm/description/index.js",
253
+ "require": "./dist/description/index.js",
254
+ "types": "./dist/description/index.d.ts"
255
+ },
256
+ "./Display": {
257
+ "import": "./esm/display/index.js",
258
+ "require": "./dist/display/index.js",
259
+ "types": "./dist/display/index.d.ts"
260
+ },
261
+ "./Divider": {
262
+ "import": "./esm/divider/index.js",
263
+ "require": "./dist/divider/index.js",
264
+ "types": "./dist/divider/index.d.ts"
265
+ },
266
+ "./Dot": {
267
+ "import": "./esm/dot/index.js",
268
+ "require": "./dist/dot/index.js",
269
+ "types": "./dist/dot/index.d.ts"
270
+ },
271
+ "./Drawer": {
272
+ "import": "./esm/drawer/index.js",
273
+ "require": "./dist/drawer/index.js",
274
+ "types": "./dist/drawer/index.d.ts"
275
+ },
276
+ "./Fieldset": {
277
+ "import": "./esm/fieldset/index.js",
278
+ "require": "./dist/fieldset/index.js",
279
+ "types": "./dist/fieldset/index.d.ts"
280
+ },
281
+ "./Form": {
282
+ "import": "./esm/form/index.js",
283
+ "require": "./dist/form/index.js",
284
+ "types": "./dist/form/index.d.ts"
285
+ },
286
+ "./Grid": {
287
+ "import": "./esm/grid/index.js",
288
+ "require": "./dist/grid/index.js",
289
+ "types": "./dist/grid/index.d.ts"
290
+ },
291
+ "./HtmlRenderer": {
292
+ "import": "./esm/html-renderer/index.js",
293
+ "require": "./dist/html-renderer/index.js",
294
+ "types": "./dist/html-renderer/index.d.ts"
295
+ },
296
+ "./Image": {
297
+ "import": "./esm/image/index.js",
298
+ "require": "./dist/image/index.js",
299
+ "types": "./dist/image/index.d.ts"
300
+ },
301
+ "./Input": {
302
+ "import": "./esm/input/index.js",
303
+ "require": "./dist/input/index.js",
304
+ "types": "./dist/input/index.d.ts"
305
+ },
306
+ "./Keyboard": {
307
+ "import": "./esm/keyboard/index.js",
308
+ "require": "./dist/keyboard/index.js",
309
+ "types": "./dist/keyboard/index.d.ts"
310
+ },
311
+ "./LinearProgress": {
312
+ "import": "./esm/linear-progress/index.js",
313
+ "require": "./dist/linear-progress/index.js",
314
+ "types": "./dist/linear-progress/index.d.ts"
315
+ },
316
+ "./Link": {
317
+ "import": "./esm/link/index.js",
318
+ "require": "./dist/link/index.js",
319
+ "types": "./dist/link/index.d.ts"
320
+ },
321
+ "./List": {
322
+ "import": "./esm/list/index.js",
323
+ "require": "./dist/list/index.js",
324
+ "types": "./dist/list/index.d.ts"
325
+ },
326
+ "./Loading": {
327
+ "import": "./esm/loading/index.js",
328
+ "require": "./dist/loading/index.js",
329
+ "types": "./dist/loading/index.d.ts"
330
+ },
331
+ "./LoginWith": {
332
+ "import": "./esm/login-with/index.js",
333
+ "require": "./dist/login-with/index.js",
334
+ "types": "./dist/login-with/index.d.ts"
335
+ },
336
+ "./Menu": {
337
+ "import": "./esm/menu/index.js",
338
+ "require": "./dist/menu/index.js",
339
+ "types": "./dist/menu/index.d.ts"
340
+ },
341
+ "./Modal": {
342
+ "import": "./esm/modal/index.js",
343
+ "require": "./dist/modal/index.js",
344
+ "types": "./dist/modal/index.d.ts"
345
+ },
346
+ "./Note": {
347
+ "import": "./esm/note/index.js",
348
+ "require": "./dist/note/index.js",
349
+ "types": "./dist/note/index.d.ts"
350
+ },
351
+ "./Page": {
352
+ "import": "./esm/page/index.js",
353
+ "require": "./dist/page/index.js",
354
+ "types": "./dist/page/index.d.ts"
355
+ },
356
+ "./Pagination": {
357
+ "import": "./esm/pagination/index.js",
358
+ "require": "./dist/pagination/index.js",
359
+ "types": "./dist/pagination/index.d.ts"
360
+ },
361
+ "./Placeholder": {
362
+ "import": "./esm/placeholder/index.js",
363
+ "require": "./dist/placeholder/index.js",
364
+ "types": "./dist/placeholder/index.d.ts"
365
+ },
366
+ "./Popover": {
367
+ "import": "./esm/popover/index.js",
368
+ "require": "./dist/popover/index.js",
369
+ "types": "./dist/popover/index.d.ts"
370
+ },
371
+ "./Progress": {
372
+ "import": "./esm/progress/index.js",
373
+ "require": "./dist/progress/index.js",
374
+ "types": "./dist/progress/index.d.ts"
375
+ },
376
+ "./Radio": {
377
+ "import": "./esm/radio/index.js",
378
+ "require": "./dist/radio/index.js",
379
+ "types": "./dist/radio/index.d.ts"
380
+ },
381
+ "./Rating": {
382
+ "import": "./esm/rating/index.js",
383
+ "require": "./dist/rating/index.js",
384
+ "types": "./dist/rating/index.d.ts"
385
+ },
386
+ "./Select": {
387
+ "import": "./esm/select/index.js",
388
+ "require": "./dist/select/index.js",
389
+ "types": "./dist/select/index.d.ts"
390
+ },
391
+ "./Skeleton": {
392
+ "import": "./esm/skeleton/index.js",
393
+ "require": "./dist/skeleton/index.js",
394
+ "types": "./dist/skeleton/index.d.ts"
395
+ },
396
+ "./Slider": {
397
+ "import": "./esm/slider/index.js",
398
+ "require": "./dist/slider/index.js",
399
+ "types": "./dist/slider/index.d.ts"
400
+ },
401
+ "./Snippet": {
402
+ "import": "./esm/snippet/index.js",
403
+ "require": "./dist/snippet/index.js",
404
+ "types": "./dist/snippet/index.d.ts"
405
+ },
406
+ "./Spacer": {
407
+ "import": "./esm/spacer/index.js",
408
+ "require": "./dist/spacer/index.js",
409
+ "types": "./dist/spacer/index.d.ts"
410
+ },
411
+ "./Spinner": {
412
+ "import": "./esm/spinner/index.js",
413
+ "require": "./dist/spinner/index.js",
414
+ "types": "./dist/spinner/index.d.ts"
415
+ },
416
+ "./Swipe": {
417
+ "import": "./esm/swipe/index.js",
418
+ "require": "./dist/swipe/index.js",
419
+ "types": "./dist/swipe/index.d.ts"
420
+ },
421
+ "./Table": {
422
+ "import": "./esm/table/index.js",
423
+ "require": "./dist/table/index.js",
424
+ "types": "./dist/table/index.d.ts"
425
+ },
426
+ "./Tabs": {
427
+ "import": "./esm/tabs/index.js",
428
+ "require": "./dist/tabs/index.js",
429
+ "types": "./dist/tabs/index.d.ts"
430
+ },
431
+ "./Tag": {
432
+ "import": "./esm/tag/index.js",
433
+ "require": "./dist/tag/index.js",
434
+ "types": "./dist/tag/index.d.ts"
435
+ },
436
+ "./Text": {
437
+ "import": "./esm/text/index.js",
438
+ "require": "./dist/text/index.js",
439
+ "types": "./dist/text/index.d.ts"
440
+ },
441
+ "./Textarea": {
442
+ "import": "./esm/textarea/index.js",
443
+ "require": "./dist/textarea/index.js",
444
+ "types": "./dist/textarea/index.d.ts"
445
+ },
446
+ "./Themes": {
447
+ "import": "./esm/themes/index.js",
448
+ "require": "./dist/themes/index.js",
449
+ "types": "./dist/themes/index.d.ts"
450
+ },
451
+ "./Toggle": {
452
+ "import": "./esm/toggle/index.js",
453
+ "require": "./dist/toggle/index.js",
454
+ "types": "./dist/toggle/index.d.ts"
455
+ },
456
+ "./Tooltip": {
457
+ "import": "./esm/tooltip/index.js",
458
+ "require": "./dist/tooltip/index.js",
459
+ "types": "./dist/tooltip/index.d.ts"
460
+ },
461
+ "./Tree": {
462
+ "import": "./esm/tree/index.js",
463
+ "require": "./dist/tree/index.js",
464
+ "types": "./dist/tree/index.d.ts"
465
+ },
466
+ "./useBodyScroll": {
467
+ "import": "./esm/use-body-scroll/index.js",
468
+ "require": "./dist/use-body-scroll/index.js",
469
+ "types": "./dist/use-body-scroll/index.d.ts"
470
+ },
471
+ "./useClickAway": {
472
+ "import": "./esm/use-click-away/index.js",
473
+ "require": "./dist/use-click-away/index.js",
474
+ "types": "./dist/use-click-away/index.d.ts"
475
+ },
476
+ "./useClipboard": {
477
+ "import": "./esm/use-clipboard/index.js",
478
+ "require": "./dist/use-clipboard/index.js",
479
+ "types": "./dist/use-clipboard/index.d.ts"
480
+ },
481
+ "./useInput": {
482
+ "import": "./esm/use-input/index.js",
483
+ "require": "./dist/use-input/index.js",
484
+ "types": "./dist/use-input/index.d.ts"
485
+ },
486
+ "./useKeyboard": {
487
+ "import": "./esm/use-keyboard/index.js",
488
+ "require": "./dist/use-keyboard/index.js",
489
+ "types": "./dist/use-keyboard/index.d.ts"
490
+ },
491
+ "./useModal": {
492
+ "import": "./esm/use-modal/index.js",
493
+ "require": "./dist/use-modal/index.js",
494
+ "types": "./dist/use-modal/index.d.ts"
495
+ },
496
+ "./useNetworkStatus": {
497
+ "import": "./esm/use-network-status/index.js",
498
+ "require": "./dist/use-network-status/index.js",
499
+ "types": "./dist/use-network-status/index.d.ts"
500
+ },
501
+ "./useScale": {
502
+ "import": "./esm/use-scale/index.js",
503
+ "require": "./dist/use-scale/index.js",
504
+ "types": "./dist/use-scale/index.d.ts"
505
+ },
506
+ "./useTabs": {
507
+ "import": "./esm/use-tabs/index.js",
508
+ "require": "./dist/use-tabs/index.js",
509
+ "types": "./dist/use-tabs/index.d.ts"
510
+ },
511
+ "./useToasts": {
512
+ "import": "./esm/use-toasts/index.js",
513
+ "require": "./dist/use-toasts/index.js",
514
+ "types": "./dist/use-toasts/index.d.ts"
515
+ },
516
+ "./user": {
517
+ "import": "./esm/user/index.js",
518
+ "require": "./dist/user/index.js",
519
+ "types": "./dist/user/index.d.ts"
520
+ }
521
+ },
522
+ "typesVersions": {
523
+ "*": {
524
+ "AutoComplete": [
525
+ "dist/auto-complete/index.d.ts"
526
+ ],
527
+ "Avatar": [
528
+ "dist/avatar/index.d.ts"
529
+ ],
530
+ "Badge": [
531
+ "dist/badge/index.d.ts"
532
+ ],
533
+ "Breadcrumbs": [
534
+ "dist/breadcrumbs/index.d.ts"
535
+ ],
536
+ "Button": [
537
+ "dist/button/index.d.ts"
538
+ ],
539
+ "ButtonDropdown": [
540
+ "dist/button-dropdown/index.d.ts"
541
+ ],
542
+ "ButtonGroup": [
543
+ "dist/button-group/index.d.ts"
544
+ ],
545
+ "Capacity": [
546
+ "dist/capacity/index.d.ts"
547
+ ],
548
+ "Card": [
549
+ "dist/card/index.d.ts"
550
+ ],
551
+ "Carousal": [
552
+ "dist/carousal/index.d.ts"
553
+ ],
554
+ "Checkbox": [
555
+ "dist/checkbox/index.d.ts"
556
+ ],
557
+ "CircularProgress": [
558
+ "dist/circular-progress/index.d.ts"
559
+ ],
560
+ "Code": [
561
+ "dist/code/index.d.ts"
562
+ ],
563
+ "CodeBlock": [
564
+ "dist/code-block/index.d.ts"
565
+ ],
566
+ "Collapse": [
567
+ "dist/collapse/index.d.ts"
568
+ ],
569
+ "Container": [
570
+ "dist/container/index.d.ts"
571
+ ],
572
+ "CopyToClipboard": [
573
+ "dist/copy-to-clipboard/index.d.ts"
574
+ ],
575
+ "Description": [
576
+ "dist/description/index.d.ts"
577
+ ],
578
+ "Display": [
579
+ "dist/display/index.d.ts"
580
+ ],
581
+ "Divider": [
582
+ "dist/divider/index.d.ts"
583
+ ],
584
+ "Dot": [
585
+ "dist/dot/index.d.ts"
586
+ ],
587
+ "Drawer": [
588
+ "dist/drawer/index.d.ts"
589
+ ],
590
+ "Fieldset": [
591
+ "dist/fieldset/index.d.ts"
592
+ ],
593
+ "Form": [
594
+ "dist/form/index.d.ts"
595
+ ],
596
+ "Grid": [
597
+ "dist/grid/index.d.ts"
598
+ ],
599
+ "HtmlRenderer": [
600
+ "dist/html-renderer/index.d.ts"
601
+ ],
602
+ "Image": [
603
+ "dist/image/index.d.ts"
604
+ ],
605
+ "Input": [
606
+ "dist/input/index.d.ts"
607
+ ],
608
+ "Keyboard": [
609
+ "dist/keyboard/index.d.ts"
610
+ ],
611
+ "LinearProgress": [
612
+ "dist/linear-progress/index.d.ts"
613
+ ],
614
+ "Link": [
615
+ "dist/link/index.d.ts"
616
+ ],
617
+ "List": [
618
+ "dist/list/index.d.ts"
619
+ ],
620
+ "Loading": [
621
+ "dist/loading/index.d.ts"
622
+ ],
623
+ "LoginWith": [
624
+ "dist/login-with/index.d.ts"
625
+ ],
626
+ "Menu": [
627
+ "dist/menu/index.d.ts"
628
+ ],
629
+ "Modal": [
630
+ "dist/modal/index.d.ts"
631
+ ],
632
+ "Note": [
633
+ "dist/note/index.d.ts"
634
+ ],
635
+ "Page": [
636
+ "dist/page/index.d.ts"
637
+ ],
638
+ "Pagination": [
639
+ "dist/pagination/index.d.ts"
640
+ ],
641
+ "Placeholder": [
642
+ "dist/placeholder/index.d.ts"
643
+ ],
644
+ "Popover": [
645
+ "dist/popover/index.d.ts"
646
+ ],
647
+ "Progress": [
648
+ "dist/progress/index.d.ts"
649
+ ],
650
+ "Radio": [
651
+ "dist/radio/index.d.ts"
652
+ ],
653
+ "Rating": [
654
+ "dist/rating/index.d.ts"
655
+ ],
656
+ "Select": [
657
+ "dist/select/index.d.ts"
658
+ ],
659
+ "Skeleton": [
660
+ "dist/skeleton/index.d.ts"
661
+ ],
662
+ "Slider": [
663
+ "dist/slider/index.d.ts"
664
+ ],
665
+ "Snippet": [
666
+ "dist/snippet/index.d.ts"
667
+ ],
668
+ "Spacer": [
669
+ "dist/spacer/index.d.ts"
670
+ ],
671
+ "Spinner": [
672
+ "dist/spinner/index.d.ts"
673
+ ],
674
+ "Swipe": [
675
+ "dist/swipe/index.d.ts"
676
+ ],
677
+ "Table": [
678
+ "dist/table/index.d.ts"
679
+ ],
680
+ "Tabs": [
681
+ "dist/tabs/index.d.ts"
682
+ ],
683
+ "Tag": [
684
+ "dist/tag/index.d.ts"
685
+ ],
686
+ "Text": [
687
+ "dist/text/index.d.ts"
688
+ ],
689
+ "Textarea": [
690
+ "dist/textarea/index.d.ts"
691
+ ],
692
+ "Themes": [
693
+ "dist/themes/index.d.ts"
694
+ ],
695
+ "Toggle": [
696
+ "dist/toggle/index.d.ts"
697
+ ],
698
+ "Tooltip": [
699
+ "dist/tooltip/index.d.ts"
700
+ ],
701
+ "Tree": [
702
+ "dist/tree/index.d.ts"
703
+ ],
704
+ "useBodyScroll": [
705
+ "dist/use-body-scroll/index.d.ts"
706
+ ],
707
+ "useClickAway": [
708
+ "dist/use-click-away/index.d.ts"
709
+ ],
710
+ "useClipboard": [
711
+ "dist/use-clipboard/index.d.ts"
712
+ ],
713
+ "useInput": [
714
+ "dist/use-input/index.d.ts"
715
+ ],
716
+ "useKeyboard": [
717
+ "dist/use-keyboard/index.d.ts"
718
+ ],
719
+ "useModal": [
720
+ "dist/use-modal/index.d.ts"
721
+ ],
722
+ "useNetworkStatus": [
723
+ "dist/use-network-status/index.d.ts"
724
+ ],
725
+ "useScale": [
726
+ "dist/use-scale/index.d.ts"
727
+ ],
728
+ "useTabs": [
729
+ "dist/use-tabs/index.d.ts"
730
+ ],
731
+ "useToasts": [
732
+ "dist/use-toasts/index.d.ts"
733
+ ],
734
+ "user": [
735
+ "dist/user/index.d.ts"
736
+ ]
163
737
  }
164
738
  }
165
739
  }
File without changes