@fc-components/monaco-editor 0.3.2 → 0.3.3
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/monaco-editor.cjs.development.js +4 -4
- package/dist/monaco-editor.cjs.development.js.map +1 -1
- package/dist/monaco-editor.cjs.production.min.js +1 -1
- package/dist/monaco-editor.cjs.production.min.js.map +1 -1
- package/dist/monaco-editor.esm.js +4 -4
- package/dist/monaco-editor.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/sql/index.tsx +5 -7
|
@@ -3706,7 +3706,7 @@ var themeMap$2 = {
|
|
|
3706
3706
|
};
|
|
3707
3707
|
var containerDisabledClassName$2 = /*#__PURE__*/css.css(_templateObject$2 || (_templateObject$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n .monaco-editor {\n user-select: none;\n pointer-events: none;\n }\n"])));
|
|
3708
3708
|
var containerReadOnlyClassName$2 = /*#__PURE__*/css.css(_templateObject2$2 || (_templateObject2$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n .monaco-editor .cursors-layer > .cursor {\n opacity: 0 !important;\n }\n"])));
|
|
3709
|
-
var formatBtnClassName = /*#__PURE__*/css.css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 4px;\n right: 4px;\n z-index: 10;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n padding: 0;\n border: none;\n background: transparent;\n border-radius: 4px;\n cursor: pointer;\n color: inherit;\n opacity:
|
|
3709
|
+
var formatBtnClassName = /*#__PURE__*/css.css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 4px;\n right: 4px;\n z-index: 10;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n padding: 0;\n border: none;\n background: transparent;\n border-radius: 4px;\n cursor: pointer;\n color: inherit;\n opacity: 1;\n transition: opacity 0.15s;\n\n &:hover {\n background: var(--format-btn-hover-bg, rgba(128, 128, 128, 0.15));\n }\n"])));
|
|
3710
3710
|
var SqlEditor = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
3711
3711
|
var id = uuid.v4();
|
|
3712
3712
|
var className = props.className,
|
|
@@ -3924,12 +3924,12 @@ var SqlEditor = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
3924
3924
|
}
|
|
3925
3925
|
}, React__default.createElement("svg", {
|
|
3926
3926
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
3927
|
-
width: '
|
|
3928
|
-
height: '
|
|
3927
|
+
width: '12',
|
|
3928
|
+
height: '12',
|
|
3929
3929
|
viewBox: '0 0 24 24',
|
|
3930
3930
|
fill: 'none',
|
|
3931
3931
|
stroke: 'currentColor',
|
|
3932
|
-
strokeWidth: '
|
|
3932
|
+
strokeWidth: '1',
|
|
3933
3933
|
strokeLinecap: 'round',
|
|
3934
3934
|
strokeLinejoin: 'round'
|
|
3935
3935
|
}, React__default.createElement("path", {
|