@limetech/lime-elements 35.0.0-next.30 → 35.0.0-next.31
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-form.cjs.entry.js +9 -2
- package/dist/cjs/limel-input-field.cjs.entry.js +1 -1
- package/dist/cjs/limel-list_3.cjs.entry.js +1 -4
- package/dist/cjs/limel-menu-list.cjs.entry.js +1 -4
- package/dist/cjs/limel-picker.cjs.entry.js +1 -4
- package/dist/collection/components/dialog/dialog.js +7 -0
- package/dist/collection/components/input-field/input-field.js +1 -1
- package/dist/collection/components/list/list-renderer.js +1 -4
- package/dist/collection/components/menu-list/menu-list-renderer.js +1 -4
- package/dist/collection/components/picker/picker.js +3 -5
- package/dist/esm/limel-form.entry.js +9 -2
- package/dist/esm/limel-input-field.entry.js +1 -1
- package/dist/esm/limel-list_3.entry.js +1 -4
- package/dist/esm/limel-menu-list.entry.js +1 -4
- package/dist/esm/limel-picker.entry.js +1 -4
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-6ed742c8.entry.js → p-1fef7a86.entry.js} +2 -2
- package/dist/lime-elements/{p-87564750.entry.js → p-e320ba6a.entry.js} +1 -1
- package/dist/types/components/dialog/dialog.d.ts +7 -0
- package/dist/types/components/picker/picker.d.ts +2 -1
- package/package.json +6 -6
|
@@ -1804,8 +1804,6 @@ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
|
1804
1804
|
|
|
1805
1805
|
var ReactPropTypesSecret_1 = ReactPropTypesSecret;
|
|
1806
1806
|
|
|
1807
|
-
Function.call.bind(Object.prototype.hasOwnProperty);
|
|
1808
|
-
|
|
1809
1807
|
function emptyFunction() {}
|
|
1810
1808
|
function emptyFunctionWithReset() {}
|
|
1811
1809
|
emptyFunctionWithReset.resetWarningCache = emptyFunction;
|
|
@@ -1830,6 +1828,7 @@ var factoryWithThrowingShims = function() {
|
|
|
1830
1828
|
// Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
|
|
1831
1829
|
var ReactPropTypes = {
|
|
1832
1830
|
array: shim,
|
|
1831
|
+
bigint: shim,
|
|
1833
1832
|
bool: shim,
|
|
1834
1833
|
func: shim,
|
|
1835
1834
|
number: shim,
|
|
@@ -11703,6 +11702,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11703
11702
|
errorSchema = props.errorSchema,
|
|
11704
11703
|
idPrefix = props.idPrefix,
|
|
11705
11704
|
name = props.name,
|
|
11705
|
+
onChange = props.onChange,
|
|
11706
11706
|
onKeyChange = props.onKeyChange,
|
|
11707
11707
|
onDropPropertyClick = props.onDropPropertyClick,
|
|
11708
11708
|
required = props.required,
|
|
@@ -11779,6 +11779,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11779
11779
|
id: id,
|
|
11780
11780
|
label: label,
|
|
11781
11781
|
hidden: hidden,
|
|
11782
|
+
onChange: onChange,
|
|
11782
11783
|
onKeyChange: onKeyChange,
|
|
11783
11784
|
onDropPropertyClick: onDropPropertyClick,
|
|
11784
11785
|
required: required,
|
|
@@ -11787,6 +11788,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11787
11788
|
displayLabel: displayLabel,
|
|
11788
11789
|
classNames: classNames,
|
|
11789
11790
|
formContext: formContext,
|
|
11791
|
+
formData: formData,
|
|
11790
11792
|
fields: fields,
|
|
11791
11793
|
schema: schema,
|
|
11792
11794
|
uiSchema: uiSchema,
|
|
@@ -21381,6 +21383,7 @@ function optionsList$1(schema) {
|
|
|
21381
21383
|
var value = toConstant$1(schema);
|
|
21382
21384
|
var label = schema.title || String(value);
|
|
21383
21385
|
return {
|
|
21386
|
+
schema: schema,
|
|
21384
21387
|
label: label,
|
|
21385
21388
|
value: value
|
|
21386
21389
|
};
|
|
@@ -27871,6 +27874,7 @@ function optionsList(schema) {
|
|
|
27871
27874
|
var value = toConstant(schema);
|
|
27872
27875
|
var label = schema.title || String(value);
|
|
27873
27876
|
return {
|
|
27877
|
+
schema: schema,
|
|
27874
27878
|
label: label,
|
|
27875
27879
|
value: value
|
|
27876
27880
|
};
|
|
@@ -28702,6 +28706,7 @@ function SchemaFieldRender(props) {
|
|
|
28702
28706
|
errorSchema = props.errorSchema,
|
|
28703
28707
|
idPrefix = props.idPrefix,
|
|
28704
28708
|
name = props.name,
|
|
28709
|
+
onChange = props.onChange,
|
|
28705
28710
|
onKeyChange = props.onKeyChange,
|
|
28706
28711
|
onDropPropertyClick = props.onDropPropertyClick,
|
|
28707
28712
|
required = props.required,
|
|
@@ -28778,6 +28783,7 @@ function SchemaFieldRender(props) {
|
|
|
28778
28783
|
id: id,
|
|
28779
28784
|
label: label,
|
|
28780
28785
|
hidden: hidden,
|
|
28786
|
+
onChange: onChange,
|
|
28781
28787
|
onKeyChange: onKeyChange,
|
|
28782
28788
|
onDropPropertyClick: onDropPropertyClick,
|
|
28783
28789
|
required: required,
|
|
@@ -28786,6 +28792,7 @@ function SchemaFieldRender(props) {
|
|
|
28786
28792
|
displayLabel: displayLabel,
|
|
28787
28793
|
classNames: classNames,
|
|
28788
28794
|
formContext: formContext,
|
|
28795
|
+
formData: formData,
|
|
28789
28796
|
fields: fields,
|
|
28790
28797
|
schema: schema,
|
|
28791
28798
|
uiSchema: uiSchema,
|
|
@@ -573,7 +573,7 @@ let InputField = class {
|
|
|
573
573
|
this.renderPortal = (content = null) => {
|
|
574
574
|
const dropdownZIndex = getComputedStyle(this.limelInputField).getPropertyValue('--dropdown-z-index');
|
|
575
575
|
return (index.h("limel-portal", { visible: this.showCompletions, containerId: this.portalId, inheritParentWidth: true, containerStyle: { 'z-index': dropdownZIndex } }, index.h("limel-menu-surface", { open: this.showCompletions, allowClicksElement: this.limelInputField, style: {
|
|
576
|
-
'--menu-
|
|
576
|
+
'--mdc-menu-min-width': '100%',
|
|
577
577
|
'max-height': 'inherit',
|
|
578
578
|
display: 'flex',
|
|
579
579
|
}, onDismiss: this.handleCloseMenu }, content)));
|
|
@@ -111,10 +111,7 @@ class ListRenderer {
|
|
|
111
111
|
index.h("div", { class: "mdc-deprecated-list-item__secondary-text" }, item.secondaryText)));
|
|
112
112
|
};
|
|
113
113
|
this.isSimpleItem = (item) => {
|
|
114
|
-
|
|
115
|
-
return false;
|
|
116
|
-
}
|
|
117
|
-
return true;
|
|
114
|
+
return !('secondaryText' in item);
|
|
118
115
|
};
|
|
119
116
|
/**
|
|
120
117
|
* Render an icon for a list item
|
|
@@ -702,10 +702,7 @@ class MenuListRenderer {
|
|
|
702
702
|
if ('commandText' in item) {
|
|
703
703
|
return false;
|
|
704
704
|
}
|
|
705
|
-
|
|
706
|
-
return false;
|
|
707
|
-
}
|
|
708
|
-
return true;
|
|
705
|
+
return !('secondaryText' in item);
|
|
709
706
|
};
|
|
710
707
|
/**
|
|
711
708
|
* Render an icon for a list item
|
|
@@ -405,10 +405,7 @@ let Picker = class {
|
|
|
405
405
|
if (this.isFull()) {
|
|
406
406
|
return false;
|
|
407
407
|
}
|
|
408
|
-
|
|
409
|
-
return false;
|
|
410
|
-
}
|
|
411
|
-
return true;
|
|
408
|
+
return !!this.chipSetEditMode;
|
|
412
409
|
}
|
|
413
410
|
getDropdownContent() {
|
|
414
411
|
if (!this.shouldShowDropDownContent()) {
|
|
@@ -12,6 +12,13 @@ import { createRandomString } from '../../util/random-string';
|
|
|
12
12
|
* See the example _Nested `close` events_.
|
|
13
13
|
* :::
|
|
14
14
|
*
|
|
15
|
+
* :::important
|
|
16
|
+
* Are you developing for
|
|
17
|
+
* [Lime CRM](https://www.lime-technologies.com/en/lime-crm/)? Please note that
|
|
18
|
+
* you should use the [DialogService](https://lundalogik.github.io/lime-web-components/versions/latest/#/api/dialog-service)
|
|
19
|
+
* from Lime Web Components to open dialogs in Lime CRM.
|
|
20
|
+
* :::
|
|
21
|
+
*
|
|
15
22
|
* @exampleComponent limel-example-dialog
|
|
16
23
|
* @exampleComponent limel-example-dialog-nested-close-events
|
|
17
24
|
* @exampleComponent limel-example-dialog-heading
|
|
@@ -372,7 +372,7 @@ export class InputField {
|
|
|
372
372
|
const dropdownZIndex = getComputedStyle(this.limelInputField).getPropertyValue('--dropdown-z-index');
|
|
373
373
|
return (h("limel-portal", { visible: this.showCompletions, containerId: this.portalId, inheritParentWidth: true, containerStyle: { 'z-index': dropdownZIndex } },
|
|
374
374
|
h("limel-menu-surface", { open: this.showCompletions, allowClicksElement: this.limelInputField, style: {
|
|
375
|
-
'--menu-
|
|
375
|
+
'--mdc-menu-min-width': '100%',
|
|
376
376
|
'max-height': 'inherit',
|
|
377
377
|
display: 'flex',
|
|
378
378
|
}, onDismiss: this.handleCloseMenu }, content)));
|
|
@@ -88,10 +88,7 @@ export class ListRenderer {
|
|
|
88
88
|
h("div", { class: "mdc-deprecated-list-item__secondary-text" }, item.secondaryText)));
|
|
89
89
|
};
|
|
90
90
|
this.isSimpleItem = (item) => {
|
|
91
|
-
|
|
92
|
-
return false;
|
|
93
|
-
}
|
|
94
|
-
return true;
|
|
91
|
+
return !('secondaryText' in item);
|
|
95
92
|
};
|
|
96
93
|
/**
|
|
97
94
|
* Render an icon for a list item
|
|
@@ -6,12 +6,13 @@ import { createRandomString } from '../../util/random-string';
|
|
|
6
6
|
const SEARCH_DEBOUNCE = 500;
|
|
7
7
|
const CHIP_SET_TAG_NAME = 'limel-chip-set';
|
|
8
8
|
/**
|
|
9
|
-
* @exampleComponent limel-example-picker
|
|
9
|
+
* @exampleComponent limel-example-picker-single
|
|
10
10
|
* @exampleComponent limel-example-picker-multiple
|
|
11
11
|
* @exampleComponent limel-example-picker-icons
|
|
12
12
|
* @exampleComponent limel-example-picker-empty-suggestions
|
|
13
13
|
* @exampleComponent limel-example-picker-leading-icon
|
|
14
14
|
* @exampleComponent limel-example-picker-static-actions
|
|
15
|
+
* @exampleComponent limel-example-picker-composite
|
|
15
16
|
*/
|
|
16
17
|
export class Picker {
|
|
17
18
|
constructor() {
|
|
@@ -186,10 +187,7 @@ export class Picker {
|
|
|
186
187
|
if (this.isFull()) {
|
|
187
188
|
return false;
|
|
188
189
|
}
|
|
189
|
-
|
|
190
|
-
return false;
|
|
191
|
-
}
|
|
192
|
-
return true;
|
|
190
|
+
return !!this.chipSetEditMode;
|
|
193
191
|
}
|
|
194
192
|
getDropdownContent() {
|
|
195
193
|
if (!this.shouldShowDropDownContent()) {
|
|
@@ -1800,8 +1800,6 @@ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
|
1800
1800
|
|
|
1801
1801
|
var ReactPropTypesSecret_1 = ReactPropTypesSecret;
|
|
1802
1802
|
|
|
1803
|
-
Function.call.bind(Object.prototype.hasOwnProperty);
|
|
1804
|
-
|
|
1805
1803
|
function emptyFunction() {}
|
|
1806
1804
|
function emptyFunctionWithReset() {}
|
|
1807
1805
|
emptyFunctionWithReset.resetWarningCache = emptyFunction;
|
|
@@ -1826,6 +1824,7 @@ var factoryWithThrowingShims = function() {
|
|
|
1826
1824
|
// Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
|
|
1827
1825
|
var ReactPropTypes = {
|
|
1828
1826
|
array: shim,
|
|
1827
|
+
bigint: shim,
|
|
1829
1828
|
bool: shim,
|
|
1830
1829
|
func: shim,
|
|
1831
1830
|
number: shim,
|
|
@@ -11699,6 +11698,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11699
11698
|
errorSchema = props.errorSchema,
|
|
11700
11699
|
idPrefix = props.idPrefix,
|
|
11701
11700
|
name = props.name,
|
|
11701
|
+
onChange = props.onChange,
|
|
11702
11702
|
onKeyChange = props.onKeyChange,
|
|
11703
11703
|
onDropPropertyClick = props.onDropPropertyClick,
|
|
11704
11704
|
required = props.required,
|
|
@@ -11775,6 +11775,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11775
11775
|
id: id,
|
|
11776
11776
|
label: label,
|
|
11777
11777
|
hidden: hidden,
|
|
11778
|
+
onChange: onChange,
|
|
11778
11779
|
onKeyChange: onKeyChange,
|
|
11779
11780
|
onDropPropertyClick: onDropPropertyClick,
|
|
11780
11781
|
required: required,
|
|
@@ -11783,6 +11784,7 @@ function SchemaFieldRender$1(props) {
|
|
|
11783
11784
|
displayLabel: displayLabel,
|
|
11784
11785
|
classNames: classNames,
|
|
11785
11786
|
formContext: formContext,
|
|
11787
|
+
formData: formData,
|
|
11786
11788
|
fields: fields,
|
|
11787
11789
|
schema: schema,
|
|
11788
11790
|
uiSchema: uiSchema,
|
|
@@ -21377,6 +21379,7 @@ function optionsList$1(schema) {
|
|
|
21377
21379
|
var value = toConstant$1(schema);
|
|
21378
21380
|
var label = schema.title || String(value);
|
|
21379
21381
|
return {
|
|
21382
|
+
schema: schema,
|
|
21380
21383
|
label: label,
|
|
21381
21384
|
value: value
|
|
21382
21385
|
};
|
|
@@ -27867,6 +27870,7 @@ function optionsList(schema) {
|
|
|
27867
27870
|
var value = toConstant(schema);
|
|
27868
27871
|
var label = schema.title || String(value);
|
|
27869
27872
|
return {
|
|
27873
|
+
schema: schema,
|
|
27870
27874
|
label: label,
|
|
27871
27875
|
value: value
|
|
27872
27876
|
};
|
|
@@ -28698,6 +28702,7 @@ function SchemaFieldRender(props) {
|
|
|
28698
28702
|
errorSchema = props.errorSchema,
|
|
28699
28703
|
idPrefix = props.idPrefix,
|
|
28700
28704
|
name = props.name,
|
|
28705
|
+
onChange = props.onChange,
|
|
28701
28706
|
onKeyChange = props.onKeyChange,
|
|
28702
28707
|
onDropPropertyClick = props.onDropPropertyClick,
|
|
28703
28708
|
required = props.required,
|
|
@@ -28774,6 +28779,7 @@ function SchemaFieldRender(props) {
|
|
|
28774
28779
|
id: id,
|
|
28775
28780
|
label: label,
|
|
28776
28781
|
hidden: hidden,
|
|
28782
|
+
onChange: onChange,
|
|
28777
28783
|
onKeyChange: onKeyChange,
|
|
28778
28784
|
onDropPropertyClick: onDropPropertyClick,
|
|
28779
28785
|
required: required,
|
|
@@ -28782,6 +28788,7 @@ function SchemaFieldRender(props) {
|
|
|
28782
28788
|
displayLabel: displayLabel,
|
|
28783
28789
|
classNames: classNames,
|
|
28784
28790
|
formContext: formContext,
|
|
28791
|
+
formData: formData,
|
|
28785
28792
|
fields: fields,
|
|
28786
28793
|
schema: schema,
|
|
28787
28794
|
uiSchema: uiSchema,
|
|
@@ -569,7 +569,7 @@ let InputField = class {
|
|
|
569
569
|
this.renderPortal = (content = null) => {
|
|
570
570
|
const dropdownZIndex = getComputedStyle(this.limelInputField).getPropertyValue('--dropdown-z-index');
|
|
571
571
|
return (h("limel-portal", { visible: this.showCompletions, containerId: this.portalId, inheritParentWidth: true, containerStyle: { 'z-index': dropdownZIndex } }, h("limel-menu-surface", { open: this.showCompletions, allowClicksElement: this.limelInputField, style: {
|
|
572
|
-
'--menu-
|
|
572
|
+
'--mdc-menu-min-width': '100%',
|
|
573
573
|
'max-height': 'inherit',
|
|
574
574
|
display: 'flex',
|
|
575
575
|
}, onDismiss: this.handleCloseMenu }, content)));
|
|
@@ -107,10 +107,7 @@ class ListRenderer {
|
|
|
107
107
|
h("div", { class: "mdc-deprecated-list-item__secondary-text" }, item.secondaryText)));
|
|
108
108
|
};
|
|
109
109
|
this.isSimpleItem = (item) => {
|
|
110
|
-
|
|
111
|
-
return false;
|
|
112
|
-
}
|
|
113
|
-
return true;
|
|
110
|
+
return !('secondaryText' in item);
|
|
114
111
|
};
|
|
115
112
|
/**
|
|
116
113
|
* Render an icon for a list item
|
|
@@ -698,10 +698,7 @@ class MenuListRenderer {
|
|
|
698
698
|
if ('commandText' in item) {
|
|
699
699
|
return false;
|
|
700
700
|
}
|
|
701
|
-
|
|
702
|
-
return false;
|
|
703
|
-
}
|
|
704
|
-
return true;
|
|
701
|
+
return !('secondaryText' in item);
|
|
705
702
|
};
|
|
706
703
|
/**
|
|
707
704
|
* Render an icon for a list item
|
|
@@ -401,10 +401,7 @@ let Picker = class {
|
|
|
401
401
|
if (this.isFull()) {
|
|
402
402
|
return false;
|
|
403
403
|
}
|
|
404
|
-
|
|
405
|
-
return false;
|
|
406
|
-
}
|
|
407
|
-
return true;
|
|
404
|
+
return !!this.chipSetEditMode;
|
|
408
405
|
}
|
|
409
406
|
getDropdownContent() {
|
|
410
407
|
if (!this.shouldShowDropDownContent()) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-44f9b6d5.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-549190f6",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-9607b6f9",[[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-b808ba3d",[[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-47ef0ebb",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-be351178",[[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-41ec08c9",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-dd62c71b",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-897a7f8a",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-9caf28bd",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516]}]]],["p-0ea1cbf6",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-f777d8a3",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-00d485d8",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-1bacecd5",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-2542b5a3",[[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-8a5ca741",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-a35e6b8a",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}]]],["p-bcaa25e1",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-3bef288b",[[1,"limel-config",{config:[16]}]]],["p-e55144ec",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-
|
|
1
|
+
import{p as e,b as l}from"./p-44f9b6d5.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-549190f6",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-9607b6f9",[[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-b808ba3d",[[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-47ef0ebb",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-be351178",[[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-41ec08c9",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-dd62c71b",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-897a7f8a",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-9caf28bd",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516]}]]],["p-0ea1cbf6",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-f777d8a3",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-00d485d8",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-1bacecd5",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-2542b5a3",[[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-8a5ca741",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-a35e6b8a",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}]]],["p-bcaa25e1",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-3bef288b",[[1,"limel-config",{config:[16]}]]],["p-e55144ec",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-1fef7a86",[[1,"limel-form",{schema:[16],value:[16],disabled:[4],propsFactory:[16],transformErrors:[16],errors:[16]}]]],["p-255084bd",[[1,"limel-grid"]]],["p-70a4d004",[[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-6fc9a0be",[[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-d70f1c00",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-c40f5030",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-062a9599",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-45689f25",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-3f440859",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-75846313",[[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1]}]]],["p-e66816a4",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-63516991",[[1,"limel-popover-surface",{contentCollection:[16]}]]],["p-d5f17adb",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-e320ba6a",[[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]}]]],["p-c5168bda",[[1,"limel-color-picker-palette",{value:[513],label:[513],helperText:[513,"helper-text"],required:[516]}],[1,"limel-popover",{open:[4]}]]],["p-7d4eb67f",[[1,"limel-badge",{label:[514]}]]],["p-4e9869f4",[[1,"limel-chip-set",{value:[16],type:[513],label:[513],helperText:[513,"helper-text"],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-c4e2eb42",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516],relayout:[64]}]]],["p-2550ff27",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-2a7c3c07",[[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]}],[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-e6f39a71",[[1,"limel-tooltip",{elementId:[513,"element-id"],label:[513],helperLabel:[513,"helper-label"],maxlength:[514],open:[32]}],[1,"limel-tooltip-content",{label:[513],helperLabel:[513,"helper-label"],maxlength:[514]}]]]],e)));
|