digitinary-ui 1.0.209 → 1.0.210

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.
@@ -5,7 +5,7 @@ interface DateProps {
5
5
  placeholder?: string;
6
6
  helperText?: string;
7
7
  errorMsg?: string;
8
- value?: string;
8
+ value?: string | undefined | null;
9
9
  onChange: (value: string) => void;
10
10
  disabledDay?: string;
11
11
  selectedEndDate?: string;
@@ -174,19 +174,23 @@ export interface ButtonPropsType {
174
174
  className?: string;
175
175
  id?: string;
176
176
  }
177
- export interface CardPropsType extends BaseProps {
177
+ export interface CardPropsType {
178
178
  header?: JSX.Element;
179
179
  children?: JSX.Element | string;
180
180
  footer?: JSX.Element;
181
181
  rounded?: boolean;
182
+ id?: string;
183
+ className?: string;
184
+ dataId?: string;
182
185
  }
183
- export interface CheckboxPropsType extends BaseProps {
186
+ export interface CheckboxPropsType {
184
187
  label: string;
185
188
  labelPlacement?: PositionType;
186
189
  handleCheckboxChange: () => void;
187
190
  checked?: boolean;
188
191
  size?: SizeType;
189
192
  disabled?: boolean;
193
+ className?: string;
190
194
  }
191
195
  export interface ChipPropsType extends BaseProps {
192
196
  color?: ChipColorType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digitinary-ui",
3
- "version": "1.0.209",
3
+ "version": "1.0.210",
4
4
  "description": "Digitinary UI Library",
5
5
  "author": "Digitinary Company",
6
6
  "repository": {