x-ui-design 0.2.69 → 0.2.71
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/esm/types/index.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/lib/index.ts +3 -1
- package/package.json +1 -1
|
@@ -159,9 +159,10 @@ export type { FormInstance, RuleObject, RuleRender, FieldData, FieldInstancesInp
|
|
|
159
159
|
export type { DefaultProps, TargetProps, RuleTypes, RuleType, MouseEventHandlerSelect, SyntheticBaseEvent } from '@/types';
|
|
160
160
|
export type { CheckboxProps } from '@/types/checkbox';
|
|
161
161
|
export type { InputProps, TextareaProps } from '@/types/input';
|
|
162
|
-
export type { ButtonProps, BaseButtonProps } from '@/types/button';
|
|
162
|
+
export type { ButtonProps, BaseButtonProps, ButtonType } from '@/types/button';
|
|
163
163
|
export type { RadioProps, RadioGroupProps, RadioButtonProps } from '@/types/radio';
|
|
164
164
|
export type { TDatePickerProps, TRangePickerProps, TimePickerProps } from '@/types/datepicker';
|
|
165
165
|
export type { SelectProps, OptionType, OptionProps, CustomTagProps, TagProps, DisplayValueType } from '@/types/select';
|
|
166
166
|
export type { RcFile, UploadFile, UploadProps, UploadChangeParam } from '@/types/upload';
|
|
167
|
+
export type { FormContext } from '@/components/Form/Form';
|
|
167
168
|
export { clsx, createArray, parseValue } from '@/helpers';
|
package/dist/index.d.ts
CHANGED
|
@@ -13,12 +13,13 @@ export { RcFile, UploadChangeParam, UploadFile, UploadProps } from '@/types/uplo
|
|
|
13
13
|
import * as __types from '@/types';
|
|
14
14
|
export { DefaultProps, MouseEventHandlerSelect, RuleType, RuleTypes, SyntheticBaseEvent, TargetProps } from '@/types';
|
|
15
15
|
import * as __types_button from '@/types/button';
|
|
16
|
-
export { BaseButtonProps, ButtonProps } from '@/types/button';
|
|
16
|
+
export { BaseButtonProps, ButtonProps, ButtonType } from '@/types/button';
|
|
17
17
|
export { ArrowIcon, CalendarIcon, CheckIcon, ClearIcon, DateDistanceIcon, ErrorIcon, LoadingIcon, SearchIcon, SpinerIcon, StampleIcon, SuccessIcon, TimeIcon, TrashIcon } from '@/components/Icons';
|
|
18
18
|
export { useForm } from '@/hooks/useForm';
|
|
19
19
|
export { useWatch } from '@/hooks/useWatch';
|
|
20
20
|
export { CheckboxProps } from '@/types/checkbox';
|
|
21
21
|
export { InputProps, TextareaProps } from '@/types/input';
|
|
22
|
+
export { FormContext } from '@/components/Form/Form';
|
|
22
23
|
export { clsx, createArray, parseValue } from '@/helpers';
|
|
23
24
|
|
|
24
25
|
interface DefaultProps {
|