@limetech/lime-elements 36.0.0-next.15 → 36.0.0-next.16
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/cjs/limel-code-editor.cjs.entry.js +15 -0
- package/dist/collection/components/code-editor/code-editor.js +17 -1
- package/dist/esm/limel-code-editor.entry.js +15 -0
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-6966b5df.entry.js → p-a9b4c048.entry.js} +1 -1
- package/dist/types/components/code-editor/code-editor.d.ts +1 -0
- package/package.json +1 -1
|
@@ -11096,6 +11096,18 @@ const CodeEditor = class {
|
|
|
11096
11096
|
}
|
|
11097
11097
|
this.editor = this.createEditor();
|
|
11098
11098
|
}
|
|
11099
|
+
watchValue(newValue) {
|
|
11100
|
+
if (!this.editor) {
|
|
11101
|
+
return;
|
|
11102
|
+
}
|
|
11103
|
+
const currentValue = this.editor.getValue();
|
|
11104
|
+
if (newValue === currentValue) {
|
|
11105
|
+
// Circuit breaker for when the change comes from the editor itself
|
|
11106
|
+
// The caret position will be reset without this
|
|
11107
|
+
return;
|
|
11108
|
+
}
|
|
11109
|
+
this.editor.getDoc().setValue(newValue);
|
|
11110
|
+
}
|
|
11099
11111
|
createEditor() {
|
|
11100
11112
|
const options = this.getOptions();
|
|
11101
11113
|
const editor = codemirror(this.host.shadowRoot.querySelector('.editor'), options);
|
|
@@ -11155,6 +11167,9 @@ const CodeEditor = class {
|
|
|
11155
11167
|
return matchMedia('(prefers-color-scheme: dark)');
|
|
11156
11168
|
}
|
|
11157
11169
|
get host() { return index.getElement(this); }
|
|
11170
|
+
static get watchers() { return {
|
|
11171
|
+
"value": ["watchValue"]
|
|
11172
|
+
}; }
|
|
11158
11173
|
};
|
|
11159
11174
|
CodeEditor.style = codeEditorCss;
|
|
11160
11175
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, h, Prop, Element, Event, State, } from '@stencil/core';
|
|
1
|
+
import { Component, h, Prop, Element, Event, State, Watch, } from '@stencil/core';
|
|
2
2
|
import CodeMirror from 'codemirror';
|
|
3
3
|
import 'codemirror/mode/javascript/javascript';
|
|
4
4
|
import 'codemirror/addon/selection/active-line';
|
|
@@ -65,6 +65,18 @@ export class CodeEditor {
|
|
|
65
65
|
}
|
|
66
66
|
this.editor = this.createEditor();
|
|
67
67
|
}
|
|
68
|
+
watchValue(newValue) {
|
|
69
|
+
if (!this.editor) {
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
const currentValue = this.editor.getValue();
|
|
73
|
+
if (newValue === currentValue) {
|
|
74
|
+
// Circuit breaker for when the change comes from the editor itself
|
|
75
|
+
// The caret position will be reset without this
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
this.editor.getDoc().setValue(newValue);
|
|
79
|
+
}
|
|
68
80
|
createEditor() {
|
|
69
81
|
const options = this.getOptions();
|
|
70
82
|
const editor = CodeMirror(this.host.shadowRoot.querySelector('.editor'), options);
|
|
@@ -252,4 +264,8 @@ export class CodeEditor {
|
|
|
252
264
|
}
|
|
253
265
|
}]; }
|
|
254
266
|
static get elementRef() { return "host"; }
|
|
267
|
+
static get watchers() { return [{
|
|
268
|
+
"propName": "value",
|
|
269
|
+
"methodName": "watchValue"
|
|
270
|
+
}]; }
|
|
255
271
|
}
|
|
@@ -11092,6 +11092,18 @@ const CodeEditor = class {
|
|
|
11092
11092
|
}
|
|
11093
11093
|
this.editor = this.createEditor();
|
|
11094
11094
|
}
|
|
11095
|
+
watchValue(newValue) {
|
|
11096
|
+
if (!this.editor) {
|
|
11097
|
+
return;
|
|
11098
|
+
}
|
|
11099
|
+
const currentValue = this.editor.getValue();
|
|
11100
|
+
if (newValue === currentValue) {
|
|
11101
|
+
// Circuit breaker for when the change comes from the editor itself
|
|
11102
|
+
// The caret position will be reset without this
|
|
11103
|
+
return;
|
|
11104
|
+
}
|
|
11105
|
+
this.editor.getDoc().setValue(newValue);
|
|
11106
|
+
}
|
|
11095
11107
|
createEditor() {
|
|
11096
11108
|
const options = this.getOptions();
|
|
11097
11109
|
const editor = codemirror(this.host.shadowRoot.querySelector('.editor'), options);
|
|
@@ -11151,6 +11163,9 @@ const CodeEditor = class {
|
|
|
11151
11163
|
return matchMedia('(prefers-color-scheme: dark)');
|
|
11152
11164
|
}
|
|
11153
11165
|
get host() { return getElement(this); }
|
|
11166
|
+
static get watchers() { return {
|
|
11167
|
+
"value": ["watchValue"]
|
|
11168
|
+
}; }
|
|
11154
11169
|
};
|
|
11155
11170
|
CodeEditor.style = codeEditorCss;
|
|
11156
11171
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-e9a95b8f.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-995bbd2a",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-a43e4844",[[1,"limel-dock",{dockItems:[16],dockFooterItems:[16],accessibleLabel:[513,"accessible-label"],expanded:[516],allowResize:[516,"allow-resize"],mobileBreakPoint:[514,"mobile-break-point"],useMobileLayout:[32]}]]],["p-f0e872b6",[[1,"limel-picker",{disabled:[4],readonly:[516],label:[1],searchLabel:[1,"search-label"],helperText:[513,"helper-text"],leadingIcon:[1,"leading-icon"],emptyResultMessage:[1,"empty-result-message"],required:[4],value:[16],searcher:[16],multiple:[4],delimiter:[513],actions:[16],actionPosition:[1,"action-position"],actionScrollBehavior:[1,"action-scroll-behavior"],badgeIcons:[516,"badge-icons"],items:[32],textValue:[32],loading:[32],chips:[32]}]]],["p-22e49a91",[[1,"limel-date-picker",{disabled:[516],readonly:[516],invalid:[516],label:[513],placeholder:[513],helperText:[513,"helper-text"],required:[516],value:[16],type:[513],format:[513],language:[513],formattedValue:[32],internalFormat:[32],showPortal:[32]}]]],["p-95f275ab",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-457cf741",[[1,"limel-select",{disabled:[516],readonly:[516],invalid:[516],required:[516],label:[513],helperText:[513,"helper-text"],value:[16],options:[16],multiple:[4],menuOpen:[32]}]]],["p-440454ed",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-94899019",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-64f068a8",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-1dfccbc5",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516],loadingFailed:[516,"loading-failed"],justLoaded:[32]}]]],["p-97d6c4a6",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-aa66620a",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-9af0704c",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-b95e80c9",[[1,"limel-table",{data:[16],columns:[16],mode:[1],pageSize:[2,"page-size"],totalRows:[2,"total-rows"],sorting:[16],activeRow:[1040],movableColumns:[4,"movable-columns"],loading:[4],page:[2],emptyMessage:[1,"empty-message"],aggregates:[16],selectable:[4],selection:[16]}]]],["p-63e25a0a",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-53e01330",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}]]],["p-
|
|
1
|
+
import{p as e,b as l}from"./p-e9a95b8f.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-995bbd2a",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-a43e4844",[[1,"limel-dock",{dockItems:[16],dockFooterItems:[16],accessibleLabel:[513,"accessible-label"],expanded:[516],allowResize:[516,"allow-resize"],mobileBreakPoint:[514,"mobile-break-point"],useMobileLayout:[32]}]]],["p-f0e872b6",[[1,"limel-picker",{disabled:[4],readonly:[516],label:[1],searchLabel:[1,"search-label"],helperText:[513,"helper-text"],leadingIcon:[1,"leading-icon"],emptyResultMessage:[1,"empty-result-message"],required:[4],value:[16],searcher:[16],multiple:[4],delimiter:[513],actions:[16],actionPosition:[1,"action-position"],actionScrollBehavior:[1,"action-scroll-behavior"],badgeIcons:[516,"badge-icons"],items:[32],textValue:[32],loading:[32],chips:[32]}]]],["p-22e49a91",[[1,"limel-date-picker",{disabled:[516],readonly:[516],invalid:[516],label:[513],placeholder:[513],helperText:[513,"helper-text"],required:[516],value:[16],type:[513],format:[513],language:[513],formattedValue:[32],internalFormat:[32],showPortal:[32]}]]],["p-95f275ab",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-457cf741",[[1,"limel-select",{disabled:[516],readonly:[516],invalid:[516],required:[516],label:[513],helperText:[513,"helper-text"],value:[16],options:[16],multiple:[4],menuOpen:[32]}]]],["p-440454ed",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-94899019",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-64f068a8",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-1dfccbc5",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516],loadingFailed:[516,"loading-failed"],justLoaded:[32]}]]],["p-97d6c4a6",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-aa66620a",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-9af0704c",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-b95e80c9",[[1,"limel-table",{data:[16],columns:[16],mode:[1],pageSize:[2,"page-size"],totalRows:[2,"total-rows"],sorting:[16],activeRow:[1040],movableColumns:[4,"movable-columns"],loading:[4],page:[2],emptyMessage:[1,"empty-message"],aggregates:[16],selectable:[4],selection:[16]}]]],["p-63e25a0a",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-53e01330",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}]]],["p-a9b4c048",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-d74fa89e",[[1,"limel-config",{config:[16]}]]],["p-a5af84a7",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-7e571ec6",[[1,"limel-form",{schema:[16],value:[16],disabled:[4],propsFactory:[16],transformErrors:[16],errors:[16]}]]],["p-6e7809a6",[[1,"limel-grid"]]],["p-71efe2ca",[[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-c80acfb2",[[1,"limel-slider",{disabled:[516],readonly:[516],factor:[514],label:[513],helperText:[513,"helper-text"],unit:[513],value:[514],valuemax:[514],valuemin:[514],step:[514],percentageClass:[32]}]]],["p-e98d76e8",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-a465084b",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-55706501",[[0,"limel-dock-button",{item:[16],expanded:[516],useMobileLayout:[516,"use-mobile-layout"],isOpen:[32]}]]],["p-93f42a32",[[1,"limel-input-field",{disabled:[516],readonly:[516],invalid:[516],label:[513],placeholder:[513],helperText:[513,"helper-text"],prefix:[513],suffix:[513],required:[516],value:[513],trailingIcon:[513,"trailing-icon"],leadingIcon:[513,"leading-icon"],pattern:[513],type:[513],formatNumber:[516,"format-number"],step:[520],max:[514],min:[514],maxlength:[514],minlength:[514],completions:[16],showLink:[516,"show-link"],isFocused:[32],isModified:[32],showCompletions:[32]}]]],["p-009de50e",[[1,"limel-color-picker-palette",{value:[513],label:[513],helperText:[513,"helper-text"],required:[516]}]]],["p-8827628d",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-b0046fcd",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-1e59114e",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-2639edf9",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-af0ec482",[[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1]}]]],["p-1a2ffe75",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-42b67933",[[1,"limel-badge",{label:[514]}]]],["p-f0c9dadd",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-5ad60e14",[[1,"limel-chip-set",{value:[16],type:[513],label:[513],helperText:[513,"helper-text"],disabled:[516],readonly:[516],inputType:[513,"input-type"],maxItems:[514,"max-items"],required:[516],searchLabel:[513,"search-label"],emptyInputOnBlur:[516,"empty-input-on-blur"],clearAllButton:[4,"clear-all-button"],leadingIcon:[513,"leading-icon"],delimiter:[513],language:[1],editMode:[32],textValue:[32],blurred:[32],inputChipIndexSelected:[32],getEditMode:[64],setFocus:[64],emptyInput:[64]}]]],["p-6b1bc80f",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516]}]]],["p-ed65468d",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-93cd2268",[[1,"limel-portal",{openDirection:[1,"open-direction"],position:[1],containerId:[1,"container-id"],containerStyle:[16],parent:[16],inheritParentWidth:[4,"inherit-parent-width"],visible:[4]}]]],["p-19f72dab",[[1,"limel-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}],[1,"limel-menu-surface",{open:[4],allowClicksElement:[16]}]]],["p-bd098a11",[[1,"limel-popover",{open:[4],openDirection:[513,"open-direction"]}],[1,"limel-tooltip",{elementId:[513,"element-id"],label:[513],helperLabel:[513,"helper-label"],maxlength:[514],open:[32]}],[1,"limel-popover-surface",{contentCollection:[16]}],[1,"limel-tooltip-content",{label:[513],helperLabel:[513,"helper-label"],maxlength:[514]}]]]],e)));
|