@hexure/ui 1.8.14 → 1.8.16
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/cjs/index.js +13 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Alert/Alert.d.ts +2 -0
- package/dist/cjs/types/components/Input/Input.d.ts +1 -1
- package/dist/esm/index.js +13 -13
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Alert/Alert.d.ts +2 -0
- package/dist/esm/types/components/Input/Input.d.ts +1 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export interface AlertProps extends AccessibleProps {
|
|
|
12
12
|
description: string;
|
|
13
13
|
/** Display a link to display below the description */
|
|
14
14
|
action?: ActionProps;
|
|
15
|
+
/** Show a condensed, smaller version of the alert. The title and action props will be ignore if this is set to true */
|
|
16
|
+
small?: boolean;
|
|
15
17
|
}
|
|
16
18
|
declare const Alert: FC<AlertProps>;
|
|
17
19
|
export default Alert;
|
|
@@ -33,7 +33,7 @@ export interface InputProps extends AccessibleProps {
|
|
|
33
33
|
/** Set the css of the wrapping div */
|
|
34
34
|
style?: styleProps;
|
|
35
35
|
/** Define the type of input to be displayed */
|
|
36
|
-
type?: 'date' | 'email' | 'number' | 'password' | 'tel' | 'text' | 'url' | 'textarea' | 'search';
|
|
36
|
+
type?: 'date' | 'datetime-local' | 'email' | 'number' | 'password' | 'tel' | 'text' | 'url' | 'textarea' | 'search';
|
|
37
37
|
/** Set the value of the input. This should be used by the parent component to control the input's value. */
|
|
38
38
|
value?: string;
|
|
39
39
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ interface AlertProps extends AccessibleProps {
|
|
|
60
60
|
description: string;
|
|
61
61
|
/** Display a link to display below the description */
|
|
62
62
|
action?: ActionProps$1;
|
|
63
|
+
/** Show a condensed, smaller version of the alert. The title and action props will be ignore if this is set to true */
|
|
64
|
+
small?: boolean;
|
|
63
65
|
}
|
|
64
66
|
declare const Alert: FC<AlertProps>;
|
|
65
67
|
|
|
@@ -325,7 +327,7 @@ interface InputProps extends AccessibleProps {
|
|
|
325
327
|
/** Set the css of the wrapping div */
|
|
326
328
|
style?: styleProps$2;
|
|
327
329
|
/** Define the type of input to be displayed */
|
|
328
|
-
type?: 'date' | 'email' | 'number' | 'password' | 'tel' | 'text' | 'url' | 'textarea' | 'search';
|
|
330
|
+
type?: 'date' | 'datetime-local' | 'email' | 'number' | 'password' | 'tel' | 'text' | 'url' | 'textarea' | 'search';
|
|
329
331
|
/** Set the value of the input. This should be used by the parent component to control the input's value. */
|
|
330
332
|
value?: string;
|
|
331
333
|
}
|