@veeqo/ui 10.0.0 → 10.0.1-beta.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.
@@ -5,7 +5,6 @@ export declare const DimensionsInput: React.FC<{
5
5
  style?: React.CSSProperties | undefined;
6
6
  title?: string | undefined;
7
7
  pattern?: string | undefined;
8
- type?: React.HTMLInputTypeAttribute | undefined;
9
8
  placeholder?: string | undefined;
10
9
  name?: string | undefined;
11
10
  defaultChecked?: boolean | undefined;
@@ -276,7 +275,6 @@ export declare const DimensionsInput: React.FC<{
276
275
  formMethod?: string | undefined;
277
276
  formNoValidate?: boolean | undefined;
278
277
  formTarget?: string | undefined;
279
- value?: string | number | readonly string[] | undefined;
280
278
  autoComplete?: string | undefined;
281
279
  accept?: string | undefined;
282
280
  capture?: boolean | "user" | "environment" | undefined;
@@ -15,7 +15,6 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
15
15
  style?: import("react").CSSProperties | undefined;
16
16
  title?: string | undefined;
17
17
  pattern?: string | undefined;
18
- type?: import("react").HTMLInputTypeAttribute | undefined;
19
18
  placeholder?: string | undefined;
20
19
  name?: string | undefined;
21
20
  defaultChecked?: boolean | undefined;
@@ -286,7 +285,6 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
286
285
  formMethod?: string | undefined;
287
286
  formNoValidate?: boolean | undefined;
288
287
  formTarget?: string | undefined;
289
- value?: string | number | readonly string[] | undefined;
290
288
  autoComplete?: string | undefined;
291
289
  accept?: string | undefined;
292
290
  capture?: boolean | "user" | "environment" | undefined;
@@ -5,7 +5,6 @@ export declare const Search: React.FC<{
5
5
  style?: React.CSSProperties | undefined;
6
6
  title?: string | undefined;
7
7
  pattern?: string | undefined;
8
- type?: React.HTMLInputTypeAttribute | undefined;
9
8
  placeholder?: string | undefined;
10
9
  name?: string | undefined;
11
10
  defaultChecked?: boolean | undefined;
@@ -276,7 +275,6 @@ export declare const Search: React.FC<{
276
275
  formMethod?: string | undefined;
277
276
  formNoValidate?: boolean | undefined;
278
277
  formTarget?: string | undefined;
279
- value?: string | number | readonly string[] | undefined;
280
278
  autoComplete?: string | undefined;
281
279
  accept?: string | undefined;
282
280
  capture?: boolean | "user" | "environment" | undefined;
@@ -6,7 +6,6 @@ declare const Input: import("styled-components").StyledComponent<import("react")
6
6
  style?: import("react").CSSProperties | undefined;
7
7
  title?: string | undefined;
8
8
  pattern?: string | undefined;
9
- type?: import("react").HTMLInputTypeAttribute | undefined;
10
9
  placeholder?: string | undefined;
11
10
  name?: string | undefined;
12
11
  defaultChecked?: boolean | undefined;
@@ -277,7 +276,6 @@ declare const Input: import("styled-components").StyledComponent<import("react")
277
276
  formMethod?: string | undefined;
278
277
  formNoValidate?: boolean | undefined;
279
278
  formTarget?: string | undefined;
280
- value?: string | number | readonly string[] | undefined;
281
279
  autoComplete?: string | undefined;
282
280
  accept?: string | undefined;
283
281
  capture?: boolean | "user" | "environment" | undefined;
@@ -8,7 +8,6 @@ export declare const StyledSearch: import("styled-components").StyledComponent<i
8
8
  style?: import("react").CSSProperties | undefined;
9
9
  title?: string | undefined;
10
10
  pattern?: string | undefined;
11
- type?: import("react").HTMLInputTypeAttribute | undefined;
12
11
  placeholder?: string | undefined;
13
12
  name?: string | undefined;
14
13
  defaultChecked?: boolean | undefined;
@@ -279,7 +278,6 @@ export declare const StyledSearch: import("styled-components").StyledComponent<i
279
278
  formMethod?: string | undefined;
280
279
  formNoValidate?: boolean | undefined;
281
280
  formTarget?: string | undefined;
282
- value?: string | number | readonly string[] | undefined;
283
281
  autoComplete?: string | undefined;
284
282
  accept?: string | undefined;
285
283
  capture?: boolean | "user" | "environment" | undefined;
@@ -5,7 +5,6 @@ export declare const TextField: React.ForwardRefExoticComponent<{
5
5
  style?: React.CSSProperties | undefined;
6
6
  title?: string | undefined;
7
7
  pattern?: string | undefined;
8
- type?: React.HTMLInputTypeAttribute | undefined;
9
8
  placeholder?: string | undefined;
10
9
  name?: string | undefined;
11
10
  defaultChecked?: boolean | undefined;
@@ -276,7 +275,6 @@ export declare const TextField: React.ForwardRefExoticComponent<{
276
275
  formMethod?: string | undefined;
277
276
  formNoValidate?: boolean | undefined;
278
277
  formTarget?: string | undefined;
279
- value?: string | number | readonly string[] | undefined;
280
278
  autoComplete?: string | undefined;
281
279
  accept?: string | undefined;
282
280
  capture?: boolean | "user" | "environment" | undefined;
@@ -6,7 +6,6 @@ export declare const TextField: import("react").FC<{
6
6
  style?: import("react").CSSProperties | undefined;
7
7
  title?: string | undefined;
8
8
  pattern?: string | undefined;
9
- type?: import("react").HTMLInputTypeAttribute | undefined;
10
9
  placeholder?: string | undefined;
11
10
  name?: string | undefined;
12
11
  defaultChecked?: boolean | undefined;
@@ -277,7 +276,6 @@ export declare const TextField: import("react").FC<{
277
276
  formMethod?: string | undefined;
278
277
  formNoValidate?: boolean | undefined;
279
278
  formTarget?: string | undefined;
280
- value?: string | number | readonly string[] | undefined;
281
279
  autoComplete?: string | undefined;
282
280
  accept?: string | undefined;
283
281
  capture?: boolean | "user" | "environment" | undefined;
@@ -2,7 +2,7 @@
2
2
  import { ComponentSizeType } from '../types';
3
3
  export type TextFieldType = 'text' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'url' | 'date' | 'datetime-local' | 'month' | 'time' | 'week' | 'currency';
4
4
  export declare const textFieldTypes: readonly ["text", "email", "number", "password", "search", "tel", "url", "date", "datetime-local", "month", "time", "week", "currency"];
5
- type CommonAttributes = Omit<React.InputHTMLAttributes<HTMLInputElement> & React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange' | 'size'>;
5
+ type CommonAttributes = Omit<React.InputHTMLAttributes<HTMLInputElement> & React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange' | 'size' | 'type' | 'value'>;
6
6
  export type TextFieldProps = CommonAttributes & {
7
7
  value?: string;
8
8
  type?: TextFieldType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veeqo/ui",
3
- "version": "10.0.0",
3
+ "version": "10.0.1-beta.1",
4
4
  "description": "New optimised component library for Veeqo.",
5
5
  "author": "Robert Wealthall",
6
6
  "license": "ISC",