@orangelogic/design-system 2.68.0 → 2.69.0-ci.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.
|
@@ -43975,6 +43975,11 @@ let Tr = class extends Bn {
|
|
|
43975
43975
|
return n.content.textBetween(0, n.content.size, `
|
|
43976
43976
|
`);
|
|
43977
43977
|
},
|
|
43978
|
+
handleDOMEvents: {
|
|
43979
|
+
keyup(n, e) {
|
|
43980
|
+
return (e.key === "Delete" || e.key === "Backspace") && e.stopPropagation(), !1;
|
|
43981
|
+
}
|
|
43982
|
+
},
|
|
43978
43983
|
handleKeyDown: (n, e) => (e.stopPropagation(), !1)
|
|
43979
43984
|
},
|
|
43980
43985
|
element: this.editorContainer,
|
|
@@ -113152,16 +113157,17 @@ class M8t {
|
|
|
113152
113157
|
const l = async (u) => {
|
|
113153
113158
|
const h = Array.isArray(u.detail) ? u.detail : [u.detail], m = h.map((k) => k.id).join(" "), f = h.map((k) => k.src).join(" "), b = h.map((k) => k.name).join(", "), w = h.map((k) => k.type).join(" ");
|
|
113154
113159
|
await o({
|
|
113155
|
-
|
|
113160
|
+
id: m,
|
|
113156
113161
|
name: b,
|
|
113157
113162
|
src: f,
|
|
113158
113163
|
type: w
|
|
113159
113164
|
});
|
|
113160
113165
|
}, d = async () => {
|
|
113161
113166
|
await o({
|
|
113162
|
-
|
|
113167
|
+
id: "",
|
|
113163
113168
|
name: "",
|
|
113164
|
-
src: ""
|
|
113169
|
+
src: "",
|
|
113170
|
+
type: ""
|
|
113165
113171
|
});
|
|
113166
113172
|
};
|
|
113167
113173
|
return X`
|
package/library/package.json
CHANGED