@rabex-kit/rabex-ui 0.2.66 → 0.2.68
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/rabex-ui.cjs.development.js +12 -17
- 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 +12 -17
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/rabex-ui.esm.js
CHANGED
|
@@ -3390,7 +3390,7 @@ var components = {
|
|
|
3390
3390
|
},
|
|
3391
3391
|
'&.Mui-disabled': {
|
|
3392
3392
|
color: palette.textColor[100] || palette.textColor.A40,
|
|
3393
|
-
backgroundColor: palette.secondary[
|
|
3393
|
+
backgroundColor: palette.secondary[500]
|
|
3394
3394
|
}
|
|
3395
3395
|
};
|
|
3396
3396
|
},
|
|
@@ -4268,11 +4268,11 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4268
4268
|
"default": {
|
|
4269
4269
|
normal: {
|
|
4270
4270
|
color: theme.palette.textColor[50],
|
|
4271
|
-
backgroundColor: theme.palette.
|
|
4271
|
+
backgroundColor: theme.palette.base[900]
|
|
4272
4272
|
},
|
|
4273
4273
|
light: {
|
|
4274
|
-
color: theme.palette.
|
|
4275
|
-
backgroundColor: theme.palette.
|
|
4274
|
+
color: theme.palette.textColor[900],
|
|
4275
|
+
backgroundColor: theme.palette.secondary[500]
|
|
4276
4276
|
}
|
|
4277
4277
|
},
|
|
4278
4278
|
warning: {
|
|
@@ -4282,8 +4282,7 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4282
4282
|
},
|
|
4283
4283
|
light: {
|
|
4284
4284
|
color: theme.palette.textColor[900],
|
|
4285
|
-
backgroundColor: theme.palette.mode === 'light' ? theme.palette.warning[50] : alpha(theme.palette.warning[
|
|
4286
|
-
border: "1px solid " + theme.palette.warning[200]
|
|
4285
|
+
backgroundColor: theme.palette.mode === 'light' ? theme.palette.warning[50] : alpha(theme.palette.warning[400], 0.2)
|
|
4287
4286
|
}
|
|
4288
4287
|
},
|
|
4289
4288
|
info: {
|
|
@@ -4293,8 +4292,7 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4293
4292
|
},
|
|
4294
4293
|
light: {
|
|
4295
4294
|
color: theme.palette.primary[500],
|
|
4296
|
-
backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : alpha(theme.palette.info[
|
|
4297
|
-
border: "1px solid " + theme.palette.info[200]
|
|
4295
|
+
backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : alpha(theme.palette.info[400], 0.2)
|
|
4298
4296
|
}
|
|
4299
4297
|
},
|
|
4300
4298
|
primary: {
|
|
@@ -4304,8 +4302,7 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4304
4302
|
},
|
|
4305
4303
|
light: {
|
|
4306
4304
|
color: theme.palette.primary[500],
|
|
4307
|
-
backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : alpha(theme.palette.info[
|
|
4308
|
-
border: "1px solid " + theme.palette.info[200]
|
|
4305
|
+
backgroundColor: theme.palette.mode === 'light' ? theme.palette.info[50] : alpha(theme.palette.info[400], 0.2)
|
|
4309
4306
|
}
|
|
4310
4307
|
},
|
|
4311
4308
|
error: {
|
|
@@ -4315,8 +4312,7 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4315
4312
|
},
|
|
4316
4313
|
light: {
|
|
4317
4314
|
color: theme.palette.error[400],
|
|
4318
|
-
backgroundColor: theme.palette.mode === 'light' ? theme.palette.error[50] : alpha(theme.palette.error[
|
|
4319
|
-
border: "1px solid " + theme.palette.error[200]
|
|
4315
|
+
backgroundColor: theme.palette.mode === 'light' ? theme.palette.error[50] : alpha(theme.palette.error[400], 0.2)
|
|
4320
4316
|
}
|
|
4321
4317
|
},
|
|
4322
4318
|
success: {
|
|
@@ -4326,8 +4322,7 @@ var colorModeConfig = function colorModeConfig(theme) {
|
|
|
4326
4322
|
},
|
|
4327
4323
|
light: {
|
|
4328
4324
|
color: theme.palette.success[400],
|
|
4329
|
-
backgroundColor: theme.palette.mode === 'light' ? theme.palette.success[50] : alpha(theme.palette.success[
|
|
4330
|
-
border: "1px solid " + theme.palette.success[200]
|
|
4325
|
+
backgroundColor: theme.palette.mode === 'light' ? theme.palette.success[50] : alpha(theme.palette.success[400], 0.2)
|
|
4331
4326
|
}
|
|
4332
4327
|
}
|
|
4333
4328
|
};
|
|
@@ -5457,7 +5452,7 @@ var components$5 = {
|
|
|
5457
5452
|
borderRadius: 8,
|
|
5458
5453
|
padding: spacing(3),
|
|
5459
5454
|
'& .MuiAlert-icon': ownerState !== null && ownerState !== void 0 && ownerState.color ? {
|
|
5460
|
-
color: palette[ownerState.color]
|
|
5455
|
+
color: palette[ownerState.color][400]
|
|
5461
5456
|
} : {},
|
|
5462
5457
|
'& .MuiAlert-action': {
|
|
5463
5458
|
paddingTop: 0,
|
|
@@ -5486,7 +5481,7 @@ var components$5 = {
|
|
|
5486
5481
|
overflow: 'hidden',
|
|
5487
5482
|
padding: 0,
|
|
5488
5483
|
width: '100%',
|
|
5489
|
-
color: palette.textColor
|
|
5484
|
+
color: palette.textColor[900]
|
|
5490
5485
|
}, _ref3[breakpoints.down('lg')] = {
|
|
5491
5486
|
lineHeight: '20px'
|
|
5492
5487
|
}, _ref3;
|
|
@@ -5503,7 +5498,7 @@ var components$5 = {
|
|
|
5503
5498
|
var palette = _ref5.theme.palette,
|
|
5504
5499
|
ownerState = _ref5.ownerState;
|
|
5505
5500
|
return {
|
|
5506
|
-
backgroundColor: palette.mode === 'light' ? palette[ownerState.color][50] : alpha(palette[ownerState.color][
|
|
5501
|
+
backgroundColor: palette.mode === 'light' ? palette[ownerState.color][50] : alpha(palette[ownerState.color][400], 0.2)
|
|
5507
5502
|
};
|
|
5508
5503
|
},
|
|
5509
5504
|
outlined: function outlined(_ref6) {
|