@fw-components/formula-editor 2.0.7-formula-editor.3 → 2.0.7-formula-editor.4
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.
|
@@ -2,17 +2,15 @@ import { css } from "lit";
|
|
|
2
2
|
export const FormulaEditorStyles = css `
|
|
3
3
|
#wysiwyg-editor {
|
|
4
4
|
display: inline-block;
|
|
5
|
-
border: none;
|
|
6
5
|
padding: 4px;
|
|
7
6
|
caret-color: var(--fe-caret-color, #fff);
|
|
8
7
|
color: var(--fe-text-color, #f7f1ff);
|
|
9
8
|
line-height: 1.1;
|
|
10
|
-
width: 100
|
|
9
|
+
width: var(--fe-width, 100%);
|
|
11
10
|
height: var(--fe-height, 60%);
|
|
12
|
-
border-radius: var(--fe-border-radius, 4px)
|
|
13
|
-
0px;
|
|
11
|
+
border-radius: var(--fe-border-radius, 4px);
|
|
14
12
|
overflow: auto;
|
|
15
|
-
border: 2px solid black;
|
|
13
|
+
border: var(--fe-border, 2px solid black);
|
|
16
14
|
outline: 0px solid black;
|
|
17
15
|
white-space: pre-wrap;
|
|
18
16
|
background-color: var(--fe-background-color, #222222);
|
|
@@ -20,7 +20,7 @@ let SuggestionMenu = class SuggestionMenu extends LitElement {
|
|
|
20
20
|
color: var(--fe-suggestion-color, #bab6c0);
|
|
21
21
|
background-color: var(--fe-suggestion-background-color, white);
|
|
22
22
|
box-sizing: border-box;
|
|
23
|
-
width: 20vw;
|
|
23
|
+
width: var(--fe-suggestion-width, 20vw);
|
|
24
24
|
max-height: 25vh;
|
|
25
25
|
overflow-x: auto;
|
|
26
26
|
overflow-y: auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fw-components/formula-editor",
|
|
3
|
-
"version": "2.0.7-formula-editor.
|
|
3
|
+
"version": "2.0.7-formula-editor.4",
|
|
4
4
|
"description": "A WYSIWYG type formula editor",
|
|
5
5
|
"main": "dist/formula-editor/src/formula-builder.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"@types/big.js": "^6.1.6",
|
|
26
26
|
"es-dev-server": "^2.1.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "a4617735ec4ff4910bbfbce1b7e0c26fc6b55b02"
|
|
29
29
|
}
|