@covalent/components-react 0.0.5 → 0.0.6

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 (48) hide show
  1. package/action-ribbon/action-ribbon.d.ts +1 -0
  2. package/alert/alert.d.ts +1 -0
  3. package/app-shell/app-shell.d.ts +1 -0
  4. package/card/card.d.ts +1 -0
  5. package/checkbox/checkbox.d.ts +1 -0
  6. package/chips/chip-set.d.ts +1 -0
  7. package/chips/chip.d.ts +1 -0
  8. package/circular-progress/circular-progress.d.ts +1 -0
  9. package/code-snippet/code-snippet.d.ts +1 -0
  10. package/dialog/dialog.d.ts +1 -0
  11. package/drawer/drawer.d.ts +1 -0
  12. package/empty-state/empty-state.d.ts +1 -0
  13. package/icon/icon.d.ts +1 -0
  14. package/icon-button/icon-button.d.ts +1 -0
  15. package/icon-checkbox/icon-checkbox.d.ts +1 -0
  16. package/icon-radio/icon-radio.d.ts +1 -0
  17. package/index.d.ts +44 -0
  18. package/index.js +2 -4185
  19. package/index.mjs +252 -33604
  20. package/linear-progress/linear-progress.d.ts +1 -0
  21. package/list/check-list-item.d.ts +1 -0
  22. package/list/list-item.d.ts +1 -0
  23. package/list/list.d.ts +1 -0
  24. package/list/nav-list-item.d.ts +1 -0
  25. package/list/radio-list-item.d.ts +1 -0
  26. package/menu/menu.d.ts +1 -0
  27. package/package.json +1 -1
  28. package/radio/radio.d.ts +1 -0
  29. package/select/select.d.ts +1 -0
  30. package/side-sheet/side-sheet.d.ts +1 -0
  31. package/slider/slider.d.ts +1 -0
  32. package/slider-range/slider-range.d.ts +1 -0
  33. package/snackbar/snackbar.d.ts +1 -0
  34. package/status-header/status-header-item.d.ts +1 -0
  35. package/status-header/status-header.d.ts +1 -0
  36. package/switch/switch.d.ts +1 -0
  37. package/tab/tab-bar.d.ts +1 -0
  38. package/tab/tab.d.ts +1 -0
  39. package/text-lockup/text-lockup.d.ts +1 -0
  40. package/textarea/textarea.d.ts +1 -0
  41. package/textfield/textfield.d.ts +1 -0
  42. package/toolbar/toolbar.d.ts +1 -0
  43. package/tooltip/tooltip.d.ts +1 -0
  44. package/top-app-bar/top-app-bar.d.ts +1 -0
  45. package/top-app-bar-fixed/top-app-bar-fixed.d.ts +1 -0
  46. package/tree-list/tree-list-item.d.ts +1 -0
  47. package/tree-list/tree-list.d.ts +1 -0
  48. package/typography/typography.d.ts +1 -0
@@ -0,0 +1 @@
1
+ export declare const CovalentActionRibbon: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentAlert: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentAppShell: React.ForwardRefExoticComponent<any>;
package/card/card.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const CovalentCard: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentCheckbox: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentChipSet: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentChip: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentCircularProgress: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentCodeSnippet: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentDialog: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentDrawer: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentEmptyState: React.ForwardRefExoticComponent<any>;
package/icon/icon.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const CovalentIcon: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentIconButton: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentIconCheckToggle: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1 @@
1
+ export declare const CovalentIconRadioToggle: React.ForwardRefExoticComponent<any>;
package/index.d.ts CHANGED
@@ -1 +1,45 @@
1
+ export * from './action-ribbon/action-ribbon';
2
+ export * from './alert/alert';
3
+ export * from './app-shell/app-shell';
1
4
  export * from './button/button';
5
+ export * from './checkbox/checkbox';
6
+ export * from './card/card';
7
+ export * from './chips/chip';
8
+ export * from './chips/chip-set';
9
+ export * from './circular-progress/circular-progress';
10
+ export * from './code-snippet/code-snippet';
11
+ export * from './dialog/dialog';
12
+ export * from './drawer/drawer';
13
+ export * from './empty-state/empty-state';
14
+ export * from './icon/icon';
15
+ export * from './icon-button/icon-button';
16
+ export * from './icon-checkbox/icon-checkbox';
17
+ export * from './icon-radio/icon-radio';
18
+ export * from './linear-progress/linear-progress';
19
+ export * from './list/check-list-item';
20
+ export * from './list/list';
21
+ export * from './list/list-item';
22
+ export * from './list/nav-list-item';
23
+ export * from './list/radio-list-item';
24
+ export * from './menu/menu';
25
+ export * from './radio/radio';
26
+ export * from './select/select';
27
+ export * from './side-sheet/side-sheet';
28
+ export * from './slider/slider';
29
+ export * from './slider-range/slider-range';
30
+ export * from './snackbar/snackbar';
31
+ export * from './status-header/status-header';
32
+ export * from './status-header/status-header-item';
33
+ export * from './switch/switch';
34
+ export * from './tab/tab';
35
+ export * from './tab/tab-bar';
36
+ export * from './textarea/textarea';
37
+ export * from './textfield/textfield';
38
+ export * from './text-lockup/text-lockup';
39
+ export * from './toolbar/toolbar';
40
+ export * from './tooltip/tooltip';
41
+ export * from './top-app-bar/top-app-bar';
42
+ export * from './top-app-bar-fixed/top-app-bar-fixed';
43
+ export * from './tree-list/tree-list';
44
+ export * from './tree-list/tree-list-item';
45
+ export * from './typography/typography';