markupeditor 0.9.21 → 0.9.22
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/config/toolbarconfig.json +1 -1
- package/dist/markup-editor.js +10 -10
- package/package.json +1 -1
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"append": null
|
|
80
80
|
},
|
|
81
81
|
"appearance": {
|
|
82
|
-
"accentColor": { "light": "
|
|
82
|
+
"accentColor": { "light": "AccentColor", "dark": "AccentColor" },
|
|
83
83
|
"toolbarBg": { "light": "rgba(250, 249, 246, 0.95)", "dark": "rgba(40, 40, 43, 0.9)" },
|
|
84
84
|
"buttonBg": { "light": "white", "dark": "black" },
|
|
85
85
|
"borderColor": { "light": "lightgray", "dark": "gray" },
|
package/dist/markup-editor.js
CHANGED
|
@@ -19754,8 +19754,8 @@ var augmentation = {
|
|
|
19754
19754
|
};
|
|
19755
19755
|
var appearance = {
|
|
19756
19756
|
accentColor: {
|
|
19757
|
-
light: "
|
|
19758
|
-
dark: "
|
|
19757
|
+
light: "AccentColor",
|
|
19758
|
+
dark: "AccentColor"
|
|
19759
19759
|
},
|
|
19760
19760
|
toolbarBg: {
|
|
19761
19761
|
light: "rgba(250, 249, 246, 0.95)",
|
|
@@ -19904,14 +19904,14 @@ var toolbarConfig = {
|
|
|
19904
19904
|
* "prepend": null, // Name of a registered array of cmdItems to prepend
|
|
19905
19905
|
* "append": null // Name of a registered array of cmdItems to append
|
|
19906
19906
|
* },
|
|
19907
|
-
* "appearance": {
|
|
19908
|
-
* "accentColor": { "light": "
|
|
19909
|
-
* "toolbarBg": { "light": "rgba(250, 249, 246, 0.95)", "dark": "rgba(40, 40, 43, 0.9)" },
|
|
19910
|
-
* "buttonBg": { "light": "white", "dark": "black" },
|
|
19911
|
-
* "borderColor": { "light": "lightgray", "dark": "gray" },
|
|
19912
|
-
* "hoverBg": { "light": "#f2f2f2", "dark": "rgb(80, 80, 80)" },
|
|
19913
|
-
* "buttonSize":
|
|
19914
|
-
* "buttonFontSize":
|
|
19907
|
+
* "appearance": { // AccentColor adapts to light and dark
|
|
19908
|
+
* "accentColor": { "light": "AccentColor", "dark": "AccentColor" }, // System accent color for button icons, infill, and borders
|
|
19909
|
+
* "toolbarBg": { "light": "rgba(250, 249, 246, 0.95)", "dark": "rgba(40, 40, 43, 0.9)" }, // Toolbar background
|
|
19910
|
+
* "buttonBg": { "light": "white", "dark": "black" }, // Button background
|
|
19911
|
+
* "borderColor": { "light": "lightgray", "dark": "gray" }, // Border at bottom of toolbar, around menus
|
|
19912
|
+
* "hoverBg": { "light": "#f2f2f2", "dark": "rgb(80, 80, 80)" }, // Highlight menu item on hover
|
|
19913
|
+
* "buttonSize": "28px", // Side length of rounded square buttons, height otherwise
|
|
19914
|
+
* "buttonFontSize": "24px" // Font size inside of buttons/menus
|
|
19915
19915
|
* },
|
|
19916
19916
|
* "icons": { // Outlined 400 weight versions from https://fonts.google.com/icons
|
|
19917
19917
|
* // undo
|