@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.
@@ -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;
@@ -19,6 +19,13 @@ export declare const inputRecipe: import('../../../styled-system/types').SlotRec
19
19
  };
20
20
  };
21
21
  };
22
+ removeBorder: {
23
+ true: {
24
+ inputContainer: {
25
+ border: "0";
26
+ };
27
+ };
28
+ };
22
29
  variant: {
23
30
  solid: {
24
31
  inputContainer: {
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/ui",
3
- "version": "0.11.7",
3
+ "version": "0.11.8",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",