@mmb-digital/design-system-web 0.1.83 → 0.1.85
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.cjs.js +130 -120
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.esm.js +162 -152
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { ReactNode, FC, PropsWithChildren, MouseEvent, ReactElement,
|
|
2
|
+
import React__default, { ReactNode, FC, PropsWithChildren, MouseEvent, ReactElement, RefObject, HTMLProps, SyntheticEvent, RefAttributes, FocusEvent, ChangeEvent, HTMLInputTypeAttribute, ComponentType, HTMLAttributes } from 'react';
|
|
3
3
|
import * as styled_components from 'styled-components';
|
|
4
4
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
5
5
|
import { MessageDescriptor } from 'react-intl';
|
|
@@ -224,6 +224,7 @@ interface TabsType {
|
|
|
224
224
|
interface TabsItemProps extends TabItemType {
|
|
225
225
|
colorScheme: ColorScheme;
|
|
226
226
|
fullWidth?: boolean;
|
|
227
|
+
htmlRef?: RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void);
|
|
227
228
|
size?: TabsSize;
|
|
228
229
|
variant: TabsVariant;
|
|
229
230
|
}
|
|
@@ -809,6 +810,7 @@ interface SliderInputProps extends RefAttributes<HTMLInputElement> {
|
|
|
809
810
|
stepType: SliderStepType;
|
|
810
811
|
steps: SliderSteps;
|
|
811
812
|
suffix?: ReactNode | string | undefined;
|
|
813
|
+
value?: number;
|
|
812
814
|
weight?: InputWeight;
|
|
813
815
|
}
|
|
814
816
|
|
|
@@ -1489,6 +1491,16 @@ declare const theme: {
|
|
|
1489
1491
|
readonly xl: "1280px";
|
|
1490
1492
|
readonly xxl: "1920px";
|
|
1491
1493
|
};
|
|
1494
|
+
readonly zIndex: {
|
|
1495
|
+
readonly dropdown: 1000;
|
|
1496
|
+
readonly sticky: 1020;
|
|
1497
|
+
readonly fixed: 1030;
|
|
1498
|
+
readonly modalBackdrop: 1040;
|
|
1499
|
+
readonly offcanvas: 1050;
|
|
1500
|
+
readonly modal: 1060;
|
|
1501
|
+
readonly popover: 1070;
|
|
1502
|
+
readonly tooltip: 1080;
|
|
1503
|
+
};
|
|
1492
1504
|
};
|
|
1493
1505
|
|
|
1494
1506
|
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionKeyValue, type AccordionProps, AsyncSelect, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, CalculatorResult, CalculatorResultBox, type CalculatorResultBoxModal, type CalculatorResultBoxProps, type CalculatorResultProps, Checkbox, type CheckboxLabel, CheckboxPosition, type CheckboxProps, type ChooseColor, ColorScheme, type ColorSchemeObject, DatePicker, type DatePickerProps, EmailInput, type EmailInputProps, ErrorBox, type ErrorBoxItem, type ErrorBoxProps, FieldWrapper, FieldWrapperLayout, type FieldWrapperValues, _default as FormattedAmount, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, type FormattedMessageTypes, _default$1 as FormattedPercentage, GapSize, type GetColor, IconProduct, IconProductSize, IconProductType, IconSystem, IconSystemSize, IconSystemType, TooltipInfoConditional as InfoConditional, Infobox, type InfoboxProps, InfoboxSize, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelProps, InputSize, InputTextAlign, InputWeight, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MaskedInput, MaskedInputBase, type MaskedInputBaseProps, MaskedInputField, type MaskedInputProps, MediaType, Modal, type ModalOnClose, type ModalProps, ModalVerticalPosition, ModalWidthType, NumberInput, NumberInputField, type NumberInputProps, PhoneInput, PhoneInputField, PhoneInputNext, type PhoneInputNextProps, type PhoneInputProps, Radio, type RadioBaseWithLabelProps, RadioButton, type RadioButtonLabel, RadioButtonLayout, type RadioButtonProps, RadioButtonsHorizontal, type RadioButtonsHorizontalItem, type RadioButtonsHorizontalLabel, type RadioButtonsHorizontalProps, type RadioLabel, RadioPosition, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectBase, SelectField, type SelectOption, type SelectProps, type SingleValue, Slider, type SliderBreakpoint, SliderInput, type SliderInputLabel, type SliderInputMinMax, type SliderInputProps, SliderInputRoundingType, type SliderProps, SliderStepType, type SliderSteps, Stack, StackDirection, type StackProps, type TabItemType, Table, TableBody, TableData, TableHead, TableHeadData, TableRow, TableVariant, Tabs, TabsItem, type TabsProps, TabsSize, type TabsType, TabsVariant, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, type TooltipFloatingElement, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, type TooltipInfoConditionalProps, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, TooltipPlacement, type TooltipRenderParent, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, TypographyWeight, getColor, theme, useColorScheme, useCreateTooltipFloatingElement, useFormatAmount, useFormattedPercentage, useIsMessageDisplayable, withMaskedInputField };
|