@jsenv/navi 0.11.4 → 0.11.6
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/jsenv_navi.js +10 -7
- package/dist/jsenv_navi.js.map +5 -5
- package/package.json +2 -2
package/dist/jsenv_navi.js
CHANGED
|
@@ -9369,22 +9369,25 @@ const RectangleLoadingSvg = ({
|
|
|
9369
9369
|
installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
9370
9370
|
.navi_inline_wrapper {
|
|
9371
9371
|
position: relative;
|
|
9372
|
-
width: fit-content;
|
|
9373
9372
|
display: inline-flex;
|
|
9373
|
+
width: fit-content;
|
|
9374
9374
|
height: fit-content;
|
|
9375
|
+
flex-direction: inherit;
|
|
9376
|
+
/* min-width: 100%; */
|
|
9377
|
+
/* min-height: 100%; */
|
|
9375
9378
|
border-radius: inherit;
|
|
9376
9379
|
cursor: inherit;
|
|
9377
9380
|
}
|
|
9378
9381
|
|
|
9379
9382
|
.navi_loading_rectangle_wrapper {
|
|
9380
|
-
pointer-events: none;
|
|
9381
9383
|
position: absolute;
|
|
9382
|
-
z-index: 1;
|
|
9383
|
-
opacity: 0;
|
|
9384
9384
|
top: var(--rectangle-top, 0);
|
|
9385
|
-
left: var(--rectangle-left, 0);
|
|
9386
|
-
bottom: var(--rectangle-bottom, 0);
|
|
9387
9385
|
right: var(--rectangle-right, 0);
|
|
9386
|
+
bottom: var(--rectangle-bottom, 0);
|
|
9387
|
+
left: var(--rectangle-left, 0);
|
|
9388
|
+
z-index: 1;
|
|
9389
|
+
opacity: 0;
|
|
9390
|
+
pointer-events: none;
|
|
9388
9391
|
}
|
|
9389
9392
|
.navi_loading_rectangle_wrapper[data-visible] {
|
|
9390
9393
|
opacity: 1;
|
|
@@ -14754,7 +14757,7 @@ const FormBasic = forwardRef((props, ref) => {
|
|
|
14754
14757
|
loading
|
|
14755
14758
|
};
|
|
14756
14759
|
}, [loading]);
|
|
14757
|
-
const [
|
|
14760
|
+
const [remainingProps, innerStyle] = withPropsStyle(rest, {
|
|
14758
14761
|
layout: true
|
|
14759
14762
|
});
|
|
14760
14763
|
return jsx("form", {
|