flowcore-fn 5.1.0 → 5.3.0
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/pkg-index.css +21 -10
- package/dist/pkg-index.js +1 -1
- package/dist/pkg-index.mjs +1 -1
- package/package.json +1 -1
package/dist/pkg-index.css
CHANGED
|
@@ -2312,19 +2312,30 @@
|
|
|
2312
2312
|
}
|
|
2313
2313
|
}
|
|
2314
2314
|
@layer flowcore-isolate {
|
|
2315
|
-
.flowcore-root
|
|
2316
|
-
|
|
2317
|
-
display: block;
|
|
2318
|
-
box-sizing: border-box;
|
|
2315
|
+
.flowcore-root,
|
|
2316
|
+
.flowcore-root * {
|
|
2319
2317
|
font-family: inherit;
|
|
2318
|
+
line-height: normal;
|
|
2320
2319
|
}
|
|
2321
|
-
.flowcore-root
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
all: unset;
|
|
2325
|
-
display: revert;
|
|
2326
|
-
box-sizing: border-box;
|
|
2320
|
+
.flowcore-root table {
|
|
2321
|
+
border-collapse: collapse;
|
|
2322
|
+
width: 100%;
|
|
2327
2323
|
}
|
|
2324
|
+
.flowcore-root th,
|
|
2325
|
+
.flowcore-root td {
|
|
2326
|
+
padding: initial;
|
|
2327
|
+
text-align: initial;
|
|
2328
|
+
}
|
|
2329
|
+
.flowcore-root input,
|
|
2330
|
+
.flowcore-root button,
|
|
2331
|
+
.flowcore-root select {
|
|
2332
|
+
margin: 0;
|
|
2333
|
+
font-family: inherit;
|
|
2334
|
+
font-size: 100%;
|
|
2335
|
+
}
|
|
2336
|
+
}
|
|
2337
|
+
.flowcore-ui {
|
|
2338
|
+
isolation: isolate;
|
|
2328
2339
|
}
|
|
2329
2340
|
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
2330
2341
|
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|
package/dist/pkg-index.js
CHANGED
|
@@ -5434,7 +5434,7 @@ function Sidebar({ isOpen, onToggle, childrens }) {
|
|
|
5434
5434
|
const Icon = item.icon;
|
|
5435
5435
|
const handleClick = () => {
|
|
5436
5436
|
if (item.component) {
|
|
5437
|
-
router.push("/
|
|
5437
|
+
router.push("/", void 0, { shallow: true });
|
|
5438
5438
|
setActiveComponent(item.component);
|
|
5439
5439
|
} else if (item.path) {
|
|
5440
5440
|
setActiveComponent(null);
|
package/dist/pkg-index.mjs
CHANGED
|
@@ -5427,7 +5427,7 @@ function Sidebar({ isOpen, onToggle, childrens }) {
|
|
|
5427
5427
|
const Icon = item.icon;
|
|
5428
5428
|
const handleClick = () => {
|
|
5429
5429
|
if (item.component) {
|
|
5430
|
-
router.push("/
|
|
5430
|
+
router.push("/", void 0, { shallow: true });
|
|
5431
5431
|
setActiveComponent(item.component);
|
|
5432
5432
|
} else if (item.path) {
|
|
5433
5433
|
setActiveComponent(null);
|