@sequencing/design-system 1.0.15 → 1.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.
@@ -2344,10 +2344,10 @@
2344
2344
  },
2345
2345
  "onClick": {
2346
2346
  "defaultValue": null,
2347
- "description": "Callback called when the text is clicked",
2347
+ "description": "Callback called when the input is clicked",
2348
2348
  "name": "onClick",
2349
2349
  "required": false,
2350
- "type": "((value: string) => void)"
2350
+ "type": "((event: MouseEvent<HTMLInputElement, MouseEvent>) => void)"
2351
2351
  }
2352
2352
  }
2353
2353
  },
@@ -2454,10 +2454,10 @@
2454
2454
  "description": "",
2455
2455
  "displayName": "DatePicker",
2456
2456
  "props": {
2457
- "className": {
2457
+ "inputCustomClass": {
2458
2458
  "defaultValue": null,
2459
- "description": "Custom css class to customize the styling",
2460
- "name": "className",
2459
+ "description": "Custom css class to customize the styling if input. Used TextField from SDS",
2460
+ "name": "inputCustomClass",
2461
2461
  "required": false,
2462
2462
  "type": "string"
2463
2463
  },
@@ -2474,6 +2474,13 @@
2474
2474
  "name": "onDateChange",
2475
2475
  "required": false,
2476
2476
  "type": "((date: Date | null) => void)"
2477
+ },
2478
+ "startDate": {
2479
+ "defaultValue": null,
2480
+ "description": "Start date of the date picker. Use anything which could be converted to date.\nIf undefined or not provided - current day will be selected.\nIf null or any falsy value - field will be empty",
2481
+ "name": "startDate",
2482
+ "required": false,
2483
+ "type": "string | number | Date"
2477
2484
  }
2478
2485
  }
2479
2486
  },