sevago-sso-fe 1.0.61 → 1.0.64

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.esm.js CHANGED
@@ -1,5 +1,5 @@
1
- import { jsx, Fragment, jsxs } from "react/jsx-runtime";
2
- import { styled as styled$3, Box, InputLabel as InputLabel$1, Link, Typography as Typography$1, Paper as Paper$1, Stack, TableCell, tableCellClasses, LinearProgress, linearProgressClasses, useTheme as useTheme$4, Skeleton, IconButton as IconButton$1, Fade as Fade$1, Tooltip, tooltipClasses, Avatar, Badge, Icon, Tabs, Tab, CircularProgress as CircularProgress$1, Button as Button$1, TextField as TextField$1, InputAdornment as InputAdornment$1, debounce as debounce$2, Chip as Chip$1, ListItem as ListItem$1, Radio, ListItemText, FormControlLabel, Checkbox, Dialog as Dialog$1, DialogTitle, DialogContent as DialogContent$1, DialogActions as DialogActions$1, Collapse, FormControl as FormControl$1, Select as Select$1, MenuItem, Pagination, RadioGroup, ClickAwayListener } from "@mui/material";
1
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
+ import { styled as styled$3, Stack, TableCell, tableCellClasses, LinearProgress, linearProgressClasses, useTheme as useTheme$4, Skeleton, Box, InputLabel as InputLabel$1, Link, Typography as Typography$1, Paper as Paper$1, IconButton as IconButton$1, Fade as Fade$1, Tooltip, tooltipClasses, Avatar, Badge, Icon, Tabs, Tab, CircularProgress as CircularProgress$1, Button as Button$1, TextField as TextField$1, InputAdornment as InputAdornment$1, debounce as debounce$2, Chip as Chip$1, ListItem as ListItem$1, Radio, ListItemText, FormControlLabel, Checkbox, Dialog as Dialog$1, DialogTitle, DialogContent as DialogContent$1, DialogActions as DialogActions$1, Collapse, FormControl as FormControl$1, Select as Select$1, MenuItem, Pagination, RadioGroup, ClickAwayListener } from "@mui/material";
3
3
  import * as React from "react";
4
4
  import React__default, { useState, createContext, useRef, useLayoutEffect, useEffect, useId as useId$1, useContext, useInsertionEffect, useMemo, useCallback, Children, isValidElement, Fragment as Fragment$1, createElement, forwardRef, Component, cloneElement } from "react";
5
5
  import { unstable_createGetCssVar, createSpacing as createSpacing$1, useTheme as useTheme$3, GlobalStyles as GlobalStyles$1, unstable_memoTheme, keyframes as keyframes$1, css, shouldForwardProp as shouldForwardProp$1, alpha as alpha$2, Stack as Stack$1, Box as Box$1 } from "@mui/system";
@@ -7185,257 +7185,6 @@ const IconRight = (props) => /* @__PURE__ */ jsx("svg", { width: "20", height: "
7185
7185
  "stroke-linejoin": "round"
7186
7186
  }
7187
7187
  ) });
7188
- const ImageBrand = styled$3(ImageElement)(({ theme }) => ({
7189
- height: HEIGHT_ELEMENT_OTHER,
7190
- border: `1px solid ${theme.palette.divider}`,
7191
- borderRadius: BORDER_RADIUS_ELEMENT,
7192
- "&:hover": { boxShadow: theme.shadows[1] },
7193
- padding: 8,
7194
- backgroundColor: "white",
7195
- cursor: "pointer",
7196
- width: 100,
7197
- objectFit: "contain"
7198
- }));
7199
- const ImageBorderDashboard = styled$3(ImageElement)(({ theme }) => ({
7200
- border: `1px solid ${theme.palette.divider}`,
7201
- borderRadius: BORDER_RADIUS_ELEMENT,
7202
- height: 50,
7203
- width: 70
7204
- }));
7205
- const ImageEmpty = styled$3(Box)(({ theme }) => ({
7206
- width: "auto",
7207
- minWidth: 50,
7208
- height: 50,
7209
- borderRadius: BORDER_RADIUS_ELEMENT,
7210
- border: `1px dashed ${theme.palette.divider}`
7211
- }));
7212
- const InputLabelCustom = styled$3(InputLabel$1)(({ theme }) => ({
7213
- display: "flex",
7214
- backgroundColor: theme.palette.background.paper,
7215
- paddingLeft: "8px",
7216
- paddingRight: `9px`,
7217
- transform: `translate(10px, -9px) scale(0.75)`
7218
- }));
7219
- const LinkElement = ({ onClick, sx = {}, target = "_self", ...rest }) => {
7220
- return /* @__PURE__ */ jsx(
7221
- Link,
7222
- {
7223
- target,
7224
- rel: "noopener",
7225
- sx: { textDecoration: "none", color: "unset", ...sx },
7226
- onClick: (event) => {
7227
- if (onClick) {
7228
- event.preventDefault();
7229
- onClick();
7230
- }
7231
- },
7232
- ...rest
7233
- }
7234
- );
7235
- };
7236
- const LinkWrapProductRow = styled$3(LinkElement)(({ theme }) => ({
7237
- display: "flex",
7238
- flexDirection: "row",
7239
- borderRadius: BORDER_RADIUS_ELEMENT,
7240
- border: `1px solid ${theme.palette.divider}`,
7241
- padding: PADDING_GAP_ITEM,
7242
- gap: PADDING_GAP_ITEM,
7243
- backgroundColor: theme.palette.background.default
7244
- }));
7245
- const lightenColor = (hex2, percent2) => {
7246
- let r2, g, b;
7247
- if (hex2.length === 7) {
7248
- r2 = parseInt(hex2.slice(1, 3), 16);
7249
- g = parseInt(hex2.slice(3, 5), 16);
7250
- b = parseInt(hex2.slice(5, 7), 16);
7251
- } else {
7252
- r2 = parseInt(hex2[1] + hex2[1], 16);
7253
- g = parseInt(hex2[2] + hex2[2], 16);
7254
- b = parseInt(hex2[3] + hex2[3], 16);
7255
- }
7256
- r2 = Math.round(r2 + (255 - r2) * percent2);
7257
- g = Math.round(g + (255 - g) * percent2);
7258
- b = Math.round(b + (255 - b) * percent2);
7259
- return `rgb(${r2}, ${g}, ${b})`;
7260
- };
7261
- const TAG_SIZE = {
7262
- large: {
7263
- padding: "6px 8px",
7264
- ...TYPOGRAPHY_STYLES.textXs.medium
7265
- },
7266
- medium: {
7267
- padding: "4px 6px",
7268
- ...TYPOGRAPHY_STYLES.textXs.medium
7269
- },
7270
- small: {
7271
- padding: 0.5,
7272
- ...TYPOGRAPHY_STYLES.textSmall.medium
7273
- }
7274
- };
7275
- const TagElement = ({
7276
- type,
7277
- content,
7278
- width: width2,
7279
- variation = "caption",
7280
- size = "medium",
7281
- variant = "contained",
7282
- sx,
7283
- color: color2,
7284
- iconProps
7285
- }) => {
7286
- const TAG_VARIANT = {
7287
- contained: {
7288
- backgroundColor: type,
7289
- color: color2 || "white"
7290
- },
7291
- outlined: {
7292
- backgroundColor: lightenColor(type, 0.8),
7293
- color: type
7294
- },
7295
- "outlined-border": {
7296
- backgroundColor: lightenColor(type, 0.8),
7297
- border: `1px solid ${type}`,
7298
- color: type
7299
- }
7300
- };
7301
- return /* @__PURE__ */ jsx(Fragment, { children: iconProps ? /* @__PURE__ */ jsxs(
7302
- StackWrap,
7303
- {
7304
- sx: {
7305
- borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
7306
- width: width2,
7307
- textAlign: "center",
7308
- textWrap: "nowrap",
7309
- ...TAG_SIZE[size],
7310
- ...TAG_VARIANT[variant],
7311
- ...sx
7312
- },
7313
- children: [
7314
- iconProps && iconProps,
7315
- /* @__PURE__ */ jsx(Typography$1, { variant: variation, children: content })
7316
- ]
7317
- }
7318
- ) : /* @__PURE__ */ jsx(
7319
- Typography$1,
7320
- {
7321
- variant: variation,
7322
- sx: {
7323
- borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
7324
- width: width2,
7325
- textAlign: "center",
7326
- textWrap: "nowrap",
7327
- ...getLimitLineCss(1),
7328
- ...TAG_SIZE[size],
7329
- ...TAG_VARIANT[variant],
7330
- ...sx
7331
- },
7332
- children: content
7333
- }
7334
- ) });
7335
- };
7336
- const PaperSelect = styled$3(Paper$1, {
7337
- shouldForwardProp: (prop) => prop !== "disableSelectedStyle" && prop !== "autoWidth" && prop !== "isTreeSelect"
7338
- })(({ theme, disableSelectedStyle, autoWidth, isTreeSelect }) => ({
7339
- backgroundColor: theme.palette.background.paper,
7340
- borderRadius: BORDER_RADIUS_ELEMENT_WRAPPER,
7341
- padding: PADDING_GAP_ITEM,
7342
- backgroundImage: "none",
7343
- boxShadow: theme.shadows[1],
7344
- ...autoWidth && {
7345
- width: "max-content"
7346
- },
7347
- "& > .MuiAutocomplete-listbox": {
7348
- padding: 0,
7349
- "& > .MuiAutocomplete-option": {
7350
- ...isTreeSelect ? {
7351
- padding: 0,
7352
- borderRadius: 0,
7353
- transition: TRANSITION_TIME,
7354
- backgroundColor: "transparent !important",
7355
- "& .option-content": {
7356
- display: "flex",
7357
- alignItems: "center",
7358
- padding: PADDING_GAP_ITEM,
7359
- borderRadius: BORDER_RADIUS_ELEMENT,
7360
- transition: TRANSITION_TIME,
7361
- backgroundColor: "transparent",
7362
- flex: 1,
7363
- width: "100%",
7364
- "&:hover": {
7365
- backgroundColor: lightenColor(theme.palette.primary.dark, 0.8)
7366
- },
7367
- ...disableSelectedStyle ? {} : {
7368
- "&.selected": {
7369
- backgroundColor: lightenColor(theme.palette.primary.dark, 0.8),
7370
- color: theme.palette.primary.contrastText
7371
- }
7372
- }
7373
- },
7374
- "&:hover": {
7375
- backgroundColor: "transparent !important"
7376
- },
7377
- "&[aria-selected='true']": {
7378
- backgroundColor: "transparent !important",
7379
- color: TREE_COLOR.TREE_LEVEL_1
7380
- }
7381
- } : {
7382
- padding: PADDING_GAP_ITEM,
7383
- borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
7384
- transition: TRANSITION_TIME,
7385
- "&:hover": {
7386
- backgroundColor: theme.palette.action.hover
7387
- },
7388
- ...disableSelectedStyle ? {} : {
7389
- "&[aria-selected='true']": {
7390
- backgroundColor: lightenColor(theme.palette.primary.main, 0.9),
7391
- color: theme.palette.primary.main
7392
- }
7393
- }
7394
- }
7395
- }
7396
- }
7397
- }));
7398
- const getPickerSx = (palette, sx) => ({
7399
- "& fieldset legend": { maxWidth: "100% !important" },
7400
- "& .MuiPickersInputBase-root": {
7401
- borderColor: palette.divider,
7402
- borderRadius: BORDER_RADIUS_ELEMENT,
7403
- height: HEIGHT_DEFAULT_TEXT_FIELD_BUTTON
7404
- },
7405
- "&.MuiPickersTextField-root": { ...sx }
7406
- });
7407
- const getPopperProps = () => ({
7408
- sx: { boxShadow: 1, overflow: "hidden" },
7409
- modifiers: [
7410
- {
7411
- name: "customStyle",
7412
- enabled: true,
7413
- phase: "beforeWrite",
7414
- fn: ({ state }) => {
7415
- Object.assign(state.elements.popper.style, {
7416
- borderRadius: BORDER_RADIUS_ELEMENT_WRAPPER,
7417
- overflow: "hidden"
7418
- });
7419
- }
7420
- }
7421
- ]
7422
- });
7423
- const getActionBarSx = (palette) => ({
7424
- "& button": { textTransform: "none", width: 100 },
7425
- "& button:nth-of-type(1)": {
7426
- border: `1px solid ${palette.primary.main}`,
7427
- color: palette.primary.main,
7428
- background: "transparent",
7429
- borderRadius: BORDER_RADIUS_ELEMENT,
7430
- "&:hover": { backgroundColor: palette.divider + OPACITY[20] }
7431
- },
7432
- "& button:nth-of-type(2)": {
7433
- background: palette.primary.main,
7434
- color: palette.primary.contrastText,
7435
- borderRadius: BORDER_RADIUS_ELEMENT,
7436
- "&:hover": { backgroundColor: palette.primary.dark }
7437
- }
7438
- });
7439
7188
  const StackRow = styled$3(Stack)(() => ({
7440
7189
  flexDirection: "row"
7441
7190
  }));
@@ -7551,16 +7300,6 @@ const BorderLinearProgress = styled$3(LinearProgress)(({ theme }) => ({
7551
7300
  backgroundColor: theme.palette.primary
7552
7301
  }
7553
7302
  }));
7554
- const TypographyFilter = styled$3(Typography$1)(({ theme }) => ({
7555
- height: HEIGHT_ELEMENT_OTHER,
7556
- border: `1px solid ${theme.palette.divider}`,
7557
- borderRadius: BORDER_RADIUS_ELEMENT,
7558
- "&:hover": { boxShadow: theme.shadows[1], color: theme.palette.primary.main },
7559
- alignContent: "center",
7560
- cursor: "pointer",
7561
- textWrap: "nowrap",
7562
- padding: `0px ${PADDING_GAP_LAYOUT}`
7563
- }));
7564
7303
  var ImageSizeType = /* @__PURE__ */ ((ImageSizeType2) => {
7565
7304
  ImageSizeType2["CIRCLE"] = "CIRCLE";
7566
7305
  ImageSizeType2["SQUARE"] = "SQUARE";
@@ -15186,6 +14925,250 @@ const MotionBox = ({
15186
14925
  } : {};
15187
14926
  return /* @__PURE__ */ jsx(motion.div, { ...motionProps, ...getAnimationProps(), ...hoverProps, onClick, style: { ...sx }, children });
15188
14927
  };
14928
+ const ImageEmpty = styled$3(Box)(({ theme }) => ({
14929
+ width: "auto",
14930
+ minWidth: 50,
14931
+ height: 50,
14932
+ borderRadius: BORDER_RADIUS_ELEMENT,
14933
+ border: `1px dashed ${theme.palette.divider}`
14934
+ }));
14935
+ const InputLabelCustom = styled$3(InputLabel$1)(({ theme }) => ({
14936
+ display: "flex",
14937
+ backgroundColor: theme.palette.background.paper,
14938
+ paddingLeft: "8px",
14939
+ paddingRight: `9px`,
14940
+ transform: `translate(10px, -9px) scale(0.75)`
14941
+ }));
14942
+ const LinkElement = ({ onClick, sx = {}, target = "_self", ...rest }) => {
14943
+ return /* @__PURE__ */ jsx(
14944
+ Link,
14945
+ {
14946
+ target,
14947
+ rel: "noopener",
14948
+ sx: { textDecoration: "none", color: "unset", ...sx },
14949
+ onClick: (event) => {
14950
+ if (onClick) {
14951
+ event.preventDefault();
14952
+ onClick();
14953
+ }
14954
+ },
14955
+ ...rest
14956
+ }
14957
+ );
14958
+ };
14959
+ const LinkWrapProductRow = styled$3(LinkElement)(({ theme }) => ({
14960
+ display: "flex",
14961
+ flexDirection: "row",
14962
+ borderRadius: BORDER_RADIUS_ELEMENT,
14963
+ border: `1px solid ${theme.palette.divider}`,
14964
+ padding: PADDING_GAP_ITEM,
14965
+ gap: PADDING_GAP_ITEM,
14966
+ backgroundColor: theme.palette.background.default
14967
+ }));
14968
+ const lightenColor = (hex2, percent2) => {
14969
+ let r2, g, b;
14970
+ if (hex2.length === 7) {
14971
+ r2 = parseInt(hex2.slice(1, 3), 16);
14972
+ g = parseInt(hex2.slice(3, 5), 16);
14973
+ b = parseInt(hex2.slice(5, 7), 16);
14974
+ } else {
14975
+ r2 = parseInt(hex2[1] + hex2[1], 16);
14976
+ g = parseInt(hex2[2] + hex2[2], 16);
14977
+ b = parseInt(hex2[3] + hex2[3], 16);
14978
+ }
14979
+ r2 = Math.round(r2 + (255 - r2) * percent2);
14980
+ g = Math.round(g + (255 - g) * percent2);
14981
+ b = Math.round(b + (255 - b) * percent2);
14982
+ return `rgb(${r2}, ${g}, ${b})`;
14983
+ };
14984
+ const TAG_SIZE = {
14985
+ large: {
14986
+ padding: "6px 8px",
14987
+ ...TYPOGRAPHY_STYLES.textXs.medium
14988
+ },
14989
+ medium: {
14990
+ padding: "4px 6px",
14991
+ ...TYPOGRAPHY_STYLES.textXs.medium
14992
+ },
14993
+ small: {
14994
+ padding: 0.5,
14995
+ ...TYPOGRAPHY_STYLES.textSmall.medium
14996
+ }
14997
+ };
14998
+ const TagElement = ({
14999
+ type,
15000
+ content,
15001
+ width: width2,
15002
+ variation = "caption",
15003
+ size = "medium",
15004
+ variant = "contained",
15005
+ sx,
15006
+ color: color2,
15007
+ iconProps
15008
+ }) => {
15009
+ const TAG_VARIANT = {
15010
+ contained: {
15011
+ backgroundColor: type,
15012
+ color: color2 || "white"
15013
+ },
15014
+ outlined: {
15015
+ backgroundColor: lightenColor(type, 0.8),
15016
+ color: type
15017
+ },
15018
+ "outlined-border": {
15019
+ backgroundColor: lightenColor(type, 0.8),
15020
+ border: `1px solid ${type}`,
15021
+ color: type
15022
+ }
15023
+ };
15024
+ return /* @__PURE__ */ jsx(Fragment, { children: iconProps ? /* @__PURE__ */ jsxs(
15025
+ StackWrap,
15026
+ {
15027
+ sx: {
15028
+ borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
15029
+ width: width2,
15030
+ textAlign: "center",
15031
+ textWrap: "nowrap",
15032
+ ...TAG_SIZE[size],
15033
+ ...TAG_VARIANT[variant],
15034
+ ...sx
15035
+ },
15036
+ children: [
15037
+ iconProps && iconProps,
15038
+ /* @__PURE__ */ jsx(Typography$1, { variant: variation, children: content })
15039
+ ]
15040
+ }
15041
+ ) : /* @__PURE__ */ jsx(
15042
+ Typography$1,
15043
+ {
15044
+ variant: variation,
15045
+ sx: {
15046
+ borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
15047
+ width: width2,
15048
+ textAlign: "center",
15049
+ textWrap: "nowrap",
15050
+ ...getLimitLineCss(1),
15051
+ ...TAG_SIZE[size],
15052
+ ...TAG_VARIANT[variant],
15053
+ ...sx
15054
+ },
15055
+ children: content
15056
+ }
15057
+ ) });
15058
+ };
15059
+ const PaperSelect = styled$3(Paper$1, {
15060
+ shouldForwardProp: (prop) => prop !== "disableSelectedStyle" && prop !== "autoWidth" && prop !== "isTreeSelect"
15061
+ })(({ theme, disableSelectedStyle, autoWidth, isTreeSelect }) => ({
15062
+ backgroundColor: theme.palette.background.paper,
15063
+ borderRadius: BORDER_RADIUS_ELEMENT_WRAPPER,
15064
+ padding: PADDING_GAP_ITEM,
15065
+ backgroundImage: "none",
15066
+ boxShadow: theme.shadows[1],
15067
+ ...autoWidth && {
15068
+ width: "max-content"
15069
+ },
15070
+ "& > .MuiAutocomplete-listbox": {
15071
+ padding: 0,
15072
+ "& > .MuiAutocomplete-option": {
15073
+ ...isTreeSelect ? {
15074
+ padding: 0,
15075
+ borderRadius: 0,
15076
+ transition: TRANSITION_TIME,
15077
+ backgroundColor: "transparent !important",
15078
+ "& .option-content": {
15079
+ display: "flex",
15080
+ alignItems: "center",
15081
+ padding: PADDING_GAP_ITEM,
15082
+ borderRadius: BORDER_RADIUS_ELEMENT,
15083
+ transition: TRANSITION_TIME,
15084
+ backgroundColor: "transparent",
15085
+ flex: 1,
15086
+ width: "100%",
15087
+ "&:hover": {
15088
+ backgroundColor: lightenColor(theme.palette.primary.dark, 0.8)
15089
+ },
15090
+ ...disableSelectedStyle ? {} : {
15091
+ "&.selected": {
15092
+ backgroundColor: lightenColor(theme.palette.primary.dark, 0.8),
15093
+ color: theme.palette.primary.contrastText
15094
+ }
15095
+ }
15096
+ },
15097
+ "&:hover": {
15098
+ backgroundColor: "transparent !important"
15099
+ },
15100
+ "&[aria-selected='true']": {
15101
+ backgroundColor: "transparent !important",
15102
+ color: TREE_COLOR.TREE_LEVEL_1
15103
+ }
15104
+ } : {
15105
+ padding: PADDING_GAP_ITEM,
15106
+ borderRadius: BORDER_RADIUS_ELEMENT_SMALL,
15107
+ transition: TRANSITION_TIME,
15108
+ "&:hover": {
15109
+ backgroundColor: theme.palette.action.hover
15110
+ },
15111
+ ...disableSelectedStyle ? {} : {
15112
+ "&[aria-selected='true']": {
15113
+ backgroundColor: lightenColor(theme.palette.primary.main, 0.9),
15114
+ color: theme.palette.primary.main
15115
+ }
15116
+ }
15117
+ }
15118
+ }
15119
+ }
15120
+ }));
15121
+ const getPickerSx = (palette, sx) => ({
15122
+ "& fieldset legend": { maxWidth: "100% !important" },
15123
+ "& .MuiPickersInputBase-root": {
15124
+ borderColor: palette.divider,
15125
+ borderRadius: BORDER_RADIUS_ELEMENT,
15126
+ height: HEIGHT_DEFAULT_TEXT_FIELD_BUTTON
15127
+ },
15128
+ "&.MuiPickersTextField-root": { ...sx }
15129
+ });
15130
+ const getPopperProps = () => ({
15131
+ sx: { boxShadow: 1, overflow: "hidden" },
15132
+ modifiers: [
15133
+ {
15134
+ name: "customStyle",
15135
+ enabled: true,
15136
+ phase: "beforeWrite",
15137
+ fn: ({ state }) => {
15138
+ Object.assign(state.elements.popper.style, {
15139
+ borderRadius: BORDER_RADIUS_ELEMENT_WRAPPER,
15140
+ overflow: "hidden"
15141
+ });
15142
+ }
15143
+ }
15144
+ ]
15145
+ });
15146
+ const getActionBarSx = (palette) => ({
15147
+ "& button": { textTransform: "none", width: 100 },
15148
+ "& button:nth-of-type(1)": {
15149
+ border: `1px solid ${palette.primary.main}`,
15150
+ color: palette.primary.main,
15151
+ background: "transparent",
15152
+ borderRadius: BORDER_RADIUS_ELEMENT,
15153
+ "&:hover": { backgroundColor: palette.divider + OPACITY[20] }
15154
+ },
15155
+ "& button:nth-of-type(2)": {
15156
+ background: palette.primary.main,
15157
+ color: palette.primary.contrastText,
15158
+ borderRadius: BORDER_RADIUS_ELEMENT,
15159
+ "&:hover": { backgroundColor: palette.primary.dark }
15160
+ }
15161
+ });
15162
+ const TypographyFilter = styled$3(Typography$1)(({ theme }) => ({
15163
+ height: HEIGHT_ELEMENT_OTHER,
15164
+ border: `1px solid ${theme.palette.divider}`,
15165
+ borderRadius: BORDER_RADIUS_ELEMENT,
15166
+ "&:hover": { boxShadow: theme.shadows[1], color: theme.palette.primary.main },
15167
+ alignContent: "center",
15168
+ cursor: "pointer",
15169
+ textWrap: "nowrap",
15170
+ padding: `0px ${PADDING_GAP_LAYOUT}`
15171
+ }));
15189
15172
  const AppGrid = ({
15190
15173
  apps,
15191
15174
  columns = 5,
@@ -49884,8 +49867,6 @@ export {
49884
49867
  IconContentOpacityElement,
49885
49868
  IconContentSubsElement,
49886
49869
  IconElement,
49887
- ImageBorderDashboard,
49888
- ImageBrand,
49889
49870
  ImageContentCaptionComponent,
49890
49871
  ImageContentTimeComponent,
49891
49872
  ImageElement,