@rabex-kit/rabex-ui 0.2.75 → 0.2.76
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.d.ts +3 -2
- package/dist/rabex-ui.cjs.development.js +24 -0
- package/dist/rabex-ui.cjs.development.js.map +1 -1
- package/dist/rabex-ui.cjs.production.min.js +1 -1
- package/dist/rabex-ui.cjs.production.min.js.map +1 -1
- package/dist/rabex-ui.esm.js +24 -1
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -117,5 +117,6 @@ import UploadButton, { UploadButtonProps } from './UploadButton';
|
|
|
117
117
|
import Zoom, { ZoomProps } from './Zoom';
|
|
118
118
|
import SegmentedControl, { SegmentedControlProps } from './SegmentedControl';
|
|
119
119
|
import SegmentedControlTab, { SegmentedControlTabProps } from './SegmentedControlTab';
|
|
120
|
-
|
|
121
|
-
export
|
|
120
|
+
import Switch, { SwitchProps } from './Switch';
|
|
121
|
+
export { theme, Typography, Button, LoadingButton, Tabs, Tab, Box, Grid, NoSsr, Skeleton, Stack, Chip, Paper, Divider, Checkbox, Radio, Tooltip, Avatar, Breadcrumbs, CurrencyPairsTitle, List, ListItem, ListItemButton, ListItemIcon, ListItemAvatar, ListItemSecondaryAction, ListSubHeader, ListItemText, SvgIcon, ToggleButton, ToggleButtonGroup, TabPanel, IconButton, Select, SelectItem, DynamicBackground, DynamicBackgroundContainer, Table, TableHead, TableBody, TableRow, TableCell, TableContainer, TablePagination, TableFooter, TableSortLabel, RTable, RTableHead, RTableRow, Input, InputLabel, RadioGroup, FormLabel, FormControl, FormGroup, FormControlLabel, FormHelperText, TabContext, TabList, Link, useTheme, useCopyToClipboard, useMediaQuery, useOnScreen, useScrollTrigger, useTime, useWindowSize, useResponsive, numberUtils, searchUtils, Slider, InputAdornment, Accordion, AccordionDetails, AccordionActions, AccordionSummary, Stepper, StepContent, StepConnector, StepButton, StepIcon, Step, StepLabel, MobileStepper, CssBaseline, Backdrop, Modal, ModalContent, Container, Alert, AlertAction, AlertTimer, AlertTitle, UploadButton, Snackbar, SnackbarContent, LinearProgress, CircularProgress, TextField, FormikTextField, FormikInput, FormikSelect, MenuItem, ThemeProvider, styled, MenuList, Menu, Popover, Popper, Fade, Autocomplete, Zoom, Collapse, Grow, Slide, Dialog, DialogActions, DialogContent, DialogTitle, SwipeableDrawer, SeeMore, ClickAwayListener, Pagination, PaginationItem, Drawer, SliderContent, SegmentedControl, SegmentedControlTab, Switch, };
|
|
122
|
+
export type { Theme, CSSObject, TypographyProps, ButtonProps, LoadingButtonProps, TabsProps, TabProps, BoxProps, GridProps, NoSsrProps, SkeletonProps, StackProps, ChipProps, PaperProps, DividerProps, CheckboxProps, RadioProps, TooltipProps, BreadcrumbsProps, ListProps, ListItemProps, ListItemAvatarProps, ListItemButtonProps, ListItemIconProps, ListItemTextProps, ListItemSecondaryActionProps, ListSubHeaderProps, SvgIconProps, ToggleButtonProps, ToggleButtonGroupProps, TabPanelProps, IconButtonProps, AvatarProps, CurrencyPairsTitleProps, SelectProps, SelectItemProps, DynamicBackgroundProps, DynamicBackgroundContainerProps, TableProps, TableHeadProps, TableBodyProps, TableRowProps, TableCellProps, TableContainerProps, TablePaginationProps, TableFooterProps, TableSortLabelProps, RTableProps, RTableRowProps, RTableHeadProps, InputProps, InputLabelProps, RadioGroupProps, FormLabelProps, FormControlProps, FormGroupProps, FormControlLabelProps, FormHelperTextProps, TabContextProps, TabListProps, LinkProps, SliderProps, InputAdornmentProps, AccordionProps, AccordionDetailsProps, AccordionActionsProps, AccordionSummaryProps, StepperProps, StepContentProps, StepConnectorProps, StepButtonProps, StepIconProps, StepProps, StepLabelProps, MobileStepperProps, Palette, PaletteColor, BackdropProps, ModalProps, ModalContentProps, ContainerProps, AlertProps, AlertActionProps, AlertTimerProps, AlertTitleProps, UploadButtonProps, SnackbarProps, SnackbarContentProps, LinearProgressProps, CircularProgressProps, TextFieldProps, FormikTextFieldProps, FormikInputProps, FormikSelectProps, MenuItemProps, MenuListProps, MenuProps, PopoverProps, PopperProps, ZoomProps, CollapseProps, FadeProps, AutocompleteProps, GrowProps, SlideProps, DialogProps, DialogActionsProps, DialogContentProps, DialogTitleProps, SwipeableDrawerProps, SeeMoreProps, ClickAwayListenerProps, PaginationProps, PaginationItemProps, DrawerProps, SliderContentProps, SegmentedControlProps, SegmentedControlTabProps, SwitchProps, };
|
|
@@ -123,6 +123,7 @@ var MuiStepper = _interopDefault(require('@mui/material/Stepper/Stepper.js'));
|
|
|
123
123
|
var MuiSwipeableDrawer = _interopDefault(require('@mui/material/SwipeableDrawer/SwipeableDrawer.js'));
|
|
124
124
|
var ClickAwayListener$1 = require('@mui/base/ClickAwayListener');
|
|
125
125
|
var MuiZoom = _interopDefault(require('@mui/material/Zoom/Zoom.js'));
|
|
126
|
+
var MuiSwitch = _interopDefault(require('@mui/material/Switch/Switch.js'));
|
|
126
127
|
|
|
127
128
|
/**
|
|
128
129
|
* The accordion component allows the user to show and hide sections of related content on a page.
|
|
@@ -7303,6 +7304,28 @@ var SegmentedControlTab = /*#__PURE__*/styled(function (props) {
|
|
|
7303
7304
|
});
|
|
7304
7305
|
SegmentedControlTab.defaultProps = {};
|
|
7305
7306
|
|
|
7307
|
+
/**
|
|
7308
|
+
* Rabex Switch
|
|
7309
|
+
*
|
|
7310
|
+
* A thin wrapper around MUI Switch.
|
|
7311
|
+
*
|
|
7312
|
+
* Styling and behavior are controlled exclusively via theme overrides.
|
|
7313
|
+
* This keeps the component lightweight, predictable, and consistent
|
|
7314
|
+
* across the application.
|
|
7315
|
+
*
|
|
7316
|
+
* @example
|
|
7317
|
+
* ```tsx
|
|
7318
|
+
* import { Switch } from '@rabex-kit/rabex-ui';
|
|
7319
|
+
*
|
|
7320
|
+
* <Switch checked={value} onChange={handleChange} />
|
|
7321
|
+
* ```
|
|
7322
|
+
*
|
|
7323
|
+
* For labeling, always use `FormControlLabel`.
|
|
7324
|
+
*/
|
|
7325
|
+
var Switch = function Switch(props) {
|
|
7326
|
+
return React__default.createElement(MuiSwitch, Object.assign({}, props));
|
|
7327
|
+
};
|
|
7328
|
+
|
|
7306
7329
|
exports.useMediaQuery = useMediaQuery;
|
|
7307
7330
|
exports.useScrollTrigger = useScrollTrigger_js;
|
|
7308
7331
|
exports.useTheme = useTheme$1;
|
|
@@ -7402,6 +7425,7 @@ exports.StepLabel = StepLabel;
|
|
|
7402
7425
|
exports.Stepper = Stepper;
|
|
7403
7426
|
exports.SvgIcon = SvgIcon;
|
|
7404
7427
|
exports.SwipeableDrawer = SwipeableDrawer;
|
|
7428
|
+
exports.Switch = Switch;
|
|
7405
7429
|
exports.Tab = Tab;
|
|
7406
7430
|
exports.TabContext = TabContext;
|
|
7407
7431
|
exports.TabList = TabList;
|