kui-complex 0.0.164 → 0.0.165
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/index.d.ts +15 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { DateTime } from 'luxon';
|
|
|
4
4
|
import * as react_hook_form from 'react-hook-form';
|
|
5
5
|
import { UseFormReturn, FieldValues } from 'react-hook-form';
|
|
6
6
|
import * as kui_basic from 'kui-basic';
|
|
7
|
-
import { InputProps, InputWithMaskProps as InputWithMaskProps$1, InputWithAdornmentsProps, SwitchProps, InputWithCountryDropdownProps, ModalProps } from 'kui-basic';
|
|
7
|
+
import { InputProps, InputWithMaskProps as InputWithMaskProps$1, InputWithAdornmentsProps, SwitchProps, InputWithCountryDropdownProps, ModalProps, CaptionProps, CheckboxProps } from 'kui-basic';
|
|
8
8
|
import * as _floating_ui_utils from '@floating-ui/utils';
|
|
9
9
|
import * as react_datepicker from 'react-datepicker';
|
|
10
10
|
import * as _emotion_styled from '@emotion/styled';
|
|
@@ -433,6 +433,14 @@ type FileBodyRequest = {
|
|
|
433
433
|
url?: string
|
|
434
434
|
}
|
|
435
435
|
|
|
436
|
+
type InputFileProps<T> = {
|
|
437
|
+
uploadLabel?: string
|
|
438
|
+
withEdit: boolean
|
|
439
|
+
fileName?: string
|
|
440
|
+
parentName?: string
|
|
441
|
+
toBigTitleMessage?: string
|
|
442
|
+
} & InputProps<T>
|
|
443
|
+
|
|
436
444
|
type FileParams = {
|
|
437
445
|
id: number | null
|
|
438
446
|
name: string
|
|
@@ -471,6 +479,11 @@ interface FileItemProps
|
|
|
471
479
|
error?: string
|
|
472
480
|
}
|
|
473
481
|
|
|
482
|
+
type CheckboxWithControllerProps<T> = {
|
|
483
|
+
form: UseFormReturn<T>
|
|
484
|
+
labelProps?: CaptionProps
|
|
485
|
+
} & CheckboxProps
|
|
486
|
+
|
|
474
487
|
declare const CheckboxWithController: React__default.ForwardRefExoticComponent<Pick<{
|
|
475
488
|
form: react_hook_form.UseFormReturn<object, any, object>;
|
|
476
489
|
labelProps?: kui_basic.CaptionProps | undefined;
|
|
@@ -526,4 +539,4 @@ declare const getVisibilitySettings: (visibility?: DocumentVisibilityVariants |
|
|
|
526
539
|
landlord: boolean;
|
|
527
540
|
};
|
|
528
541
|
|
|
529
|
-
export { AutocompleteOption, Avatar, ButtonSelect, ButtonTab, ButtonsPanel, ButtonsPanelProps, CalendarHeaderWithSelect, CalendarStandardContainer, CalendarStandardHeader, CheckboxGroupWithTitle, CheckboxWithController, DependentInput, DesktopInputWithMonthPicker, DesktopMenuPanel, DocumentVisibilityVariants, FileItemProps, InputDropdown, InputFile, InputForDatepicker, InputMultiSelect, InputPassword, InputPhoneWithForm, InputSelect, InputSelectBase, InputSelectBaseProps, InputSelectDropdown, InputSelectWithController, InputTextAreaMobile, InputWithAutocomplete, InputWithController, InputWithControllerProps, InputWithDatePicker, InputWithMask, InputWithMonthPicker, KUIComplexObserver, KUIComplexSettings, Loading, MapWrapper, MenuItem, MenuPanel, MenuPanelProps, MobileInputWithMonthPicker, MobileMenuPanel, MonthPickerContainer, MonthPickerHeader, OptionParams$2 as OptionParams, PassportStrengthBar, RadioButtons, RadioButtonsWithController, RadioGroupWithLabel, SelectMonth, SelectYear, Switch, TabPanelVariants, Table, TableCell, TableHeadCell, TableRow, Tooltip, UndefinedAvatar, UploadFileParams, VisibilitySettings, getFormError, getFormValue, getSettings, getVisibility, getVisibilitySettings, setSettings, shortMonths, subscribeToSettings, unsubscribeFromSettings };
|
|
542
|
+
export { AutocompleteOption, Avatar, ButtonSelect, ButtonTab, ButtonsPanel, ButtonsPanelProps, CalendarHeaderWithSelect, CalendarStandardContainer, CalendarStandardHeader, CheckboxGroupWithTitle, CheckboxWithController, CheckboxWithControllerProps, DependentInput, DesktopInputWithMonthPicker, DesktopMenuPanel, DocumentVisibilityVariants, FileItemProps, FileParams, InputDropdown, InputFile, InputFileProps, InputForDatepicker, InputMultiSelect, InputPassword, InputPhoneWithForm, InputSelect, InputSelectBase, InputSelectBaseProps, InputSelectDropdown, InputSelectWithController, InputTextAreaMobile, InputWithAutocomplete, InputWithController, InputWithControllerProps, InputWithDatePicker, InputWithMask, InputWithMonthPicker, KUIComplexObserver, KUIComplexSettings, Loading, MapWrapper, MenuItem, MenuPanel, MenuPanelProps, MobileInputWithMonthPicker, MobileMenuPanel, MonthPickerContainer, MonthPickerHeader, OptionParams$2 as OptionParams, PassportStrengthBar, RadioButtons, RadioButtonsWithController, RadioGroupWithLabel, SelectMonth, SelectYear, Switch, TabPanelVariants, Table, TableCell, TableHeadCell, TableRow, Tooltip, UndefinedAvatar, UploadFileParams, VisibilitySettings, getFormError, getFormValue, getSettings, getVisibility, getVisibilitySettings, setSettings, shortMonths, subscribeToSettings, unsubscribeFromSettings };
|