indicator-ui 0.1.123 → 0.1.124
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.css +1768 -888
- package/dist/index.css.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/scss/styles/mixins/index.scss +0 -1
- package/dist/scss/styles/mixins/utils.scss +1 -3
- package/dist/scss/ui/Buttons/styles/mixins/baseButton.scss +1 -2
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-black.scss +15 -33
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-color.scss +15 -33
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-gray.scss +27 -41
- package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +20 -32
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +38 -62
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +37 -63
- package/dist/scss/ui/Buttons/styles/mixins/properties/small.scss +7 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/tab-active.scss +39 -81
- package/dist/scss/ui/Buttons/styles/mixins/properties/tab.scss +39 -81
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +16 -78
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-gray.scss +16 -34
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +16 -78
- package/dist/scss/ui/Buttons/styles/mixins/properties/utils/button-color.scss +35 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-link-color.scss +14 -35
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-primary.scss +21 -19
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-secondary-color.scss +37 -39
- package/dist/scss/ui/InputFields/DateTimeFieldMask/styles/mixins/states/dateTimeDefault.scss +24 -0
- package/dist/scss/ui/InputFields/DateTimeFieldMask/styles/mixins/states/dateTimeDisabled.scss +26 -0
- package/dist/scss/ui/InputFields/DateTimeFieldMask/styles/mixins/states/dateTimeError.scss +26 -0
- package/dist/scss/ui/InputFields/DateTimeFieldMask/styles/mixins/states/index.scss +3 -0
- package/dist/scss/ui/InputFields/DateTimeFieldMask/styles/mixins/utils/dateRangeFieldColor.scss +57 -0
- package/dist/scss/ui/MicroButton/styles/mixins/properties/blue-light.scss +15 -11
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color-fill.scss +33 -10
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color-hover.scss +33 -10
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color.scss +15 -13
- package/dist/scss/ui/MicroButton/styles/mixins/properties/dark.scss +22 -9
- package/dist/scss/ui/MicroButton/styles/mixins/properties/gray-fill.scss +15 -13
- package/dist/scss/ui/MicroButton/styles/mixins/properties/gray.scss +15 -13
- package/dist/scss/ui/MicroButton/styles/mixins/properties/light.scss +33 -10
- package/dist/scss/ui/MicroButton/styles/mixins/properties/red-fill.scss +15 -13
- package/dist/scss/ui/MicroButton/styles/mixins/properties/red-hover.scss +15 -13
- package/dist/scss/ui/MicroButton/styles/mixins/properties/utils/micro-button-color.scss +20 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/formFieldDefault.scss +24 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/formFieldDisabled.scss +26 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/formFieldError.scss +26 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/formFieldErrorFocus.scss +26 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/formFieldFocus.scss +26 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/states/index.scss +5 -0
- package/dist/scss/ui/formFields/FormField/styles/mixins/utils/formFieldColor.scss +59 -0
- package/dist/scss/ui/formFields/mixins/index.scss +1 -0
- package/dist/scss/ui/formFields/mixins/input-color.scss +71 -0
- package/dist/ts/src/test/App.d.ts +1 -1
- package/dist/ts/src/test/layout/PageLayout.d.ts +1 -1
- package/dist/ts/src/test/pages/BreadcrumbsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/ButtonsPage/ButtonsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/CascadeSelectorPage.d.ts +1 -1
- package/dist/ts/src/test/pages/CheckboxMarkPage.d.ts +1 -1
- package/dist/ts/src/test/pages/CheckboxPage.d.ts +1 -1
- package/dist/ts/src/test/pages/DateTimeFieldMaskPage.d.ts +1 -1
- package/dist/ts/src/test/pages/DateTimeFieldsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/DateTimePickerPage.d.ts +1 -1
- package/dist/ts/src/test/pages/DropdownItemPage.d.ts +1 -1
- package/dist/ts/src/test/pages/DropdownV2Page.d.ts +1 -1
- package/dist/ts/src/test/pages/FieldsPage/FieldsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/FormBuilderPage.d.ts +1 -1
- package/dist/ts/src/test/pages/FormPage.d.ts +1 -1
- package/dist/ts/src/test/pages/HomePage.d.ts +1 -1
- package/dist/ts/src/test/pages/LoadingIndicatorPage.d.ts +1 -1
- package/dist/ts/src/test/pages/MediaPlayerPage.d.ts +1 -1
- package/dist/ts/src/test/pages/MicroButtonsPage/MicroButtonsPage.d.ts +1 -0
- package/dist/ts/src/test/pages/ModalsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/PaginationPage.d.ts +1 -1
- package/dist/ts/src/test/pages/SelectFieldPage.d.ts +1 -1
- package/dist/ts/src/test/pages/SlideTransitionPage.d.ts +1 -1
- package/dist/ts/src/test/pages/TabFramePage.d.ts +1 -1
- package/dist/ts/src/test/pages/TagPage.d.ts +1 -1
- package/dist/ts/src/test/pages/TestPage.d.ts +1 -1
- package/dist/ts/src/test/pages/ToggleBasePage.d.ts +1 -1
- package/dist/ts/src/test/pages/TogglePage.d.ts +1 -1
- package/dist/ts/src/test/pages/TooltipTage.d.ts +1 -1
- package/dist/ts/src/test/pages/UiAnimationsPage.d.ts +1 -1
- package/dist/ts/src/test/pages/UseDragPage.d.ts +1 -1
- package/dist/ts/src/test/pages/UseSmartPositionPage.d.ts +1 -1
- package/dist/ts/src/test/pages/UseSmartScrollPage.d.ts +1 -1
- package/dist/ts/src/test/pages/UserPickPage.d.ts +1 -1
- package/dist/ts/src/test/pages/index.d.ts +1 -1
- package/dist/ts/src/ui/Breadcrumbs/ui/BreadcrumbButton.d.ts +1 -1
- package/dist/ts/src/ui/Breadcrumbs/ui/Breadcrumbs.d.ts +1 -1
- package/dist/ts/src/ui/Breadcrumbs/ui/Divider.d.ts +1 -1
- package/dist/ts/src/ui/Buttons/types/ButtonTypes.d.ts +1 -1
- package/dist/ts/src/ui/Carousel/ui/Carousel.d.ts +1 -1
- package/dist/ts/src/ui/CascadeSelector/ui/CascadeSelector.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/components/CalendarButton.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/components/CalendarDay.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/components/CalendarMonth.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/components/CalendarYear.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/components/TimePickerTag.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/parts/Footer.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/parts/Header.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/parts/Main.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/DatePicker.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/MonthPicker.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/TimePicker.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/TimeSuggestions.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/YearPicker.d.ts +1 -1
- package/dist/ts/src/ui/DateTimePicker/ui/pickers/YearSwitcher.d.ts +1 -1
- package/dist/ts/src/ui/DropdownV2/ui/DropdownItemV2.d.ts +1 -1
- package/dist/ts/src/ui/DropdownV2/ui/components/Check.d.ts +1 -1
- package/dist/ts/src/ui/DropdownV2/ui/components/Info.d.ts +1 -1
- package/dist/ts/src/ui/FormBuilder/lib/formBuilder.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeField/ui/DateField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeField/ui/DateFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeField/ui/DateTimeField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeField/ui/TimeField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeField/ui/TimeFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeFieldMask/ui/DateTimeFieldMask.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeRangeField/ui/DateRangeField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeRangeField/ui/DateTimeRangeField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/DateTimeRangeField/ui/TimeRangeField.d.ts +1 -1
- package/dist/ts/src/ui/InputFields/TextareaField/ui/TextareaField.d.ts +1 -1
- package/dist/ts/src/ui/Loaders/ui/LoadingIndicator.d.ts +1 -1
- package/dist/ts/src/ui/MediaViewer/ui/components/ControlBar.d.ts +1 -1
- package/dist/ts/src/ui/MediaViewer/ui/components/VideoProgressBar.d.ts +1 -1
- package/dist/ts/src/ui/PaginationBar/ui/PageSwitcher.d.ts +1 -1
- package/dist/ts/src/ui/PaginationBar/ui/PaginationBar.d.ts +1 -1
- package/dist/ts/src/ui/PlayButton/ui/PlayButton.d.ts +1 -1
- package/dist/ts/src/ui/SlideTransition/ui/SlideTransition.d.ts +1 -1
- package/dist/ts/src/ui/TabButtons/ui/TabButtons.d.ts +1 -1
- package/dist/ts/src/ui/TabFrame/ui/TabFrame.d.ts +1 -1
- package/dist/ts/src/ui/Tag/ui/FilterTag.d.ts +1 -1
- package/dist/ts/src/ui/Tag/ui/Tag.d.ts +1 -1
- package/dist/ts/src/ui/Tag/ui/TagCheckbox.d.ts +1 -1
- package/dist/ts/src/ui/Tag/ui/TagCount.d.ts +1 -1
- package/dist/ts/src/ui/Toggle/ui/Toggle.d.ts +1 -1
- package/dist/ts/src/ui/Tooltip/ui/Tooltip.d.ts +1 -1
- package/dist/ts/src/ui/UserPick/ui/UserPick.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormDateField/ui/FormDateField.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormDateRangeField/ui/FormDateRangeField.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormDateRangeField/ui/FormDateRangeFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormDateRangeField/ui/InputInnerButton.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormDateRangeField/ui/Mask.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormPaginatedSelectField/hooks/useFormPaginatedSelectField.d.ts +63 -57
- package/dist/ts/src/ui/formFields/FormPaginatedSelectField/hooks/useSelectFieldState.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormPaginatedSelectField/lib/index.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormPaginatedSelectField/ui/FormPaginatedSelectFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormRadioField/ui/FieldItem.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormRadioField/ui/FormRadioField.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormSelectField/ui/FormSelectFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/formFields/FormTextareaField/ui/FormTextareaFieldBase.d.ts +1 -1
- package/dist/ts/src/ui/formFields/extends/ui/DropdownArrow.d.ts +1 -1
- package/dist/ts/src/ui/formFields/extends/ui/InputInnerButton.d.ts +1 -1
- package/docs/CSSVariables/CSSThemeCustomize.md +112 -135
- package/package.json +1 -1
- package/dist/scss/styles/mixins/formFieldMixins.scss +0 -55
- package/dist/ts/src/test/pages/MicroButtonsPage.d.ts +0 -1
|
@@ -4,5 +4,5 @@ type PropsType = {
|
|
|
4
4
|
onChangeHour: (hour: PropsType['hour']) => void;
|
|
5
5
|
onChangeMinute: (minute: PropsType['minutes']) => void;
|
|
6
6
|
};
|
|
7
|
-
export declare function TimePicker(props: PropsType): JSX.Element;
|
|
7
|
+
export declare function TimePicker(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -9,5 +9,5 @@ type PropsType<T extends React.ElementType> = AsProps<T, {
|
|
|
9
9
|
icon?: React.ReactNode;
|
|
10
10
|
size?: 'small' | 'medium';
|
|
11
11
|
}>;
|
|
12
|
-
export declare function DropdownItemV2<T extends React.ElementType = 'li'>(props: PropsType<T>): JSX.Element;
|
|
12
|
+
export declare function DropdownItemV2<T extends React.ElementType = 'li'>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -6,5 +6,5 @@ type PropsType = {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
size?: React.ComponentProps<typeof DropdownItemV2>['size'];
|
|
8
8
|
};
|
|
9
|
-
export declare function Info(props: PropsType): JSX.Element;
|
|
9
|
+
export declare function Info(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FORM_BUILDER_SCHEMA } from "../schemes";
|
|
2
2
|
import { AdditionPropsType } from "../types";
|
|
3
|
-
declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) =>
|
|
3
|
+
declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) => import("react").ReactNode[];
|
|
4
4
|
export default formBuilder;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateFieldPropsType } from "../../../../ui";
|
|
2
|
-
export declare function DateField({ value, onChange, dateFormat, outFormat, additionStyle, datePlaceholder, iconDate, textDate, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: DateFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function DateField({ value, onChange, dateFormat, outFormat, additionStyle, datePlaceholder, iconDate, textDate, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: DateFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateFieldBasePropsType } from "../types";
|
|
2
|
-
export declare function DateFieldBase({ value, disabled, required, onChange, onFocus, dateFormat, onBlur, minYear, maxYear, placeholder, className, }: DateFieldBasePropsType): JSX.Element;
|
|
2
|
+
export declare function DateFieldBase({ value, disabled, required, onChange, onFocus, dateFormat, onBlur, minYear, maxYear, placeholder, className, }: DateFieldBasePropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateTimeFieldPropsType } from "../types";
|
|
2
|
-
export declare function DateTimeField({ value, onChange, dateFormat, timeFormat, outFormat, additionStyle, datePlaceholder, timePlaceholder, iconDate, iconTime, textDate, textTime, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: DateTimeFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function DateTimeField({ value, onChange, dateFormat, timeFormat, outFormat, additionStyle, datePlaceholder, timePlaceholder, iconDate, iconTime, textDate, textTime, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: DateTimeFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TimeFieldPropsType } from "../../../../ui";
|
|
2
|
-
export declare function TimeField({ value, onChange, timeFormat, outFormat, additionStyle, timePlaceholder, iconTime, textTime, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: TimeFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function TimeField({ value, onChange, timeFormat, outFormat, additionStyle, timePlaceholder, iconTime, textTime, clearButton, isError, disabled, onFocus, onBlur, width, position, theme, ...props }: TimeFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TimeFieldBasePropsType } from "../types";
|
|
2
|
-
export declare function TimeFieldBase({ value, disabled, required, onChange, onFocus, timeFormat, onBlur, placeholder, className }: TimeFieldBasePropsType): JSX.Element;
|
|
2
|
+
export declare function TimeFieldBase({ value, disabled, required, onChange, onFocus, timeFormat, onBlur, placeholder, className }: TimeFieldBasePropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateTimeFieldMaskPropsType } from "../types";
|
|
2
|
-
export declare function DateTimeFieldMask({ firstField, secondField, iconFirst, iconSecond, textFirst, textSecond, isFocus, isError, disabled, additionStyle, onXClose, width, theme }: DateTimeFieldMaskPropsType): JSX.Element;
|
|
2
|
+
export declare function DateTimeFieldMask({ firstField, secondField, iconFirst, iconSecond, textFirst, textSecond, isFocus, isError, disabled, additionStyle, onXClose, width, theme }: DateTimeFieldMaskPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateRangeFieldPropsType } from "../types";
|
|
2
|
-
export declare function DateRangeField({ value, onChange, secondPlaceholder, firstPlaceholder, secondIcon, disabled, dateFormat, required, firstIcon, onBlur, firstText, secondText, onFocus, isError, clearButton, width, additionsStyles, position, theme }: DateRangeFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function DateRangeField({ value, onChange, secondPlaceholder, firstPlaceholder, secondIcon, disabled, dateFormat, required, firstIcon, onBlur, firstText, secondText, onFocus, isError, clearButton, width, additionsStyles, position, theme }: DateRangeFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DateTimeRangeFieldPropsType } from "../../DateTimeRangeField";
|
|
2
|
-
export declare function DateTimeRangeField({ value, onChange, theme, ...props }: DateTimeRangeFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function DateTimeRangeField({ value, onChange, theme, ...props }: DateTimeRangeFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TimeRangeFieldPropsType } from "../../../../ui";
|
|
2
|
-
export declare function TimeRangeField({ value, onChange, secondPlaceholder, firstPlaceholder, secondIcon, disabled, timeFormat, required, firstIcon, onBlur, firstText, secondText, onFocus, isError, clearButton, width, additionsStyles, theme }: TimeRangeFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function TimeRangeField({ value, onChange, secondPlaceholder, firstPlaceholder, secondIcon, disabled, timeFormat, required, firstIcon, onBlur, firstText, secondText, onFocus, isError, clearButton, width, additionsStyles, theme }: TimeRangeFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TextareaFieldPropsType } from "../types";
|
|
2
|
-
export declare function TextareaField(props: TextareaFieldPropsType): JSX.Element;
|
|
2
|
+
export declare function TextareaField(props: TextareaFieldPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -14,5 +14,5 @@ type BasePropsType = {
|
|
|
14
14
|
theme?: 'dark' | 'light';
|
|
15
15
|
};
|
|
16
16
|
type PropsType = Omit<React.ComponentProps<'div'>, keyof BasePropsType> & BasePropsType;
|
|
17
|
-
export declare function LoadingIndicator(props: PropsType): JSX.Element;
|
|
17
|
+
export declare function LoadingIndicator(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ProgressBarPropsType } from "../../types";
|
|
2
|
-
export declare function VideoProgressBar({ progress, onChangeProgress, onStartDrag, onEndDrag }: ProgressBarPropsType): JSX.Element;
|
|
2
|
+
export declare function VideoProgressBar({ progress, onChangeProgress, onStartDrag, onEndDrag }: ProgressBarPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PageSwitcherPropsType } from "../types";
|
|
2
|
-
export declare function PageSwitcher({ curPage, numPage, next, prev, onChange, smallVersion, theme }: PageSwitcherPropsType): JSX.Element;
|
|
2
|
+
export declare function PageSwitcher({ curPage, numPage, next, prev, onChange, smallVersion, theme }: PageSwitcherPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PaginationBarPropsType } from "../types";
|
|
2
|
-
export declare function PaginationBar({ numPage, getCurPage, nextPage, changePage, prevPage, loadMore, canLoadMore, loadMoreButton, smallVersion, theme, }: PaginationBarPropsType): JSX.Element;
|
|
2
|
+
export declare function PaginationBar({ numPage, getCurPage, nextPage, changePage, prevPage, loadMore, canLoadMore, loadMoreButton, smallVersion, theme, }: PaginationBarPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PlayButtonPropsType } from "../types";
|
|
2
|
-
export declare function PlayButton({ color, type, size, ...props }: PlayButtonPropsType): JSX.Element;
|
|
2
|
+
export declare function PlayButton({ color, type, size, ...props }: PlayButtonPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -23,4 +23,4 @@ import { SlideTransitionPropsType } from '../types';
|
|
|
23
23
|
* Учтите, что анимации сужают компонент, поэтому он будет деформироваться.
|
|
24
24
|
* При высокой (автор проводил тесты на 300ms) скорости анимации ощущается нормально (если вы не Флеш).
|
|
25
25
|
* */
|
|
26
|
-
export declare function SlideTransition({ children, animation, className, additionStyles, style, }: SlideTransitionPropsType): JSX.Element;
|
|
26
|
+
export declare function SlideTransition({ children, animation, className, additionStyles, style, }: SlideTransitionPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -22,5 +22,5 @@ type PropsType = Omit<React.ComponentProps<'button'>, 'className'> & {
|
|
|
22
22
|
theme?: "light" | "dark";
|
|
23
23
|
mark?: 'info' | 'error' | 'success';
|
|
24
24
|
};
|
|
25
|
-
export declare function TabButtons(props: PropsType): JSX.Element;
|
|
25
|
+
export declare function TabButtons(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
26
26
|
export {};
|
|
@@ -9,5 +9,5 @@ type PropsType = {
|
|
|
9
9
|
additionStyles?: string | string[];
|
|
10
10
|
theme?: 'light' | 'dark';
|
|
11
11
|
};
|
|
12
|
-
export declare function TabFrame(props: PropsType): JSX.Element;
|
|
12
|
+
export declare function TabFrame(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -8,6 +8,6 @@ type PropsType<T extends React.ElementType> = AsProps<T, {
|
|
|
8
8
|
onClose?: () => void;
|
|
9
9
|
active?: boolean;
|
|
10
10
|
}>;
|
|
11
|
-
export declare const _FilterTag: <T extends React.ElementType>(props: PropsType<T>, ref: React.Ref<RefType<T>>) => JSX.Element;
|
|
11
|
+
export declare const _FilterTag: <T extends React.ElementType>(props: PropsType<T>, ref: React.Ref<RefType<T>>) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export declare const FilterTag: <T extends React.ElementType = "button">(props: PropsType<T> & React.RefAttributes<RefType<T>>) => JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TagPropsType } from "../types";
|
|
2
|
-
export declare function Tag({ active, size, icon, label, checkbox, checked, actions, onCheckboxClick, onXCloseClick, onClick, count, }: TagPropsType): JSX.Element;
|
|
2
|
+
export declare function Tag({ active, size, icon, label, checkbox, checked, actions, onCheckboxClick, onXCloseClick, onClick, count, }: TagPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TagCheckboxPropsType } from '../types';
|
|
2
|
-
export declare function TagCheckbox({ size, checked, disabled, onClick }: TagCheckboxPropsType): JSX.Element;
|
|
2
|
+
export declare function TagCheckbox({ size, checked, disabled, onClick }: TagCheckboxPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,5 +5,5 @@ type PropsType<T extends React.ElementType> = AsProps<T, {
|
|
|
5
5
|
color?: 'gray' | 'color' | 'white';
|
|
6
6
|
size?: 'small' | 'medium' | 'large';
|
|
7
7
|
}>;
|
|
8
|
-
export declare function TagCount<T extends React.ElementType = 'span'>(props: PropsType<T>): JSX.Element;
|
|
8
|
+
export declare function TagCount<T extends React.ElementType = 'span'>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { TogglePropsType } from "../types";
|
|
3
3
|
type PropsType = Omit<React.ComponentProps<'button'>, keyof TogglePropsType> & TogglePropsType;
|
|
4
|
-
export declare function Toggle(props: PropsType): JSX.Element;
|
|
4
|
+
export declare function Toggle(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export {};
|
|
@@ -7,4 +7,4 @@ import { TooltipTypes } from "../types/TooltipTypes";
|
|
|
7
7
|
* @param color Тема: 'light'/'dark'
|
|
8
8
|
* @constructor
|
|
9
9
|
*/
|
|
10
|
-
export declare function Tooltip({ text, description, arrow, classes, styles, targetRef, onClose, excludedOnCloseElements, color }: TooltipTypes): JSX.Element;
|
|
10
|
+
export declare function Tooltip({ text, description, arrow, classes, styles, targetRef, onClose, excludedOnCloseElements, color }: TooltipTypes): import("react/jsx-runtime").JSX.Element;
|
|
@@ -18,5 +18,5 @@ type BasePropsType = FieldPropsType<ValueType> & {
|
|
|
18
18
|
outFormat?: string;
|
|
19
19
|
};
|
|
20
20
|
type PropsType = Omit<React.ComponentProps<typeof FormField>, keyof BasePropsType> & BasePropsType;
|
|
21
|
-
export declare function FormDateField(props: PropsType): JSX.Element;
|
|
21
|
+
export declare function FormDateField(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
export {};
|
|
@@ -2,5 +2,5 @@ import React from "react";
|
|
|
2
2
|
import { FormDateRangeFieldBase } from './FormDateRangeFieldBase';
|
|
3
3
|
import { FormFieldWrapper } from '../../FormFieldWrapper';
|
|
4
4
|
type PropsType = React.ComponentProps<typeof FormDateRangeFieldBase> & React.ComponentProps<typeof FormFieldWrapper>;
|
|
5
|
-
export declare function FormDateRangeField(props: PropsType): JSX.Element;
|
|
5
|
+
export declare function FormDateRangeField(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -22,5 +22,5 @@ type PropsType = FieldPropsType<ValueType> & {
|
|
|
22
22
|
* */
|
|
23
23
|
outFormat?: string;
|
|
24
24
|
};
|
|
25
|
-
export declare function FormDateRangeFieldBase(props: PropsType): JSX.Element;
|
|
25
|
+
export declare function FormDateRangeFieldBase(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
26
26
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type PropsType = React.ComponentProps<'button'> & {
|
|
2
2
|
color?: 'red' | 'gray';
|
|
3
3
|
};
|
|
4
|
-
export declare function InputInnerButton(props: PropsType): JSX.Element;
|
|
4
|
+
export declare function InputInnerButton(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export {};
|
|
@@ -10,5 +10,5 @@ type PropsType = React.ComponentProps<typeof IMaskInput> & {
|
|
|
10
10
|
[key: string]: ExtendFactoryArgOptions<BlockExtraOptions>;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare function Mask(props: PropsType): JSX.Element;
|
|
13
|
+
export declare function Mask(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export {};
|
package/dist/ts/src/ui/formFields/FormPaginatedSelectField/hooks/useFormPaginatedSelectField.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
29
29
|
canSearch: boolean;
|
|
30
30
|
canPaginate: boolean;
|
|
31
31
|
isLoading: boolean;
|
|
32
|
-
fieldState: "
|
|
32
|
+
fieldState: "search" | "view";
|
|
33
33
|
setIsFocus: React.Dispatch<React.SetStateAction<boolean>>;
|
|
34
34
|
isShow: boolean;
|
|
35
35
|
getIsShow: () => boolean;
|
|
@@ -41,15 +41,15 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
41
41
|
modalRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
42
42
|
targetRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
43
43
|
otherProps: {
|
|
44
|
-
ref?: React.LegacyRef<HTMLDivElement> | undefined;
|
|
45
|
-
slot?: string | undefined | undefined;
|
|
46
|
-
style?: React.CSSProperties | undefined;
|
|
47
|
-
title?: string | undefined | undefined;
|
|
48
44
|
id?: string | undefined | undefined;
|
|
45
|
+
ref?: React.LegacyRef<HTMLDivElement> | undefined;
|
|
49
46
|
color?: string | undefined | undefined;
|
|
50
47
|
content?: string | undefined | undefined;
|
|
51
48
|
translate?: "yes" | "no" | undefined | undefined;
|
|
52
49
|
hidden?: boolean | undefined | undefined;
|
|
50
|
+
slot?: string | undefined | undefined;
|
|
51
|
+
style?: React.CSSProperties | undefined;
|
|
52
|
+
title?: string | undefined | undefined;
|
|
53
53
|
onSubmit?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
54
54
|
onReset?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
55
55
|
key?: React.Key | null | undefined;
|
|
@@ -58,11 +58,13 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
58
58
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
59
59
|
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
60
60
|
accessKey?: string | undefined | undefined;
|
|
61
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
61
62
|
autoFocus?: boolean | undefined | undefined;
|
|
62
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
|
63
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
63
64
|
contextMenu?: string | undefined | undefined;
|
|
64
65
|
dir?: string | undefined | undefined;
|
|
65
66
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
67
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
66
68
|
lang?: string | undefined | undefined;
|
|
67
69
|
nonce?: string | undefined | undefined;
|
|
68
70
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
@@ -79,7 +81,6 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
79
81
|
rev?: string | undefined | undefined;
|
|
80
82
|
typeof?: string | undefined | undefined;
|
|
81
83
|
vocab?: string | undefined | undefined;
|
|
82
|
-
autoCapitalize?: string | undefined | undefined;
|
|
83
84
|
autoCorrect?: string | undefined | undefined;
|
|
84
85
|
autoSave?: string | undefined | undefined;
|
|
85
86
|
itemProp?: string | undefined | undefined;
|
|
@@ -92,54 +93,61 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
92
93
|
unselectable?: "on" | "off" | undefined | undefined;
|
|
93
94
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
94
95
|
is?: string | undefined | undefined;
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
96
|
+
exportparts?: string | undefined | undefined;
|
|
97
|
+
part?: string | undefined | undefined;
|
|
98
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
99
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
100
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
101
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
102
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
103
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
104
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
105
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
106
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
107
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
108
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
109
|
+
"aria-controls"?: string | undefined | undefined;
|
|
110
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
111
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
112
|
+
"aria-description"?: string | undefined | undefined;
|
|
113
|
+
"aria-details"?: string | undefined | undefined;
|
|
114
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
115
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
116
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
117
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
118
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
119
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
120
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
121
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
122
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
123
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
124
|
+
"aria-label"?: string | undefined | undefined;
|
|
125
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
126
|
+
"aria-level"?: number | undefined | undefined;
|
|
127
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
128
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
129
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
130
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
131
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
132
|
+
"aria-owns"?: string | undefined | undefined;
|
|
133
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
134
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
135
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
136
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
137
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
138
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
139
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
140
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
141
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
142
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
143
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
144
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
145
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
146
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
147
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
148
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
149
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
150
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
143
151
|
children?: React.ReactNode;
|
|
144
152
|
dangerouslySetInnerHTML?: {
|
|
145
153
|
__html: string | TrustedHTML;
|
|
@@ -278,9 +286,7 @@ export declare function useFormPaginatedSelectField<D, M extends boolean = false
|
|
|
278
286
|
onPointerCancel?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
279
287
|
onPointerCancelCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
280
288
|
onPointerEnter?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
281
|
-
onPointerEnterCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
282
289
|
onPointerLeave?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
283
|
-
onPointerLeaveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
284
290
|
onPointerOver?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
285
291
|
onPointerOverCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
286
292
|
onPointerOut?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OptionsExtendItemType, OptionsType, ValueType } from "../types";
|
|
2
2
|
export declare function compValue(a: any, b: any): boolean;
|
|
3
3
|
export declare function getExtendOptions<D>(curOptions: OptionsType<D>, cache?: OptionsType<D>): OptionsExtendItemType<D>[];
|
|
4
|
-
export declare function getExtendOptionLabel<D>(curOption: OptionsExtendItemType<D>): string | number | true | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").
|
|
4
|
+
export declare function getExtendOptionLabel<D>(curOption: OptionsExtendItemType<D>): string | number | true | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode>;
|
|
5
5
|
export declare function getExtendValue<D, M extends boolean = false>(curValue: ValueType<D, M> | undefined | null, multiple: M): D[];
|
|
6
6
|
export declare function getValueLabels<D>(curValues: D[], curOptions: OptionsExtendItemType<D>[]): string[];
|
|
7
7
|
export declare function getNewMultipleValue<D, M extends boolean = false>(newData: D, curValue: D[]): ValueType<D, M>;
|
package/dist/ts/src/ui/formFields/FormPaginatedSelectField/ui/FormPaginatedSelectFieldBase.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { useFormPaginatedSelectField } from "../hooks";
|
|
2
2
|
type PropsType<D, M extends boolean> = Parameters<typeof useFormPaginatedSelectField<D, M>>[number];
|
|
3
|
-
export declare function FormPaginatedSelectFieldBase<D, M extends boolean = false>(props: PropsType<D, M>): JSX.Element;
|
|
3
|
+
export declare function FormPaginatedSelectFieldBase<D, M extends boolean = false>(props: PropsType<D, M>): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export {};
|
|
@@ -15,5 +15,5 @@ type PropsType<D, M extends boolean> = FieldPropsType<GetValueType<D, M>> & {
|
|
|
15
15
|
required?: boolean;
|
|
16
16
|
theme?: 'dark' | 'light';
|
|
17
17
|
};
|
|
18
|
-
export declare function FormRadioField<D, M extends boolean = false>(props: PropsType<D, M>): JSX.Element;
|
|
18
|
+
export declare function FormRadioField<D, M extends boolean = false>(props: PropsType<D, M>): import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
export {};
|
|
@@ -17,5 +17,5 @@ type BasePropsType<D, M extends boolean> = {
|
|
|
17
17
|
required?: boolean;
|
|
18
18
|
};
|
|
19
19
|
type PropsType<D, M extends boolean> = Omit<React.ComponentProps<typeof FormFieldBase>, keyof BasePropsType<D, M> | keyof FieldPropsType<ValueType<D, M>>> & FieldPropsType<ValueType<D, M>> & BasePropsType<D, M>;
|
|
20
|
-
export declare function FormSelectFieldBase<D, M extends boolean = false>(props: PropsType<D, M>): JSX.Element;
|
|
20
|
+
export declare function FormSelectFieldBase<D, M extends boolean = false>(props: PropsType<D, M>): import("react/jsx-runtime").JSX.Element;
|
|
21
21
|
export {};
|
|
@@ -10,5 +10,5 @@ type BasePropsType = FieldPropsType<string> & {
|
|
|
10
10
|
theme?: "light" | "dark";
|
|
11
11
|
};
|
|
12
12
|
type PropsType = Omit<React.ComponentProps<'textarea'>, keyof BasePropsType> & BasePropsType;
|
|
13
|
-
export declare function FormTextareaFieldBase(props: PropsType): JSX.Element;
|
|
13
|
+
export declare function FormTextareaFieldBase(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export {};
|
|
@@ -2,5 +2,5 @@ import React from "react";
|
|
|
2
2
|
type PropsType = React.ComponentProps<'button'> & {
|
|
3
3
|
open?: boolean;
|
|
4
4
|
};
|
|
5
|
-
export declare function DropdownArrow(props: PropsType): JSX.Element;
|
|
5
|
+
export declare function DropdownArrow(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -3,5 +3,5 @@ type PropsType = React.ComponentProps<'button'> & {
|
|
|
3
3
|
icon: React.ReactNode;
|
|
4
4
|
color: 'gray' | 'red';
|
|
5
5
|
};
|
|
6
|
-
export declare function InputInnerButton(props: PropsType): JSX.Element;
|
|
6
|
+
export declare function InputInnerButton(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|