@luminati-io/uikit 6.3.57 → 6.3.58
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.
@@ -58702,12 +58702,13 @@ var color = {
|
|
58702
58702
|
gray_11_75: '#202425',
|
58703
58703
|
gray_12: '#151718',
|
58704
58704
|
black: '#000000',
|
58705
|
-
aqua_9: '#
|
58705
|
+
aqua_9: '#98DEF4',
|
58706
58706
|
aqua_10: '#15C1E6',
|
58707
58707
|
purple_9: '#D4D0FF',
|
58708
|
-
purple_10: '#
|
58709
|
-
mint_9: '#
|
58710
|
-
mint_10: '#
|
58708
|
+
purple_10: '#9D97F4',
|
58709
|
+
mint_9: '#93EEDA',
|
58710
|
+
mint_10: '#36C7A7',
|
58711
|
+
ai: 'linear-gradient(85deg, #0074F4 -90.41%, #ED52F1 132.68%)'
|
58711
58712
|
};
|
58712
58713
|
var semanticLight = {
|
58713
58714
|
bg: color.white,
|
@@ -59280,7 +59281,7 @@ var StyledText = styled_components__WEBPACK_IMPORTED_MODULE_2___default()(_typog
|
|
59280
59281
|
var Wrapper = styled_components__WEBPACK_IMPORTED_MODULE_2___default().div.withConfig({
|
59281
59282
|
displayName: "Wrapper",
|
59282
59283
|
componentId: "sc-tn2lqb-1"
|
59283
|
-
})(["display:flex;flex-direction:row;justify-content:space-between;border-radius:8px;border:1px solid ", ";box-shadow:", ";"], function (_ref2) {
|
59284
|
+
})(["display:flex;flex-direction:row;justify-content:space-between;border-radius:8px;overflow:hidden;border:1px solid ", ";box-shadow:", ";"], function (_ref2) {
|
59284
59285
|
var color = _ref2.theme.color;
|
59285
59286
|
return color.border;
|
59286
59287
|
}, function (_ref3) {
|
@@ -59290,16 +59291,19 @@ var Wrapper = styled_components__WEBPACK_IMPORTED_MODULE_2___default().div.withC
|
|
59290
59291
|
var Content = styled_components__WEBPACK_IMPORTED_MODULE_2___default().div.withConfig({
|
59291
59292
|
displayName: "Content",
|
59292
59293
|
componentId: "sc-tn2lqb-2"
|
59293
|
-
})(["display:flex;flex-direction:row;align-items:center;padding-left:12px;padding-right:8px;gap:8px;"])
|
59294
|
+
})(["background-color:", ";display:flex;flex-direction:row;align-items:center;padding-left:12px;padding-right:8px;gap:8px;"], function (_ref4) {
|
59295
|
+
var color = _ref4.theme.color;
|
59296
|
+
return color.bg;
|
59297
|
+
});
|
59294
59298
|
var IconContainer = styled_components__WEBPACK_IMPORTED_MODULE_2___default().div.withConfig({
|
59295
59299
|
displayName: "IconContainer",
|
59296
59300
|
componentId: "sc-tn2lqb-3"
|
59297
|
-
})(["background-color:", ";
|
59301
|
+
})(["background-color:", ";padding:16px 8px;display:flex;justify-content:center;align-items:center;"], function (p) {
|
59298
59302
|
return getBackgroundColor(p);
|
59299
59303
|
});
|
59300
|
-
var ToastIcon = function ToastIcon(
|
59301
|
-
var type =
|
59302
|
-
classNamePrefix =
|
59304
|
+
var ToastIcon = function ToastIcon(_ref5) {
|
59305
|
+
var type = _ref5.type,
|
59306
|
+
classNamePrefix = _ref5.classNamePrefix;
|
59303
59307
|
var name = {
|
59304
59308
|
success: 'Check',
|
59305
59309
|
error: 'Close',
|
@@ -59318,10 +59322,10 @@ var ToastIcon = function ToastIcon(_ref4) {
|
|
59318
59322
|
size: "sm"
|
59319
59323
|
}));
|
59320
59324
|
};
|
59321
|
-
var RemoveButton = function RemoveButton(
|
59322
|
-
var onClick =
|
59323
|
-
dismissible =
|
59324
|
-
classNamePrefix =
|
59325
|
+
var RemoveButton = function RemoveButton(_ref6) {
|
59326
|
+
var onClick = _ref6.onClick,
|
59327
|
+
dismissible = _ref6.dismissible,
|
59328
|
+
classNamePrefix = _ref6.classNamePrefix;
|
59325
59329
|
if (!dismissible) return null;
|
59326
59330
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(_icon_button__WEBPACK_IMPORTED_MODULE_5__.IconButton, {
|
59327
59331
|
className: (0,_util__WEBPACK_IMPORTED_MODULE_3__.cn)(classNamePrefix, {
|
@@ -59337,9 +59341,9 @@ RemoveButton.propTypes = {
|
|
59337
59341
|
onClick: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
|
59338
59342
|
dismissible: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool)
|
59339
59343
|
};
|
59340
|
-
var getBackgroundColor = function getBackgroundColor(
|
59341
|
-
var $type =
|
59342
|
-
color =
|
59344
|
+
var getBackgroundColor = function getBackgroundColor(_ref7) {
|
59345
|
+
var $type = _ref7.$type,
|
59346
|
+
color = _ref7.theme.color;
|
59343
59347
|
return {
|
59344
59348
|
success: color.green_10,
|
59345
59349
|
error: color.bg_fill_error,
|