docthub-core-components 2.3.0 → 2.3.4
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/docthub-core-components.css +1 -1
- package/dist/index.esm.js +3493 -16644
- package/dist/registry/@docthub/alert.json +1 -1
- package/dist/registry/@docthub/auto-complete-component.test.json +2 -5
- package/dist/registry/@docthub/avatar.json +3 -3
- package/dist/registry/@docthub/badge.json +1 -1
- package/dist/registry/@docthub/button.json +3 -3
- package/dist/registry/@docthub/button.test.json +2 -5
- package/dist/registry/@docthub/calendar.json +2 -2
- package/dist/registry/@docthub/checkbox.json +3 -3
- package/dist/registry/@docthub/command.json +3 -3
- package/dist/registry/@docthub/dialog.json +1 -1
- package/dist/registry/@docthub/drawer.json +1 -1
- package/dist/registry/@docthub/dropdown-menu.json +3 -3
- package/dist/registry/@docthub/index.json +105 -105
- package/dist/registry/@docthub/input.json +1 -1
- package/dist/registry/@docthub/label.json +3 -3
- package/dist/registry/@docthub/popover.json +3 -3
- package/dist/registry/@docthub/progress.json +3 -3
- package/dist/registry/@docthub/radio-group.json +3 -3
- package/dist/registry/@docthub/select.json +3 -3
- package/dist/registry/@docthub/skeleton.json +1 -1
- package/dist/registry/@docthub/tabs.json +3 -3
- package/dist/registry/@docthub/textarea.json +1 -1
- package/dist/registry/@docthub/toast.json +1 -1
- package/dist/registry/@docthub/toast.test.json +2 -4
- package/dist/registry/@docthub/tooltip.json +3 -3
- package/dist/registry/@docthub/typography.json +2 -2
- package/dist/registry/@docthub/typography.test.json +2 -5
- package/dist/src/components/overrides/ui/auto-complete.d.ts +5 -1
- package/dist/src/components/overrides/ui/autocomplete-checkbox.d.ts +44 -0
- package/dist/src/components/overrides/ui/chips/doct-chip.d.ts +10 -4
- package/dist/src/components/overrides/ui/expandable-card.d.ts +6 -1
- package/dist/src/components/overrides/ui/inputs/labeled-input.d.ts +8 -3
- package/dist/src/components/overrides/ui/inputs/otp-input.d.ts +4 -0
- package/dist/src/components/overrides/ui/inputs/password-input.d.ts +6 -2
- package/dist/src/components/overrides/ui/pickers/date-picker-field.d.ts +9 -9
- package/dist/src/components/overrides/ui/pickers/select-field.d.ts +13 -4
- package/dist/src/components/ui/alert.d.ts +14 -3
- package/dist/src/components/ui/avatar.d.ts +8 -2
- package/dist/src/components/ui/breadcrumb.d.ts +19 -0
- package/dist/src/components/ui/button.d.ts +1 -1
- package/dist/src/components/ui/checkbox.d.ts +1 -1
- package/dist/src/components/ui/dialog.d.ts +18 -0
- package/dist/src/components/ui/dropdown-menu.d.ts +1 -1
- package/dist/src/components/ui/input.d.ts +5 -1
- package/dist/src/components/ui/label.d.ts +1 -1
- package/dist/src/components/ui/popover.d.ts +1 -1
- package/dist/src/components/ui/progress.d.ts +20 -2
- package/dist/src/components/ui/radio-group.d.ts +1 -1
- package/dist/src/components/ui/select.d.ts +1 -1
- package/dist/src/components/ui/skeleton.d.ts +14 -1
- package/dist/src/components/ui/tabs.d.ts +8 -3
- package/dist/src/components/ui/textarea.d.ts +5 -0
- package/dist/src/components/ui/timeline.d.ts +41 -0
- package/dist/src/components/ui/tooltip.d.ts +6 -2
- package/dist/src/components/ui/typography.d.ts +3 -1
- package/dist/src/hooks/useAutocompleteCheckbox.d.ts +55 -0
- package/dist/src/index.d.ts +7 -1
- package/package.json +89 -26
- package/dist/index.cjs.js +0 -225
- package/dist/src/components/overrides/ui/pickers/manual-date-picker-field.d.ts +0 -20
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
export type DateFormat = "MM/DD/YYYY" | "DD/MM/YYYY" | "YYYY-MM-DD" | "DD-MM-YYYY";
|
|
3
|
-
export interface ManualDatePickerFieldProps {
|
|
4
|
-
label?: string;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
helperText?: string;
|
|
7
|
-
required?: boolean;
|
|
8
|
-
value?: Date;
|
|
9
|
-
onSelect?: (date: Date | undefined) => void;
|
|
10
|
-
className?: string;
|
|
11
|
-
minDate?: Date;
|
|
12
|
-
maxDate?: Date;
|
|
13
|
-
disabled?: boolean;
|
|
14
|
-
readOnly?: boolean;
|
|
15
|
-
locale?: string;
|
|
16
|
-
dateFormat?: DateFormat;
|
|
17
|
-
inputClassName?: string;
|
|
18
|
-
error?: string;
|
|
19
|
-
}
|
|
20
|
-
export declare const ManualDatePickerField: React.FC<ManualDatePickerFieldProps>;
|