@uob-web-and-digital/component-library 0.0.99 → 0.0.100

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.
@@ -21,6 +21,7 @@ export interface RadioProps {
21
21
  }>;
22
22
  onChange?: (e: ChangeEvent) => void;
23
23
  defaultValue?: string;
24
+ showMoreText?: string;
24
25
  }
25
26
  export interface CheckboxProps {
26
27
  type: 'checkbox';
@@ -33,6 +34,7 @@ export interface CheckboxProps {
33
34
  }>;
34
35
  onChange?: (e: ChangeEvent) => void;
35
36
  defaultValues?: string[];
37
+ showMoreText?: string;
36
38
  }
37
39
  export interface DateProps {
38
40
  type: 'date';
package/dist/index.d.ts CHANGED
@@ -1534,6 +1534,7 @@ interface RadioProps {
1534
1534
  }>;
1535
1535
  onChange?: (e: ChangeEvent) => void;
1536
1536
  defaultValue?: string;
1537
+ showMoreText?: string;
1537
1538
  }
1538
1539
  interface CheckboxProps {
1539
1540
  type: 'checkbox';
@@ -1546,6 +1547,7 @@ interface CheckboxProps {
1546
1547
  }>;
1547
1548
  onChange?: (e: ChangeEvent) => void;
1548
1549
  defaultValues?: string[];
1550
+ showMoreText?: string;
1549
1551
  }
1550
1552
  interface DateProps {
1551
1553
  type: 'date';