rds-ui-system 2.0.4 → 2.0.5

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.
@@ -16,5 +16,6 @@ export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
16
16
  name?: string;
17
17
  type?: string;
18
18
  supportingText?: string | boolean;
19
+ required?: boolean;
19
20
  }
20
- export declare const Input: ({ placeholder, label, variant, isDisabled, onChange, value, name, type, supportingText, }: InputProps) => import("react/jsx-runtime").JSX.Element;
21
+ export declare const Input: ({ placeholder, label, variant, isDisabled, onChange, value, name, type, supportingText, required, }: InputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { HTMLProps } from 'react';
2
2
  export declare const LINK_VARIANT: {
3
3
  readonly PRIMARY: "primary";
4
- readonly SECONDARY: "secondary";
4
+ readonly DROPDOWN: "dropdown";
5
5
  readonly TERTIARY: "tertiary";
6
6
  };
7
7
  export type LinkVariant = keyof typeof LINK_VARIANT;