@theroutingcompany/components 0.0.30-alpha.9 → 0.0.30

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.30-alpha.9",
3
+ "version": "0.0.30",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -10,7 +10,7 @@ type DialogWidth = keyof typeof dialogWidths;
10
10
  type StyledContentProps = {
11
11
  size?: DialogWidth;
12
12
  };
13
- export declare const dialogContentStyles: import("styled-components").FlattenSimpleInterpolation;
13
+ export declare const dialogContentStyles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<StyledContentProps, any>>;
14
14
  export type DialogContentProps = StyledContentProps & DialogPrimitive.DialogContentProps & ComponentPropsWithRef<'div'>;
15
15
  export declare function DialogContent({ children, size, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
16
16
  export declare const dialogTitleStyles: string;
@@ -11,5 +11,7 @@ export interface LabelProps extends ComponentPropsWithoutStyles<'label'>, Omit<B
11
11
  as?: 'legend' | 'span' | undefined;
12
12
  style?: Record<string, any>;
13
13
  color?: string;
14
+ pointer?: boolean;
14
15
  }
15
- export declare function Label({ children, bold, size, display, srOnly, style, color, ...remainingProps }: LabelProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function Label({ children, bold, size, display, pointer, srOnly, style, color, ...remainingProps }: LabelProps): import("react/jsx-runtime").JSX.Element;
17
+ export default Label;
@@ -1,3 +1,4 @@
1
+ import { BoxProps } from 'components/Box';
1
2
  import type { ComponentPropsWithoutRef } from 'react';
2
3
  /** Wrapper for page content with padding
3
4
  *
@@ -9,4 +10,4 @@ import type { ComponentPropsWithoutRef } from 'react';
9
10
  */
10
11
  export declare const PageHeader: import("styled-components").StyledComponent<"header", any, {}, never>;
11
12
  export declare const StickyPageHeader: ({ children, className, }: ComponentPropsWithoutRef<'div'>) => import("react/jsx-runtime").JSX.Element;
12
- export declare const PageHeaderContent: import("styled-components").StyledComponent<"div", any, {}, never>;
13
+ export declare const PageHeaderContent: import("styled-components").StyledComponent<import("../..").ForwardRefComponent<"div", BoxProps>, any, BoxProps, never>;
@@ -27,4 +27,4 @@ export type TextProps = Partial<NumberTextProps | CaptionTextProps | BodyTextPro
27
27
  } & SpaceProps;
28
28
  type PolymorphicText = Polymorphic.ForwardRefComponent<TextElements, TextProps>;
29
29
  export declare const Text: PolymorphicText;
30
- export {};
30
+ export default Text;