@limetech/lime-elements 36.2.0-next.5 → 36.2.0-next.7

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.
@@ -29049,7 +29049,7 @@ class SchemaField extends react.Component {
29049
29049
  errorSchema: errorSchema,
29050
29050
  rootValue: registry.formContext.rootValue,
29051
29051
  name: name,
29052
- schemaPath: this.getSchemaPath(idSchema.$id),
29052
+ schemaPath: this.getSchemaPath(idSchema === null || idSchema === void 0 ? void 0 : idSchema.$id),
29053
29053
  } });
29054
29054
  }
29055
29055
  renderCustomComponent(props) {
@@ -29082,6 +29082,9 @@ class SchemaField extends react.Component {
29082
29082
  * // => ['sections', '0', 'controls', '0', 'name']
29083
29083
  */
29084
29084
  getSchemaPath(schemaId) {
29085
+ if (schemaId === undefined) {
29086
+ return undefined;
29087
+ }
29085
29088
  return schemaId.replace('root_', '').split('_');
29086
29089
  }
29087
29090
  }
@@ -374,7 +374,7 @@ const SelectDropdown = (props) => {
374
374
  return index.h(MenuDropdown, Object.assign({}, props));
375
375
  };
376
376
  const MenuDropdown = (props) => {
377
- const items = createMenuItems(props.options, props.value);
377
+ const items = createMenuItems(props.options, props.value, props.required);
378
378
  return (index.h("limel-portal", { containerId: props.id, visible: props.isOpen, inheritParentWidth: true, containerStyle: { 'z-index': props.dropdownZIndex } },
379
379
  index.h("limel-menu-surface", { open: props.isOpen, onDismiss: props.close, style: {
380
380
  '--mdc-menu-min-width': '100%',
@@ -397,8 +397,9 @@ function isSelected(option, value) {
397
397
  }
398
398
  return option.value === value.value;
399
399
  }
400
- function createMenuItems(options, value) {
401
- return options.map((option) => {
400
+ function createMenuItems(options, value, selectIsRequired = false) {
401
+ const menuOptionFilter = getMenuOptionFilter(selectIsRequired);
402
+ return options.filter(menuOptionFilter).map((option) => {
402
403
  const selected = isSelected(option, value);
403
404
  const { text, disabled } = option;
404
405
  return {
@@ -411,6 +412,22 @@ function createMenuItems(options, value) {
411
412
  };
412
413
  });
413
414
  }
415
+ function getMenuOptionFilter(selectIsRequired) {
416
+ return (option) => {
417
+ if (!selectIsRequired) {
418
+ // If the select component is NOT required, we keep all options.
419
+ return true;
420
+ }
421
+ if (option.text) {
422
+ // If the select component IS required, we keep only options
423
+ // that are not "empty". We only check the text property, because
424
+ // some systems use an "empty option" that will have a value for
425
+ // the `value` property, to signify "no option selected". Such
426
+ // an option should be treated as "empty".
427
+ return true;
428
+ }
429
+ };
430
+ }
414
431
  function getSelectedText(value, readonly) {
415
432
  if ((!value || (multiple.isMultiple(value) && !value.length)) && readonly) {
416
433
  return '–';
@@ -26,7 +26,6 @@ const nativeFormatForType = {
26
26
  };
27
27
  // tslint:enable:no-duplicate-string
28
28
  /**
29
- * @exampleComponent limel-example-date-picker-composite
30
29
  * @exampleComponent limel-example-date-picker-datetime
31
30
  * @exampleComponent limel-example-date-picker-date
32
31
  * @exampleComponent limel-example-date-picker-time
@@ -36,6 +35,7 @@ const nativeFormatForType = {
36
35
  * @exampleComponent limel-example-date-picker-year
37
36
  * @exampleComponent limel-example-date-picker-formatted
38
37
  * @exampleComponent limel-example-date-picker-programmatic-change
38
+ * @exampleComponent limel-example-date-picker-composite
39
39
  */
40
40
  export class DatePicker {
41
41
  constructor() {
@@ -6,7 +6,6 @@ import { h } from '@stencil/core';
6
6
  *
7
7
  * @deprecated
8
8
  * @private
9
- * @exampleComponent limel-example-flex-container
10
9
  * @slot - Container content
11
10
  */
12
11
  export class FlexContainer {
@@ -154,7 +154,7 @@ export class SchemaField extends React.Component {
154
154
  errorSchema: errorSchema,
155
155
  rootValue: registry.formContext.rootValue,
156
156
  name: name,
157
- schemaPath: this.getSchemaPath(idSchema.$id),
157
+ schemaPath: this.getSchemaPath(idSchema === null || idSchema === void 0 ? void 0 : idSchema.$id),
158
158
  } });
159
159
  }
160
160
  renderCustomComponent(props) {
@@ -187,6 +187,9 @@ export class SchemaField extends React.Component {
187
187
  * // => ['sections', '0', 'controls', '0', 'name']
188
188
  */
189
189
  getSchemaPath(schemaId) {
190
+ if (schemaId === undefined) {
191
+ return undefined;
192
+ }
190
193
  return schemaId.replace('root_', '').split('_');
191
194
  }
192
195
  }
@@ -10,8 +10,7 @@ import { SelectTemplate } from './select.template';
10
10
  * @exampleComponent limel-example-select
11
11
  * @exampleComponent limel-example-select-with-icons
12
12
  * @exampleComponent limel-example-select-multiple
13
- * @exampleComponent limel-example-select-initially-empty
14
- * @exampleComponent limel-example-select-initially-empty-required
13
+ * @exampleComponent limel-example-select-with-empty-option
15
14
  * @exampleComponent limel-example-select-preselected
16
15
  * @exampleComponent limel-example-select-change-options
17
16
  * @exampleComponent limel-example-select-narrow
@@ -63,7 +63,7 @@ const SelectDropdown = (props) => {
63
63
  return h(MenuDropdown, Object.assign({}, props));
64
64
  };
65
65
  const MenuDropdown = (props) => {
66
- const items = createMenuItems(props.options, props.value);
66
+ const items = createMenuItems(props.options, props.value, props.required);
67
67
  return (h("limel-portal", { containerId: props.id, visible: props.isOpen, inheritParentWidth: true, containerStyle: { 'z-index': props.dropdownZIndex } }, h("limel-menu-surface", { open: props.isOpen, onDismiss: props.close, style: {
68
68
  '--mdc-menu-min-width': '100%',
69
69
  'max-height': 'inherit',
@@ -84,8 +84,9 @@ function isSelected(option, value) {
84
84
  }
85
85
  return option.value === value.value;
86
86
  }
87
- function createMenuItems(options, value) {
88
- return options.map((option) => {
87
+ function createMenuItems(options, value, selectIsRequired = false) {
88
+ const menuOptionFilter = getMenuOptionFilter(selectIsRequired);
89
+ return options.filter(menuOptionFilter).map((option) => {
89
90
  const selected = isSelected(option, value);
90
91
  const { text, disabled } = option;
91
92
  return {
@@ -98,6 +99,22 @@ function createMenuItems(options, value) {
98
99
  };
99
100
  });
100
101
  }
102
+ function getMenuOptionFilter(selectIsRequired) {
103
+ return (option) => {
104
+ if (!selectIsRequired) {
105
+ // If the select component is NOT required, we keep all options.
106
+ return true;
107
+ }
108
+ if (option.text) {
109
+ // If the select component IS required, we keep only options
110
+ // that are not "empty". We only check the text property, because
111
+ // some systems use an "empty option" that will have a value for
112
+ // the `value` property, to signify "no option selected". Such
113
+ // an option should be treated as "empty".
114
+ return true;
115
+ }
116
+ };
117
+ }
101
118
  function getSelectedText(value, readonly) {
102
119
  if ((!value || (isMultiple(value) && !value.length)) && readonly) {
103
120
  return '–';
@@ -29045,7 +29045,7 @@ class SchemaField extends react.Component {
29045
29045
  errorSchema: errorSchema,
29046
29046
  rootValue: registry.formContext.rootValue,
29047
29047
  name: name,
29048
- schemaPath: this.getSchemaPath(idSchema.$id),
29048
+ schemaPath: this.getSchemaPath(idSchema === null || idSchema === void 0 ? void 0 : idSchema.$id),
29049
29049
  } });
29050
29050
  }
29051
29051
  renderCustomComponent(props) {
@@ -29078,6 +29078,9 @@ class SchemaField extends react.Component {
29078
29078
  * // => ['sections', '0', 'controls', '0', 'name']
29079
29079
  */
29080
29080
  getSchemaPath(schemaId) {
29081
+ if (schemaId === undefined) {
29082
+ return undefined;
29083
+ }
29081
29084
  return schemaId.replace('root_', '').split('_');
29082
29085
  }
29083
29086
  }
@@ -370,7 +370,7 @@ const SelectDropdown = (props) => {
370
370
  return h(MenuDropdown, Object.assign({}, props));
371
371
  };
372
372
  const MenuDropdown = (props) => {
373
- const items = createMenuItems(props.options, props.value);
373
+ const items = createMenuItems(props.options, props.value, props.required);
374
374
  return (h("limel-portal", { containerId: props.id, visible: props.isOpen, inheritParentWidth: true, containerStyle: { 'z-index': props.dropdownZIndex } },
375
375
  h("limel-menu-surface", { open: props.isOpen, onDismiss: props.close, style: {
376
376
  '--mdc-menu-min-width': '100%',
@@ -393,8 +393,9 @@ function isSelected(option, value) {
393
393
  }
394
394
  return option.value === value.value;
395
395
  }
396
- function createMenuItems(options, value) {
397
- return options.map((option) => {
396
+ function createMenuItems(options, value, selectIsRequired = false) {
397
+ const menuOptionFilter = getMenuOptionFilter(selectIsRequired);
398
+ return options.filter(menuOptionFilter).map((option) => {
398
399
  const selected = isSelected(option, value);
399
400
  const { text, disabled } = option;
400
401
  return {
@@ -407,6 +408,22 @@ function createMenuItems(options, value) {
407
408
  };
408
409
  });
409
410
  }
411
+ function getMenuOptionFilter(selectIsRequired) {
412
+ return (option) => {
413
+ if (!selectIsRequired) {
414
+ // If the select component is NOT required, we keep all options.
415
+ return true;
416
+ }
417
+ if (option.text) {
418
+ // If the select component IS required, we keep only options
419
+ // that are not "empty". We only check the text property, because
420
+ // some systems use an "empty option" that will have a value for
421
+ // the `value` property, to signify "no option selected". Such
422
+ // an option should be treated as "empty".
423
+ return true;
424
+ }
425
+ };
426
+ }
410
427
  function getSelectedText(value, readonly) {
411
428
  if ((!value || (isMultiple(value) && !value.length)) && readonly) {
412
429
  return '–';
@@ -1 +1 @@
1
- import{p as e,b as l}from"./p-d4e788e1.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-9984b31c",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-e4bca82b",[[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-cad7cda1",[[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-4fc38050",[[1,"limel-split-button",{label:[513],primary:[516],icon:[513],disabled:[516],items:[16]}]]],["p-d512656b",[[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-84a137a7",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-9ea8dd5c",[[1,"limel-info-tile",{value:[520],icon:[1],label:[513],prefix:[513],suffix:[513],disabled:[516],badge:[520],loading:[516],link:[16],progress:[16]}]]],["p-97befd31",[[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-06f2f6b4",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-d1187867",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-15c2eb16",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-8ab597a8",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-35a6ab13",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-e6f84d68",[[1,"limel-shortcut",{icon:[513],label:[513],disabled:[516],badge:[520],link:[16]}]]],["p-e7bb664f",[[1,"limel-table",{data:[16],columns:[16],mode:[1],layout:[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-de161bb5",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-6534e16a",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],fold:[4],lint:[4],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-6c38b505",[[1,"limel-config",{config:[16]}]]],["p-5338663b",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-0db5c143",[[1,"limel-form",{schema:[16],value:[16],disabled:[4],propsFactory:[16],transformErrors:[16],errors:[16]}]]],["p-82cd7bb6",[[1,"limel-grid"]]],["p-15ca0d70",[[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-9bd76629",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-4eda8b67",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-75d01713",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-768b7cbb",[[0,"limel-dock-button",{item:[16],expanded:[516],useMobileLayout:[516,"use-mobile-layout"],isOpen:[32]}]]],["p-d8e5a9ee",[[1,"limel-color-picker-palette",{value:[513],label:[513],helperText:[513,"helper-text"],required:[516]}]]],["p-059e0a64",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516]}]]],["p-8fb83e83",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-5f13035a",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-cfaa685f",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-12a7453b",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-5f29f099",[[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1]}]]],["p-36a3b897",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}],[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516],loadingFailed:[516,"loading-failed"],justLoaded:[32]}]]],["p-5ce60a32",[[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-21058db5",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],prefix:[513],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}],[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-c90fc327",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-90961075",[[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-e88f7922",[[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-16eb9071",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-600464a9",[[1,"limel-badge",{label:[520]}]]],["p-dc030055",[[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-6a4a5ddd",[[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)));
1
+ import{p as e,b as l}from"./p-d4e788e1.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-9984b31c",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-e4bca82b",[[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-cad7cda1",[[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-4fc38050",[[1,"limel-split-button",{label:[513],primary:[516],icon:[513],disabled:[516],items:[16]}]]],["p-d512656b",[[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-84a137a7",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-9ea8dd5c",[[1,"limel-info-tile",{value:[520],icon:[1],label:[513],prefix:[513],suffix:[513],disabled:[516],badge:[520],loading:[516],link:[16],progress:[16]}]]],["p-fa0d0733",[[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-06f2f6b4",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-d1187867",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-15c2eb16",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-8ab597a8",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-35a6ab13",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-e6f84d68",[[1,"limel-shortcut",{icon:[513],label:[513],disabled:[516],badge:[520],link:[16]}]]],["p-e7bb664f",[[1,"limel-table",{data:[16],columns:[16],mode:[1],layout:[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-de161bb5",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-6534e16a",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],fold:[4],lint:[4],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-6c38b505",[[1,"limel-config",{config:[16]}]]],["p-5338663b",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-e1ab52f4",[[1,"limel-form",{schema:[16],value:[16],disabled:[4],propsFactory:[16],transformErrors:[16],errors:[16]}]]],["p-82cd7bb6",[[1,"limel-grid"]]],["p-15ca0d70",[[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-9bd76629",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-4eda8b67",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-75d01713",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-768b7cbb",[[0,"limel-dock-button",{item:[16],expanded:[516],useMobileLayout:[516,"use-mobile-layout"],isOpen:[32]}]]],["p-d8e5a9ee",[[1,"limel-color-picker-palette",{value:[513],label:[513],helperText:[513,"helper-text"],required:[516]}]]],["p-059e0a64",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516]}]]],["p-8fb83e83",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-5f13035a",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-cfaa685f",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-12a7453b",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-5f29f099",[[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1]}]]],["p-36a3b897",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}],[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516],loadingFailed:[516,"loading-failed"],justLoaded:[32]}]]],["p-5ce60a32",[[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-21058db5",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],prefix:[513],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}],[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-c90fc327",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-90961075",[[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-e88f7922",[[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-16eb9071",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-600464a9",[[1,"limel-badge",{label:[520]}]]],["p-dc030055",[[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-6a4a5ddd",[[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)));