@limetech/lime-elements 36.1.0-next.13 → 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.
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-portal.cjs.entry.js +60 -49
- package/dist/cjs/limel-shortcut.cjs.entry.js +74 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/shortcut/shortcut.css +91 -0
- package/dist/collection/components/shortcut/shortcut.js +211 -0
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-portal.entry.js +60 -49
- package/dist/esm/limel-shortcut.entry.js +70 -0
- package/dist/esm/loader.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-abce6779.entry.js +1 -0
- package/dist/lime-elements/p-b985362c.entry.js +1 -0
- package/dist/types/components/shortcut/shortcut.d.ts +57 -0
- package/dist/types/components.d.ts +69 -0
- package/package.json +2 -2
- package/dist/lime-elements/p-93cd2268.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
|
+
}
|
|
@@ -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-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-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-
|
|
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
|
});
|
|
@@ -160,38 +160,57 @@ var max = Math.max;
|
|
|
160
160
|
var min = Math.min;
|
|
161
161
|
var round = Math.round;
|
|
162
162
|
|
|
163
|
-
function
|
|
163
|
+
function getUAString() {
|
|
164
|
+
var uaData = navigator.userAgentData;
|
|
165
|
+
|
|
166
|
+
if (uaData != null && uaData.brands) {
|
|
167
|
+
return uaData.brands.map(function (item) {
|
|
168
|
+
return item.brand + "/" + item.version;
|
|
169
|
+
}).join(' ');
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
return navigator.userAgent;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
function isLayoutViewport() {
|
|
176
|
+
return !/^((?!chrome|android).)*safari/i.test(getUAString());
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function getBoundingClientRect(element, includeScale, isFixedStrategy) {
|
|
164
180
|
if (includeScale === void 0) {
|
|
165
181
|
includeScale = false;
|
|
166
182
|
}
|
|
167
183
|
|
|
168
|
-
|
|
184
|
+
if (isFixedStrategy === void 0) {
|
|
185
|
+
isFixedStrategy = false;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
var clientRect = element.getBoundingClientRect();
|
|
169
189
|
var scaleX = 1;
|
|
170
190
|
var scaleY = 1;
|
|
171
191
|
|
|
172
|
-
if (isHTMLElement(element)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
// Fallback to 1 in case both values are `0`
|
|
176
|
-
|
|
177
|
-
if (offsetWidth > 0) {
|
|
178
|
-
scaleX = round(rect.width) / offsetWidth || 1;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
if (offsetHeight > 0) {
|
|
182
|
-
scaleY = round(rect.height) / offsetHeight || 1;
|
|
183
|
-
}
|
|
192
|
+
if (includeScale && isHTMLElement(element)) {
|
|
193
|
+
scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1;
|
|
194
|
+
scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1;
|
|
184
195
|
}
|
|
185
196
|
|
|
197
|
+
var _ref = isElement(element) ? getWindow(element) : window,
|
|
198
|
+
visualViewport = _ref.visualViewport;
|
|
199
|
+
|
|
200
|
+
var addVisualOffsets = !isLayoutViewport() && isFixedStrategy;
|
|
201
|
+
var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;
|
|
202
|
+
var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;
|
|
203
|
+
var width = clientRect.width / scaleX;
|
|
204
|
+
var height = clientRect.height / scaleY;
|
|
186
205
|
return {
|
|
187
|
-
width:
|
|
188
|
-
height:
|
|
189
|
-
top:
|
|
190
|
-
right:
|
|
191
|
-
bottom:
|
|
192
|
-
left:
|
|
193
|
-
x:
|
|
194
|
-
y:
|
|
206
|
+
width: width,
|
|
207
|
+
height: height,
|
|
208
|
+
top: y,
|
|
209
|
+
right: x + width,
|
|
210
|
+
bottom: y + height,
|
|
211
|
+
left: x,
|
|
212
|
+
x: x,
|
|
213
|
+
y: y
|
|
195
214
|
};
|
|
196
215
|
}
|
|
197
216
|
|
|
@@ -286,8 +305,8 @@ function getTrueOffsetParent(element) {
|
|
|
286
305
|
|
|
287
306
|
|
|
288
307
|
function getContainingBlock(element) {
|
|
289
|
-
var isFirefox =
|
|
290
|
-
var isIE =
|
|
308
|
+
var isFirefox = /firefox/i.test(getUAString());
|
|
309
|
+
var isIE = /Trident/i.test(getUAString());
|
|
291
310
|
|
|
292
311
|
if (isIE && isHTMLElement(element)) {
|
|
293
312
|
// In IE 9, 10 and 11 fixed elements containing block is always established by the viewport
|
|
@@ -708,31 +727,21 @@ function getWindowScrollBarX(element) {
|
|
|
708
727
|
return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;
|
|
709
728
|
}
|
|
710
729
|
|
|
711
|
-
function getViewportRect(element) {
|
|
730
|
+
function getViewportRect(element, strategy) {
|
|
712
731
|
var win = getWindow(element);
|
|
713
732
|
var html = getDocumentElement(element);
|
|
714
733
|
var visualViewport = win.visualViewport;
|
|
715
734
|
var width = html.clientWidth;
|
|
716
735
|
var height = html.clientHeight;
|
|
717
736
|
var x = 0;
|
|
718
|
-
var y = 0;
|
|
719
|
-
// can be obscured underneath it.
|
|
720
|
-
// Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even
|
|
721
|
-
// if it isn't open, so if this isn't available, the popper will be detected
|
|
722
|
-
// to overflow the bottom of the screen too early.
|
|
737
|
+
var y = 0;
|
|
723
738
|
|
|
724
739
|
if (visualViewport) {
|
|
725
740
|
width = visualViewport.width;
|
|
726
|
-
height = visualViewport.height;
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
// Feature detection fails in mobile emulation mode in Chrome.
|
|
731
|
-
// Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) <
|
|
732
|
-
// 0.001
|
|
733
|
-
// Fallback here: "Not Safari" userAgent
|
|
734
|
-
|
|
735
|
-
if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {
|
|
741
|
+
height = visualViewport.height;
|
|
742
|
+
var layoutViewport = isLayoutViewport();
|
|
743
|
+
|
|
744
|
+
if (layoutViewport || !layoutViewport && strategy === 'fixed') {
|
|
736
745
|
x = visualViewport.offsetLeft;
|
|
737
746
|
y = visualViewport.offsetTop;
|
|
738
747
|
}
|
|
@@ -826,8 +835,8 @@ function rectToClientRect(rect) {
|
|
|
826
835
|
});
|
|
827
836
|
}
|
|
828
837
|
|
|
829
|
-
function getInnerBoundingClientRect(element) {
|
|
830
|
-
var rect = getBoundingClientRect(element);
|
|
838
|
+
function getInnerBoundingClientRect(element, strategy) {
|
|
839
|
+
var rect = getBoundingClientRect(element, false, strategy === 'fixed');
|
|
831
840
|
rect.top = rect.top + element.clientTop;
|
|
832
841
|
rect.left = rect.left + element.clientLeft;
|
|
833
842
|
rect.bottom = rect.top + element.clientHeight;
|
|
@@ -839,8 +848,8 @@ function getInnerBoundingClientRect(element) {
|
|
|
839
848
|
return rect;
|
|
840
849
|
}
|
|
841
850
|
|
|
842
|
-
function getClientRectFromMixedType(element, clippingParent) {
|
|
843
|
-
return clippingParent === viewport ? rectToClientRect(getViewportRect(element)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent) : rectToClientRect(getDocumentRect(getDocumentElement(element)));
|
|
851
|
+
function getClientRectFromMixedType(element, clippingParent, strategy) {
|
|
852
|
+
return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element)));
|
|
844
853
|
} // A "clipping parent" is an overflowable container with the characteristic of
|
|
845
854
|
// clipping (or hiding) overflowing elements with a position different from
|
|
846
855
|
// `initial`
|
|
@@ -863,18 +872,18 @@ function getClippingParents(element) {
|
|
|
863
872
|
// clipping parents
|
|
864
873
|
|
|
865
874
|
|
|
866
|
-
function getClippingRect(element, boundary, rootBoundary) {
|
|
875
|
+
function getClippingRect(element, boundary, rootBoundary, strategy) {
|
|
867
876
|
var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary);
|
|
868
877
|
var clippingParents = [].concat(mainClippingParents, [rootBoundary]);
|
|
869
878
|
var firstClippingParent = clippingParents[0];
|
|
870
879
|
var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {
|
|
871
|
-
var rect = getClientRectFromMixedType(element, clippingParent);
|
|
880
|
+
var rect = getClientRectFromMixedType(element, clippingParent, strategy);
|
|
872
881
|
accRect.top = max(rect.top, accRect.top);
|
|
873
882
|
accRect.right = min(rect.right, accRect.right);
|
|
874
883
|
accRect.bottom = min(rect.bottom, accRect.bottom);
|
|
875
884
|
accRect.left = max(rect.left, accRect.left);
|
|
876
885
|
return accRect;
|
|
877
|
-
}, getClientRectFromMixedType(element, firstClippingParent));
|
|
886
|
+
}, getClientRectFromMixedType(element, firstClippingParent, strategy));
|
|
878
887
|
clippingRect.width = clippingRect.right - clippingRect.left;
|
|
879
888
|
clippingRect.height = clippingRect.bottom - clippingRect.top;
|
|
880
889
|
clippingRect.x = clippingRect.left;
|
|
@@ -955,6 +964,8 @@ function detectOverflow(state, options) {
|
|
|
955
964
|
var _options = options,
|
|
956
965
|
_options$placement = _options.placement,
|
|
957
966
|
placement = _options$placement === void 0 ? state.placement : _options$placement,
|
|
967
|
+
_options$strategy = _options.strategy,
|
|
968
|
+
strategy = _options$strategy === void 0 ? state.strategy : _options$strategy,
|
|
958
969
|
_options$boundary = _options.boundary,
|
|
959
970
|
boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,
|
|
960
971
|
_options$rootBoundary = _options.rootBoundary,
|
|
@@ -969,7 +980,7 @@ function detectOverflow(state, options) {
|
|
|
969
980
|
var altContext = elementContext === popper ? reference : popper;
|
|
970
981
|
var popperRect = state.rects.popper;
|
|
971
982
|
var element = state.elements[altBoundary ? altContext : elementContext];
|
|
972
|
-
var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);
|
|
983
|
+
var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy);
|
|
973
984
|
var referenceClientRect = getBoundingClientRect(state.elements.reference);
|
|
974
985
|
var popperOffsets = computeOffsets({
|
|
975
986
|
reference: referenceClientRect,
|
|
@@ -1483,7 +1494,7 @@ function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {
|
|
|
1483
1494
|
var isOffsetParentAnElement = isHTMLElement(offsetParent);
|
|
1484
1495
|
var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);
|
|
1485
1496
|
var documentElement = getDocumentElement(offsetParent);
|
|
1486
|
-
var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled);
|
|
1497
|
+
var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed);
|
|
1487
1498
|
var scroll = {
|
|
1488
1499
|
scrollLeft: 0,
|
|
1489
1500
|
scrollTop: 0
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { r as registerInstance, h } from './index-11cd0b60.js';
|
|
2
|
+
|
|
3
|
+
const shortcutCss = ":host(limel-shortcut){--badge-text-color:var(\n --shortcut-badge-text-color,\n rgb(var(--color-white))\n );--badge-background-color:var(\n --shortcut-badge-background-color,\n rgb(var(--color-red-default))\n );position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;row-gap:0.0625rem}:host(limel-shortcut) *{box-sizing:border-box}:host(limel-shortcut[disabled]) a{opacity:0.5;box-shadow:unset;cursor:not-allowed}a{all:unset;transition:background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;box-shadow:var(--button-shadow-normal);cursor:pointer;text-align:center;height:calc(100% - 1rem);width:calc(100% - 1rem);padding:0.5rem;border-radius:var(--shortcut-border-radius, 1rem);background-color:var(--shortcut-background-color, rgb(var(--contrast-100)))}a:hover{box-shadow:var(--button-shadow-hovered)}a:active{box-shadow:var(--button-shadow-pressed);transform:translate3d(0, 0.08rem, 0)}a:focus{outline:none}a:focus-visible{outline:none;box-shadow:var(--shadow-depth-8-focused)}limel-icon{display:flex;height:100%;width:100%;justify-content:center;color:var(--shortcut-icon-color, rgb(var(--contrast-1000)));border-radius:var(--shortcut-border-radius, 1rem)}span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;color:var(--shortcut-label-color, rgb(var(--contrast-1100)));font-size:0.75rem;text-align:center}limel-badge{position:absolute;top:-0.5rem;right:0}";
|
|
4
|
+
|
|
5
|
+
const Shortcut = class {
|
|
6
|
+
constructor(hostRef) {
|
|
7
|
+
registerInstance(this, hostRef);
|
|
8
|
+
/**
|
|
9
|
+
* The text to show below the shortcut. Long label will be truncated.
|
|
10
|
+
*/
|
|
11
|
+
this.label = null;
|
|
12
|
+
/**
|
|
13
|
+
* The `title` tag of the hyperlink, which can be used to
|
|
14
|
+
* provide additional information about the link.
|
|
15
|
+
* It improves accessibility both for sighted users
|
|
16
|
+
* and users with assistive technologies.
|
|
17
|
+
*/
|
|
18
|
+
this.linkTitle = null;
|
|
19
|
+
/**
|
|
20
|
+
* Set to `true` if shortcut is disabled.
|
|
21
|
+
*/
|
|
22
|
+
this.disabled = false;
|
|
23
|
+
/**
|
|
24
|
+
* The url that the shortcut leads to.
|
|
25
|
+
*/
|
|
26
|
+
this.href = null;
|
|
27
|
+
/**
|
|
28
|
+
* Where to load the linked URL, as the name for a browsing context:
|
|
29
|
+
* - `_self`: in the current browsing context. (Default)
|
|
30
|
+
* - `_blank`: in a new tab.
|
|
31
|
+
* - `_parent`: in the parent browsing context of the current one.
|
|
32
|
+
* If no parent, behaves as `_self`.
|
|
33
|
+
* - `_top`: the topmost browsing context (the "highest" context
|
|
34
|
+
* that's an ancestor of the current one). If no ancestors, behaves as `_self`.
|
|
35
|
+
*/
|
|
36
|
+
this.target = '_self';
|
|
37
|
+
this.renderLabel = () => {
|
|
38
|
+
if (this.label) {
|
|
39
|
+
return h("span", { "aria-hidden": "true" }, this.label);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
this.getAreaLabel = () => {
|
|
43
|
+
if (this.label && this.linkTitle) {
|
|
44
|
+
return this.label + '. ' + this.linkTitle;
|
|
45
|
+
}
|
|
46
|
+
if (this.label) {
|
|
47
|
+
return this.label;
|
|
48
|
+
}
|
|
49
|
+
if (this.linkTitle) {
|
|
50
|
+
return this.linkTitle;
|
|
51
|
+
}
|
|
52
|
+
return undefined;
|
|
53
|
+
};
|
|
54
|
+
this.renderNotification = () => {
|
|
55
|
+
if (this.badge) {
|
|
56
|
+
return h("limel-badge", { label: this.badge });
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
render() {
|
|
61
|
+
return [
|
|
62
|
+
h("a", { "aria-disabled": this.disabled, href: this.href, target: this.target, tabindex: "0", "aria-label": this.getAreaLabel(), title: this.linkTitle }, h("limel-icon", { name: this.icon })),
|
|
63
|
+
this.renderLabel(),
|
|
64
|
+
this.renderNotification(),
|
|
65
|
+
];
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
Shortcut.style = shortcutCss;
|
|
69
|
+
|
|
70
|
+
export { Shortcut as limel_shortcut };
|
package/dist/esm/loader.js
CHANGED
|
@@ -10,7 +10,7 @@ const patchEsm = () => {
|
|
|
10
10
|
const defineCustomElements = (win, options) => {
|
|
11
11
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
12
12
|
return patchEsm().then(() => {
|
|
13
|
-
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-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-
|
|
13
|
+
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);
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
|