@royaloperahouse/harmonic 0.2.3-i → 0.2.3-k

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.
@@ -1,2 +1,2 @@
1
1
  import { ThemeType } from '../types';
2
- export declare const themeToColor: (theme: ThemeType) => "primary-red" | "primary-black" | "secondary-blue";
2
+ export declare const themeToColor: (theme: ThemeType) => "primary-red" | "primary-black" | "base-black";
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { ThemeType } from '../../types';
3
3
  import './theme/fonts.css';
4
+ import './theme/typography.css';
4
5
  interface HarmonicThemeProviderProps {
5
6
  theme: ThemeType;
6
7
  children: React.ReactNode;
@@ -56,6 +56,10 @@ export interface ISignUpFormProps {
56
56
  submitHandler: (data: SignUpRequestBody) => Promise<{
57
57
  success: boolean;
58
58
  }>;
59
+ /**
60
+ * Class Name
61
+ */
62
+ className?: string;
59
63
  }
60
64
  export declare type SignUpFormComponentTitleProps = {
61
65
  title: string;
@@ -76,5 +80,6 @@ export declare type SignUpFormComponentFormProps = Pick<ISignUpFormProps, 'ctaPr
76
80
  setIsSuccess: Dispatch<SetStateAction<boolean>>;
77
81
  formValues: FormValues;
78
82
  setFormValues: Dispatch<SetStateAction<FormValues>>;
83
+ className?: string;
79
84
  };
80
85
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royaloperahouse/harmonic",
3
- "version": "0.2.3-i",
3
+ "version": "0.2.3-k",
4
4
  "author": "Royal Opera House",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",