@nation-a/ui 0.16.9 → 0.16.10

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.
@@ -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;
@@ -4,7 +4,7 @@ export declare const inputRecipe: import('../../../styled-system/types').SlotRec
4
4
  isTextArea: {
5
5
  true: {
6
6
  inputContainer: {
7
- minHeight: "56px";
7
+ minHeight: "48px";
8
8
  '& textarea': {
9
9
  background: "transparent";
10
10
  resize: "none";
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/ui",
3
- "version": "0.16.9",
3
+ "version": "0.16.10",
4
4
  "type": "module",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "main": "./dist/index.cjs",