lime-elements-vue 1.0.0
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/package.json +42 -0
- package/src/components.ts +927 -0
- package/src/index.ts +10 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lime-elements-vue",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./src/index.js",
|
|
6
|
+
"module": "./src/index.js",
|
|
7
|
+
"types": "./src/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./src/index.js",
|
|
11
|
+
"types": "./src/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"src"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"fixup": "node ./post-fix.js",
|
|
19
|
+
"build": "rollup -c"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@limetech/lime-elements": "^38.19.3",
|
|
23
|
+
"@stencil/vue-output-target": "file://../output-targets/packages/vue",
|
|
24
|
+
"vue": "^3.4.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
28
|
+
"@rollup/plugin-node-resolve": "^16.0.2",
|
|
29
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
30
|
+
"@types/node": "^24.0.14",
|
|
31
|
+
"rollup": "^2.79.2",
|
|
32
|
+
"rollup-plugin-css-only": "^4.5.5",
|
|
33
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
34
|
+
"rollup-plugin-vue": "^6.0.0",
|
|
35
|
+
"tslib": "^2.8.1",
|
|
36
|
+
"typescript": "^5.8.3",
|
|
37
|
+
"vue": "^3.5.22"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"vue": "^3.4.0"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,927 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated vue proxies */
|
|
4
|
+
import { defineContainer, type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
|
|
6
|
+
import type { JSX } from '../lime-elements/dist/types/components';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export const Limel3dHoverEffectGlow: StencilVueComponent<JSX.Limel3dHoverEffectGlow> = /*@__PURE__*/ defineContainer<JSX.Limel3dHoverEffectGlow>('limel-3d-hover-effect-glow', () => {});
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export const LimelActionBar: StencilVueComponent<JSX.LimelActionBar> = /*@__PURE__*/ defineContainer<JSX.LimelActionBar>('limel-action-bar', () => {}, [
|
|
15
|
+
'actions',
|
|
16
|
+
'language',
|
|
17
|
+
'accessibleLabel',
|
|
18
|
+
'layout',
|
|
19
|
+
'collapsible',
|
|
20
|
+
'openDirection',
|
|
21
|
+
'itemSelected'
|
|
22
|
+
], [
|
|
23
|
+
'itemSelected'
|
|
24
|
+
]);
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export const LimelActionBarItem: StencilVueComponent<JSX.LimelActionBarItem> = /*@__PURE__*/ defineContainer<JSX.LimelActionBarItem>('limel-action-bar-item', () => {}, [
|
|
28
|
+
'item',
|
|
29
|
+
'isVisible',
|
|
30
|
+
'selected',
|
|
31
|
+
'select'
|
|
32
|
+
], [
|
|
33
|
+
'select'
|
|
34
|
+
]);
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
export const LimelActionBarOverflowMenu: StencilVueComponent<JSX.LimelActionBarOverflowMenu> = /*@__PURE__*/ defineContainer<JSX.LimelActionBarOverflowMenu>('limel-action-bar-overflow-menu', () => {}, [
|
|
38
|
+
'items',
|
|
39
|
+
'openDirection',
|
|
40
|
+
'overFlowIcon',
|
|
41
|
+
'select'
|
|
42
|
+
], [
|
|
43
|
+
'select'
|
|
44
|
+
]);
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
export const LimelAiAvatar: StencilVueComponent<JSX.LimelAiAvatar> = /*@__PURE__*/ defineContainer<JSX.LimelAiAvatar>('limel-ai-avatar', () => {}, [
|
|
48
|
+
'isThinking',
|
|
49
|
+
'language'
|
|
50
|
+
]);
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
export const LimelBadge: StencilVueComponent<JSX.LimelBadge> = /*@__PURE__*/ defineContainer<JSX.LimelBadge>('limel-badge', () => {}, [
|
|
54
|
+
'label'
|
|
55
|
+
]);
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
export const LimelBanner: StencilVueComponent<JSX.LimelBanner> = /*@__PURE__*/ defineContainer<JSX.LimelBanner>('limel-banner', () => {}, [
|
|
59
|
+
'message',
|
|
60
|
+
'icon'
|
|
61
|
+
]);
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
export const LimelBreadcrumbs: StencilVueComponent<JSX.LimelBreadcrumbs> = /*@__PURE__*/ defineContainer<JSX.LimelBreadcrumbs>('limel-breadcrumbs', () => {}, [
|
|
65
|
+
'items',
|
|
66
|
+
'divider',
|
|
67
|
+
'select'
|
|
68
|
+
], [
|
|
69
|
+
'select'
|
|
70
|
+
]);
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
export const LimelButton: StencilVueComponent<JSX.LimelButton> = /*@__PURE__*/ defineContainer<JSX.LimelButton>('limel-button', () => {}, [
|
|
74
|
+
'label',
|
|
75
|
+
'primary',
|
|
76
|
+
'outlined',
|
|
77
|
+
'icon',
|
|
78
|
+
'disabled',
|
|
79
|
+
'loading',
|
|
80
|
+
'loadingFailed'
|
|
81
|
+
]);
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
export const LimelButtonGroup: StencilVueComponent<JSX.LimelButtonGroup> = /*@__PURE__*/ defineContainer<JSX.LimelButtonGroup>('limel-button-group', () => {}, [
|
|
85
|
+
'value',
|
|
86
|
+
'disabled',
|
|
87
|
+
'change'
|
|
88
|
+
], [
|
|
89
|
+
'change'
|
|
90
|
+
]);
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
export const LimelCallout: StencilVueComponent<JSX.LimelCallout> = /*@__PURE__*/ defineContainer<JSX.LimelCallout>('limel-callout', () => {}, [
|
|
94
|
+
'heading',
|
|
95
|
+
'icon',
|
|
96
|
+
'type',
|
|
97
|
+
'language'
|
|
98
|
+
]);
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
export const LimelCard: StencilVueComponent<JSX.LimelCard> = /*@__PURE__*/ defineContainer<JSX.LimelCard>('limel-card', () => {}, [
|
|
102
|
+
'heading',
|
|
103
|
+
'subheading',
|
|
104
|
+
'image',
|
|
105
|
+
'icon',
|
|
106
|
+
'value',
|
|
107
|
+
'actions',
|
|
108
|
+
'clickable',
|
|
109
|
+
'orientation',
|
|
110
|
+
'actionSelected'
|
|
111
|
+
], [
|
|
112
|
+
'actionSelected'
|
|
113
|
+
]);
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
export const LimelChart: StencilVueComponent<JSX.LimelChart> = /*@__PURE__*/ defineContainer<JSX.LimelChart>('limel-chart', () => {}, [
|
|
117
|
+
'language',
|
|
118
|
+
'accessibleLabel',
|
|
119
|
+
'accessibleItemsLabel',
|
|
120
|
+
'items',
|
|
121
|
+
'type',
|
|
122
|
+
'orientation',
|
|
123
|
+
'maxValue',
|
|
124
|
+
'axisIncrement',
|
|
125
|
+
'loading',
|
|
126
|
+
'interact'
|
|
127
|
+
], [
|
|
128
|
+
'interact'
|
|
129
|
+
]);
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
export const LimelCheckbox: StencilVueComponent<JSX.LimelCheckbox, JSX.LimelCheckbox["checked"]> = /*@__PURE__*/ defineContainer<JSX.LimelCheckbox, JSX.LimelCheckbox["checked"]>('limel-checkbox', () => {}, [
|
|
133
|
+
'disabled',
|
|
134
|
+
'readonly',
|
|
135
|
+
'invalid',
|
|
136
|
+
'label',
|
|
137
|
+
'helperText',
|
|
138
|
+
'checked',
|
|
139
|
+
'indeterminate',
|
|
140
|
+
'required',
|
|
141
|
+
'readonlyLabels',
|
|
142
|
+
'change',
|
|
143
|
+
'le-checked'
|
|
144
|
+
], [
|
|
145
|
+
'change',
|
|
146
|
+
'le-checked'
|
|
147
|
+
],
|
|
148
|
+
'checked', 'le-checked', 'detail.checked');
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
export const LimelChip: StencilVueComponent<JSX.LimelChip> = /*@__PURE__*/ defineContainer<JSX.LimelChip>('limel-chip', () => {}, [
|
|
152
|
+
'language',
|
|
153
|
+
'text',
|
|
154
|
+
'icon',
|
|
155
|
+
'image',
|
|
156
|
+
'link',
|
|
157
|
+
'badge',
|
|
158
|
+
'disabled',
|
|
159
|
+
'readonly',
|
|
160
|
+
'selected',
|
|
161
|
+
'invalid',
|
|
162
|
+
'removable',
|
|
163
|
+
'type',
|
|
164
|
+
'loading',
|
|
165
|
+
'progress',
|
|
166
|
+
'identifier',
|
|
167
|
+
'size',
|
|
168
|
+
'menuItems',
|
|
169
|
+
'remove',
|
|
170
|
+
'menuItemSelected'
|
|
171
|
+
], [
|
|
172
|
+
'remove',
|
|
173
|
+
'menuItemSelected'
|
|
174
|
+
]);
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
export const LimelChipSet: StencilVueComponent<JSX.LimelChipSet> = /*@__PURE__*/ defineContainer<JSX.LimelChipSet>('limel-chip-set', () => {}, [
|
|
178
|
+
'value',
|
|
179
|
+
'type',
|
|
180
|
+
'label',
|
|
181
|
+
'helperText',
|
|
182
|
+
'disabled',
|
|
183
|
+
'readonly',
|
|
184
|
+
'invalid',
|
|
185
|
+
'inputType',
|
|
186
|
+
'maxItems',
|
|
187
|
+
'required',
|
|
188
|
+
'searchLabel',
|
|
189
|
+
'emptyInputOnBlur',
|
|
190
|
+
'clearAllButton',
|
|
191
|
+
'leadingIcon',
|
|
192
|
+
'delimiter',
|
|
193
|
+
'autocomplete',
|
|
194
|
+
'language',
|
|
195
|
+
'interact',
|
|
196
|
+
'change',
|
|
197
|
+
'startEdit',
|
|
198
|
+
'stopEdit',
|
|
199
|
+
'input'
|
|
200
|
+
], [
|
|
201
|
+
'interact',
|
|
202
|
+
'change',
|
|
203
|
+
'startEdit',
|
|
204
|
+
'stopEdit',
|
|
205
|
+
'input'
|
|
206
|
+
]);
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
export const LimelCircularProgress: StencilVueComponent<JSX.LimelCircularProgress> = /*@__PURE__*/ defineContainer<JSX.LimelCircularProgress>('limel-circular-progress', () => {}, [
|
|
210
|
+
'value',
|
|
211
|
+
'maxValue',
|
|
212
|
+
'prefix',
|
|
213
|
+
'suffix',
|
|
214
|
+
'displayPercentageColors',
|
|
215
|
+
'size'
|
|
216
|
+
]);
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
export const LimelCodeEditor: StencilVueComponent<JSX.LimelCodeEditor> = /*@__PURE__*/ defineContainer<JSX.LimelCodeEditor>('limel-code-editor', () => {}, [
|
|
220
|
+
'value',
|
|
221
|
+
'language',
|
|
222
|
+
'readonly',
|
|
223
|
+
'lineNumbers',
|
|
224
|
+
'fold',
|
|
225
|
+
'lint',
|
|
226
|
+
'colorScheme',
|
|
227
|
+
'change'
|
|
228
|
+
], [
|
|
229
|
+
'change'
|
|
230
|
+
]);
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
export const LimelCollapsibleSection: StencilVueComponent<JSX.LimelCollapsibleSection> = /*@__PURE__*/ defineContainer<JSX.LimelCollapsibleSection>('limel-collapsible-section', () => {}, [
|
|
234
|
+
'isOpen',
|
|
235
|
+
'header',
|
|
236
|
+
'icon',
|
|
237
|
+
'invalid',
|
|
238
|
+
'actions',
|
|
239
|
+
'language',
|
|
240
|
+
'open',
|
|
241
|
+
'close',
|
|
242
|
+
'action'
|
|
243
|
+
], [
|
|
244
|
+
'open',
|
|
245
|
+
'close',
|
|
246
|
+
'action'
|
|
247
|
+
]);
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
export const LimelColorPicker: StencilVueComponent<JSX.LimelColorPicker> = /*@__PURE__*/ defineContainer<JSX.LimelColorPicker>('limel-color-picker', () => {}, [
|
|
251
|
+
'value',
|
|
252
|
+
'label',
|
|
253
|
+
'helperText',
|
|
254
|
+
'tooltipLabel',
|
|
255
|
+
'required',
|
|
256
|
+
'readonly',
|
|
257
|
+
'change'
|
|
258
|
+
], [
|
|
259
|
+
'change'
|
|
260
|
+
]);
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
export const LimelColorPickerPalette: StencilVueComponent<JSX.LimelColorPickerPalette> = /*@__PURE__*/ defineContainer<JSX.LimelColorPickerPalette>('limel-color-picker-palette', () => {}, [
|
|
264
|
+
'value',
|
|
265
|
+
'label',
|
|
266
|
+
'helperText',
|
|
267
|
+
'required',
|
|
268
|
+
'change'
|
|
269
|
+
], [
|
|
270
|
+
'change'
|
|
271
|
+
]);
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
export const LimelConfig: StencilVueComponent<JSX.LimelConfig> = /*@__PURE__*/ defineContainer<JSX.LimelConfig>('limel-config', () => {}, [
|
|
275
|
+
'config'
|
|
276
|
+
]);
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
export const LimelDatePicker: StencilVueComponent<JSX.LimelDatePicker> = /*@__PURE__*/ defineContainer<JSX.LimelDatePicker>('limel-date-picker', () => {}, [
|
|
280
|
+
'disabled',
|
|
281
|
+
'readonly',
|
|
282
|
+
'invalid',
|
|
283
|
+
'label',
|
|
284
|
+
'placeholder',
|
|
285
|
+
'helperText',
|
|
286
|
+
'required',
|
|
287
|
+
'value',
|
|
288
|
+
'type',
|
|
289
|
+
'format',
|
|
290
|
+
'language',
|
|
291
|
+
'formatter',
|
|
292
|
+
'change'
|
|
293
|
+
], [
|
|
294
|
+
'change'
|
|
295
|
+
]);
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
export const LimelDialog: StencilVueComponent<JSX.LimelDialog> = /*@__PURE__*/ defineContainer<JSX.LimelDialog>('limel-dialog', () => {}, [
|
|
299
|
+
'heading',
|
|
300
|
+
'fullscreen',
|
|
301
|
+
'open',
|
|
302
|
+
'closingActions',
|
|
303
|
+
'close',
|
|
304
|
+
'closing'
|
|
305
|
+
], [
|
|
306
|
+
'close',
|
|
307
|
+
'closing'
|
|
308
|
+
]);
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
export const LimelDock: StencilVueComponent<JSX.LimelDock> = /*@__PURE__*/ defineContainer<JSX.LimelDock>('limel-dock', () => {}, [
|
|
312
|
+
'dockItems',
|
|
313
|
+
'dockFooterItems',
|
|
314
|
+
'accessibleLabel',
|
|
315
|
+
'expanded',
|
|
316
|
+
'allowResize',
|
|
317
|
+
'mobileBreakPoint',
|
|
318
|
+
'itemSelected',
|
|
319
|
+
'menuOpen',
|
|
320
|
+
'close',
|
|
321
|
+
'dockExpanded'
|
|
322
|
+
], [
|
|
323
|
+
'itemSelected',
|
|
324
|
+
'menuOpen',
|
|
325
|
+
'close',
|
|
326
|
+
'dockExpanded'
|
|
327
|
+
]);
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
export const LimelDockButton: StencilVueComponent<JSX.LimelDockButton> = /*@__PURE__*/ defineContainer<JSX.LimelDockButton>('limel-dock-button', () => {}, [
|
|
331
|
+
'item',
|
|
332
|
+
'expanded',
|
|
333
|
+
'useMobileLayout',
|
|
334
|
+
'itemSelected',
|
|
335
|
+
'menuOpen',
|
|
336
|
+
'close'
|
|
337
|
+
], [
|
|
338
|
+
'itemSelected',
|
|
339
|
+
'menuOpen',
|
|
340
|
+
'close'
|
|
341
|
+
]);
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
export const LimelDynamicLabel: StencilVueComponent<JSX.LimelDynamicLabel> = /*@__PURE__*/ defineContainer<JSX.LimelDynamicLabel>('limel-dynamic-label', () => {}, [
|
|
345
|
+
'value',
|
|
346
|
+
'defaultLabel',
|
|
347
|
+
'labels'
|
|
348
|
+
]);
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
export const LimelFile: StencilVueComponent<JSX.LimelFile> = /*@__PURE__*/ defineContainer<JSX.LimelFile>('limel-file', () => {}, [
|
|
352
|
+
'value',
|
|
353
|
+
'label',
|
|
354
|
+
'required',
|
|
355
|
+
'disabled',
|
|
356
|
+
'readonly',
|
|
357
|
+
'invalid',
|
|
358
|
+
'accept',
|
|
359
|
+
'language',
|
|
360
|
+
'change',
|
|
361
|
+
'interact'
|
|
362
|
+
], [
|
|
363
|
+
'change',
|
|
364
|
+
'interact'
|
|
365
|
+
]);
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
export const LimelFileDropzone: StencilVueComponent<JSX.LimelFileDropzone> = /*@__PURE__*/ defineContainer<JSX.LimelFileDropzone>('limel-file-dropzone', () => {}, [
|
|
369
|
+
'accept',
|
|
370
|
+
'disabled',
|
|
371
|
+
'text',
|
|
372
|
+
'helperText',
|
|
373
|
+
'filesSelected',
|
|
374
|
+
'filesRejected'
|
|
375
|
+
], [
|
|
376
|
+
'filesSelected',
|
|
377
|
+
'filesRejected'
|
|
378
|
+
]);
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
export const LimelFileInput: StencilVueComponent<JSX.LimelFileInput> = /*@__PURE__*/ defineContainer<JSX.LimelFileInput>('limel-file-input', () => {}, [
|
|
382
|
+
'accept',
|
|
383
|
+
'disabled',
|
|
384
|
+
'multiple',
|
|
385
|
+
'filesSelected'
|
|
386
|
+
], [
|
|
387
|
+
'filesSelected'
|
|
388
|
+
]);
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
export const LimelFileViewer: StencilVueComponent<JSX.LimelFileViewer> = /*@__PURE__*/ defineContainer<JSX.LimelFileViewer>('limel-file-viewer', () => {}, [
|
|
392
|
+
'url',
|
|
393
|
+
'filename',
|
|
394
|
+
'alt',
|
|
395
|
+
'allowFullscreen',
|
|
396
|
+
'allowOpenInNewTab',
|
|
397
|
+
'allowDownload',
|
|
398
|
+
'language',
|
|
399
|
+
'officeViewer',
|
|
400
|
+
'actions',
|
|
401
|
+
'action'
|
|
402
|
+
], [
|
|
403
|
+
'action'
|
|
404
|
+
]);
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
export const LimelFlatpickrAdapter: StencilVueComponent<JSX.LimelFlatpickrAdapter> = /*@__PURE__*/ defineContainer<JSX.LimelFlatpickrAdapter>('limel-flatpickr-adapter', () => {}, [
|
|
408
|
+
'value',
|
|
409
|
+
'type',
|
|
410
|
+
'format',
|
|
411
|
+
'isOpen',
|
|
412
|
+
'inputElement',
|
|
413
|
+
'language',
|
|
414
|
+
'formatter',
|
|
415
|
+
'change'
|
|
416
|
+
], [
|
|
417
|
+
'change'
|
|
418
|
+
]);
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
export const LimelFlexContainer: StencilVueComponent<JSX.LimelFlexContainer> = /*@__PURE__*/ defineContainer<JSX.LimelFlexContainer>('limel-flex-container', () => {}, [
|
|
422
|
+
'direction',
|
|
423
|
+
'justify',
|
|
424
|
+
'align',
|
|
425
|
+
'reverse'
|
|
426
|
+
]);
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
export const LimelForm: StencilVueComponent<JSX.LimelForm> = /*@__PURE__*/ defineContainer<JSX.LimelForm>('limel-form', () => {}, [
|
|
430
|
+
'schema',
|
|
431
|
+
'value',
|
|
432
|
+
'disabled',
|
|
433
|
+
'propsFactory',
|
|
434
|
+
'transformErrors',
|
|
435
|
+
'errors',
|
|
436
|
+
'change',
|
|
437
|
+
'validate'
|
|
438
|
+
], [
|
|
439
|
+
'change',
|
|
440
|
+
'validate'
|
|
441
|
+
]);
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
export const LimelGrid: StencilVueComponent<JSX.LimelGrid> = /*@__PURE__*/ defineContainer<JSX.LimelGrid>('limel-grid', () => {});
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
export const LimelHeader: StencilVueComponent<JSX.LimelHeader> = /*@__PURE__*/ defineContainer<JSX.LimelHeader>('limel-header', () => {}, [
|
|
448
|
+
'icon',
|
|
449
|
+
'heading',
|
|
450
|
+
'subheading',
|
|
451
|
+
'supportingText',
|
|
452
|
+
'subheadingDivider'
|
|
453
|
+
]);
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
export const LimelHelp: StencilVueComponent<JSX.LimelHelp> = /*@__PURE__*/ defineContainer<JSX.LimelHelp>('limel-help', () => {}, [
|
|
457
|
+
'value',
|
|
458
|
+
'trigger',
|
|
459
|
+
'readMoreLink',
|
|
460
|
+
'openDirection'
|
|
461
|
+
]);
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
export const LimelHelpContent: StencilVueComponent<JSX.LimelHelpContent> = /*@__PURE__*/ defineContainer<JSX.LimelHelpContent>('limel-help-content', () => {}, [
|
|
465
|
+
'value',
|
|
466
|
+
'readMoreLink'
|
|
467
|
+
]);
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
export const LimelHelperLine: StencilVueComponent<JSX.LimelHelperLine> = /*@__PURE__*/ defineContainer<JSX.LimelHelperLine>('limel-helper-line', () => {}, [
|
|
471
|
+
'helperText',
|
|
472
|
+
'length',
|
|
473
|
+
'maxLength',
|
|
474
|
+
'invalid',
|
|
475
|
+
'helperTextId'
|
|
476
|
+
]);
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
export const LimelIcon: StencilVueComponent<JSX.LimelIcon> = /*@__PURE__*/ defineContainer<JSX.LimelIcon>('limel-icon', () => {}, [
|
|
480
|
+
'size',
|
|
481
|
+
'name',
|
|
482
|
+
'badge'
|
|
483
|
+
]);
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
export const LimelIconButton: StencilVueComponent<JSX.LimelIconButton> = /*@__PURE__*/ defineContainer<JSX.LimelIconButton>('limel-icon-button', () => {}, [
|
|
487
|
+
'icon',
|
|
488
|
+
'elevated',
|
|
489
|
+
'label',
|
|
490
|
+
'disabled'
|
|
491
|
+
]);
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
export const LimelInfoTile: StencilVueComponent<JSX.LimelInfoTile> = /*@__PURE__*/ defineContainer<JSX.LimelInfoTile>('limel-info-tile', () => {}, [
|
|
495
|
+
'value',
|
|
496
|
+
'icon',
|
|
497
|
+
'label',
|
|
498
|
+
'prefix',
|
|
499
|
+
'suffix',
|
|
500
|
+
'disabled',
|
|
501
|
+
'badge',
|
|
502
|
+
'loading',
|
|
503
|
+
'link',
|
|
504
|
+
'progress'
|
|
505
|
+
]);
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
export const LimelInputField: StencilVueComponent<JSX.LimelInputField> = /*@__PURE__*/ defineContainer<JSX.LimelInputField>('limel-input-field', () => {}, [
|
|
509
|
+
'disabled',
|
|
510
|
+
'readonly',
|
|
511
|
+
'invalid',
|
|
512
|
+
'label',
|
|
513
|
+
'placeholder',
|
|
514
|
+
'helperText',
|
|
515
|
+
'prefix',
|
|
516
|
+
'suffix',
|
|
517
|
+
'required',
|
|
518
|
+
'value',
|
|
519
|
+
'trailingIcon',
|
|
520
|
+
'leadingIcon',
|
|
521
|
+
'pattern',
|
|
522
|
+
'type',
|
|
523
|
+
'formatNumber',
|
|
524
|
+
'step',
|
|
525
|
+
'max',
|
|
526
|
+
'min',
|
|
527
|
+
'maxlength',
|
|
528
|
+
'minlength',
|
|
529
|
+
'completions',
|
|
530
|
+
'showLink',
|
|
531
|
+
'locale',
|
|
532
|
+
'change',
|
|
533
|
+
'action'
|
|
534
|
+
], [
|
|
535
|
+
'change',
|
|
536
|
+
'action'
|
|
537
|
+
]);
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
export const LimelLinearProgress: StencilVueComponent<JSX.LimelLinearProgress> = /*@__PURE__*/ defineContainer<JSX.LimelLinearProgress>('limel-linear-progress', () => {}, [
|
|
541
|
+
'language',
|
|
542
|
+
'value',
|
|
543
|
+
'indeterminate',
|
|
544
|
+
'accessibleLabel'
|
|
545
|
+
]);
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
export const LimelList: StencilVueComponent<JSX.LimelList> = /*@__PURE__*/ defineContainer<JSX.LimelList>('limel-list', () => {}, [
|
|
549
|
+
'items',
|
|
550
|
+
'badgeIcons',
|
|
551
|
+
'iconSize',
|
|
552
|
+
'type',
|
|
553
|
+
'maxLinesSecondaryText',
|
|
554
|
+
'change',
|
|
555
|
+
'select',
|
|
556
|
+
'interact'
|
|
557
|
+
], [
|
|
558
|
+
'change',
|
|
559
|
+
'select',
|
|
560
|
+
'interact'
|
|
561
|
+
]);
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
export const LimelMarkdown: StencilVueComponent<JSX.LimelMarkdown> = /*@__PURE__*/ defineContainer<JSX.LimelMarkdown>('limel-markdown', () => {}, [
|
|
565
|
+
'value',
|
|
566
|
+
'whitelist',
|
|
567
|
+
'lazyLoadImages'
|
|
568
|
+
]);
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
export const LimelMenu: StencilVueComponent<JSX.LimelMenu> = /*@__PURE__*/ defineContainer<JSX.LimelMenu>('limel-menu', () => {}, [
|
|
572
|
+
'items',
|
|
573
|
+
'disabled',
|
|
574
|
+
'openDirection',
|
|
575
|
+
'surfaceWidth',
|
|
576
|
+
'open',
|
|
577
|
+
'badgeIcons',
|
|
578
|
+
'gridLayout',
|
|
579
|
+
'loading',
|
|
580
|
+
'currentSubMenu',
|
|
581
|
+
'rootItem',
|
|
582
|
+
'searcher',
|
|
583
|
+
'emptyResultMessage',
|
|
584
|
+
'cancel',
|
|
585
|
+
'select',
|
|
586
|
+
'navigateMenu'
|
|
587
|
+
], [
|
|
588
|
+
'cancel',
|
|
589
|
+
'select',
|
|
590
|
+
'navigateMenu'
|
|
591
|
+
]);
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
export const LimelMenuList: StencilVueComponent<JSX.LimelMenuList> = /*@__PURE__*/ defineContainer<JSX.LimelMenuList>('limel-menu-list', () => {}, [
|
|
595
|
+
'items',
|
|
596
|
+
'badgeIcons',
|
|
597
|
+
'iconSize',
|
|
598
|
+
'maxLinesSecondaryText',
|
|
599
|
+
'select',
|
|
600
|
+
'interact'
|
|
601
|
+
], [
|
|
602
|
+
'select',
|
|
603
|
+
'interact'
|
|
604
|
+
]);
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
export const LimelMenuSurface: StencilVueComponent<JSX.LimelMenuSurface> = /*@__PURE__*/ defineContainer<JSX.LimelMenuSurface>('limel-menu-surface', () => {}, [
|
|
608
|
+
'open',
|
|
609
|
+
'allowClicksElement',
|
|
610
|
+
'dismiss'
|
|
611
|
+
], [
|
|
612
|
+
'dismiss'
|
|
613
|
+
]);
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
export const LimelNotchedOutline: StencilVueComponent<JSX.LimelNotchedOutline> = /*@__PURE__*/ defineContainer<JSX.LimelNotchedOutline>('limel-notched-outline', () => {}, [
|
|
617
|
+
'required',
|
|
618
|
+
'readonly',
|
|
619
|
+
'invalid',
|
|
620
|
+
'disabled',
|
|
621
|
+
'label',
|
|
622
|
+
'labelId',
|
|
623
|
+
'hasValue',
|
|
624
|
+
'hasLeadingIcon',
|
|
625
|
+
'hasFloatingLabel'
|
|
626
|
+
]);
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
export const LimelPicker: StencilVueComponent<JSX.LimelPicker> = /*@__PURE__*/ defineContainer<JSX.LimelPicker>('limel-picker', () => {}, [
|
|
630
|
+
'disabled',
|
|
631
|
+
'readonly',
|
|
632
|
+
'label',
|
|
633
|
+
'searchLabel',
|
|
634
|
+
'helperText',
|
|
635
|
+
'leadingIcon',
|
|
636
|
+
'emptyResultMessage',
|
|
637
|
+
'required',
|
|
638
|
+
'invalid',
|
|
639
|
+
'value',
|
|
640
|
+
'searcher',
|
|
641
|
+
'allItems',
|
|
642
|
+
'multiple',
|
|
643
|
+
'delimiter',
|
|
644
|
+
'actions',
|
|
645
|
+
'actionPosition',
|
|
646
|
+
'actionScrollBehavior',
|
|
647
|
+
'badgeIcons',
|
|
648
|
+
'change',
|
|
649
|
+
'interact',
|
|
650
|
+
'action'
|
|
651
|
+
], [
|
|
652
|
+
'change',
|
|
653
|
+
'interact',
|
|
654
|
+
'action'
|
|
655
|
+
]);
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
export const LimelPopover: StencilVueComponent<JSX.LimelPopover> = /*@__PURE__*/ defineContainer<JSX.LimelPopover>('limel-popover', () => {}, [
|
|
659
|
+
'open',
|
|
660
|
+
'openDirection',
|
|
661
|
+
'close'
|
|
662
|
+
], [
|
|
663
|
+
'close'
|
|
664
|
+
]);
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
export const LimelPopoverSurface: StencilVueComponent<JSX.LimelPopoverSurface> = /*@__PURE__*/ defineContainer<JSX.LimelPopoverSurface>('limel-popover-surface', () => {}, [
|
|
668
|
+
'contentCollection'
|
|
669
|
+
]);
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
export const LimelPortal: StencilVueComponent<JSX.LimelPortal> = /*@__PURE__*/ defineContainer<JSX.LimelPortal>('limel-portal', () => {}, [
|
|
673
|
+
'openDirection',
|
|
674
|
+
'position',
|
|
675
|
+
'containerId',
|
|
676
|
+
'containerStyle',
|
|
677
|
+
'inheritParentWidth',
|
|
678
|
+
'visible',
|
|
679
|
+
'anchor'
|
|
680
|
+
]);
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
export const LimelProgressFlow: StencilVueComponent<JSX.LimelProgressFlow> = /*@__PURE__*/ defineContainer<JSX.LimelProgressFlow>('limel-progress-flow', () => {}, [
|
|
684
|
+
'flowItems',
|
|
685
|
+
'disabled',
|
|
686
|
+
'readonly',
|
|
687
|
+
'change'
|
|
688
|
+
], [
|
|
689
|
+
'change'
|
|
690
|
+
]);
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
export const LimelProgressFlowItem: StencilVueComponent<JSX.LimelProgressFlowItem> = /*@__PURE__*/ defineContainer<JSX.LimelProgressFlowItem>('limel-progress-flow-item', () => {}, [
|
|
694
|
+
'item',
|
|
695
|
+
'disabled',
|
|
696
|
+
'readonly',
|
|
697
|
+
'currentStep',
|
|
698
|
+
'interact'
|
|
699
|
+
], [
|
|
700
|
+
'interact'
|
|
701
|
+
]);
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
export const LimelProsemirrorAdapter: StencilVueComponent<JSX.LimelProsemirrorAdapter> = /*@__PURE__*/ defineContainer<JSX.LimelProsemirrorAdapter>('limel-prosemirror-adapter', () => {}, [
|
|
705
|
+
'contentType',
|
|
706
|
+
'value',
|
|
707
|
+
'language',
|
|
708
|
+
'disabled',
|
|
709
|
+
'customElements',
|
|
710
|
+
'triggerCharacters',
|
|
711
|
+
'ui',
|
|
712
|
+
'change',
|
|
713
|
+
'imagePasted',
|
|
714
|
+
'imageRemoved',
|
|
715
|
+
'metadataChange'
|
|
716
|
+
], [
|
|
717
|
+
'change',
|
|
718
|
+
'imagePasted',
|
|
719
|
+
'imageRemoved',
|
|
720
|
+
'metadataChange'
|
|
721
|
+
]);
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
export const LimelSelect: StencilVueComponent<JSX.LimelSelect> = /*@__PURE__*/ defineContainer<JSX.LimelSelect>('limel-select', () => {}, [
|
|
725
|
+
'disabled',
|
|
726
|
+
'readonly',
|
|
727
|
+
'invalid',
|
|
728
|
+
'required',
|
|
729
|
+
'label',
|
|
730
|
+
'helperText',
|
|
731
|
+
'value',
|
|
732
|
+
'options',
|
|
733
|
+
'multiple',
|
|
734
|
+
'change'
|
|
735
|
+
], [
|
|
736
|
+
'change'
|
|
737
|
+
]);
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
export const LimelShortcut: StencilVueComponent<JSX.LimelShortcut> = /*@__PURE__*/ defineContainer<JSX.LimelShortcut>('limel-shortcut', () => {}, [
|
|
741
|
+
'icon',
|
|
742
|
+
'label',
|
|
743
|
+
'disabled',
|
|
744
|
+
'badge',
|
|
745
|
+
'link'
|
|
746
|
+
]);
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
export const LimelSlider: StencilVueComponent<JSX.LimelSlider> = /*@__PURE__*/ defineContainer<JSX.LimelSlider>('limel-slider', () => {}, [
|
|
750
|
+
'disabled',
|
|
751
|
+
'readonly',
|
|
752
|
+
'factor',
|
|
753
|
+
'label',
|
|
754
|
+
'helperText',
|
|
755
|
+
'unit',
|
|
756
|
+
'value',
|
|
757
|
+
'valuemax',
|
|
758
|
+
'valuemin',
|
|
759
|
+
'step',
|
|
760
|
+
'change'
|
|
761
|
+
], [
|
|
762
|
+
'change'
|
|
763
|
+
]);
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
export const LimelSnackbar: StencilVueComponent<JSX.LimelSnackbar> = /*@__PURE__*/ defineContainer<JSX.LimelSnackbar>('limel-snackbar', () => {}, [
|
|
767
|
+
'open',
|
|
768
|
+
'message',
|
|
769
|
+
'timeout',
|
|
770
|
+
'actionText',
|
|
771
|
+
'dismissible',
|
|
772
|
+
'multiline',
|
|
773
|
+
'language',
|
|
774
|
+
'action',
|
|
775
|
+
'hide'
|
|
776
|
+
], [
|
|
777
|
+
'action',
|
|
778
|
+
'hide'
|
|
779
|
+
]);
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
export const LimelSpinner: StencilVueComponent<JSX.LimelSpinner> = /*@__PURE__*/ defineContainer<JSX.LimelSpinner>('limel-spinner', () => {}, [
|
|
783
|
+
'size',
|
|
784
|
+
'limeBranded'
|
|
785
|
+
]);
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
export const LimelSplitButton: StencilVueComponent<JSX.LimelSplitButton> = /*@__PURE__*/ defineContainer<JSX.LimelSplitButton>('limel-split-button', () => {}, [
|
|
789
|
+
'label',
|
|
790
|
+
'primary',
|
|
791
|
+
'icon',
|
|
792
|
+
'disabled',
|
|
793
|
+
'loading',
|
|
794
|
+
'loadingFailed',
|
|
795
|
+
'items',
|
|
796
|
+
'select'
|
|
797
|
+
], [
|
|
798
|
+
'select'
|
|
799
|
+
]);
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
export const LimelSwitch: StencilVueComponent<JSX.LimelSwitch> = /*@__PURE__*/ defineContainer<JSX.LimelSwitch>('limel-switch', () => {}, [
|
|
803
|
+
'label',
|
|
804
|
+
'disabled',
|
|
805
|
+
'readonly',
|
|
806
|
+
'invalid',
|
|
807
|
+
'value',
|
|
808
|
+
'helperText',
|
|
809
|
+
'readonlyLabels',
|
|
810
|
+
'change'
|
|
811
|
+
], [
|
|
812
|
+
'change'
|
|
813
|
+
]);
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
export const LimelTabBar: StencilVueComponent<JSX.LimelTabBar> = /*@__PURE__*/ defineContainer<JSX.LimelTabBar>('limel-tab-bar', () => {}, [
|
|
817
|
+
'tabs',
|
|
818
|
+
'changeTab'
|
|
819
|
+
], [
|
|
820
|
+
'changeTab'
|
|
821
|
+
]);
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
export const LimelTabPanel: StencilVueComponent<JSX.LimelTabPanel> = /*@__PURE__*/ defineContainer<JSX.LimelTabPanel>('limel-tab-panel', () => {}, [
|
|
825
|
+
'tabs',
|
|
826
|
+
'changeTab'
|
|
827
|
+
], [
|
|
828
|
+
'changeTab'
|
|
829
|
+
]);
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
export const LimelTable: StencilVueComponent<JSX.LimelTable> = /*@__PURE__*/ defineContainer<JSX.LimelTable>('limel-table', () => {}, [
|
|
833
|
+
'data',
|
|
834
|
+
'columns',
|
|
835
|
+
'mode',
|
|
836
|
+
'layout',
|
|
837
|
+
'pageSize',
|
|
838
|
+
'totalRows',
|
|
839
|
+
'sorting',
|
|
840
|
+
'activeRow',
|
|
841
|
+
'movableColumns',
|
|
842
|
+
'loading',
|
|
843
|
+
'page',
|
|
844
|
+
'emptyMessage',
|
|
845
|
+
'aggregates',
|
|
846
|
+
'selectable',
|
|
847
|
+
'selection',
|
|
848
|
+
'sort',
|
|
849
|
+
'changePage',
|
|
850
|
+
'load',
|
|
851
|
+
'activate',
|
|
852
|
+
'changeColumns',
|
|
853
|
+
'select',
|
|
854
|
+
'selectAll'
|
|
855
|
+
], [
|
|
856
|
+
'sort',
|
|
857
|
+
'changePage',
|
|
858
|
+
'load',
|
|
859
|
+
'activate',
|
|
860
|
+
'changeColumns',
|
|
861
|
+
'select',
|
|
862
|
+
'selectAll'
|
|
863
|
+
]);
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
export const LimelTextEditor: StencilVueComponent<JSX.LimelTextEditor> = /*@__PURE__*/ defineContainer<JSX.LimelTextEditor>('limel-text-editor', () => {}, [
|
|
867
|
+
'contentType',
|
|
868
|
+
'language',
|
|
869
|
+
'disabled',
|
|
870
|
+
'readonly',
|
|
871
|
+
'helperText',
|
|
872
|
+
'placeholder',
|
|
873
|
+
'label',
|
|
874
|
+
'invalid',
|
|
875
|
+
'value',
|
|
876
|
+
'customElements',
|
|
877
|
+
'triggers',
|
|
878
|
+
'required',
|
|
879
|
+
'allowResize',
|
|
880
|
+
'ui',
|
|
881
|
+
'change',
|
|
882
|
+
'imagePasted',
|
|
883
|
+
'imageRemoved',
|
|
884
|
+
'metadataChange',
|
|
885
|
+
'triggerStart',
|
|
886
|
+
'triggerStop',
|
|
887
|
+
'triggerChange'
|
|
888
|
+
], [
|
|
889
|
+
'change',
|
|
890
|
+
'imagePasted',
|
|
891
|
+
'imageRemoved',
|
|
892
|
+
'metadataChange',
|
|
893
|
+
'triggerStart',
|
|
894
|
+
'triggerStop',
|
|
895
|
+
'triggerChange'
|
|
896
|
+
]);
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
export const LimelTextEditorLinkMenu: StencilVueComponent<JSX.LimelTextEditorLinkMenu> = /*@__PURE__*/ defineContainer<JSX.LimelTextEditorLinkMenu>('limel-text-editor-link-menu', () => {}, [
|
|
900
|
+
'link',
|
|
901
|
+
'language',
|
|
902
|
+
'isOpen',
|
|
903
|
+
'cancel',
|
|
904
|
+
'save',
|
|
905
|
+
'linkChange'
|
|
906
|
+
], [
|
|
907
|
+
'cancel',
|
|
908
|
+
'save',
|
|
909
|
+
'linkChange'
|
|
910
|
+
]);
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
export const LimelTooltip: StencilVueComponent<JSX.LimelTooltip> = /*@__PURE__*/ defineContainer<JSX.LimelTooltip>('limel-tooltip', () => {}, [
|
|
914
|
+
'elementId',
|
|
915
|
+
'label',
|
|
916
|
+
'helperLabel',
|
|
917
|
+
'maxlength',
|
|
918
|
+
'openDirection'
|
|
919
|
+
]);
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
export const LimelTooltipContent: StencilVueComponent<JSX.LimelTooltipContent> = /*@__PURE__*/ defineContainer<JSX.LimelTooltipContent>('limel-tooltip-content', () => {}, [
|
|
923
|
+
'label',
|
|
924
|
+
'helperLabel',
|
|
925
|
+
'maxlength'
|
|
926
|
+
]);
|
|
927
|
+
|
package/src/index.ts
ADDED