lkd-web-kit 0.7.0 → 0.7.1
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.
- package/dist/index.d.ts +10 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -383,19 +383,19 @@ export declare type ModalManagerWrapperProps<T extends object = object> = T & {
|
|
|
383
383
|
export declare const MyDateInput: (props: MyDateInputProps) => JSX.Element;
|
|
384
384
|
|
|
385
385
|
export declare interface MyDateInputProps extends DateInputProps {
|
|
386
|
-
ref
|
|
386
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
export declare const MyDatePickerInput: (props: MyDatePickerInputProps) => JSX.Element;
|
|
390
390
|
|
|
391
391
|
export declare interface MyDatePickerInputProps extends DatePickerInputProps<any> {
|
|
392
|
-
ref
|
|
392
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
export declare const MyDateTimePicker: (props: MyDateTimePickerProps) => JSX.Element;
|
|
396
396
|
|
|
397
397
|
export declare interface MyDateTimePickerProps extends DateTimePickerProps {
|
|
398
|
-
ref
|
|
398
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
export declare const myDefaultTheme: MantineThemeOverride;
|
|
@@ -403,13 +403,13 @@ export declare const myDefaultTheme: MantineThemeOverride;
|
|
|
403
403
|
export declare const MyMonthPickerInput: (props: MyMonthPickerInputProps) => JSX.Element;
|
|
404
404
|
|
|
405
405
|
export declare interface MyMonthPickerInputProps extends MonthPickerInputProps<any> {
|
|
406
|
-
ref
|
|
406
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
export declare const MyMultiSelect: (props: MyMultiSelectProps) => JSX.Element;
|
|
410
410
|
|
|
411
411
|
export declare interface MyMultiSelectProps extends MultiSelectProps {
|
|
412
|
-
ref
|
|
412
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
export declare interface MyNotificationPrpos extends NotificationsProps {
|
|
@@ -420,7 +420,7 @@ export declare const MyNotifications: (props: MyNotificationPrpos) => JSX.Elemen
|
|
|
420
420
|
export declare const MyNumberInput: (props: MyNumberInputProps) => JSX.Element;
|
|
421
421
|
|
|
422
422
|
export declare interface MyNumberInputProps extends NumberInputProps {
|
|
423
|
-
ref
|
|
423
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
export declare const MyRadioGroup: ({ options, orientation, gap, ...radioGroupProps }: MyRadioGroupProps) => JSX.Element;
|
|
@@ -435,25 +435,25 @@ export declare interface MyRadioGroupProps extends Omit<RadioGroupProps, 'childr
|
|
|
435
435
|
export declare const MySelect: (props: MySelectProps) => JSX.Element;
|
|
436
436
|
|
|
437
437
|
export declare interface MySelectProps extends SelectProps {
|
|
438
|
-
ref
|
|
438
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
439
439
|
}
|
|
440
440
|
|
|
441
441
|
export declare const MyTextarea: (props: MyTextareaProps) => JSX.Element;
|
|
442
442
|
|
|
443
443
|
export declare interface MyTextareaProps extends TextareaProps {
|
|
444
|
-
ref
|
|
444
|
+
ref?: React.Ref<HTMLTextAreaElement>;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
447
|
export declare const MyTextInput: (props: MyTextInputProps) => JSX.Element;
|
|
448
448
|
|
|
449
449
|
export declare interface MyTextInputProps extends TextInputProps {
|
|
450
|
-
ref
|
|
450
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
451
451
|
}
|
|
452
452
|
|
|
453
453
|
export declare const MyTimeInput: (props: MyTimeInputProps) => JSX.Element;
|
|
454
454
|
|
|
455
455
|
export declare interface MyTimeInputProps extends TimeInputProps {
|
|
456
|
-
ref
|
|
456
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
declare interface NavigationHistoryHook {
|