master-components-react-ts 2.2.1 → 2.2.3
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/components/ActionDropdown/ActionDropdown.d.ts +1 -0
- package/dist/components/Checkbox/CheckBox.d.ts +1 -0
- package/dist/components/DatePicker/DatePicker.d.ts +1 -0
- package/dist/components/Dropdown/DropDown.d.ts +1 -0
- package/dist/components/FormInput/FormInput.d.ts +1 -0
- package/dist/components/InlineLoading/InlineLoading.d.ts +1 -0
- package/dist/components/MainButton/MainButton.d.ts +1 -0
- package/dist/components/NotificationToast/createNotificationToast.d.ts +1 -0
- package/dist/components/Popup/Popup.d.ts +1 -0
- package/dist/components/Radio/Radio.d.ts +1 -0
- package/dist/components/Skeleton/Skeleton.d.ts +1 -0
- package/dist/components/Slider/Slider.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +1 -0
- package/dist/components/Textarea/Textarea.d.ts +1 -0
- package/dist/components/TimePicker/TimePicker.d.ts +1 -0
- package/dist/components/Toggle/Toggle.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/index.js +491 -476
- package/package.json +1 -1
|
@@ -3,5 +3,6 @@ declare const Checkbox: {
|
|
|
3
3
|
({ checked, change, type, disabled, required, multipleChecked, activeStyle, checkBoxStyle, theme, }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["checked", "change", "type", "disabled", "required", "multipleChecked", "activeStyle", "checkBoxStyle", "theme"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Checkbox;
|
|
@@ -3,5 +3,6 @@ declare const DatePicker: {
|
|
|
3
3
|
({ defaultValue, valueFormat, onChange, onBlur, onFocus, customYears, fixedDropdown, disabledDatesFrom, disabledDatesTill, disabledDatesRange, datepickerStyle, datepickerLabelStyle, requiredStyle, datepickerHelperTextStyle, selectedStyle, endDateStyle, startDateStyle, inRangeStyle, otherMonthStyle, todayStyle, weekDayStyle, quickPickStyle, monthStyle, quickPick, mode, pickerType, disabled, ...rest }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["defaultValue", "valueFormat", "onChange", "onBlur", "onFocus", "customYears", "fixedDropdown", "disabledDatesFrom", "disabledDatesTill", "disabledDatesRange", "datepickerStyle", "datepickerLabelStyle", "requiredStyle", "datepickerHelperTextStyle", "selectedStyle", "endDateStyle", "startDateStyle", "inRangeStyle", "otherMonthStyle", "todayStyle", "weekDayStyle", "quickPickStyle", "monthStyle", "quickPick", "mode", "pickerType", "disabled"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default DatePicker;
|
|
@@ -3,5 +3,6 @@ declare const Dropdown: {
|
|
|
3
3
|
({ data, withFilter, withClose, disableAll, withMultiselect, selectedOptionID, withInput, dropdownType, onSelect, onFocus, onBlur, onValueChange, customInputSlot, dropdownWrapperStyle, dropdownInputWrapperStyle, dropdownInputSlotStyle, dropdownInputSlotItemStyle, dropdownInputSlotItemLabelStyle, dropdownInputSlotItemCloseStyle, dropdownInputSlotItemMoreStyle, dropdownItemStyle, dropdownItemLabelStyle, itemCheckboxStyle, dropdownItemLabelTextStyle, dropdownListStyle, ...rest }: DropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["data", "withFilter", "withClose", "disableAll", "withMultiselect", "selectedOptionID", "withInput", "dropdownType", "onSelect", "onFocus", "onBlur", "onValueChange", "customInputSlot", "dropdownWrapperStyle", "dropdownInputWrapperStyle", "dropdownInputSlotStyle", "dropdownInputSlotItemStyle", "dropdownInputSlotItemLabelStyle", "dropdownInputSlotItemCloseStyle", "dropdownInputSlotItemMoreStyle", "dropdownItemStyle", "dropdownItemLabelStyle", "itemCheckboxStyle", "dropdownItemLabelTextStyle", "dropdownListStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Dropdown;
|
|
@@ -3,5 +3,6 @@ declare const FormInput: {
|
|
|
3
3
|
({ label, placeholder, helperText, required, disabled, readOnly, withFocus, withActive, searchComponent, size, toggleFocus, rightSlot, leftSlot, helperSlot, type, value, maxLength, forDropdown, customFocus, focus, inputState, inputSlot, onChange, onFocus, onBlur, onEnter, onFocusChange, formInputWrapperStyle, inputWrapperStyle, formInputStyle, helperTextStyle, labelStyle, inputSlotStyle, }: FormInputProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["label", "placeholder", "helperText", "required", "disabled", "readOnly", "withFocus", "withActive", "searchComponent", "size", "toggleFocus", "rightSlot", "leftSlot", "helperSlot", "type", "value", "maxLength", "forDropdown", "customFocus", "focus", "inputState", "inputSlot", "onChange", "onFocus", "onBlur", "onEnter", "onFocusChange", "formInputWrapperStyle", "inputWrapperStyle", "formInputStyle", "helperTextStyle", "labelStyle", "inputSlotStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default FormInput;
|
|
@@ -3,5 +3,6 @@ declare const InlineLoading: {
|
|
|
3
3
|
({ loading, success, error, msg }: InlineLoadingProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["loading", "success", "error", "msg"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default InlineLoading;
|
|
@@ -3,5 +3,6 @@ declare const MainButton: {
|
|
|
3
3
|
({ label, size, leftSlot, rightSlot, buttonSlot, type, colorType, buttonType, withFocus, customFocus, disabled, loading, spaceBetween, buttonStyle, mainButtonContentStyle, mainButtonLabelStyle, leftSlotStyle, rightSlotStyle, onClick, }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["label", "size", "leftSlot", "rightSlot", "buttonSlot", "type", "colorType", "buttonType", "withFocus", "customFocus", "disabled", "loading", "spaceBetween", "buttonStyle", "mainButtonContentStyle", "mainButtonLabelStyle", "leftSlotStyle", "rightSlotStyle", "onClick"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default MainButton;
|
|
@@ -3,5 +3,6 @@ declare const createNotificationToast: {
|
|
|
3
3
|
(): ((props: NotificationToastProps) => void);
|
|
4
4
|
propKeys: readonly ["title", "colorType", "filled", "withClose", "withUndo", "withInfoIcon", "description", "customAction", "timeout", "children", "onUndo", "onClose"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default createNotificationToast;
|
|
@@ -3,5 +3,6 @@ declare const Popup: {
|
|
|
3
3
|
({ visible, template, options, children, onClickOutside, onClose, widthType, modalOverlayStyle, popupContainerStyle, templateWrapperStyle, popupHeaderStyle, popupTitleStyle, closeButtonStyle, }: PopupProps): false | import("react/jsx-runtime").JSX.Element | undefined;
|
|
4
4
|
propKeys: readonly ["visible", "template", "options", "children", "onClickOutside", "onClose", "widthType", "modalOverlayStyle", "popupContainerStyle", "templateWrapperStyle", "popupHeaderStyle", "popupTitleStyle", "closeButtonStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Popup;
|
|
@@ -3,5 +3,6 @@ declare const Radio: {
|
|
|
3
3
|
({ checked, change, disabled, required, withUncheckState, radioType }: RadioProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["checked", "change", "disabled", "required", "withUncheckState", "radioType"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Radio;
|
|
@@ -3,5 +3,6 @@ declare const Slider: {
|
|
|
3
3
|
({ minValue, maxValue, min, max, label, showLabels, withPercent, debounceTime, onChange, theme, sliderContainerStyle, sliderStyle, sliderProgressStyle, thumbValuesStyle, thumbValueStyle, thumbStyle, }: SliderProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["minValue", "maxValue", "min", "max", "label", "showLabels", "withPercent", "debounceTime", "onChange", "theme", "sliderContainerStyle", "sliderStyle", "sliderProgressStyle", "thumbValuesStyle", "thumbValueStyle", "thumbStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Slider;
|
|
@@ -3,5 +3,6 @@ declare const Tabs: {
|
|
|
3
3
|
({ tabsData, type, vertical, onItemClick, tabContainerStyle, singleTabStyle, }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["tabsData", "type", "vertical", "onItemClick", "tabContainerStyle", "singleTabStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Tabs;
|
|
@@ -3,5 +3,6 @@ declare const Textarea: {
|
|
|
3
3
|
({ placeholder, label, cols, rows, value, inputState, maxLength, withFocus, withActive, withResize, withClose, onChange, onFocus, onBlur, disabled, required, textareaContainerStyle, textareaLabelStyle, requiredStyle, labelSlot, textareaFooterStyle, }: TextareaProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["placeholder", "label", "cols", "rows", "value", "inputState", "maxLength", "withFocus", "withActive", "withResize", "withClose", "onChange", "onFocus", "onBlur", "disabled", "required", "textareaContainerStyle", "textareaLabelStyle", "requiredStyle", "labelSlot", "textareaFooterStyle"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Textarea;
|
|
@@ -3,5 +3,6 @@ declare const TimePicker: {
|
|
|
3
3
|
({ value, defaultTimeType, defaultAmPm, withConfirm, mode, onChange, onFocus, onBlur, ...rest }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["value", "defaultTimeType", "defaultAmPm", "withConfirm", "mode", "onChange", "onFocus", "onBlur"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default TimePicker;
|
|
@@ -3,5 +3,6 @@ declare const Toggle: {
|
|
|
3
3
|
({ checked, change, disabled, size, toggleType, required }: ToggleProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["checked", "change", "disabled", "required", "size", "toggleType"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Toggle;
|
|
@@ -3,5 +3,6 @@ declare const Tooltip: {
|
|
|
3
3
|
({ children, tooltipSlot, delay, placement, trigger, title, text, customText, tooltipContentStyle, tooltipTitlestyle, tooltipTextStyle, tooltipContainerStyle, pointerPosition, withPointer, theme, topCustomOffset, bottomCustomOffset, leftCustomOffset, rightCustomOffset, forceClose, onClick, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
propKeys: readonly ["children", "tooltipSlot", "delay", "placement", "trigger", "title", "text", "customText", "tooltipContentStyle", "tooltipTitlestyle", "tooltipTextStyle", "tooltipContainerStyle", "pointerPosition", "withPointer", "theme", "topCustomOffset", "bottomCustomOffset", "leftCustomOffset", "rightCustomOffset", "forceClose", "onClick"];
|
|
5
5
|
displayName: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
export default Tooltip;
|