@hellobetterdigitalnz/betterui 0.0.3-84 → 0.0.3-85

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.
@@ -0,0 +1,3 @@
1
+ import inputProps from "../InputProps.tsx";
2
+ declare const PhoneField: (props: inputProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default PhoneField;
@@ -0,0 +1,13 @@
1
+ import type { StoryObj } from "@storybook/react";
2
+ import PhoneField from "./PhoneField.tsx";
3
+ declare const meta: {
4
+ title: string;
5
+ component: (props: import("../InputProps.tsx").default) => import("react/jsx-runtime").JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof PhoneField>;
13
+ export declare const Example: Story;
@@ -49,5 +49,6 @@ export type { default as NumberFieldProps } from './NumberField/NumberFieldProps
49
49
  export { default as UnitField } from './UnitInput/UnitField.tsx';
50
50
  export type { default as UnitFieldProps } from './UnitInput/UnitField.tsx';
51
51
  export { default as TimeField } from './TimeField/TimeField';
52
+ export { default as PhoneField } from './PhoneField/PhoneField.tsx';
52
53
  export { default as ToggleSwitch } from './ToggleSwitch/ToggleSwitch';
53
54
  export type { default as ToggleSwitchProps } from './ToggleSwitch/ToggleSwitchProps';