sccoreui 6.3.26 → 6.3.27
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.
|
@@ -116,8 +116,8 @@ const TableFilter = () => {
|
|
|
116
116
|
const onresetFilter = () => {
|
|
117
117
|
applyAdvancedFilter([]);
|
|
118
118
|
setConditionsArray([defaultCondition]);
|
|
119
|
-
showFilter.current.toggle(false);
|
|
120
|
-
showFilter.current.hide();
|
|
119
|
+
// showFilter.current.toggle(false);
|
|
120
|
+
// showFilter.current.hide();
|
|
121
121
|
};
|
|
122
122
|
const renderCondition = (conditions, key) => {
|
|
123
123
|
const { columnName, condition, value, id } = conditions;
|
|
@@ -9,7 +9,7 @@ const react_froala_wysiwyg_1 = tslib_1.__importDefault(require("react-froala-wys
|
|
|
9
9
|
require("froala-editor/js/plugins.pkgd.min.js");
|
|
10
10
|
// import SvgComponent from '../../directives/svg-component';
|
|
11
11
|
// import { Bold, Italic } from '../../assets/svg/svg';
|
|
12
|
-
const FroalaTextEditor = ({ onChange, value, placeholderText, id, className, toolbar = false, }) => {
|
|
12
|
+
const FroalaTextEditor = ({ onChange, value, placeholderText, id, className, toolbar = false, licenceKey = "5OA4gB3A3B3E3B5D3E3F-11SLJCKHXOSLMc1YGSGb1ZXHSe1CgB5A4D4G4E3C2A12A19A6B4==" }) => {
|
|
13
13
|
const editorRef = (0, react_1.useRef)(null);
|
|
14
14
|
// const html = ``;
|
|
15
15
|
const [editorContent, setEditorContent] = (0, react_1.useState)(value);
|
|
@@ -62,7 +62,7 @@ const FroalaTextEditor = ({ onChange, value, placeholderText, id, className, too
|
|
|
62
62
|
},
|
|
63
63
|
fontFamilyDefaultSelection: "sans-serif",
|
|
64
64
|
placeholderText: placeholderText,
|
|
65
|
-
key:
|
|
65
|
+
key: licenceKey,
|
|
66
66
|
toolbarSticky: false,
|
|
67
67
|
quickInsertEnabled: false,
|
|
68
68
|
toolbarInline: false,
|
|
@@ -2,5 +2,5 @@ import "froala-editor/css/froala_editor.pkgd.min.css";
|
|
|
2
2
|
import "froala-editor/css/froala_style.min.css";
|
|
3
3
|
import "froala-editor/js/plugins.pkgd.min.js";
|
|
4
4
|
import { FroalaTextEditorTypes } from "../types/type";
|
|
5
|
-
declare const FroalaTextEditor: ({ onChange, value, placeholderText, id, className, toolbar, }: FroalaTextEditorTypes) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const FroalaTextEditor: ({ onChange, value, placeholderText, id, className, toolbar, licenceKey }: FroalaTextEditorTypes) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export default FroalaTextEditor;
|