@limetech/lime-elements 34.0.2-next.8 → 34.0.2-next.9
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 +4 -0
- package/dist/cjs/limel-form.cjs.entry.js +2 -3
- package/dist/collection/components/code-editor/code-editor.js +4 -0
- package/dist/collection/components/form/templates/array-field.js +2 -3
- package/dist/esm/limel-code-editor.entry.js +4 -0
- package/dist/esm/limel-form.entry.js +2 -3
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-ea2bc081.entry.js → p-7ed4e81f.entry.js} +1 -1
- package/dist/lime-elements/{p-1d7c7d5e.entry.js → p-c6b97214.entry.js} +1 -1
- package/package.json +1 -1
|
@@ -11058,6 +11058,10 @@ let CodeEditor = class {
|
|
|
11058
11058
|
this.editor.off('change', this.handleChange);
|
|
11059
11059
|
this.editor = null;
|
|
11060
11060
|
this.darkMode.removeEventListener('change', this.handleChangeDarkMode);
|
|
11061
|
+
const editorElement = this.host.shadowRoot.querySelector('.editor');
|
|
11062
|
+
editorElement === null || editorElement === void 0 ? void 0 : editorElement.childNodes.forEach((child) => {
|
|
11063
|
+
child.remove();
|
|
11064
|
+
});
|
|
11061
11065
|
}
|
|
11062
11066
|
componentDidRender() {
|
|
11063
11067
|
if (this.editor) {
|
|
@@ -23995,11 +23995,10 @@ class ArrayFieldTemplate extends react.Component {
|
|
|
23995
23995
|
});
|
|
23996
23996
|
}
|
|
23997
23997
|
renderItem(item, index) {
|
|
23998
|
-
const key = `id_${index}`;
|
|
23999
23998
|
const { schema, formData, formContext } = this.props;
|
|
24000
23999
|
if (isObjectType(schema.items)) {
|
|
24001
24000
|
return react.createElement(CollapsibleItemTemplate, {
|
|
24002
|
-
key: key,
|
|
24001
|
+
key: item.key,
|
|
24003
24002
|
item: item,
|
|
24004
24003
|
data: formData[index],
|
|
24005
24004
|
schema: schema,
|
|
@@ -24008,7 +24007,7 @@ class ArrayFieldTemplate extends react.Component {
|
|
|
24008
24007
|
});
|
|
24009
24008
|
}
|
|
24010
24009
|
return react.createElement(SimpleItemTemplate, {
|
|
24011
|
-
key: key,
|
|
24010
|
+
key: item.key,
|
|
24012
24011
|
item: item,
|
|
24013
24012
|
index: index,
|
|
24014
24013
|
});
|
|
@@ -54,6 +54,10 @@ export class CodeEditor {
|
|
|
54
54
|
this.editor.off('change', this.handleChange);
|
|
55
55
|
this.editor = null;
|
|
56
56
|
this.darkMode.removeEventListener('change', this.handleChangeDarkMode);
|
|
57
|
+
const editorElement = this.host.shadowRoot.querySelector('.editor');
|
|
58
|
+
editorElement === null || editorElement === void 0 ? void 0 : editorElement.childNodes.forEach((child) => {
|
|
59
|
+
child.remove();
|
|
60
|
+
});
|
|
57
61
|
}
|
|
58
62
|
componentDidRender() {
|
|
59
63
|
if (this.editor) {
|
|
@@ -25,11 +25,10 @@ export class ArrayFieldTemplate extends React.Component {
|
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
renderItem(item, index) {
|
|
28
|
-
const key = `id_${index}`;
|
|
29
28
|
const { schema, formData, formContext } = this.props;
|
|
30
29
|
if (isObjectType(schema.items)) {
|
|
31
30
|
return React.createElement(CollapsibleItemTemplate, {
|
|
32
|
-
key: key,
|
|
31
|
+
key: item.key,
|
|
33
32
|
item: item,
|
|
34
33
|
data: formData[index],
|
|
35
34
|
schema: schema,
|
|
@@ -38,7 +37,7 @@ export class ArrayFieldTemplate extends React.Component {
|
|
|
38
37
|
});
|
|
39
38
|
}
|
|
40
39
|
return React.createElement(SimpleItemTemplate, {
|
|
41
|
-
key: key,
|
|
40
|
+
key: item.key,
|
|
42
41
|
item: item,
|
|
43
42
|
index: index,
|
|
44
43
|
});
|
|
@@ -11054,6 +11054,10 @@ let CodeEditor = class {
|
|
|
11054
11054
|
this.editor.off('change', this.handleChange);
|
|
11055
11055
|
this.editor = null;
|
|
11056
11056
|
this.darkMode.removeEventListener('change', this.handleChangeDarkMode);
|
|
11057
|
+
const editorElement = this.host.shadowRoot.querySelector('.editor');
|
|
11058
|
+
editorElement === null || editorElement === void 0 ? void 0 : editorElement.childNodes.forEach((child) => {
|
|
11059
|
+
child.remove();
|
|
11060
|
+
});
|
|
11057
11061
|
}
|
|
11058
11062
|
componentDidRender() {
|
|
11059
11063
|
if (this.editor) {
|
|
@@ -23991,11 +23991,10 @@ class ArrayFieldTemplate extends react.Component {
|
|
|
23991
23991
|
});
|
|
23992
23992
|
}
|
|
23993
23993
|
renderItem(item, index) {
|
|
23994
|
-
const key = `id_${index}`;
|
|
23995
23994
|
const { schema, formData, formContext } = this.props;
|
|
23996
23995
|
if (isObjectType(schema.items)) {
|
|
23997
23996
|
return react.createElement(CollapsibleItemTemplate, {
|
|
23998
|
-
key: key,
|
|
23997
|
+
key: item.key,
|
|
23999
23998
|
item: item,
|
|
24000
23999
|
data: formData[index],
|
|
24001
24000
|
schema: schema,
|
|
@@ -24004,7 +24003,7 @@ class ArrayFieldTemplate extends react.Component {
|
|
|
24004
24003
|
});
|
|
24005
24004
|
}
|
|
24006
24005
|
return react.createElement(SimpleItemTemplate, {
|
|
24007
|
-
key: key,
|
|
24006
|
+
key: item.key,
|
|
24008
24007
|
item: item,
|
|
24009
24008
|
index: index,
|
|
24010
24009
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-92146da6.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-33f3e1db",[[1,"limel-picker",{disabled:[4],readonly:[516],label:[1],searchLabel:[1,"search-label"],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"],items:[32],textValue:[32],loading:[32],chips:[32]}]]],["p-041ae00c",[[1,"limel-date-picker",{disabled:[516],readonly:[516],invalid:[516],label:[513],helperText:[513,"helper-text"],required:[516],value:[16],type:[513],format:[513],language:[513],formattedValue:[32],internalFormat:[32],showPortal:[32]}]]],["p-c35874db",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-279b7599",[[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-4b5af81b",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-a1153d2a",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-845e645a",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-510bb5a4",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516]}]]],["p-597cbe05",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-85094bfc",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-227d2c5a",[[1,"limel-popover",{open:[4]}]]],["p-d070f0e7",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-fc30b8e3",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-e28a4246",[[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"]}]]],["p-8d8bd2ab",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],checked:[516],required:[516],modified:[32]}]]],["p-34c7872e",[[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-92146da6.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-33f3e1db",[[1,"limel-picker",{disabled:[4],readonly:[516],label:[1],searchLabel:[1,"search-label"],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"],items:[32],textValue:[32],loading:[32],chips:[32]}]]],["p-041ae00c",[[1,"limel-date-picker",{disabled:[516],readonly:[516],invalid:[516],label:[513],helperText:[513,"helper-text"],required:[516],value:[16],type:[513],format:[513],language:[513],formattedValue:[32],internalFormat:[32],showPortal:[32]}]]],["p-c35874db",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-279b7599",[[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-4b5af81b",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-a1153d2a",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-845e645a",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-510bb5a4",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516]}]]],["p-597cbe05",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-85094bfc",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-227d2c5a",[[1,"limel-popover",{open:[4]}]]],["p-d070f0e7",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-fc30b8e3",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-e28a4246",[[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"]}]]],["p-8d8bd2ab",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],checked:[516],required:[516],modified:[32]}]]],["p-34c7872e",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}]]],["p-c6b97214",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-31fecf5d",[[1,"limel-config",{config:[16]}]]],["p-7476efe0",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-7ed4e81f",[[1,"limel-form",{schema:[16],value:[16],propsFactory:[16]}]]],["p-b386bfeb",[[1,"limel-grid"]]],["p-64549ba6",[[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-03c28bee",[[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-c8c8a946",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-90f3e17c",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-ff0217b3",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-bbc1bb01",[[1,"limel-tooltip",{label:[513],helperLabel:[513,"helper-label"],elementId:[513,"element-id"],open:[32]}]]],["p-1fb5340d",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-e5738ec6",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-df55ee67",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-4932c029",[[1,"limel-popover-surface",{contentCollection:[16]}]]],["p-be56ffab",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-fbe32287",[[1,"limel-input-field",{disabled:[516],readonly:[516],invalid:[516],label:[513],helperText:[513,"helper-text"],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]}],[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1]}]]],["p-b5d6abc3",[[1,"limel-chip-set",{value:[16],type:[513],label:[513],disabled:[516],readonly:[516],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-f4495f59",[[1,"limel-tooltip-content",{label:[513],helperLabel:[513,"helper-label"]}]]],["p-143705b1",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516],relayout:[64]}]]],["p-e881e98d",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-d2c74396",[[1,"limel-badge",{label:[514]}]]],["p-77afe6dd",[[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-8d1ab246",[[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]}]]]],e)));
|