@dev-blinq/ui-systems 1.0.102 → 1.0.103
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.js +37 -27
- package/dist/index.mjs +36 -10
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7011,7 +7011,7 @@ const af = X(Vo)`
|
|
|
7011
7011
|
}
|
|
7012
7012
|
}
|
|
7013
7013
|
.MuiAccordionDetails-root {
|
|
7014
|
-
padding: 0px;
|
|
7014
|
+
padding: 0px 16px;
|
|
7015
7015
|
}
|
|
7016
7016
|
`;
|
|
7017
7017
|
function of({ expanded: e, title: r, onChange: n, details: t }) {
|
|
@@ -7039,7 +7039,7 @@ const sf = X.div`
|
|
|
7039
7039
|
}
|
|
7040
7040
|
`, cf = X.div`
|
|
7041
7041
|
display: flex;
|
|
7042
|
-
height: 37vh;
|
|
7042
|
+
max-height: 37vh;
|
|
7043
7043
|
overflow: auto;
|
|
7044
7044
|
`, lf = X(q)`
|
|
7045
7045
|
display: flex;
|
|
@@ -13044,6 +13044,14 @@ const qd = X(q)`
|
|
|
13044
13044
|
transform: ${({ transform: e }) => e};
|
|
13045
13045
|
transition: ${({ transition: e }) => e};
|
|
13046
13046
|
// opacity: ${({ isDragging: e }) => e ? 0.4 : 1};
|
|
13047
|
+
&:hover {
|
|
13048
|
+
background: var(--secondary-lightest);
|
|
13049
|
+
border-radius: 6px;
|
|
13050
|
+
}
|
|
13051
|
+
.active-step {
|
|
13052
|
+
background: var(--primary-lightest);
|
|
13053
|
+
border-radius: 6px;
|
|
13054
|
+
}
|
|
13047
13055
|
`, yd = X.section`
|
|
13048
13056
|
position: relative;
|
|
13049
13057
|
display: flex;
|
|
@@ -13177,8 +13185,7 @@ const qd = X(q)`
|
|
|
13177
13185
|
border-radius: 16px;
|
|
13178
13186
|
border: 1px solid var(--color-grey-40);
|
|
13179
13187
|
background: white;
|
|
13180
|
-
box-shadow:
|
|
13181
|
-
0px 12px 16px -4px rgba(16, 24, 40, 0.08),
|
|
13188
|
+
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),
|
|
13182
13189
|
0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
13183
13190
|
margin-left: -20px;
|
|
13184
13191
|
font-weight: 500;
|
|
@@ -13197,6 +13204,8 @@ const qd = X(q)`
|
|
|
13197
13204
|
line-height: 30px;
|
|
13198
13205
|
border-radius: ${({ isTopWarning: e }) => e ? "0px" : "6px"};
|
|
13199
13206
|
font-size: ${({ isTopWarning: e }) => e ? "12px" : "10px"};
|
|
13207
|
+
color: var(--color-warning-100);
|
|
13208
|
+
border: 1px solid var(--color-warning-100);
|
|
13200
13209
|
.MuiAlert-icon {
|
|
13201
13210
|
margin-right: 6px;
|
|
13202
13211
|
}
|
|
@@ -13212,7 +13221,8 @@ const qd = X(q)`
|
|
|
13212
13221
|
fill: #ccc;
|
|
13213
13222
|
background-color: ${({ hasCmdError: e, background: r }) => r || (e ? "rgba(251, 218, 211, 1)" : "#eee")};
|
|
13214
13223
|
color: ${({ hasCmdError: e, strokeColor: r }) => r || (e ? "rgba(234, 70, 33, 1)" : "initial")};
|
|
13215
|
-
outline: 1px solid
|
|
13224
|
+
outline: 1px solid
|
|
13225
|
+
${({ strokeColor: e }) => e || "initial"};
|
|
13216
13226
|
border-radius: 12px;
|
|
13217
13227
|
`, ux = X.img`
|
|
13218
13228
|
max-width: inherit;
|
|
@@ -13331,7 +13341,15 @@ const qd = X(q)`
|
|
|
13331
13341
|
showCursor: t
|
|
13332
13342
|
}) => /* @__PURE__ */ A.jsx(Yi, { title: r, enterNextDelay: 0, enterDelay: 0, children: /* @__PURE__ */ A.jsx(Sd, { className: "title-text", children: e.map(
|
|
13333
13343
|
(a, i) => a.isVariable ? /* @__PURE__ */ A.jsxs(A.Fragment, { children: [
|
|
13334
|
-
/* @__PURE__ */ A.jsx(
|
|
13344
|
+
/* @__PURE__ */ A.jsx(
|
|
13345
|
+
Ae,
|
|
13346
|
+
{
|
|
13347
|
+
className: "title-text",
|
|
13348
|
+
component: "span",
|
|
13349
|
+
sx: { visibility: "hidden" },
|
|
13350
|
+
value: "."
|
|
13351
|
+
}
|
|
13352
|
+
),
|
|
13335
13353
|
/* @__PURE__ */ A.jsx(
|
|
13336
13354
|
Ae,
|
|
13337
13355
|
{
|
|
@@ -13344,17 +13362,25 @@ const qd = X(q)`
|
|
|
13344
13362
|
cursor: t ? "pointer" : "inherit"
|
|
13345
13363
|
},
|
|
13346
13364
|
onMouseDown: (l) => {
|
|
13347
|
-
l.stopPropagation();
|
|
13365
|
+
t || l.stopPropagation();
|
|
13348
13366
|
},
|
|
13349
13367
|
onClick: (l) => {
|
|
13350
|
-
l.stopPropagation(),
|
|
13368
|
+
t || (l.stopPropagation(), n == null || n((s) => {
|
|
13351
13369
|
const u = s.map((o) => !1);
|
|
13352
13370
|
return u[i] = !s[i], u;
|
|
13353
|
-
});
|
|
13371
|
+
}));
|
|
13354
13372
|
}
|
|
13355
13373
|
}
|
|
13356
13374
|
),
|
|
13357
|
-
/* @__PURE__ */ A.jsx(
|
|
13375
|
+
/* @__PURE__ */ A.jsx(
|
|
13376
|
+
Ae,
|
|
13377
|
+
{
|
|
13378
|
+
className: "title-text",
|
|
13379
|
+
component: "span",
|
|
13380
|
+
sx: { visibility: "hidden" },
|
|
13381
|
+
value: "."
|
|
13382
|
+
}
|
|
13383
|
+
)
|
|
13358
13384
|
] }) : /* @__PURE__ */ A.jsx(
|
|
13359
13385
|
Ae,
|
|
13360
13386
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/ui-systems",
|
|
3
3
|
"description": "this package contains all ui components like button, input, checkbox, colors that blinq.io needs",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.103",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|