labsense-ui-kit 1.1.6 → 1.1.8
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/dist/Inputs/TextField.d.ts +3 -3
- package/dist/index.js +5410 -211
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5410 -211
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { IconNames } from 'labsense-ui-kit';
|
|
1
2
|
import React from 'react';
|
|
2
|
-
import { IconNames } from '../Icons';
|
|
3
3
|
export declare const Asterisk: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
4
4
|
declare type InputType = 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search' | 'date' | 'datetime-local' | 'month' | 'week' | 'time' | 'color' | 'checkbox' | 'radio' | 'range' | 'file' | 'hidden';
|
|
5
5
|
interface InputProps {
|
|
@@ -21,5 +21,5 @@ interface InputProps {
|
|
|
21
21
|
background?: string;
|
|
22
22
|
onEnter?: () => void;
|
|
23
23
|
}
|
|
24
|
-
declare const
|
|
25
|
-
export default
|
|
24
|
+
declare const TextField: React.FC<InputProps>;
|
|
25
|
+
export default TextField;
|