rds-ui-system 2.0.14 → 2.0.16

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.
@@ -14,6 +14,7 @@ export interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
14
14
  boxText?: string
15
15
  isDisabled?: boolean
16
16
  variant?: SelectVariant
17
+ topPull?: boolean
17
18
  }
18
19
  export declare const Select: ({
19
20
  id,
@@ -24,4 +25,5 @@ export declare const Select: ({
24
25
  prepopulatedId,
25
26
  boxText,
26
27
  isDisabled,
28
+ topPull,
27
29
  }: SelectProps) => import('react/jsx-runtime').JSX.Element
@@ -14,6 +14,8 @@ export interface TextProps extends HTMLAttributes<HTMLParagraphElement> {
14
14
  bold?: boolean
15
15
  small?: boolean
16
16
  important?: boolean
17
+ customClasses?: string
18
+ title?: string
17
19
  }
18
20
  export declare const Text: ({
19
21
  variant,
@@ -23,4 +25,6 @@ export declare const Text: ({
23
25
  bold,
24
26
  small,
25
27
  important,
28
+ customClasses,
29
+ title,
26
30
  }: TextProps) => import('react/jsx-runtime').JSX.Element