@asymmetric-effort/specifyjs 0.1.9 → 0.1.10

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.
@@ -311,6 +311,8 @@ interface ColorPickerProps {
311
311
  disabled?: boolean;
312
312
  /** Label text */
313
313
  label?: string;
314
+ /** HTML id for the input element */
315
+ id?: string;
314
316
  }
315
317
  declare function ColorPicker(props: ColorPickerProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
316
318
 
@@ -327,6 +329,8 @@ interface ColorWheelProps {
327
329
  disabled?: boolean;
328
330
  /** Label text */
329
331
  label?: string;
332
+ /** HTML id for the input element */
333
+ id?: string;
330
334
  }
331
335
  declare function ColorWheel(props: ColorWheelProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
332
336
 
@@ -349,6 +353,8 @@ interface DatePickerProps {
349
353
  label?: string;
350
354
  /** Error message */
351
355
  error?: string;
356
+ /** HTML id for the input element */
357
+ id?: string;
352
358
  }
353
359
  declare function DatePicker(props: DatePickerProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
354
360
 
@@ -367,6 +373,8 @@ interface FileUploadProps {
367
373
  label?: string;
368
374
  /** Help text */
369
375
  helpText?: string;
376
+ /** HTML id for the input element */
377
+ id?: string;
370
378
  }
371
379
  declare function FileUpload(props: FileUploadProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
372
380
 
@@ -500,6 +508,8 @@ interface NumberSpinnerProps {
500
508
  label?: string;
501
509
  /** Error message */
502
510
  error?: string;
511
+ /** HTML id for the input element */
512
+ id?: string;
503
513
  }
504
514
  declare function NumberSpinner(props: NumberSpinnerProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
505
515
 
@@ -557,6 +567,8 @@ interface SelectProps {
557
567
  label?: string;
558
568
  /** Help text */
559
569
  helpText?: string;
570
+ /** HTML id for the input element */
571
+ id?: string;
560
572
  }
561
573
  declare function Select(props: SelectProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
562
574
 
@@ -589,6 +601,8 @@ interface SliderProps {
589
601
  label?: string;
590
602
  /** Error message */
591
603
  error?: string;
604
+ /** HTML id for the input element */
605
+ id?: string;
592
606
  }
593
607
  declare function Slider(props: SliderProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
594
608
 
@@ -711,6 +725,8 @@ interface TimePickerProps {
711
725
  timezones?: string[];
712
726
  /** Callback when timezone changes */
713
727
  onTimezoneChange?: (tz: string) => void;
728
+ /** HTML id for the input element */
729
+ id?: string;
714
730
  }
715
731
  declare function TimePicker(props: TimePickerProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
716
732