@nation-a/ui 0.11.7 → 0.11.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/index.cjs +15 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/styled-system/styles.css +4 -0
- package/dist/types/components/Input/Input.stories.d.ts +1 -0
- package/dist/types/components/Input/index.d.ts +1 -0
- package/dist/types/components/Input/input.recipe.d.ts +7 -0
- package/dist/types/components/TextArea/TextArea.stories.d.ts +1 -0
- package/dist/types/components/TextArea/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1394,6 +1394,10 @@ html:not(#\#),body:not(#\#) {
|
|
|
1394
1394
|
max-height: 60px;
|
|
1395
1395
|
}
|
|
1396
1396
|
|
|
1397
|
+
.bd_0:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1398
|
+
border: 0;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1397
1401
|
.bdr_8:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1398
1402
|
border-radius: 8px;
|
|
1399
1403
|
}
|
|
@@ -5,6 +5,7 @@ export default meta;
|
|
|
5
5
|
type Story = StoryObj<typeof Input>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
7
|
export declare const WithDescription: Story;
|
|
8
|
+
export declare const RemoveBorder: Story;
|
|
8
9
|
export declare const UIVariants: Story;
|
|
9
10
|
export declare const DisabledStates: Story;
|
|
10
11
|
export declare const LabelVariations: Story;
|
|
@@ -10,6 +10,7 @@ export type InputProps = Assign<HTMLStyledProps<'input'>, InputVariantProps> & {
|
|
|
10
10
|
textLimit?: number;
|
|
11
11
|
startAdornment?: ReactNode;
|
|
12
12
|
endAdornment?: ReactNode;
|
|
13
|
+
removeBorder?: boolean;
|
|
13
14
|
};
|
|
14
15
|
declare const _default: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<InputProps, "ref"> & import('react').RefAttributes<HTMLInputElement>>>;
|
|
15
16
|
export default _default;
|
|
@@ -5,6 +5,7 @@ export default meta;
|
|
|
5
5
|
type Story = StoryObj<typeof Textarea>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
7
|
export declare const WithDescription: Story;
|
|
8
|
+
export declare const WithRemoveBorder: Story;
|
|
8
9
|
export declare const UIVariants: Story;
|
|
9
10
|
export declare const DisabledStates: Story;
|
|
10
11
|
export declare const LabelVariations: Story;
|
|
@@ -9,6 +9,7 @@ export type TextAreaProps = Assign<HTMLStyledProps<'textarea'>, InputVariantProp
|
|
|
9
9
|
description?: string;
|
|
10
10
|
textLimit?: number;
|
|
11
11
|
showTextCount?: boolean;
|
|
12
|
+
removeBorder?: boolean;
|
|
12
13
|
};
|
|
13
14
|
declare const _default: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & import('react').RefAttributes<HTMLTextAreaElement>>>;
|
|
14
15
|
export default _default;
|