lkd-web-kit 0.6.6 → 0.7.0
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 +11 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -353,6 +353,7 @@ export declare interface InfinitySelectProps<T = unknown> extends InputBaseProps
|
|
|
353
353
|
getOptionValue: (option: T) => string;
|
|
354
354
|
comboboxProps?: ComboboxProps;
|
|
355
355
|
searchable?: boolean;
|
|
356
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
356
357
|
}
|
|
357
358
|
|
|
358
359
|
export declare const isInfinityEmpty: (data: InfiniteData<{
|
|
@@ -382,16 +383,19 @@ export declare type ModalManagerWrapperProps<T extends object = object> = T & {
|
|
|
382
383
|
export declare const MyDateInput: (props: MyDateInputProps) => JSX.Element;
|
|
383
384
|
|
|
384
385
|
export declare interface MyDateInputProps extends DateInputProps {
|
|
386
|
+
ref: React.Ref<HTMLInputElement>;
|
|
385
387
|
}
|
|
386
388
|
|
|
387
389
|
export declare const MyDatePickerInput: (props: MyDatePickerInputProps) => JSX.Element;
|
|
388
390
|
|
|
389
391
|
export declare interface MyDatePickerInputProps extends DatePickerInputProps<any> {
|
|
392
|
+
ref: React.Ref<HTMLButtonElement>;
|
|
390
393
|
}
|
|
391
394
|
|
|
392
395
|
export declare const MyDateTimePicker: (props: MyDateTimePickerProps) => JSX.Element;
|
|
393
396
|
|
|
394
397
|
export declare interface MyDateTimePickerProps extends DateTimePickerProps {
|
|
398
|
+
ref: React.Ref<HTMLButtonElement>;
|
|
395
399
|
}
|
|
396
400
|
|
|
397
401
|
export declare const myDefaultTheme: MantineThemeOverride;
|
|
@@ -399,11 +403,13 @@ export declare const myDefaultTheme: MantineThemeOverride;
|
|
|
399
403
|
export declare const MyMonthPickerInput: (props: MyMonthPickerInputProps) => JSX.Element;
|
|
400
404
|
|
|
401
405
|
export declare interface MyMonthPickerInputProps extends MonthPickerInputProps<any> {
|
|
406
|
+
ref: React.Ref<HTMLButtonElement>;
|
|
402
407
|
}
|
|
403
408
|
|
|
404
409
|
export declare const MyMultiSelect: (props: MyMultiSelectProps) => JSX.Element;
|
|
405
410
|
|
|
406
411
|
export declare interface MyMultiSelectProps extends MultiSelectProps {
|
|
412
|
+
ref: React.Ref<HTMLInputElement>;
|
|
407
413
|
}
|
|
408
414
|
|
|
409
415
|
export declare interface MyNotificationPrpos extends NotificationsProps {
|
|
@@ -414,6 +420,7 @@ export declare const MyNotifications: (props: MyNotificationPrpos) => JSX.Elemen
|
|
|
414
420
|
export declare const MyNumberInput: (props: MyNumberInputProps) => JSX.Element;
|
|
415
421
|
|
|
416
422
|
export declare interface MyNumberInputProps extends NumberInputProps {
|
|
423
|
+
ref: React.Ref<HTMLInputElement>;
|
|
417
424
|
}
|
|
418
425
|
|
|
419
426
|
export declare const MyRadioGroup: ({ options, orientation, gap, ...radioGroupProps }: MyRadioGroupProps) => JSX.Element;
|
|
@@ -428,21 +435,25 @@ export declare interface MyRadioGroupProps extends Omit<RadioGroupProps, 'childr
|
|
|
428
435
|
export declare const MySelect: (props: MySelectProps) => JSX.Element;
|
|
429
436
|
|
|
430
437
|
export declare interface MySelectProps extends SelectProps {
|
|
438
|
+
ref: React.Ref<HTMLInputElement>;
|
|
431
439
|
}
|
|
432
440
|
|
|
433
441
|
export declare const MyTextarea: (props: MyTextareaProps) => JSX.Element;
|
|
434
442
|
|
|
435
443
|
export declare interface MyTextareaProps extends TextareaProps {
|
|
444
|
+
ref: React.Ref<HTMLTextAreaElement>;
|
|
436
445
|
}
|
|
437
446
|
|
|
438
447
|
export declare const MyTextInput: (props: MyTextInputProps) => JSX.Element;
|
|
439
448
|
|
|
440
449
|
export declare interface MyTextInputProps extends TextInputProps {
|
|
450
|
+
ref: React.Ref<HTMLInputElement>;
|
|
441
451
|
}
|
|
442
452
|
|
|
443
453
|
export declare const MyTimeInput: (props: MyTimeInputProps) => JSX.Element;
|
|
444
454
|
|
|
445
455
|
export declare interface MyTimeInputProps extends TimeInputProps {
|
|
456
|
+
ref: React.Ref<HTMLInputElement>;
|
|
446
457
|
}
|
|
447
458
|
|
|
448
459
|
declare interface NavigationHistoryHook {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lkd-web-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "A template for creating React component libraries with Vite.",
|
|
5
5
|
"author": "LKD",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"vitest": "^3.2.4"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@mantine/core": "^8.
|
|
57
|
-
"@mantine/dates": "^8.
|
|
58
|
-
"@mantine/hooks": "^8.
|
|
59
|
-
"@mantine/notifications": "^8.
|
|
56
|
+
"@mantine/core": "^8.3.6",
|
|
57
|
+
"@mantine/dates": "^8.3.6",
|
|
58
|
+
"@mantine/hooks": "^8.3.6",
|
|
59
|
+
"@mantine/notifications": "^8.3.6",
|
|
60
60
|
"@tanstack/react-query": "^5.90.5",
|
|
61
61
|
"clsx": "^2.1.1",
|
|
62
62
|
"ky": "^1.13.0",
|
|
63
|
-
"next": "^16.0.
|
|
63
|
+
"next": "^16.0.1",
|
|
64
64
|
"react": "^19.2.0",
|
|
65
65
|
"react-dom": "^19.2.0",
|
|
66
66
|
"react-hook-form": "^7.65.0",
|