@adiba-banking-cloud/backoffice 0.0.29 → 0.0.30
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/build/index.cjs.js/index.js +22 -11
- package/build/index.esm.js/index.js +22 -11
- package/package.json +1 -1
|
@@ -11263,10 +11263,11 @@ const parseColorToRgb = colorString => {
|
|
|
11263
11263
|
const createAreaFillGradient = function (baseColor) {
|
|
11264
11264
|
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
11265
11265
|
const {
|
|
11266
|
-
startOpacity = 0.
|
|
11267
|
-
endOpacity = 0.
|
|
11266
|
+
startOpacity = 0.2,
|
|
11267
|
+
endOpacity = 0.08
|
|
11268
11268
|
} = options;
|
|
11269
11269
|
const parsedColor = parseColorToRgb(baseColor);
|
|
11270
|
+
"rgba(".concat(parsedColor.r, ", ").concat(parsedColor.g, ", ").concat(parsedColor.b, ", 1)");
|
|
11270
11271
|
|
|
11271
11272
|
// Color string for the top of the gradient (base color with specified start opacity)
|
|
11272
11273
|
const rgbaStart = "rgba(".concat(parsedColor.r, ", ").concat(parsedColor.g, ", ").concat(parsedColor.b, ", ").concat(startOpacity, ")");
|
|
@@ -11285,8 +11286,9 @@ const createAreaFillGradient = function (baseColor) {
|
|
|
11285
11286
|
},
|
|
11286
11287
|
stops: [[0, rgbaStart],
|
|
11287
11288
|
// First stop: at the top (0% of gradient vector)
|
|
11288
|
-
[
|
|
11289
|
-
|
|
11289
|
+
[0.9, rgbaEnd],
|
|
11290
|
+
// Second stop: at the bottom (100% of gradient vector)
|
|
11291
|
+
[1, "transparent"]]
|
|
11290
11292
|
};
|
|
11291
11293
|
};
|
|
11292
11294
|
|
|
@@ -11573,7 +11575,6 @@ const initSeries = props => {
|
|
|
11573
11575
|
const renderPlot = () => {
|
|
11574
11576
|
const areaspline = {
|
|
11575
11577
|
lineWidth: 1,
|
|
11576
|
-
opacity: 0.3,
|
|
11577
11578
|
color: "#C8700B",
|
|
11578
11579
|
pointPlacement: "on",
|
|
11579
11580
|
marker: {
|
|
@@ -11822,8 +11823,12 @@ const UserMenuTarget = _ref => {
|
|
|
11822
11823
|
}, /*#__PURE__*/React.createElement(core.Group, {
|
|
11823
11824
|
gap: "sm"
|
|
11824
11825
|
}, /*#__PURE__*/React.createElement(core.Avatar, {
|
|
11825
|
-
|
|
11826
|
-
|
|
11826
|
+
src: avatar,
|
|
11827
|
+
radius: 'md',
|
|
11828
|
+
key: name,
|
|
11829
|
+
name: name,
|
|
11830
|
+
color: "initials",
|
|
11831
|
+
bd: '0.5px solid adiba.2'
|
|
11827
11832
|
}), /*#__PURE__*/React.createElement(core.Stack, {
|
|
11828
11833
|
gap: 0,
|
|
11829
11834
|
align: "flex-start",
|
|
@@ -12141,11 +12146,17 @@ const AvatarLabelPanel = _ref2 => {
|
|
|
12141
12146
|
}), /*#__PURE__*/React.createElement(core.Group, {
|
|
12142
12147
|
align: "flex-start",
|
|
12143
12148
|
py: "sm"
|
|
12144
|
-
}, /*#__PURE__*/React.createElement(core.
|
|
12145
|
-
w: labelWidth
|
|
12149
|
+
}, /*#__PURE__*/React.createElement(core.Box, {
|
|
12150
|
+
w: labelWidth,
|
|
12151
|
+
pl: 'md'
|
|
12146
12152
|
}, /*#__PURE__*/React.createElement(core.Avatar, {
|
|
12147
12153
|
size: avatarSize,
|
|
12148
|
-
src: avatar
|
|
12154
|
+
src: avatar,
|
|
12155
|
+
radius: 'md',
|
|
12156
|
+
key: name,
|
|
12157
|
+
name: name,
|
|
12158
|
+
color: "initials",
|
|
12159
|
+
bd: '0.5px solid adiba.2'
|
|
12149
12160
|
})), /*#__PURE__*/React.createElement(core.Stack, {
|
|
12150
12161
|
py: 10,
|
|
12151
12162
|
gap: "md",
|
|
@@ -12508,7 +12519,7 @@ const ApplicationPanel = _ref => {
|
|
|
12508
12519
|
src: coverImage,
|
|
12509
12520
|
fallbackSrc: img$a
|
|
12510
12521
|
}), /*#__PURE__*/React.createElement(core.Overlay, {
|
|
12511
|
-
gradient: "linear-gradient(45deg, rgba(255,255,255,0.
|
|
12522
|
+
gradient: "linear-gradient(45deg, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.05) 100%)"
|
|
12512
12523
|
}))), /*#__PURE__*/React.createElement(core.Card.Section, {
|
|
12513
12524
|
p: "md"
|
|
12514
12525
|
}, /*#__PURE__*/React.createElement(core.Stack, {
|
|
@@ -11242,10 +11242,11 @@ const parseColorToRgb = colorString => {
|
|
|
11242
11242
|
const createAreaFillGradient = function (baseColor) {
|
|
11243
11243
|
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
11244
11244
|
const {
|
|
11245
|
-
startOpacity = 0.
|
|
11246
|
-
endOpacity = 0.
|
|
11245
|
+
startOpacity = 0.2,
|
|
11246
|
+
endOpacity = 0.08
|
|
11247
11247
|
} = options;
|
|
11248
11248
|
const parsedColor = parseColorToRgb(baseColor);
|
|
11249
|
+
"rgba(".concat(parsedColor.r, ", ").concat(parsedColor.g, ", ").concat(parsedColor.b, ", 1)");
|
|
11249
11250
|
|
|
11250
11251
|
// Color string for the top of the gradient (base color with specified start opacity)
|
|
11251
11252
|
const rgbaStart = "rgba(".concat(parsedColor.r, ", ").concat(parsedColor.g, ", ").concat(parsedColor.b, ", ").concat(startOpacity, ")");
|
|
@@ -11264,8 +11265,9 @@ const createAreaFillGradient = function (baseColor) {
|
|
|
11264
11265
|
},
|
|
11265
11266
|
stops: [[0, rgbaStart],
|
|
11266
11267
|
// First stop: at the top (0% of gradient vector)
|
|
11267
|
-
[
|
|
11268
|
-
|
|
11268
|
+
[0.9, rgbaEnd],
|
|
11269
|
+
// Second stop: at the bottom (100% of gradient vector)
|
|
11270
|
+
[1, "transparent"]]
|
|
11269
11271
|
};
|
|
11270
11272
|
};
|
|
11271
11273
|
|
|
@@ -11552,7 +11554,6 @@ const initSeries = props => {
|
|
|
11552
11554
|
const renderPlot = () => {
|
|
11553
11555
|
const areaspline = {
|
|
11554
11556
|
lineWidth: 1,
|
|
11555
|
-
opacity: 0.3,
|
|
11556
11557
|
color: "#C8700B",
|
|
11557
11558
|
pointPlacement: "on",
|
|
11558
11559
|
marker: {
|
|
@@ -11801,8 +11802,12 @@ const UserMenuTarget = _ref => {
|
|
|
11801
11802
|
}, /*#__PURE__*/React.createElement(Group, {
|
|
11802
11803
|
gap: "sm"
|
|
11803
11804
|
}, /*#__PURE__*/React.createElement(Avatar, {
|
|
11804
|
-
|
|
11805
|
-
|
|
11805
|
+
src: avatar,
|
|
11806
|
+
radius: 'md',
|
|
11807
|
+
key: name,
|
|
11808
|
+
name: name,
|
|
11809
|
+
color: "initials",
|
|
11810
|
+
bd: '0.5px solid adiba.2'
|
|
11806
11811
|
}), /*#__PURE__*/React.createElement(Stack, {
|
|
11807
11812
|
gap: 0,
|
|
11808
11813
|
align: "flex-start",
|
|
@@ -12120,11 +12125,17 @@ const AvatarLabelPanel = _ref2 => {
|
|
|
12120
12125
|
}), /*#__PURE__*/React.createElement(Group, {
|
|
12121
12126
|
align: "flex-start",
|
|
12122
12127
|
py: "sm"
|
|
12123
|
-
}, /*#__PURE__*/React.createElement(
|
|
12124
|
-
w: labelWidth
|
|
12128
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
12129
|
+
w: labelWidth,
|
|
12130
|
+
pl: 'md'
|
|
12125
12131
|
}, /*#__PURE__*/React.createElement(Avatar, {
|
|
12126
12132
|
size: avatarSize,
|
|
12127
|
-
src: avatar
|
|
12133
|
+
src: avatar,
|
|
12134
|
+
radius: 'md',
|
|
12135
|
+
key: name,
|
|
12136
|
+
name: name,
|
|
12137
|
+
color: "initials",
|
|
12138
|
+
bd: '0.5px solid adiba.2'
|
|
12128
12139
|
})), /*#__PURE__*/React.createElement(Stack, {
|
|
12129
12140
|
py: 10,
|
|
12130
12141
|
gap: "md",
|
|
@@ -12487,7 +12498,7 @@ const ApplicationPanel = _ref => {
|
|
|
12487
12498
|
src: coverImage,
|
|
12488
12499
|
fallbackSrc: img$a
|
|
12489
12500
|
}), /*#__PURE__*/React.createElement(Overlay, {
|
|
12490
|
-
gradient: "linear-gradient(45deg, rgba(255,255,255,0.
|
|
12501
|
+
gradient: "linear-gradient(45deg, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.05) 100%)"
|
|
12491
12502
|
}))), /*#__PURE__*/React.createElement(Card.Section, {
|
|
12492
12503
|
p: "md"
|
|
12493
12504
|
}, /*#__PURE__*/React.createElement(Stack, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adiba-banking-cloud/backoffice",
|
|
3
3
|
"author": "TUROG Technologies",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.30",
|
|
5
5
|
"description": "An ADIBA component library for backoffice and dashboard applications",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"main": "build/index.cjs.js",
|