@edifice.io/react 2.5.5-develop-b2school.20251229113453 → 2.5.5-develop-b2school.20260106144020
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/components/Combobox/Combobox.js +1 -1
- package/dist/components/Combobox/ComboboxTrigger.js +1 -1
- package/dist/modules/editor/components/Editor/Editor.js +1 -1
- package/dist/modules/modals/ShareModal/ShareBookmark.js +2 -2
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +4 -4
- package/dist/modules/modals/ShareModal/ShareResources.js +1 -1
- package/package.json +6 -6
|
@@ -51,7 +51,7 @@ const ComboboxComponent = /* @__PURE__ */ forwardRef(({
|
|
|
51
51
|
/* @__PURE__ */ jsx(Combobox.Trigger, { placeholder, searchMinLength, handleSearchInputChange: onSearchInputChange, handleSearchInputKeyUp: (event) => {
|
|
52
52
|
onSearchInputKeyUp == null || onSearchInputKeyUp(event);
|
|
53
53
|
}, value, variant, renderInputGroup, renderSelectedItems, hasDefault: !!options.length, onFocus, onBlur, inputRef }),
|
|
54
|
-
/* @__PURE__ */ jsx(Dropdown.Menu, { children: renderContent() })
|
|
54
|
+
/* @__PURE__ */ jsx(Dropdown.Menu, { "data-testid": "combobox-search-menu", children: renderContent() })
|
|
55
55
|
] });
|
|
56
56
|
}), Combobox = /* @__PURE__ */ Object.assign(ComboboxComponent, {
|
|
57
57
|
Trigger: ComboboxTrigger
|
|
@@ -48,7 +48,7 @@ const ComboboxTrigger = ({
|
|
|
48
48
|
!!renderInputGroup && /* @__PURE__ */ jsx("label", { className: "input-group-text pe-0" + classNameVariant, htmlFor: triggerProps.id, children: renderInputGroup }),
|
|
49
49
|
/* @__PURE__ */ jsxs("div", { className: "d-flex align-items-center flex-wrap flex-fill", children: [
|
|
50
50
|
renderSelectedItems,
|
|
51
|
-
/* @__PURE__ */ jsx(Input, { ...inputProps, className: classNameInput, onFocus, onBlur, noValidationIcon: !0, placeholder, size: "md", type: "search", onKeyDown: itemProps.onMenuItemKeyDown })
|
|
51
|
+
/* @__PURE__ */ jsx(Input, { "data-testid": "combobox-search-input", ...inputProps, className: classNameInput, onFocus, onBlur, noValidationIcon: !0, placeholder, size: "md", type: "search", onKeyDown: itemProps.onMenuItemKeyDown })
|
|
52
52
|
] })
|
|
53
53
|
] });
|
|
54
54
|
};
|
|
@@ -78,7 +78,7 @@ const MathsModal = /* @__PURE__ */ lazy(async () => await import("../MathsModal/
|
|
|
78
78
|
/* @__PURE__ */ jsxs("div", { className: borderClass, children: [
|
|
79
79
|
toolbar !== "none" && editable && /* @__PURE__ */ jsx(EditorToolbar, { mediaLibraryRef: mediaLibraryModalRef, toggleMathsModal, cantooEditor: contooEditor }),
|
|
80
80
|
/* @__PURE__ */ jsxs(Flex, { direction: "row", children: [
|
|
81
|
-
/* @__PURE__ */ jsx(EditorContent, { id: id ?? editorId, editor, className: contentClass, style: {
|
|
81
|
+
/* @__PURE__ */ jsx(EditorContent, { "data-testid": "editor-content", id: id ?? editorId, editor, className: contentClass, style: {
|
|
82
82
|
flex: 1
|
|
83
83
|
} }),
|
|
84
84
|
editable && contooEditor.openPositionAdaptText.right && /* @__PURE__ */ jsx(CantooAdaptTextBoxView, { openPosition: contooEditor.openPositionAdaptText })
|
|
@@ -16,8 +16,8 @@ const ShareBookmark = ({
|
|
|
16
16
|
setIsSaving(!0), await onSave(), setIsSaving(!1);
|
|
17
17
|
};
|
|
18
18
|
return /* @__PURE__ */ jsx("div", { className: "mt-16", children: /* @__PURE__ */ jsxs(FormControl, { id: "bookmarkName", className: "d-flex flex-wrap align-items-center gap-16", children: [
|
|
19
|
-
/* @__PURE__ */ jsx("div", { className: "flex-fill", children: /* @__PURE__ */ jsx(FormControl.Input, { ref: refBookmark, onChange: onBookmarkChange, placeholder: t("explorer.modal.share.sharebookmark.placeholder"), size: "sm", type: "text" }, bookmark.id) }),
|
|
20
|
-
/* @__PURE__ */ jsx(Button, { type: "button", color: "primary", variant: "ghost", disabled: bookmark.name.length === 0 || isSaving, leftIcon: /* @__PURE__ */ jsx(SvgIconSave, {}), onClick: handleSaveClick, className: "text-nowrap", isLoading: isSaving, children: t("explorer.modal.share.sharebookmark.save") })
|
|
19
|
+
/* @__PURE__ */ jsx("div", { className: "flex-fill", children: /* @__PURE__ */ jsx(FormControl.Input, { "data-testid": "share-bookmark-name-input", ref: refBookmark, onChange: onBookmarkChange, placeholder: t("explorer.modal.share.sharebookmark.placeholder"), size: "sm", type: "text" }, bookmark.id) }),
|
|
20
|
+
/* @__PURE__ */ jsx(Button, { "data-testid": "share-bookmark-save-button", type: "button", color: "primary", variant: "ghost", disabled: bookmark.name.length === 0 || isSaving, leftIcon: /* @__PURE__ */ jsx(SvgIconSave, {}), onClick: handleSaveClick, className: "text-nowrap", isLoading: isSaving, children: t("explorer.modal.share.sharebookmark.save") })
|
|
21
21
|
] }) });
|
|
22
22
|
};
|
|
23
23
|
export {
|
|
@@ -4,10 +4,10 @@ import SvgIconBookmark from "../../icons/components/IconBookmark.js";
|
|
|
4
4
|
import SvgIconClose from "../../icons/components/IconClose.js";
|
|
5
5
|
import SvgIconRafterDown from "../../icons/components/IconRafterDown.js";
|
|
6
6
|
import SvgIconUsers from "../../icons/components/IconUsers.js";
|
|
7
|
-
import { hasRight } from "./utils/hasRight.js";
|
|
8
|
-
import { showShareRightLine } from "./utils/showShareRightLine.js";
|
|
9
7
|
import { useShareRightDisabled } from "./hooks/useShareRightDisabled.js";
|
|
10
8
|
import { useShareRightVisible } from "./hooks/useShareRightVisible.js";
|
|
9
|
+
import { hasRight } from "./utils/hasRight.js";
|
|
10
|
+
import { showShareRightLine } from "./utils/showShareRightLine.js";
|
|
11
11
|
import Avatar from "../../../components/Avatar/Avatar.js";
|
|
12
12
|
import Button from "../../../components/Button/Button.js";
|
|
13
13
|
import Checkbox from "../../../components/Checkbox/Checkbox.js";
|
|
@@ -45,8 +45,8 @@ const ShareBookmarkLine = ({
|
|
|
45
45
|
] }) }),
|
|
46
46
|
shareRightActions.map((shareRightAction) => /* @__PURE__ */ jsx("td", { style: {
|
|
47
47
|
width: "80px"
|
|
48
|
-
}, className: "text-center text-white", children: /* @__PURE__ */ jsx(Checkbox, { checked: hasRight(shareRight, shareRightAction), onChange: () => toggleRight(shareRight, shareRightAction.id), disabled: isDisabled }) }, shareRightAction.displayName)),
|
|
49
|
-
/* @__PURE__ */ jsx("td", { children: !shareRight.isBookmarkMember && !isDisabled && /* @__PURE__ */ jsx(IconButton, { "aria-label": t("close"), color: "tertiary", icon: /* @__PURE__ */ jsx(SvgIconClose, {}), type: "button", variant: "ghost", title: t("close"), onClick: () => onDeleteRow(shareRight) }) })
|
|
48
|
+
}, className: "text-center text-white", children: /* @__PURE__ */ jsx(Checkbox, { checked: hasRight(shareRight, shareRightAction), onChange: () => toggleRight(shareRight, shareRightAction.id), disabled: isDisabled, "data-testid": `share-right-${shareRightAction.id}-checkbox` }) }, shareRightAction.displayName)),
|
|
49
|
+
/* @__PURE__ */ jsx("td", { children: !shareRight.isBookmarkMember && !isDisabled && /* @__PURE__ */ jsx(IconButton, { "data-testid": "share-right-close-button", "aria-label": t("close"), color: "tertiary", icon: /* @__PURE__ */ jsx(SvgIconClose, {}), type: "button", variant: "ghost", title: t("close"), onClick: () => onDeleteRow(shareRight) }) })
|
|
50
50
|
] }, shareRight.id) : null;
|
|
51
51
|
});
|
|
52
52
|
};
|
|
@@ -124,7 +124,7 @@ const ShareResources = /* @__PURE__ */ forwardRef(({
|
|
|
124
124
|
] })
|
|
125
125
|
] }) }),
|
|
126
126
|
/* @__PURE__ */ jsxs("div", { className: "mt-16", children: [
|
|
127
|
-
/* @__PURE__ */ jsx(Button, { color: "tertiary", leftIcon: /* @__PURE__ */ jsx(SvgIconBookmark, {}), rightIcon: /* @__PURE__ */ jsx(SvgIconRafterDown, { title: t("show"), className: "w-16 min-w-0", style: {
|
|
127
|
+
/* @__PURE__ */ jsx(Button, { "data-testid": "share-bookmark-show-button", color: "tertiary", leftIcon: /* @__PURE__ */ jsx(SvgIconBookmark, {}), rightIcon: /* @__PURE__ */ jsx(SvgIconRafterDown, { title: t("show"), className: "w-16 min-w-0", style: {
|
|
128
128
|
transition: "rotate 0.2s ease-out",
|
|
129
129
|
rotate: showBookmarkInput ? "-180deg" : "0deg"
|
|
130
130
|
} }), type: "button", variant: "ghost", className: "fw-normal", onClick: () => toggleBookmarkInput(!showBookmarkInput), children: t("share.save.sharebookmark") }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.5-develop-b2school.
|
|
3
|
+
"version": "2.5.5-develop-b2school.20260106144020",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -133,9 +133,9 @@
|
|
|
133
133
|
"react-slugify": "^3.0.3",
|
|
134
134
|
"swiper": "^10.1.0",
|
|
135
135
|
"ua-parser-js": "^1.0.36",
|
|
136
|
-
"@edifice.io/bootstrap": "2.5.5-develop-b2school.
|
|
137
|
-
"@edifice.io/tiptap-extensions": "2.5.5-develop-b2school.
|
|
138
|
-
"@edifice.io/utilities": "2.5.5-develop-b2school.
|
|
136
|
+
"@edifice.io/bootstrap": "2.5.5-develop-b2school.20260106144020",
|
|
137
|
+
"@edifice.io/tiptap-extensions": "2.5.5-develop-b2school.20260106144020",
|
|
138
|
+
"@edifice.io/utilities": "2.5.5-develop-b2school.20260106144020"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
141
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -166,8 +166,8 @@
|
|
|
166
166
|
"vite": "^5.4.11",
|
|
167
167
|
"vite-plugin-dts": "^4.1.0",
|
|
168
168
|
"vite-tsconfig-paths": "^5.0.1",
|
|
169
|
-
"@edifice.io/client": "2.5.5-develop-b2school.
|
|
170
|
-
"@edifice.io/config": "2.5.5-develop-b2school.
|
|
169
|
+
"@edifice.io/client": "2.5.5-develop-b2school.20260106144020",
|
|
170
|
+
"@edifice.io/config": "2.5.5-develop-b2school.20260106144020"
|
|
171
171
|
},
|
|
172
172
|
"peerDependencies": {
|
|
173
173
|
"@react-spring/web": "^9.7.5",
|