@theroutingcompany/components 0.0.109 → 0.0.110-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theroutingcompany/components",
3
- "version": "0.0.109",
3
+ "version": "0.0.110-alpha.1",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -25,13 +25,15 @@ export type SkeletonBoxProps = Omit<BoxProps, 'as'> & {
25
25
  export declare const SkeletonBox: React.ForwardRefExoticComponent<Omit<BoxProps, "as"> & {
26
26
  'data-id'?: string | undefined;
27
27
  } & React.RefAttributes<HTMLDivElement>>;
28
- declare function Skeleton(): null;
29
- declare namespace Skeleton {
30
- var Header: React.ForwardRefExoticComponent<SkeletonHeaderProps & React.RefAttributes<HTMLDivElement>>;
31
- var Box: React.ForwardRefExoticComponent<Omit<BoxProps, "as"> & {
28
+ declare const Skeleton: {
29
+ (): null;
30
+ displayName: string;
31
+ Header: React.ForwardRefExoticComponent<SkeletonHeaderProps & React.RefAttributes<HTMLDivElement>>;
32
+ Box: React.ForwardRefExoticComponent<Omit<BoxProps, "as"> & {
32
33
  'data-id'?: string | undefined;
33
34
  } & React.RefAttributes<HTMLDivElement>>;
34
- var Body: React.ForwardRefExoticComponent<SkeletonBodyProps & React.RefAttributes<HTMLDivElement>>;
35
- var Footer: React.ForwardRefExoticComponent<SkeletonHeaderProps & React.RefAttributes<HTMLDivElement>>;
36
- }
35
+ Body: React.ForwardRefExoticComponent<SkeletonBodyProps & React.RefAttributes<HTMLDivElement>>;
36
+ Footer: React.ForwardRefExoticComponent<SkeletonHeaderProps & React.RefAttributes<HTMLDivElement>>;
37
+ };
37
38
  export default Skeleton;
39
+ export { Skeleton };
@@ -0,0 +1 @@
1
+ export * from './Skeleton';
@@ -40,6 +40,7 @@ export * from './Popover/Popover';
40
40
  export * from './RadioGroup/RadioGroup';
41
41
  export * from './Search/Search';
42
42
  export * from './SingleSelect/SingleSelect';
43
+ export * from './Skeleton';
43
44
  export * from './Stack/Stack';
44
45
  export * from './Switch/Switch';
45
46
  export * from './TabList/TabList';