@limetech/lime-elements 36.1.0-next.12 → 36.1.0-next.14

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.
Files changed (35) hide show
  1. package/dist/cjs/lime-elements.cjs.js +1 -1
  2. package/dist/cjs/{limel-button.cjs.entry.js → limel-button_2.cjs.entry.js} +132 -1
  3. package/dist/cjs/limel-form.cjs.entry.js +319 -318
  4. package/dist/cjs/limel-portal.cjs.entry.js +60 -49
  5. package/dist/cjs/limel-shortcut.cjs.entry.js +74 -0
  6. package/dist/cjs/limel-split-button.cjs.entry.js +34 -0
  7. package/dist/cjs/loader.cjs.js +1 -1
  8. package/dist/collection/collection-manifest.json +2 -0
  9. package/dist/collection/components/button/button.css +4 -1
  10. package/dist/collection/components/shortcut/shortcut.css +91 -0
  11. package/dist/collection/components/shortcut/shortcut.js +211 -0
  12. package/dist/collection/components/split-button/split-button.css +75 -0
  13. package/dist/collection/components/split-button/split-button.js +170 -0
  14. package/dist/esm/lime-elements.js +1 -1
  15. package/dist/esm/{limel-button.entry.js → limel-button_2.entry.js} +133 -3
  16. package/dist/esm/limel-form.entry.js +319 -318
  17. package/dist/esm/limel-portal.entry.js +60 -49
  18. package/dist/esm/limel-shortcut.entry.js +70 -0
  19. package/dist/esm/limel-split-button.entry.js +30 -0
  20. package/dist/esm/loader.js +1 -1
  21. package/dist/lime-elements/lime-elements.esm.js +1 -1
  22. package/dist/lime-elements/{p-3f388717.entry.js → p-6eb07bc3.entry.js} +3 -3
  23. package/dist/lime-elements/p-7c035e6e.entry.js +1 -0
  24. package/dist/lime-elements/p-abce6779.entry.js +1 -0
  25. package/dist/lime-elements/p-b913df89.entry.js +1 -0
  26. package/dist/lime-elements/p-b985362c.entry.js +1 -0
  27. package/dist/types/components/shortcut/shortcut.d.ts +57 -0
  28. package/dist/types/components/split-button/split-button.d.ts +45 -0
  29. package/dist/types/components.d.ts +126 -0
  30. package/package.json +6 -6
  31. package/dist/cjs/limel-menu.cjs.entry.js +0 -137
  32. package/dist/esm/limel-menu.entry.js +0 -133
  33. package/dist/lime-elements/p-2fc4f4ff.entry.js +0 -1
  34. package/dist/lime-elements/p-93cd2268.entry.js +0 -1
  35. package/dist/lime-elements/p-c59cbd68.entry.js +0 -1
@@ -0,0 +1,211 @@
1
+ import { Component, Prop, h } from '@stencil/core';
2
+ /**
3
+ * This component can be used on places such as a start page or a dashboard.
4
+ * Clicking on the component should navigate the user to a new screen,
5
+ * to which you need to provide a URL, using the `href` property.
6
+ *
7
+ * By default, this navigation will happen within the same browser tab.
8
+ * However, it is possible to override that behavior, using the `target` property.
9
+ *
10
+ * @exampleComponent limel-example-shortcut
11
+ * @exampleComponent limel-example-shortcut-notification
12
+ * @exampleComponent limel-example-shortcut-styling
13
+ * @exampleComponent limel-example-shortcut-with-click-handler
14
+ */
15
+ export class Shortcut {
16
+ constructor() {
17
+ /**
18
+ * The text to show below the shortcut. Long label will be truncated.
19
+ */
20
+ this.label = null;
21
+ /**
22
+ * The `title` tag of the hyperlink, which can be used to
23
+ * provide additional information about the link.
24
+ * It improves accessibility both for sighted users
25
+ * and users with assistive technologies.
26
+ */
27
+ this.linkTitle = null;
28
+ /**
29
+ * Set to `true` if shortcut is disabled.
30
+ */
31
+ this.disabled = false;
32
+ /**
33
+ * The url that the shortcut leads to.
34
+ */
35
+ this.href = null;
36
+ /**
37
+ * Where to load the linked URL, as the name for a browsing context:
38
+ * - `_self`: in the current browsing context. (Default)
39
+ * - `_blank`: in a new tab.
40
+ * - `_parent`: in the parent browsing context of the current one.
41
+ * If no parent, behaves as `_self`.
42
+ * - `_top`: the topmost browsing context (the "highest" context
43
+ * that's an ancestor of the current one). If no ancestors, behaves as `_self`.
44
+ */
45
+ this.target = '_self';
46
+ this.renderLabel = () => {
47
+ if (this.label) {
48
+ return h("span", { "aria-hidden": "true" }, this.label);
49
+ }
50
+ };
51
+ this.getAreaLabel = () => {
52
+ if (this.label && this.linkTitle) {
53
+ return this.label + '. ' + this.linkTitle;
54
+ }
55
+ if (this.label) {
56
+ return this.label;
57
+ }
58
+ if (this.linkTitle) {
59
+ return this.linkTitle;
60
+ }
61
+ return undefined;
62
+ };
63
+ this.renderNotification = () => {
64
+ if (this.badge) {
65
+ return h("limel-badge", { label: this.badge });
66
+ }
67
+ };
68
+ }
69
+ render() {
70
+ return [
71
+ h("a", { "aria-disabled": this.disabled, href: this.href, target: this.target, tabindex: "0", "aria-label": this.getAreaLabel(), title: this.linkTitle },
72
+ h("limel-icon", { name: this.icon })),
73
+ this.renderLabel(),
74
+ this.renderNotification(),
75
+ ];
76
+ }
77
+ static get is() { return "limel-shortcut"; }
78
+ static get encapsulation() { return "shadow"; }
79
+ static get originalStyleUrls() { return {
80
+ "$": ["shortcut.scss"]
81
+ }; }
82
+ static get styleUrls() { return {
83
+ "$": ["shortcut.css"]
84
+ }; }
85
+ static get properties() { return {
86
+ "icon": {
87
+ "type": "string",
88
+ "mutable": false,
89
+ "complexType": {
90
+ "original": "string",
91
+ "resolved": "string",
92
+ "references": {}
93
+ },
94
+ "required": false,
95
+ "optional": false,
96
+ "docs": {
97
+ "tags": [],
98
+ "text": "Name of icon for the shortcut."
99
+ },
100
+ "attribute": "icon",
101
+ "reflect": true
102
+ },
103
+ "label": {
104
+ "type": "string",
105
+ "mutable": false,
106
+ "complexType": {
107
+ "original": "string",
108
+ "resolved": "string",
109
+ "references": {}
110
+ },
111
+ "required": false,
112
+ "optional": true,
113
+ "docs": {
114
+ "tags": [],
115
+ "text": "The text to show below the shortcut. Long label will be truncated."
116
+ },
117
+ "attribute": "label",
118
+ "reflect": true,
119
+ "defaultValue": "null"
120
+ },
121
+ "linkTitle": {
122
+ "type": "string",
123
+ "mutable": false,
124
+ "complexType": {
125
+ "original": "string",
126
+ "resolved": "string",
127
+ "references": {}
128
+ },
129
+ "required": false,
130
+ "optional": true,
131
+ "docs": {
132
+ "tags": [],
133
+ "text": "The `title` tag of the hyperlink, which can be used to\nprovide additional information about the link.\nIt improves accessibility both for sighted users\nand users with assistive technologies."
134
+ },
135
+ "attribute": "link-title",
136
+ "reflect": true,
137
+ "defaultValue": "null"
138
+ },
139
+ "disabled": {
140
+ "type": "boolean",
141
+ "mutable": false,
142
+ "complexType": {
143
+ "original": "boolean",
144
+ "resolved": "boolean",
145
+ "references": {}
146
+ },
147
+ "required": false,
148
+ "optional": true,
149
+ "docs": {
150
+ "tags": [],
151
+ "text": "Set to `true` if shortcut is disabled."
152
+ },
153
+ "attribute": "disabled",
154
+ "reflect": true,
155
+ "defaultValue": "false"
156
+ },
157
+ "href": {
158
+ "type": "string",
159
+ "mutable": false,
160
+ "complexType": {
161
+ "original": "string",
162
+ "resolved": "string",
163
+ "references": {}
164
+ },
165
+ "required": false,
166
+ "optional": true,
167
+ "docs": {
168
+ "tags": [],
169
+ "text": "The url that the shortcut leads to."
170
+ },
171
+ "attribute": "href",
172
+ "reflect": true,
173
+ "defaultValue": "null"
174
+ },
175
+ "target": {
176
+ "type": "string",
177
+ "mutable": false,
178
+ "complexType": {
179
+ "original": "'_self' | '_blank' | '_parent' | '_top'",
180
+ "resolved": "\"_blank\" | \"_parent\" | \"_self\" | \"_top\"",
181
+ "references": {}
182
+ },
183
+ "required": false,
184
+ "optional": false,
185
+ "docs": {
186
+ "tags": [],
187
+ "text": "Where to load the linked URL, as the name for a browsing context:\n- `_self`: in the current browsing context. (Default)\n- `_blank`: in a new tab.\n- `_parent`: in the parent browsing context of the current one.\nIf no parent, behaves as `_self`.\n- `_top`: the topmost browsing context (the \"highest\" context\nthat's an ancestor of the current one). If no ancestors, behaves as `_self`."
188
+ },
189
+ "attribute": "target",
190
+ "reflect": true,
191
+ "defaultValue": "'_self'"
192
+ },
193
+ "badge": {
194
+ "type": "any",
195
+ "mutable": false,
196
+ "complexType": {
197
+ "original": "number | string",
198
+ "resolved": "number | string",
199
+ "references": {}
200
+ },
201
+ "required": false,
202
+ "optional": true,
203
+ "docs": {
204
+ "tags": [],
205
+ "text": "If specified, will display a notification badge\non the shortcut."
206
+ },
207
+ "attribute": "badge",
208
+ "reflect": true
209
+ }
210
+ }; }
211
+ }
@@ -0,0 +1,75 @@
1
+ /*
2
+ * This file is imported into every component!
3
+ *
4
+ * Nothing in this file may output any CSS
5
+ * without being explicitly called by outside code.
6
+ */
7
+ :host(limel-split-button) {
8
+ --button-padding-right: 2rem;
9
+ display: inline-flex;
10
+ isolation: isolate;
11
+ }
12
+ :host(limel-split-button) * {
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ limel-menu {
17
+ display: flex;
18
+ justify-content: flex-end;
19
+ position: relative;
20
+ z-index: 1;
21
+ padding: 0.125rem;
22
+ margin-left: calc(var(--button-padding-right) * -1);
23
+ width: var(--button-padding-right);
24
+ }
25
+ limel-menu:before {
26
+ transition: background-color 0.5s ease;
27
+ content: "";
28
+ position: absolute;
29
+ inset: 0.375rem auto 0.375rem 0.6875rem;
30
+ width: 1px;
31
+ background-color: currentColor;
32
+ opacity: 0.2;
33
+ }
34
+ limel-menu:not([disabled]) {
35
+ color: var(--mdc-theme-primary, rgb(var(--color-teal-default)));
36
+ }
37
+ limel-menu:not([disabled]).primary {
38
+ color: var(--mdc-theme-on-primary, rgb(var(--color-white)));
39
+ }
40
+ limel-menu[disabled] {
41
+ color: rgba(var(--contrast-1600), 0.37);
42
+ }
43
+ limel-menu:hover:before, limel-menu:focus-within:before {
44
+ background-color: transparent;
45
+ }
46
+
47
+ .menu-trigger {
48
+ all: unset;
49
+ text-align: center;
50
+ font-weight: bold;
51
+ border-radius: 0.125rem;
52
+ height: 100%;
53
+ width: 1rem;
54
+ }
55
+ .menu-trigger:not(:disabled) {
56
+ transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
57
+ cursor: pointer;
58
+ }
59
+ .menu-trigger:not(:disabled):hover {
60
+ box-shadow: var(--button-shadow-hovered);
61
+ }
62
+ .menu-trigger:not(:disabled):active {
63
+ box-shadow: var(--button-shadow-pressed);
64
+ transform: translate3d(0, 0.08rem, 0);
65
+ }
66
+ .menu-trigger:not(:disabled):focus {
67
+ outline: none;
68
+ }
69
+ .menu-trigger:not(:disabled):focus-visible {
70
+ outline: none;
71
+ box-shadow: var(--shadow-depth-8-focused);
72
+ }
73
+ .menu-trigger:not(:disabled):focus-visible, .menu-trigger:not(:disabled):hover {
74
+ background-color: rgb(var(--color-white), 0.1);
75
+ }
@@ -0,0 +1,170 @@
1
+ import { Component, Event, Host, h, Prop } from '@stencil/core';
2
+ /**
3
+ * A split button is a button with two components:
4
+ * a button and a side-menu attached to it.
5
+ *
6
+ * Clicking on the button runs a default action,
7
+ * and clicking on the arrow opens up a list of other possible actions.
8
+ *
9
+ * :::warning
10
+ * - Never use a split button for navigation purposes, such as going to next page.
11
+ * The button should only be used for performing commands!
12
+ * - Never use this component instead of a Select or Menu component!
13
+ * :::
14
+ *
15
+ * @exampleComponent limel-example-split-button-basic
16
+ * @exampleComponent limel-example-split-button-repeat-default-command
17
+ */
18
+ export class SplitButton {
19
+ constructor() {
20
+ /**
21
+ * Set to `true` to make the button primary.
22
+ */
23
+ this.primary = false;
24
+ /**
25
+ * Set to `true` to disable the button.
26
+ */
27
+ this.disabled = false;
28
+ /**
29
+ * A list of items and separators to show in the menu.
30
+ */
31
+ this.items = [];
32
+ }
33
+ render() {
34
+ return (h(Host, null,
35
+ h("limel-button", { label: this.label, primary: this.primary, icon: this.icon, disabled: this.disabled }),
36
+ h("limel-menu", { class: {
37
+ primary: this.primary,
38
+ }, disabled: this.disabled, items: this.items, openDirection: "bottom" },
39
+ h("button", { class: "menu-trigger", slot: "trigger", disabled: this.disabled }, "\u22EE"))));
40
+ }
41
+ static get is() { return "limel-split-button"; }
42
+ static get encapsulation() { return "shadow"; }
43
+ static get originalStyleUrls() { return {
44
+ "$": ["split-button.scss"]
45
+ }; }
46
+ static get styleUrls() { return {
47
+ "$": ["split-button.css"]
48
+ }; }
49
+ static get properties() { return {
50
+ "label": {
51
+ "type": "string",
52
+ "mutable": false,
53
+ "complexType": {
54
+ "original": "string",
55
+ "resolved": "string",
56
+ "references": {}
57
+ },
58
+ "required": false,
59
+ "optional": false,
60
+ "docs": {
61
+ "tags": [],
62
+ "text": "The text to show on the default action part of the button."
63
+ },
64
+ "attribute": "label",
65
+ "reflect": true
66
+ },
67
+ "primary": {
68
+ "type": "boolean",
69
+ "mutable": false,
70
+ "complexType": {
71
+ "original": "boolean",
72
+ "resolved": "boolean",
73
+ "references": {}
74
+ },
75
+ "required": false,
76
+ "optional": false,
77
+ "docs": {
78
+ "tags": [],
79
+ "text": "Set to `true` to make the button primary."
80
+ },
81
+ "attribute": "primary",
82
+ "reflect": true,
83
+ "defaultValue": "false"
84
+ },
85
+ "icon": {
86
+ "type": "string",
87
+ "mutable": false,
88
+ "complexType": {
89
+ "original": "string",
90
+ "resolved": "string",
91
+ "references": {}
92
+ },
93
+ "required": false,
94
+ "optional": false,
95
+ "docs": {
96
+ "tags": [],
97
+ "text": "Set icon for the button"
98
+ },
99
+ "attribute": "icon",
100
+ "reflect": true
101
+ },
102
+ "disabled": {
103
+ "type": "boolean",
104
+ "mutable": false,
105
+ "complexType": {
106
+ "original": "boolean",
107
+ "resolved": "boolean",
108
+ "references": {}
109
+ },
110
+ "required": false,
111
+ "optional": false,
112
+ "docs": {
113
+ "tags": [],
114
+ "text": "Set to `true` to disable the button."
115
+ },
116
+ "attribute": "disabled",
117
+ "reflect": true,
118
+ "defaultValue": "false"
119
+ },
120
+ "items": {
121
+ "type": "unknown",
122
+ "mutable": false,
123
+ "complexType": {
124
+ "original": "Array<MenuItem | ListSeparator>",
125
+ "resolved": "(ListSeparator | MenuItem<any>)[]",
126
+ "references": {
127
+ "Array": {
128
+ "location": "global"
129
+ },
130
+ "MenuItem": {
131
+ "location": "import",
132
+ "path": "@limetech/lime-elements"
133
+ },
134
+ "ListSeparator": {
135
+ "location": "import",
136
+ "path": "@limetech/lime-elements"
137
+ }
138
+ }
139
+ },
140
+ "required": false,
141
+ "optional": false,
142
+ "docs": {
143
+ "tags": [],
144
+ "text": "A list of items and separators to show in the menu."
145
+ },
146
+ "defaultValue": "[]"
147
+ }
148
+ }; }
149
+ static get events() { return [{
150
+ "method": "select",
151
+ "name": "select",
152
+ "bubbles": true,
153
+ "cancelable": true,
154
+ "composed": true,
155
+ "docs": {
156
+ "tags": [],
157
+ "text": "Is emitted when a menu item is selected."
158
+ },
159
+ "complexType": {
160
+ "original": "MenuItem",
161
+ "resolved": "MenuItem<any>",
162
+ "references": {
163
+ "MenuItem": {
164
+ "location": "import",
165
+ "path": "@limetech/lime-elements"
166
+ }
167
+ }
168
+ }
169
+ }]; }
170
+ }
@@ -13,5 +13,5 @@ const patchBrowser = () => {
13
13
  };
14
14
 
15
15
  patchBrowser().then(options => {
16
- return bootstrapLazy([["limel-color-picker",[[1,"limel-color-picker",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"tooltipLabel":[513,"tooltip-label"],"required":[516],"readonly":[516],"isOpen":[32]}]]],["limel-dock",[[1,"limel-dock",{"dockItems":[16],"dockFooterItems":[16],"accessibleLabel":[513,"accessible-label"],"expanded":[516],"allowResize":[516,"allow-resize"],"mobileBreakPoint":[514,"mobile-break-point"],"useMobileLayout":[32]}]]],["limel-picker",[[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]}]]],["limel-date-picker",[[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]}]]],["limel-button-group",[[1,"limel-button-group",{"value":[16],"disabled":[516],"selectedButtonId":[32]}]]],["limel-select",[[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]}]]],["limel-tab-panel",[[1,"limel-tab-panel",{"tabs":[1040]}]]],["limel-file",[[1,"limel-file",{"value":[16],"label":[513],"required":[516],"disabled":[516],"readonly":[516],"accept":[513],"language":[1],"isDraggingOverDropZone":[32]}]]],["limel-menu",[[1,"limel-menu",{"items":[16],"disabled":[516],"openDirection":[513,"open-direction"],"open":[1540],"badgeIcons":[516,"badge-icons"],"gridLayout":[516,"grid-layout"]}]]],["limel-button",[[1,"limel-button",{"label":[513],"primary":[516],"outlined":[516],"icon":[513],"disabled":[516],"loading":[516],"loadingFailed":[516,"loading-failed"],"justLoaded":[32]}]]],["limel-collapsible-section",[[1,"limel-collapsible-section",{"isOpen":[1540,"is-open"],"header":[513],"actions":[16]}]]],["limel-dialog",[[1,"limel-dialog",{"heading":[1],"fullscreen":[516],"open":[1540],"closingActions":[16]}]]],["limel-progress-flow",[[1,"limel-progress-flow",{"flowItems":[16],"disabled":[4],"readonly":[4]}]]],["limel-table",[[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]}]]],["limel-banner",[[1,"limel-banner",{"message":[513],"icon":[513],"isOpen":[32],"open":[64],"close":[64]}]]],["limel-circular-progress",[[1,"limel-circular-progress",{"value":[2],"maxValue":[2,"max-value"],"suffix":[1],"displayPercentageColors":[4,"display-percentage-colors"],"size":[513]}]]],["limel-code-editor",[[1,"limel-code-editor",{"value":[1],"language":[1],"readonly":[4],"lineNumbers":[4,"line-numbers"],"fold":[4],"lint":[4],"colorScheme":[1,"color-scheme"],"random":[32]}]]],["limel-config",[[1,"limel-config",{"config":[16]}]]],["limel-flex-container",[[1,"limel-flex-container",{"direction":[513],"justify":[513],"align":[513],"reverse":[516]}]]],["limel-form",[[1,"limel-form",{"schema":[16],"value":[16],"disabled":[4],"propsFactory":[16],"transformErrors":[16],"errors":[16]}]]],["limel-grid",[[1,"limel-grid"]]],["limel-linear-progress",[[1,"limel-linear-progress",{"value":[2],"indeterminate":[4]}]]],["limel-slider",[[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]}]]],["limel-snackbar",[[1,"limel-snackbar",{"message":[1],"timeout":[2],"actionText":[1,"action-text"],"dismissible":[4],"multiline":[4],"language":[1],"show":[64]}]]],["limel-switch",[[1,"limel-switch",{"label":[513],"disabled":[516],"readonly":[516],"value":[516],"fieldId":[32]}]]],["limel-dock-button",[[0,"limel-dock-button",{"item":[16],"expanded":[516],"useMobileLayout":[516,"use-mobile-layout"],"isOpen":[32]}]]],["limel-input-field",[[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]}]]],["limel-color-picker-palette",[[1,"limel-color-picker-palette",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"required":[516]}]]],["limel-tab-bar",[[1,"limel-tab-bar",{"tabs":[1040],"canScrollLeft":[32],"canScrollRight":[32]},[[9,"resize","handleWindowResize"]]]]],["limel-header",[[1,"limel-header",{"icon":[1],"heading":[1],"subheading":[1],"supportingText":[1,"supporting-text"]}]]],["limel-progress-flow-item",[[0,"limel-progress-flow-item",{"item":[16],"disabled":[4],"readonly":[4]}]]],["limel-checkbox",[[1,"limel-checkbox",{"disabled":[516],"readonly":[516],"label":[513],"helperText":[513,"helper-text"],"checked":[516],"indeterminate":[516],"required":[516],"modified":[32]}]]],["limel-flatpickr-adapter",[[1,"limel-flatpickr-adapter",{"value":[16],"type":[1],"format":[1],"isOpen":[4,"is-open"],"inputElement":[16],"language":[1]}]]],["limel-menu-list",[[1,"limel-menu-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"],"type":[1],"maxLinesSecondaryText":[2,"max-lines-secondary-text"]}]]],["limel-badge",[[1,"limel-badge",{"label":[520]}]]],["limel-icon",[[1,"limel-icon",{"size":[513],"name":[513],"badge":[516]}]]],["limel-chip-set",[[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]}]]],["limel-icon-button",[[1,"limel-icon-button",{"icon":[513],"elevated":[516],"label":[513],"disabled":[516]}]]],["limel-spinner",[[1,"limel-spinner",{"size":[513],"limeBranded":[4,"lime-branded"]}]]],["limel-portal",[[1,"limel-portal",{"openDirection":[1,"open-direction"],"position":[1],"containerId":[1,"container-id"],"containerStyle":[16],"parent":[16],"inheritParentWidth":[4,"inherit-parent-width"],"visible":[4]}]]],["limel-list_2",[[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]}]]],["limel-popover_4",[[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]}]]]], options);
16
+ return bootstrapLazy([["limel-color-picker",[[1,"limel-color-picker",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"tooltipLabel":[513,"tooltip-label"],"required":[516],"readonly":[516],"isOpen":[32]}]]],["limel-dock",[[1,"limel-dock",{"dockItems":[16],"dockFooterItems":[16],"accessibleLabel":[513,"accessible-label"],"expanded":[516],"allowResize":[516,"allow-resize"],"mobileBreakPoint":[514,"mobile-break-point"],"useMobileLayout":[32]}]]],["limel-picker",[[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]}]]],["limel-split-button",[[1,"limel-split-button",{"label":[513],"primary":[516],"icon":[513],"disabled":[516],"items":[16]}]]],["limel-date-picker",[[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]}]]],["limel-button-group",[[1,"limel-button-group",{"value":[16],"disabled":[516],"selectedButtonId":[32]}]]],["limel-select",[[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]}]]],["limel-tab-panel",[[1,"limel-tab-panel",{"tabs":[1040]}]]],["limel-file",[[1,"limel-file",{"value":[16],"label":[513],"required":[516],"disabled":[516],"readonly":[516],"accept":[513],"language":[1],"isDraggingOverDropZone":[32]}]]],["limel-collapsible-section",[[1,"limel-collapsible-section",{"isOpen":[1540,"is-open"],"header":[513],"actions":[16]}]]],["limel-dialog",[[1,"limel-dialog",{"heading":[1],"fullscreen":[516],"open":[1540],"closingActions":[16]}]]],["limel-progress-flow",[[1,"limel-progress-flow",{"flowItems":[16],"disabled":[4],"readonly":[4]}]]],["limel-shortcut",[[1,"limel-shortcut",{"icon":[513],"label":[513],"linkTitle":[513,"link-title"],"disabled":[516],"href":[513],"target":[513],"badge":[520]}]]],["limel-dock-button",[[0,"limel-dock-button",{"item":[16],"expanded":[516],"useMobileLayout":[516,"use-mobile-layout"],"isOpen":[32]}]]],["limel-color-picker-palette",[[1,"limel-color-picker-palette",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"required":[516]}]]],["limel-tab-bar",[[1,"limel-tab-bar",{"tabs":[1040],"canScrollLeft":[32],"canScrollRight":[32]},[[9,"resize","handleWindowResize"]]]]],["limel-header",[[1,"limel-header",{"icon":[1],"heading":[1],"subheading":[1],"supportingText":[1,"supporting-text"]}]]],["limel-checkbox",[[1,"limel-checkbox",{"disabled":[516],"readonly":[516],"label":[513],"helperText":[513,"helper-text"],"checked":[516],"indeterminate":[516],"required":[516],"modified":[32]}]]],["limel-table",[[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]}]]],["limel-banner",[[1,"limel-banner",{"message":[513],"icon":[513],"isOpen":[32],"open":[64],"close":[64]}]]],["limel-circular-progress",[[1,"limel-circular-progress",{"value":[2],"maxValue":[2,"max-value"],"suffix":[1],"displayPercentageColors":[4,"display-percentage-colors"],"size":[513]}]]],["limel-code-editor",[[1,"limel-code-editor",{"value":[1],"language":[1],"readonly":[4],"lineNumbers":[4,"line-numbers"],"fold":[4],"lint":[4],"colorScheme":[1,"color-scheme"],"random":[32]}]]],["limel-config",[[1,"limel-config",{"config":[16]}]]],["limel-flex-container",[[1,"limel-flex-container",{"direction":[513],"justify":[513],"align":[513],"reverse":[516]}]]],["limel-form",[[1,"limel-form",{"schema":[16],"value":[16],"disabled":[4],"propsFactory":[16],"transformErrors":[16],"errors":[16]}]]],["limel-grid",[[1,"limel-grid"]]],["limel-linear-progress",[[1,"limel-linear-progress",{"value":[2],"indeterminate":[4]}]]],["limel-slider",[[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]}]]],["limel-snackbar",[[1,"limel-snackbar",{"message":[1],"timeout":[2],"actionText":[1,"action-text"],"dismissible":[4],"multiline":[4],"language":[1],"show":[64]}]]],["limel-switch",[[1,"limel-switch",{"label":[513],"disabled":[516],"readonly":[516],"value":[516],"fieldId":[32]}]]],["limel-progress-flow-item",[[0,"limel-progress-flow-item",{"item":[16],"disabled":[4],"readonly":[4]}]]],["limel-flatpickr-adapter",[[1,"limel-flatpickr-adapter",{"value":[16],"type":[1],"format":[1],"isOpen":[4,"is-open"],"inputElement":[16],"language":[1]}]]],["limel-menu-list",[[1,"limel-menu-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"],"type":[1],"maxLinesSecondaryText":[2,"max-lines-secondary-text"]}]]],["limel-button_2",[[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]}]]],["limel-badge",[[1,"limel-badge",{"label":[520]}]]],["limel-icon",[[1,"limel-icon",{"size":[513],"name":[513],"badge":[516]}]]],["limel-chip-set",[[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]}]]],["limel-portal",[[1,"limel-portal",{"openDirection":[1,"open-direction"],"position":[1],"containerId":[1,"container-id"],"containerStyle":[16],"parent":[16],"inheritParentWidth":[4,"inherit-parent-width"],"visible":[4]}]]],["limel-input-field",[[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]}]]],["limel-icon-button",[[1,"limel-icon-button",{"icon":[513],"elevated":[516],"label":[513],"disabled":[516]}]]],["limel-spinner",[[1,"limel-spinner",{"size":[513],"limeBranded":[4,"lime-branded"]}]]],["limel-list_2",[[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]}]]],["limel-popover_4",[[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]}]]]], options);
17
17
  });