@nation-a/ui 0.16.9 → 0.16.11
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +17 -8
- package/dist/index.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/styled-system/styles.css +0 -4
- package/dist/types/components/Input/index.d.ts +2 -0
- package/dist/types/components/Input/input.recipe.d.ts +1 -1
- package/dist/types/components/TextArea/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1413,10 +1413,6 @@ html:not(#\#),body:not(#\#) {
|
|
|
1413
1413
|
padding: var(--spacing-2);
|
|
1414
1414
|
}
|
|
1415
1415
|
|
|
1416
|
-
.min-h_56px:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1417
|
-
min-height: 56px;
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
1416
|
.min-h_48px:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1421
1417
|
min-height: 48px;
|
|
1422
1418
|
}
|
|
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { HTMLStyledProps } from '../../../styled-system/jsx';
|
|
3
3
|
import { Assign } from '@ark-ui/react';
|
|
4
4
|
import { InputVariantProps } from './input.recipe';
|
|
5
|
+
import { SystemStyleObject } from '../../../styled-system/types';
|
|
5
6
|
export type InputProps = Assign<HTMLStyledProps<'input'>, InputVariantProps> & {
|
|
6
7
|
required?: boolean;
|
|
7
8
|
label?: string;
|
|
@@ -12,6 +13,7 @@ export type InputProps = Assign<HTMLStyledProps<'input'>, InputVariantProps> & {
|
|
|
12
13
|
endAdornment?: ReactNode;
|
|
13
14
|
removeBorder?: boolean;
|
|
14
15
|
fontSize?: number;
|
|
16
|
+
containerCss?: SystemStyleObject;
|
|
15
17
|
};
|
|
16
18
|
declare const _default: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<InputProps, "ref"> & import('react').RefAttributes<HTMLInputElement>>>;
|
|
17
19
|
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HTMLStyledProps } from '../../../styled-system/jsx';
|
|
2
2
|
import { Assign } from '@ark-ui/react';
|
|
3
3
|
import { InputVariantProps } from '../Input/input.recipe';
|
|
4
|
+
import { SystemStyleObject } from '../../../styled-system/types';
|
|
4
5
|
export type TextAreaProps = Assign<HTMLStyledProps<'textarea'>, InputVariantProps> & {
|
|
5
6
|
required?: boolean;
|
|
6
7
|
disabled?: boolean;
|
|
@@ -9,6 +10,7 @@ export type TextAreaProps = Assign<HTMLStyledProps<'textarea'>, InputVariantProp
|
|
|
9
10
|
description?: string;
|
|
10
11
|
textLimit?: number;
|
|
11
12
|
showTextCount?: boolean;
|
|
13
|
+
containerCss?: SystemStyleObject;
|
|
12
14
|
};
|
|
13
15
|
declare const _default: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & import('react').RefAttributes<HTMLTextAreaElement>>>;
|
|
14
16
|
export default _default;
|