@telicent-oss/ds 0.30.0 → 0.30.1
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/ds.js +6 -2
- package/dist/ds.js.map +1 -1
- package/dist/ds.umd.cjs +6 -2
- package/dist/ds.umd.cjs.map +1 -1
- package/dist/export.d.ts +16 -2
- package/package.json +1 -1
package/dist/ds.js
CHANGED
|
@@ -81894,11 +81894,13 @@ const InsetInMap = ({
|
|
|
81894
81894
|
content,
|
|
81895
81895
|
controlArea = {},
|
|
81896
81896
|
sx,
|
|
81897
|
+
children: children2,
|
|
81897
81898
|
...rest
|
|
81898
81899
|
}) => {
|
|
81899
81900
|
return /* @__PURE__ */ jsxs(Background, { sx, ...rest, children: [
|
|
81900
81901
|
/* @__PURE__ */ jsx2(Content, { children: content }),
|
|
81901
|
-
Object.entries(controlArea).map(([position2, node2]) => /* @__PURE__ */ jsx2(ControlArea, { position: position2, children: node2 }, position2))
|
|
81902
|
+
Object.entries(controlArea).map(([position2, node2]) => /* @__PURE__ */ jsx2(ControlArea, { position: position2, children: node2 }, position2)),
|
|
81903
|
+
children2
|
|
81902
81904
|
] });
|
|
81903
81905
|
};
|
|
81904
81906
|
var AuthEvent = /* @__PURE__ */ ((AuthEvent2) => {
|
|
@@ -85607,7 +85609,8 @@ function parseOrThrowWithInput(schema, data) {
|
|
|
85607
85609
|
}
|
|
85608
85610
|
const mui = {
|
|
85609
85611
|
IconButton: IconButton$1,
|
|
85610
|
-
Button: Button$1
|
|
85612
|
+
Button: Button$1,
|
|
85613
|
+
Box
|
|
85611
85614
|
};
|
|
85612
85615
|
export {
|
|
85613
85616
|
AppBar2 as AppBar,
|
|
@@ -85764,6 +85767,7 @@ export {
|
|
|
85764
85767
|
checkOntology,
|
|
85765
85768
|
createApi,
|
|
85766
85769
|
getCodec,
|
|
85770
|
+
workspace as insetInMap,
|
|
85767
85771
|
loggerLevelOrder,
|
|
85768
85772
|
mui,
|
|
85769
85773
|
onAuthEvent,
|