@jsenv/navi 0.12.15 → 0.12.17
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 +12 -7
- package/dist/jsenv_navi.js.map +8 -8
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -10572,7 +10572,7 @@ const getStylePropGroup = (name) => {
|
|
|
10572
10572
|
};
|
|
10573
10573
|
const getNormalizer = (key) => {
|
|
10574
10574
|
if (key === "borderRadius") {
|
|
10575
|
-
return
|
|
10575
|
+
return normalizeSpacingStyle;
|
|
10576
10576
|
}
|
|
10577
10577
|
const group = getStylePropGroup(key);
|
|
10578
10578
|
if (group === "margin" || group === "padding") {
|
|
@@ -16741,7 +16741,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
16741
16741
|
--x-button-color: var(--button-color);
|
|
16742
16742
|
|
|
16743
16743
|
position: relative;
|
|
16744
|
-
display: inline-flex;
|
|
16744
|
+
/* display: inline-flex; */
|
|
16745
16745
|
box-sizing: border-box;
|
|
16746
16746
|
padding: 0;
|
|
16747
16747
|
background: none;
|
|
@@ -16866,6 +16866,10 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
16866
16866
|
.navi_button[data-discrete][data-disabled] {
|
|
16867
16867
|
--x-button-border-color: transparent;
|
|
16868
16868
|
}
|
|
16869
|
+
|
|
16870
|
+
.navi_button > img {
|
|
16871
|
+
border-radius: inherit;
|
|
16872
|
+
}
|
|
16869
16873
|
`;
|
|
16870
16874
|
const Button = props => {
|
|
16871
16875
|
return renderActionableComponent(props, {
|
|
@@ -21543,6 +21547,8 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
21543
21547
|
text-align: center;
|
|
21544
21548
|
line-height: 1.5em;
|
|
21545
21549
|
vertical-align: middle;
|
|
21550
|
+
background: var(--background);
|
|
21551
|
+
background-color: var(--background-color, var(--background));
|
|
21546
21552
|
border-radius: var(--border-radius, 1em);
|
|
21547
21553
|
}
|
|
21548
21554
|
`;
|
|
@@ -21552,6 +21558,7 @@ const BadgeManagedByCSSVars = {
|
|
|
21552
21558
|
paddingRight: "--padding-right",
|
|
21553
21559
|
paddingLeft: "--padding-left",
|
|
21554
21560
|
backgroundColor: "--background-color",
|
|
21561
|
+
background: "--background",
|
|
21555
21562
|
borderColor: "--border-color",
|
|
21556
21563
|
color: "--color"
|
|
21557
21564
|
};
|
|
@@ -21891,13 +21898,11 @@ const ViewportManagedByCSSVars = {
|
|
|
21891
21898
|
const ViewportLayout = props => {
|
|
21892
21899
|
return jsx(Box, {
|
|
21893
21900
|
row: true,
|
|
21901
|
+
width: "100%",
|
|
21902
|
+
height: "100%",
|
|
21894
21903
|
...props,
|
|
21895
21904
|
className: "navi_viewport_layout",
|
|
21896
|
-
managedByCSSVars: ViewportManagedByCSSVars
|
|
21897
|
-
minWidth: "max-content",
|
|
21898
|
-
minHeight: "max-content",
|
|
21899
|
-
width: "100%",
|
|
21900
|
-
height: "100%"
|
|
21905
|
+
managedByCSSVars: ViewportManagedByCSSVars
|
|
21901
21906
|
});
|
|
21902
21907
|
};
|
|
21903
21908
|
|