@ixo/editor 3.0.0-beta.7 → 3.0.0-beta.8
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/{chunk-IWNDIVXR.mjs → chunk-TFBZGDAV.mjs} +24 -4
- package/dist/chunk-TFBZGDAV.mjs.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/mantine/index.mjs +1 -1
- package/package.json +1 -1
- package/style-core.css +11 -0
- package/style-mantine.css +11 -0
- package/style.css +11 -0
- package/dist/chunk-IWNDIVXR.mjs.map +0 -1
|
@@ -2307,7 +2307,14 @@ function BaseContainer({ children, onClick, style }) {
|
|
|
2307
2307
|
{
|
|
2308
2308
|
withBorder: true,
|
|
2309
2309
|
radius: "lg",
|
|
2310
|
-
style: {
|
|
2310
|
+
style: {
|
|
2311
|
+
width: "100%",
|
|
2312
|
+
borderColor: "var(--mantine-color-neutralColor-6)",
|
|
2313
|
+
cursor: onClick ? "pointer" : "default",
|
|
2314
|
+
position: "relative",
|
|
2315
|
+
userSelect: onClick ? "none" : void 0,
|
|
2316
|
+
...style
|
|
2317
|
+
},
|
|
2311
2318
|
onClick
|
|
2312
2319
|
},
|
|
2313
2320
|
children
|
|
@@ -25271,7 +25278,9 @@ import {
|
|
|
25271
25278
|
IconScale,
|
|
25272
25279
|
IconFileText as IconFileText5,
|
|
25273
25280
|
IconChecks as IconChecks4,
|
|
25274
|
-
IconThumbUp as IconThumbUp2
|
|
25281
|
+
IconThumbUp as IconThumbUp2,
|
|
25282
|
+
IconSignature as IconSignature3,
|
|
25283
|
+
IconBuildingEstate
|
|
25275
25284
|
} from "@tabler/icons-react";
|
|
25276
25285
|
|
|
25277
25286
|
// src/mantine/components/Base/BaseIconCombobox.tsx
|
|
@@ -25284,6 +25293,7 @@ var BaseIconCombobox = ({ options, value, onChange }) => {
|
|
|
25284
25293
|
Combobox,
|
|
25285
25294
|
{
|
|
25286
25295
|
store: combobox,
|
|
25296
|
+
middlewares: { flip: true, size: true },
|
|
25287
25297
|
onOptionSubmit: (val) => {
|
|
25288
25298
|
onChange(val);
|
|
25289
25299
|
combobox.closeDropdown();
|
|
@@ -25328,7 +25338,7 @@ var BaseIconCombobox = ({ options, value, onChange }) => {
|
|
|
25328
25338
|
},
|
|
25329
25339
|
selected ? /* @__PURE__ */ React236.createElement(OptionRow, { option: selected }) : /* @__PURE__ */ React236.createElement(OptionRow, { option: { value: "", label: "Select an option", description: "Choose a type", icon: null } })
|
|
25330
25340
|
)),
|
|
25331
|
-
/* @__PURE__ */ React236.createElement(Combobox.Dropdown,
|
|
25341
|
+
/* @__PURE__ */ React236.createElement(Combobox.Dropdown, { mah: "var(--combobox-available-height, 300px)", style: { overflowY: "auto", scrollbarWidth: "none", msOverflowStyle: "none" } }, /* @__PURE__ */ React236.createElement(Combobox.Options, null, options.filter((o) => o.value !== value).map((option) => /* @__PURE__ */ React236.createElement(Combobox.Option, { key: option.value, value: option.value }, /* @__PURE__ */ React236.createElement(OptionRow, { option })))))
|
|
25332
25342
|
);
|
|
25333
25343
|
};
|
|
25334
25344
|
function OptionRow({ option }) {
|
|
@@ -25411,6 +25421,16 @@ var ACTION_TYPE_META = {
|
|
|
25411
25421
|
label: "Select Protocol",
|
|
25412
25422
|
description: "Select a protocol from a configured list",
|
|
25413
25423
|
icon: icon(IconBolt8, COMBO_ICON_SIZE)
|
|
25424
|
+
},
|
|
25425
|
+
"domain.sign": {
|
|
25426
|
+
label: "Sign Domain",
|
|
25427
|
+
description: "Sign a domain card credential",
|
|
25428
|
+
icon: icon(IconSignature3, COMBO_ICON_SIZE)
|
|
25429
|
+
},
|
|
25430
|
+
"domain.create": {
|
|
25431
|
+
label: "Create Domain",
|
|
25432
|
+
description: "Create a new domain entity on-chain",
|
|
25433
|
+
icon: icon(IconBuildingEstate, COMBO_ICON_SIZE)
|
|
25414
25434
|
}
|
|
25415
25435
|
};
|
|
25416
25436
|
function getActionMeta(actionType) {
|
|
@@ -33797,4 +33817,4 @@ export {
|
|
|
33797
33817
|
getExtraSlashMenuItems,
|
|
33798
33818
|
useCreateIxoEditor
|
|
33799
33819
|
};
|
|
33800
|
-
//# sourceMappingURL=chunk-
|
|
33820
|
+
//# sourceMappingURL=chunk-TFBZGDAV.mjs.map
|