lime-elements-vue 1.0.8 → 1.1.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/README.md +95 -90
- package/dist/index.cjs.js +1965 -23
- package/dist/index.d.ts +6558 -7
- package/dist/index.esm.js +128513 -0
- package/package.json +43 -20
- package/LICENSE +0 -22
- package/dist/components.d.ts +0 -72
- package/dist/components.js +0 -766
- package/dist/index.js +0 -14
package/package.json
CHANGED
|
@@ -1,38 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lime-elements-vue",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Vue 3 wrapper for
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Vue 3 wrapper for Lime Elements web components",
|
|
5
|
+
"author": "Lime Technologies",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"type": "module",
|
|
5
8
|
"main": "dist/index.cjs.js",
|
|
6
|
-
"module": "dist/index.js",
|
|
9
|
+
"module": "dist/index.esm.js",
|
|
7
10
|
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.esm.js",
|
|
15
|
+
"require": "./dist/index.cjs.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
8
18
|
"files": [
|
|
9
19
|
"dist/"
|
|
10
20
|
],
|
|
11
21
|
"scripts": {
|
|
12
|
-
"build": "
|
|
13
|
-
"
|
|
22
|
+
"build": "python3 build.py",
|
|
23
|
+
"bundle": "vite build",
|
|
24
|
+
"dev": "cd demo && npm run dev",
|
|
25
|
+
"clean": "python3 build.py --clean",
|
|
26
|
+
"prepublishOnly": "python3 build.py"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"vue": "^3.3.0"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@stencil/vue-output-target": "^0.14.0",
|
|
33
|
+
"@types/json-schema": "^7.0.15"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
37
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
38
|
+
"@semantic-release/git": "^10.0.1",
|
|
39
|
+
"@stencil/core": "^4.43.5",
|
|
40
|
+
"@stencil/sass": "^3.0.12",
|
|
41
|
+
"@types/node": "^20.11.0",
|
|
42
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
43
|
+
"semantic-release": "^24.0.0",
|
|
44
|
+
"typescript": "^5.3.3",
|
|
45
|
+
"vite": "^5.0.12",
|
|
46
|
+
"vite-plugin-dts": "^3.7.2",
|
|
47
|
+
"vue": "^3.4.15"
|
|
14
48
|
},
|
|
15
49
|
"repository": {
|
|
16
50
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/
|
|
51
|
+
"url": "git+https://github.com/Lundalogik/lime-elements-vue.git"
|
|
18
52
|
},
|
|
19
53
|
"keywords": [
|
|
54
|
+
"lime",
|
|
55
|
+
"lime-elements",
|
|
20
56
|
"vue",
|
|
21
57
|
"vue3",
|
|
22
58
|
"web-components",
|
|
23
|
-
"lime-elements",
|
|
24
59
|
"stencil"
|
|
25
|
-
]
|
|
26
|
-
"author": "Your Name",
|
|
27
|
-
"license": "MIT",
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@limetech/lime-elements": "^38.28.0",
|
|
30
|
-
"@stencil/vue-output-target": "^0.11.8"
|
|
31
|
-
},
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"vue": "^3.5.22"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"typescript": "^5.9.3"
|
|
37
|
-
}
|
|
60
|
+
]
|
|
38
61
|
}
|
package/LICENSE
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 [Your Name]
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
22
|
-
|
package/dist/components.d.ts
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
2
|
-
import type { JSX } from '@limetech/lime-elements';
|
|
3
|
-
export declare const Limel3dHoverEffectGlow: StencilVueComponent<JSX.Limel3dHoverEffectGlow>;
|
|
4
|
-
export declare const LimelActionBar: StencilVueComponent<JSX.LimelActionBar>;
|
|
5
|
-
export declare const LimelActionBarItem: StencilVueComponent<JSX.LimelActionBarItem>;
|
|
6
|
-
export declare const LimelActionBarOverflowMenu: StencilVueComponent<JSX.LimelActionBarOverflowMenu>;
|
|
7
|
-
export declare const LimelAiAvatar: StencilVueComponent<JSX.LimelAiAvatar>;
|
|
8
|
-
export declare const LimelBadge: StencilVueComponent<JSX.LimelBadge>;
|
|
9
|
-
export declare const LimelBanner: StencilVueComponent<JSX.LimelBanner>;
|
|
10
|
-
export declare const LimelBreadcrumbs: StencilVueComponent<JSX.LimelBreadcrumbs>;
|
|
11
|
-
export declare const LimelButton: StencilVueComponent<JSX.LimelButton>;
|
|
12
|
-
export declare const LimelButtonGroup: StencilVueComponent<JSX.LimelButtonGroup>;
|
|
13
|
-
export declare const LimelCallout: StencilVueComponent<JSX.LimelCallout>;
|
|
14
|
-
export declare const LimelCard: StencilVueComponent<JSX.LimelCard>;
|
|
15
|
-
export declare const LimelChart: StencilVueComponent<JSX.LimelChart>;
|
|
16
|
-
export declare const LimelCheckbox: StencilVueComponent<JSX.LimelCheckbox>;
|
|
17
|
-
export declare const LimelChip: StencilVueComponent<JSX.LimelChip>;
|
|
18
|
-
export declare const LimelChipSet: StencilVueComponent<JSX.LimelChipSet>;
|
|
19
|
-
export declare const LimelCircularProgress: StencilVueComponent<JSX.LimelCircularProgress>;
|
|
20
|
-
export declare const LimelCodeEditor: StencilVueComponent<JSX.LimelCodeEditor>;
|
|
21
|
-
export declare const LimelCollapsibleSection: StencilVueComponent<JSX.LimelCollapsibleSection>;
|
|
22
|
-
export declare const LimelColorPicker: StencilVueComponent<JSX.LimelColorPicker>;
|
|
23
|
-
export declare const LimelColorPickerPalette: StencilVueComponent<JSX.LimelColorPickerPalette>;
|
|
24
|
-
export declare const LimelConfig: StencilVueComponent<JSX.LimelConfig>;
|
|
25
|
-
export declare const LimelDatePicker: StencilVueComponent<JSX.LimelDatePicker>;
|
|
26
|
-
export declare const LimelDialog: StencilVueComponent<JSX.LimelDialog>;
|
|
27
|
-
export declare const LimelDock: StencilVueComponent<JSX.LimelDock>;
|
|
28
|
-
export declare const LimelDockButton: StencilVueComponent<JSX.LimelDockButton>;
|
|
29
|
-
export declare const LimelDynamicLabel: StencilVueComponent<JSX.LimelDynamicLabel>;
|
|
30
|
-
export declare const LimelFile: StencilVueComponent<JSX.LimelFile>;
|
|
31
|
-
export declare const LimelFileDropzone: StencilVueComponent<JSX.LimelFileDropzone>;
|
|
32
|
-
export declare const LimelFileInput: StencilVueComponent<JSX.LimelFileInput>;
|
|
33
|
-
export declare const LimelFileViewer: StencilVueComponent<JSX.LimelFileViewer>;
|
|
34
|
-
export declare const LimelFlatpickrAdapter: StencilVueComponent<JSX.LimelFlatpickrAdapter>;
|
|
35
|
-
export declare const LimelFlexContainer: StencilVueComponent<JSX.LimelFlexContainer>;
|
|
36
|
-
export declare const LimelGrid: StencilVueComponent<JSX.LimelGrid>;
|
|
37
|
-
export declare const LimelHeader: StencilVueComponent<JSX.LimelHeader>;
|
|
38
|
-
export declare const LimelHelp: StencilVueComponent<JSX.LimelHelp>;
|
|
39
|
-
export declare const LimelHelpContent: StencilVueComponent<JSX.LimelHelpContent>;
|
|
40
|
-
export declare const LimelHelperLine: StencilVueComponent<JSX.LimelHelperLine>;
|
|
41
|
-
export declare const LimelIcon: StencilVueComponent<JSX.LimelIcon>;
|
|
42
|
-
export declare const LimelIconButton: StencilVueComponent<JSX.LimelIconButton>;
|
|
43
|
-
export declare const LimelInfoTile: StencilVueComponent<JSX.LimelInfoTile>;
|
|
44
|
-
export declare const LimelInputField: StencilVueComponent<JSX.LimelInputField>;
|
|
45
|
-
export declare const LimelLinearProgress: StencilVueComponent<JSX.LimelLinearProgress>;
|
|
46
|
-
export declare const LimelList: StencilVueComponent<JSX.LimelList>;
|
|
47
|
-
export declare const LimelMarkdown: StencilVueComponent<JSX.LimelMarkdown>;
|
|
48
|
-
export declare const LimelMenu: StencilVueComponent<JSX.LimelMenu>;
|
|
49
|
-
export declare const LimelMenuList: StencilVueComponent<JSX.LimelMenuList>;
|
|
50
|
-
export declare const LimelMenuSurface: StencilVueComponent<JSX.LimelMenuSurface>;
|
|
51
|
-
export declare const LimelNotchedOutline: StencilVueComponent<JSX.LimelNotchedOutline>;
|
|
52
|
-
export declare const LimelPicker: StencilVueComponent<JSX.LimelPicker>;
|
|
53
|
-
export declare const LimelPopover: StencilVueComponent<JSX.LimelPopover>;
|
|
54
|
-
export declare const LimelPopoverSurface: StencilVueComponent<JSX.LimelPopoverSurface>;
|
|
55
|
-
export declare const LimelPortal: StencilVueComponent<JSX.LimelPortal>;
|
|
56
|
-
export declare const LimelProgressFlow: StencilVueComponent<JSX.LimelProgressFlow>;
|
|
57
|
-
export declare const LimelProgressFlowItem: StencilVueComponent<JSX.LimelProgressFlowItem>;
|
|
58
|
-
export declare const LimelProsemirrorAdapter: StencilVueComponent<JSX.LimelProsemirrorAdapter>;
|
|
59
|
-
export declare const LimelSelect: StencilVueComponent<JSX.LimelSelect>;
|
|
60
|
-
export declare const LimelShortcut: StencilVueComponent<JSX.LimelShortcut>;
|
|
61
|
-
export declare const LimelSlider: StencilVueComponent<JSX.LimelSlider>;
|
|
62
|
-
export declare const LimelSnackbar: StencilVueComponent<JSX.LimelSnackbar>;
|
|
63
|
-
export declare const LimelSpinner: StencilVueComponent<JSX.LimelSpinner>;
|
|
64
|
-
export declare const LimelSplitButton: StencilVueComponent<JSX.LimelSplitButton>;
|
|
65
|
-
export declare const LimelSwitch: StencilVueComponent<JSX.LimelSwitch>;
|
|
66
|
-
export declare const LimelTabBar: StencilVueComponent<JSX.LimelTabBar>;
|
|
67
|
-
export declare const LimelTabPanel: StencilVueComponent<JSX.LimelTabPanel>;
|
|
68
|
-
export declare const LimelTable: StencilVueComponent<JSX.LimelTable>;
|
|
69
|
-
export declare const LimelTextEditor: StencilVueComponent<JSX.LimelTextEditor>;
|
|
70
|
-
export declare const LimelTextEditorLinkMenu: StencilVueComponent<JSX.LimelTextEditorLinkMenu>;
|
|
71
|
-
export declare const LimelTooltip: StencilVueComponent<JSX.LimelTooltip>;
|
|
72
|
-
export declare const LimelTooltipContent: StencilVueComponent<JSX.LimelTooltipContent>;
|