@beeq/vue 1.8.0-beta.9 → 1.8.1
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 +69 -21
- package/package.json +20 -19
- package/src/components.d.ts +42 -42
- package/src/components.js +136 -20
- package/src/components.js.map +1 -1
- package/src/index.d.ts +0 -1
- package/src/index.js +0 -1
- package/src/index.js.map +1 -1
- package/src/plugin.d.ts +0 -2
- package/src/plugin.js +0 -19
- package/src/plugin.js.map +0 -1
- package/src/vue-component-lib/utils.d.ts +0 -16
- package/src/vue-component-lib/utils.js +0 -196
- package/src/vue-component-lib/utils.js.map +0 -1
package/README.md
CHANGED
|
@@ -2,35 +2,93 @@
|
|
|
2
2
|
|
|
3
3
|
A lightweight utility that wraps BEEQ custom elements ("web components") so they can be seamlessly integrated into Vue applications.
|
|
4
4
|
|
|
5
|
+
## Why is this necessary?
|
|
6
|
+
|
|
7
|
+
BEEQ can generate Vue component wrappers for your web components. This allows BEEQ components to be used within a Vue 3 application. The benefits of using BEEQ's component wrappers over the standard web components include:
|
|
8
|
+
|
|
9
|
+
- Type checking with your components.
|
|
10
|
+
- Integration with the router link and Vue router.
|
|
11
|
+
- Optionally, form control web components can be used with `v-model`.
|
|
12
|
+
|
|
13
|
+
(*Adapted from the [Stencil official documentation](https://stenciljs.com/docs/vue)*)
|
|
14
|
+
|
|
5
15
|
## Package installation
|
|
6
16
|
|
|
17
|
+
> [!TIP]
|
|
18
|
+
> Please always refer to the [official BEEQ documentation](https://www.beeq.design/3d466e231/p/359a26-for-developers/b/53475d) for more information about the installation.
|
|
19
|
+
|
|
7
20
|
- install the package
|
|
8
21
|
|
|
9
22
|
```
|
|
10
|
-
npm install @beeq/vue
|
|
23
|
+
npm install @beeq/{core,vue}
|
|
11
24
|
```
|
|
12
25
|
|
|
13
|
-
|
|
26
|
+
> [!NOTE]
|
|
27
|
+
> Make sure that you have installed the `@beeq/core` package.
|
|
14
28
|
|
|
29
|
+
### Add BEEQ styles and assets
|
|
30
|
+
|
|
31
|
+
Import BEEQ styles into your application's main style file:
|
|
32
|
+
|
|
33
|
+
```css
|
|
34
|
+
@import "@beeq/core/dist/beeq/beeq.css";
|
|
15
35
|
```
|
|
16
|
-
|
|
36
|
+
|
|
37
|
+
> [!TIP]
|
|
38
|
+
> BEEQ uses SVG icons and these assets are shipped in a separate folder. You can use the `setBasePath` method to set the path to the icons. Make sure that your project bundle the icons in a way that they are accessible from the browser.
|
|
39
|
+
|
|
40
|
+
You can move the icons from the node_modules folder to your assets folder and set the path like this:
|
|
41
|
+
|
|
42
|
+
```js
|
|
43
|
+
// vite.config.js
|
|
44
|
+
import { defineConfig } from "vite";
|
|
45
|
+
import vue from "@vitejs/plugin-vue";
|
|
46
|
+
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
47
|
+
import { viteStaticCopy } from "vite-plugin-static-copy";
|
|
48
|
+
|
|
49
|
+
export default defineConfig({
|
|
50
|
+
plugins: [
|
|
51
|
+
vue({
|
|
52
|
+
template: {
|
|
53
|
+
compilerOptions: {
|
|
54
|
+
// treat all BEEQ tags as custom elements
|
|
55
|
+
isCustomElement: (tag) => tag.includes("bq-"),
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
}),
|
|
59
|
+
vueJsx(),
|
|
60
|
+
viteStaticCopy({
|
|
61
|
+
targets: [
|
|
62
|
+
{
|
|
63
|
+
src: "./node_modules/@beeq/core/dist/beeq/svg/*",
|
|
64
|
+
dest: "assets/svg",
|
|
65
|
+
},
|
|
66
|
+
// other assets
|
|
67
|
+
],
|
|
68
|
+
}),
|
|
69
|
+
],
|
|
70
|
+
// other configurations
|
|
71
|
+
});
|
|
17
72
|
```
|
|
18
73
|
|
|
19
|
-
|
|
74
|
+
```js
|
|
75
|
+
// main.ts
|
|
76
|
+
import { setBasePath } from '@beeq/core';
|
|
20
77
|
|
|
21
|
-
|
|
22
|
-
npm install @beeq/{core,vue}
|
|
78
|
+
setBasePath('icons/svg');
|
|
23
79
|
```
|
|
24
80
|
|
|
25
|
-
|
|
81
|
+
But you can also use a different icons library or a CDN:
|
|
26
82
|
|
|
27
|
-
|
|
83
|
+
```js
|
|
84
|
+
import { setBasePath } from '@beeq/core';
|
|
28
85
|
|
|
29
|
-
|
|
30
|
-
|
|
86
|
+
// Using heroicons library
|
|
87
|
+
setBasePath('https://cdn.jsdelivr.net/npm/heroicons@2.1.5/24/outline');
|
|
31
88
|
```
|
|
32
89
|
|
|
33
|
-
>
|
|
90
|
+
> [!CAUTION]
|
|
91
|
+
> When using a different icons library, make sure you use the correct icon names provided by the library or the CDN.
|
|
34
92
|
|
|
35
93
|
## Usage
|
|
36
94
|
|
|
@@ -52,13 +110,3 @@ const name = ref('John Doe');
|
|
|
52
110
|
</bq-input>
|
|
53
111
|
</template>
|
|
54
112
|
```
|
|
55
|
-
|
|
56
|
-
## Why is this necessary?
|
|
57
|
-
|
|
58
|
-
BEEQ can generate Vue component wrappers for your web components. This allows BEEQ components to be used within a Vue 3 application. The benefits of using BEEQ's component wrappers over the standard web components include:
|
|
59
|
-
|
|
60
|
-
- Type checking with your components.
|
|
61
|
-
- Integration with the router link and Vue router.
|
|
62
|
-
- Optionally, form control web components can be used with `v-model`.
|
|
63
|
-
|
|
64
|
-
(*Adapted from the [Stencil official documentation](https://stenciljs.com/docs/vue)*)
|
package/package.json
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
2
|
+
"name": "@beeq/vue",
|
|
3
|
+
"version": "1.8.1",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"description": "Vue specific wrapper for BEEQ Design System components",
|
|
6
|
+
"main": "./src/index.js",
|
|
7
|
+
"types": "./src/index.d.ts",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@beeq/core": "^1.8.1",
|
|
10
|
+
"@stencil/vue-output-target": "^0.9.0",
|
|
11
|
+
"tslib": "^2.6.3"
|
|
12
|
+
},
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"vue": ">=3.3.0"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/Endava/BEEQ"
|
|
19
|
+
},
|
|
20
|
+
"module": "./src/index.js",
|
|
21
|
+
"type": "module"
|
|
21
22
|
}
|
package/src/components.d.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
import type { JSX } from '@beeq/core/dist/components';
|
|
2
|
-
export declare const BqAccordion: import("vue").DefineSetupFnComponent<JSX.BqAccordion & import("
|
|
3
|
-
export declare const BqAccordionGroup: import("vue").DefineSetupFnComponent<JSX.BqAccordionGroup & import("
|
|
4
|
-
export declare const BqAlert: import("vue").DefineSetupFnComponent<JSX.BqAlert & import("
|
|
5
|
-
export declare const BqAvatar: import("vue").DefineSetupFnComponent<JSX.BqAvatar & import("
|
|
6
|
-
export declare const BqBadge: import("vue").DefineSetupFnComponent<JSX.BqBadge & import("
|
|
7
|
-
export declare const BqBreadcrumb: import("vue").DefineSetupFnComponent<JSX.BqBreadcrumb & import("
|
|
8
|
-
export declare const BqBreadcrumbItem: import("vue").DefineSetupFnComponent<JSX.BqBreadcrumbItem & import("
|
|
9
|
-
export declare const BqButton: import("vue").DefineSetupFnComponent<JSX.BqButton & import("
|
|
10
|
-
export declare const BqCard: import("vue").DefineSetupFnComponent<JSX.BqCard & import("
|
|
11
|
-
export declare const BqCheckbox: import("vue").DefineSetupFnComponent<JSX.BqCheckbox & import("
|
|
12
|
-
export declare const BqDatePicker: import("vue").DefineSetupFnComponent<JSX.BqDatePicker & import("
|
|
13
|
-
export declare const BqDialog: import("vue").DefineSetupFnComponent<JSX.BqDialog & import("
|
|
14
|
-
export declare const BqDivider: import("vue").DefineSetupFnComponent<JSX.BqDivider & import("
|
|
15
|
-
export declare const BqDrawer: import("vue").DefineSetupFnComponent<JSX.BqDrawer & import("
|
|
16
|
-
export declare const BqDropdown: import("vue").DefineSetupFnComponent<JSX.BqDropdown & import("
|
|
17
|
-
export declare const BqEmptyState: import("vue").DefineSetupFnComponent<JSX.BqEmptyState & import("
|
|
18
|
-
export declare const BqIcon: import("vue").DefineSetupFnComponent<JSX.BqIcon & import("
|
|
19
|
-
export declare const BqInput: import("vue").DefineSetupFnComponent<JSX.BqInput & import("
|
|
20
|
-
export declare const BqNotification: import("vue").DefineSetupFnComponent<JSX.BqNotification & import("
|
|
21
|
-
export declare const BqOption: import("vue").DefineSetupFnComponent<JSX.BqOption & import("
|
|
22
|
-
export declare const BqOptionGroup: import("vue").DefineSetupFnComponent<JSX.BqOptionGroup & import("
|
|
23
|
-
export declare const BqOptionList: import("vue").DefineSetupFnComponent<JSX.BqOptionList & import("
|
|
24
|
-
export declare const BqPageTitle: import("vue").DefineSetupFnComponent<JSX.BqPageTitle & import("
|
|
25
|
-
export declare const BqPanel: import("vue").DefineSetupFnComponent<JSX.BqPanel & import("
|
|
26
|
-
export declare const BqProgress: import("vue").DefineSetupFnComponent<JSX.BqProgress & import("
|
|
27
|
-
export declare const BqRadio: import("vue").DefineSetupFnComponent<JSX.BqRadio & import("
|
|
28
|
-
export declare const BqRadioGroup: import("vue").DefineSetupFnComponent<JSX.BqRadioGroup & import("
|
|
29
|
-
export declare const BqSelect: import("vue").DefineSetupFnComponent<JSX.BqSelect & import("
|
|
30
|
-
export declare const BqSideMenu: import("vue").DefineSetupFnComponent<JSX.BqSideMenu & import("
|
|
31
|
-
export declare const BqSideMenuItem: import("vue").DefineSetupFnComponent<JSX.BqSideMenuItem & import("
|
|
32
|
-
export declare const BqSlider: import("vue").DefineSetupFnComponent<JSX.BqSlider & import("
|
|
33
|
-
export declare const BqSpinner: import("vue").DefineSetupFnComponent<JSX.BqSpinner & import("
|
|
34
|
-
export declare const BqStatus: import("vue").DefineSetupFnComponent<JSX.BqStatus & import("
|
|
35
|
-
export declare const BqStepItem: import("vue").DefineSetupFnComponent<JSX.BqStepItem & import("
|
|
36
|
-
export declare const BqSteps: import("vue").DefineSetupFnComponent<JSX.BqSteps & import("
|
|
37
|
-
export declare const BqSwitch: import("vue").DefineSetupFnComponent<JSX.BqSwitch & import("
|
|
38
|
-
export declare const BqTab: import("vue").DefineSetupFnComponent<JSX.BqTab & import("
|
|
39
|
-
export declare const BqTabGroup: import("vue").DefineSetupFnComponent<JSX.BqTabGroup & import("
|
|
40
|
-
export declare const BqTag: import("vue").DefineSetupFnComponent<JSX.BqTag & import("
|
|
41
|
-
export declare const BqTextarea: import("vue").DefineSetupFnComponent<JSX.BqTextarea & import("
|
|
42
|
-
export declare const BqToast: import("vue").DefineSetupFnComponent<JSX.BqToast & import("
|
|
43
|
-
export declare const BqTooltip: import("vue").DefineSetupFnComponent<JSX.BqTooltip & import("
|
|
2
|
+
export declare const BqAccordion: import("vue").DefineSetupFnComponent<JSX.BqAccordion & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqAccordion & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
3
|
+
export declare const BqAccordionGroup: import("vue").DefineSetupFnComponent<JSX.BqAccordionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqAccordionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
4
|
+
export declare const BqAlert: import("vue").DefineSetupFnComponent<JSX.BqAlert & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqAlert & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
5
|
+
export declare const BqAvatar: import("vue").DefineSetupFnComponent<JSX.BqAvatar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqAvatar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
6
|
+
export declare const BqBadge: import("vue").DefineSetupFnComponent<JSX.BqBadge & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqBadge & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
7
|
+
export declare const BqBreadcrumb: import("vue").DefineSetupFnComponent<JSX.BqBreadcrumb & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqBreadcrumb & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
8
|
+
export declare const BqBreadcrumbItem: import("vue").DefineSetupFnComponent<JSX.BqBreadcrumbItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqBreadcrumbItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
9
|
+
export declare const BqButton: import("vue").DefineSetupFnComponent<JSX.BqButton & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqButton & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
10
|
+
export declare const BqCard: import("vue").DefineSetupFnComponent<JSX.BqCard & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqCard & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
11
|
+
export declare const BqCheckbox: import("vue").DefineSetupFnComponent<JSX.BqCheckbox & import("@stencil/vue-output-target/runtime").InputProps<boolean>, {}, {}, JSX.BqCheckbox & import("@stencil/vue-output-target/runtime").InputProps<boolean>, import("vue").PublicProps>;
|
|
12
|
+
export declare const BqDatePicker: import("vue").DefineSetupFnComponent<JSX.BqDatePicker & import("@stencil/vue-output-target/runtime").InputProps<string>, {}, {}, JSX.BqDatePicker & import("@stencil/vue-output-target/runtime").InputProps<string>, import("vue").PublicProps>;
|
|
13
|
+
export declare const BqDialog: import("vue").DefineSetupFnComponent<JSX.BqDialog & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqDialog & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
14
|
+
export declare const BqDivider: import("vue").DefineSetupFnComponent<JSX.BqDivider & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqDivider & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
15
|
+
export declare const BqDrawer: import("vue").DefineSetupFnComponent<JSX.BqDrawer & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqDrawer & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
16
|
+
export declare const BqDropdown: import("vue").DefineSetupFnComponent<JSX.BqDropdown & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqDropdown & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
17
|
+
export declare const BqEmptyState: import("vue").DefineSetupFnComponent<JSX.BqEmptyState & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqEmptyState & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
18
|
+
export declare const BqIcon: import("vue").DefineSetupFnComponent<JSX.BqIcon & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqIcon & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
19
|
+
export declare const BqInput: import("vue").DefineSetupFnComponent<JSX.BqInput & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TInputValue>, {}, {}, JSX.BqInput & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TInputValue>, import("vue").PublicProps>;
|
|
20
|
+
export declare const BqNotification: import("vue").DefineSetupFnComponent<JSX.BqNotification & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqNotification & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
21
|
+
export declare const BqOption: import("vue").DefineSetupFnComponent<JSX.BqOption & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqOption & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
22
|
+
export declare const BqOptionGroup: import("vue").DefineSetupFnComponent<JSX.BqOptionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqOptionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
23
|
+
export declare const BqOptionList: import("vue").DefineSetupFnComponent<JSX.BqOptionList & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqOptionList & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
24
|
+
export declare const BqPageTitle: import("vue").DefineSetupFnComponent<JSX.BqPageTitle & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqPageTitle & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
25
|
+
export declare const BqPanel: import("vue").DefineSetupFnComponent<JSX.BqPanel & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqPanel & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
26
|
+
export declare const BqProgress: import("vue").DefineSetupFnComponent<JSX.BqProgress & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqProgress & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
27
|
+
export declare const BqRadio: import("vue").DefineSetupFnComponent<JSX.BqRadio & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqRadio & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
28
|
+
export declare const BqRadioGroup: import("vue").DefineSetupFnComponent<JSX.BqRadioGroup & import("@stencil/vue-output-target/runtime").InputProps<string>, {}, {}, JSX.BqRadioGroup & import("@stencil/vue-output-target/runtime").InputProps<string>, import("vue").PublicProps>;
|
|
29
|
+
export declare const BqSelect: import("vue").DefineSetupFnComponent<JSX.BqSelect & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TSelectValue>, {}, {}, JSX.BqSelect & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TSelectValue>, import("vue").PublicProps>;
|
|
30
|
+
export declare const BqSideMenu: import("vue").DefineSetupFnComponent<JSX.BqSideMenu & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqSideMenu & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
31
|
+
export declare const BqSideMenuItem: import("vue").DefineSetupFnComponent<JSX.BqSideMenuItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqSideMenuItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
32
|
+
export declare const BqSlider: import("vue").DefineSetupFnComponent<JSX.BqSlider & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TSliderValue>, {}, {}, JSX.BqSlider & import("@stencil/vue-output-target/runtime").InputProps<import("@beeq/core/dist/components").TSliderValue>, import("vue").PublicProps>;
|
|
33
|
+
export declare const BqSpinner: import("vue").DefineSetupFnComponent<JSX.BqSpinner & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqSpinner & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
34
|
+
export declare const BqStatus: import("vue").DefineSetupFnComponent<JSX.BqStatus & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqStatus & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
35
|
+
export declare const BqStepItem: import("vue").DefineSetupFnComponent<JSX.BqStepItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqStepItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
36
|
+
export declare const BqSteps: import("vue").DefineSetupFnComponent<JSX.BqSteps & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqSteps & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
37
|
+
export declare const BqSwitch: import("vue").DefineSetupFnComponent<JSX.BqSwitch & import("@stencil/vue-output-target/runtime").InputProps<boolean>, {}, {}, JSX.BqSwitch & import("@stencil/vue-output-target/runtime").InputProps<boolean>, import("vue").PublicProps>;
|
|
38
|
+
export declare const BqTab: import("vue").DefineSetupFnComponent<JSX.BqTab & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqTab & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
39
|
+
export declare const BqTabGroup: import("vue").DefineSetupFnComponent<JSX.BqTabGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqTabGroup & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
40
|
+
export declare const BqTag: import("vue").DefineSetupFnComponent<JSX.BqTag & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqTag & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
41
|
+
export declare const BqTextarea: import("vue").DefineSetupFnComponent<JSX.BqTextarea & import("@stencil/vue-output-target/runtime").InputProps<string>, {}, {}, JSX.BqTextarea & import("@stencil/vue-output-target/runtime").InputProps<string>, import("vue").PublicProps>;
|
|
42
|
+
export declare const BqToast: import("vue").DefineSetupFnComponent<JSX.BqToast & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqToast & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
|
43
|
+
export declare const BqTooltip: import("vue").DefineSetupFnComponent<JSX.BqTooltip & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.BqTooltip & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
|
package/src/components.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated vue proxies */
|
|
4
|
-
import { defineContainer } from '
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
5
|
import { defineCustomElement as defineBqAccordion } from '@beeq/core/dist/components/bq-accordion.js';
|
|
6
6
|
import { defineCustomElement as defineBqAccordionGroup } from '@beeq/core/dist/components/bq-accordion-group.js';
|
|
7
7
|
import { defineCustomElement as defineBqAlert } from '@beeq/core/dist/components/bq-alert.js';
|
|
@@ -58,6 +58,14 @@ export const BqAccordion = /*@__PURE__*/ defineContainer('bq-accordion', defineB
|
|
|
58
58
|
'bqClose',
|
|
59
59
|
'bqAfterClose',
|
|
60
60
|
'bqClick'
|
|
61
|
+
], [
|
|
62
|
+
'bqBlur',
|
|
63
|
+
'bqFocus',
|
|
64
|
+
'bqOpen',
|
|
65
|
+
'bqAfterOpen',
|
|
66
|
+
'bqClose',
|
|
67
|
+
'bqAfterClose',
|
|
68
|
+
'bqClick'
|
|
61
69
|
]);
|
|
62
70
|
export const BqAccordionGroup = /*@__PURE__*/ defineContainer('bq-accordion-group', defineBqAccordionGroup, [
|
|
63
71
|
'appearance',
|
|
@@ -79,6 +87,11 @@ export const BqAlert = /*@__PURE__*/ defineContainer('bq-alert', defineBqAlert,
|
|
|
79
87
|
'bqShow',
|
|
80
88
|
'bqAfterShow',
|
|
81
89
|
'bqAfterHide'
|
|
90
|
+
], [
|
|
91
|
+
'bqHide',
|
|
92
|
+
'bqShow',
|
|
93
|
+
'bqAfterShow',
|
|
94
|
+
'bqAfterHide'
|
|
82
95
|
]);
|
|
83
96
|
export const BqAvatar = /*@__PURE__*/ defineContainer('bq-avatar', defineBqAvatar, [
|
|
84
97
|
'altText',
|
|
@@ -94,20 +107,19 @@ export const BqBadge = /*@__PURE__*/ defineContainer('bq-badge', defineBqBadge,
|
|
|
94
107
|
'size'
|
|
95
108
|
]);
|
|
96
109
|
export const BqBreadcrumb = /*@__PURE__*/ defineContainer('bq-breadcrumb', defineBqBreadcrumb, [
|
|
97
|
-
'
|
|
98
|
-
'bqBreadcrumbBlur',
|
|
99
|
-
'bqBreadcrumbFocus',
|
|
100
|
-
'bqBreadcrumbClick'
|
|
110
|
+
'label'
|
|
101
111
|
]);
|
|
102
112
|
export const BqBreadcrumbItem = /*@__PURE__*/ defineContainer('bq-breadcrumb-item', defineBqBreadcrumbItem, [
|
|
103
|
-
'ariaLabel',
|
|
104
|
-
'isLastItem',
|
|
105
113
|
'href',
|
|
106
114
|
'target',
|
|
107
115
|
'rel',
|
|
108
116
|
'bqBlur',
|
|
109
117
|
'bqFocus',
|
|
110
118
|
'bqClick'
|
|
119
|
+
], [
|
|
120
|
+
'bqBlur',
|
|
121
|
+
'bqFocus',
|
|
122
|
+
'bqClick'
|
|
111
123
|
]);
|
|
112
124
|
export const BqButton = /*@__PURE__*/ defineContainer('bq-button', defineBqButton, [
|
|
113
125
|
'appearance',
|
|
@@ -125,6 +137,10 @@ export const BqButton = /*@__PURE__*/ defineContainer('bq-button', defineBqButto
|
|
|
125
137
|
'bqBlur',
|
|
126
138
|
'bqFocus',
|
|
127
139
|
'bqClick'
|
|
140
|
+
], [
|
|
141
|
+
'bqBlur',
|
|
142
|
+
'bqFocus',
|
|
143
|
+
'bqClick'
|
|
128
144
|
]);
|
|
129
145
|
export const BqCard = /*@__PURE__*/ defineContainer('bq-card', defineBqCard, [
|
|
130
146
|
'type',
|
|
@@ -143,6 +159,10 @@ export const BqCheckbox = /*@__PURE__*/ defineContainer('bq-checkbox', defineBqC
|
|
|
143
159
|
'bqChange',
|
|
144
160
|
'bqFocus',
|
|
145
161
|
'bqBlur'
|
|
162
|
+
], [
|
|
163
|
+
'bqChange',
|
|
164
|
+
'bqFocus',
|
|
165
|
+
'bqBlur'
|
|
146
166
|
], 'checked', 'bqChange');
|
|
147
167
|
export const BqDatePicker = /*@__PURE__*/ defineContainer('bq-date-picker', defineBqDatePicker, [
|
|
148
168
|
'autofocus',
|
|
@@ -153,6 +173,7 @@ export const BqDatePicker = /*@__PURE__*/ defineContainer('bq-date-picker', defi
|
|
|
153
173
|
'firstDayOfWeek',
|
|
154
174
|
'formatOptions',
|
|
155
175
|
'form',
|
|
176
|
+
'formValidationMessage',
|
|
156
177
|
'isDateDisallowed',
|
|
157
178
|
'locale',
|
|
158
179
|
'max',
|
|
@@ -176,6 +197,11 @@ export const BqDatePicker = /*@__PURE__*/ defineContainer('bq-date-picker', defi
|
|
|
176
197
|
'bqChange',
|
|
177
198
|
'bqClear',
|
|
178
199
|
'bqFocus'
|
|
200
|
+
], [
|
|
201
|
+
'bqBlur',
|
|
202
|
+
'bqChange',
|
|
203
|
+
'bqClear',
|
|
204
|
+
'bqFocus'
|
|
179
205
|
], 'value', 'bqChange');
|
|
180
206
|
export const BqDialog = /*@__PURE__*/ defineContainer('bq-dialog', defineBqDialog, [
|
|
181
207
|
'border',
|
|
@@ -191,6 +217,12 @@ export const BqDialog = /*@__PURE__*/ defineContainer('bq-dialog', defineBqDialo
|
|
|
191
217
|
'bqOpen',
|
|
192
218
|
'bqAfterOpen',
|
|
193
219
|
'bqAfterClose'
|
|
220
|
+
], [
|
|
221
|
+
'bqCancel',
|
|
222
|
+
'bqClose',
|
|
223
|
+
'bqOpen',
|
|
224
|
+
'bqAfterOpen',
|
|
225
|
+
'bqAfterClose'
|
|
194
226
|
]);
|
|
195
227
|
export const BqDivider = /*@__PURE__*/ defineContainer('bq-divider', defineBqDivider, [
|
|
196
228
|
'dashed',
|
|
@@ -214,6 +246,11 @@ export const BqDrawer = /*@__PURE__*/ defineContainer('bq-drawer', defineBqDrawe
|
|
|
214
246
|
'bqOpen',
|
|
215
247
|
'bqAfterOpen',
|
|
216
248
|
'bqAfterClose'
|
|
249
|
+
], [
|
|
250
|
+
'bqClose',
|
|
251
|
+
'bqOpen',
|
|
252
|
+
'bqAfterOpen',
|
|
253
|
+
'bqAfterClose'
|
|
217
254
|
]);
|
|
218
255
|
export const BqDropdown = /*@__PURE__*/ defineContainer('bq-dropdown', defineBqDropdown, [
|
|
219
256
|
'disabled',
|
|
@@ -226,6 +263,8 @@ export const BqDropdown = /*@__PURE__*/ defineContainer('bq-dropdown', defineBqD
|
|
|
226
263
|
'skidding',
|
|
227
264
|
'strategy',
|
|
228
265
|
'bqOpen'
|
|
266
|
+
], [
|
|
267
|
+
'bqOpen'
|
|
229
268
|
]);
|
|
230
269
|
export const BqEmptyState = /*@__PURE__*/ defineContainer('bq-empty-state', defineBqEmptyState, [
|
|
231
270
|
'size'
|
|
@@ -238,6 +277,8 @@ export const BqIcon = /*@__PURE__*/ defineContainer('bq-icon', defineBqIcon, [
|
|
|
238
277
|
'src',
|
|
239
278
|
'weight',
|
|
240
279
|
'svgLoaded'
|
|
280
|
+
], [
|
|
281
|
+
'svgLoaded'
|
|
241
282
|
]);
|
|
242
283
|
export const BqInput = /*@__PURE__*/ defineContainer('bq-input', defineBqInput, [
|
|
243
284
|
'autocapitalize',
|
|
@@ -249,6 +290,7 @@ export const BqInput = /*@__PURE__*/ defineContainer('bq-input', defineBqInput,
|
|
|
249
290
|
'disabled',
|
|
250
291
|
'disableClear',
|
|
251
292
|
'form',
|
|
293
|
+
'formValidationMessage',
|
|
252
294
|
'inputmode',
|
|
253
295
|
'max',
|
|
254
296
|
'maxlength',
|
|
@@ -268,6 +310,12 @@ export const BqInput = /*@__PURE__*/ defineContainer('bq-input', defineBqInput,
|
|
|
268
310
|
'bqClear',
|
|
269
311
|
'bqFocus',
|
|
270
312
|
'bqInput'
|
|
313
|
+
], [
|
|
314
|
+
'bqBlur',
|
|
315
|
+
'bqChange',
|
|
316
|
+
'bqClear',
|
|
317
|
+
'bqFocus',
|
|
318
|
+
'bqInput'
|
|
271
319
|
], 'value', 'bqChange');
|
|
272
320
|
export const BqNotification = /*@__PURE__*/ defineContainer('bq-notification', defineBqNotification, [
|
|
273
321
|
'autoDismiss',
|
|
@@ -281,6 +329,11 @@ export const BqNotification = /*@__PURE__*/ defineContainer('bq-notification', d
|
|
|
281
329
|
'bqShow',
|
|
282
330
|
'bqAfterOpen',
|
|
283
331
|
'bqAfterClose'
|
|
332
|
+
], [
|
|
333
|
+
'bqHide',
|
|
334
|
+
'bqShow',
|
|
335
|
+
'bqAfterOpen',
|
|
336
|
+
'bqAfterClose'
|
|
284
337
|
]);
|
|
285
338
|
export const BqOption = /*@__PURE__*/ defineContainer('bq-option', defineBqOption, [
|
|
286
339
|
'hidden',
|
|
@@ -291,11 +344,18 @@ export const BqOption = /*@__PURE__*/ defineContainer('bq-option', defineBqOptio
|
|
|
291
344
|
'bqFocus',
|
|
292
345
|
'bqClick',
|
|
293
346
|
'bqEnter'
|
|
347
|
+
], [
|
|
348
|
+
'bqBlur',
|
|
349
|
+
'bqFocus',
|
|
350
|
+
'bqClick',
|
|
351
|
+
'bqEnter'
|
|
294
352
|
]);
|
|
295
353
|
export const BqOptionGroup = /*@__PURE__*/ defineContainer('bq-option-group', defineBqOptionGroup);
|
|
296
354
|
export const BqOptionList = /*@__PURE__*/ defineContainer('bq-option-list', defineBqOptionList, [
|
|
297
355
|
'ariaLabel',
|
|
298
356
|
'bqSelect'
|
|
357
|
+
], [
|
|
358
|
+
'bqSelect'
|
|
299
359
|
]);
|
|
300
360
|
export const BqPageTitle = /*@__PURE__*/ defineContainer('bq-page-title', defineBqPageTitle);
|
|
301
361
|
export const BqPanel = /*@__PURE__*/ defineContainer('bq-panel', defineBqPanel, [
|
|
@@ -307,13 +367,13 @@ export const BqPanel = /*@__PURE__*/ defineContainer('bq-panel', defineBqPanel,
|
|
|
307
367
|
'strategy'
|
|
308
368
|
]);
|
|
309
369
|
export const BqProgress = /*@__PURE__*/ defineContainer('bq-progress', defineBqProgress, [
|
|
370
|
+
'borderShape',
|
|
371
|
+
'enableTooltip',
|
|
310
372
|
'indeterminate',
|
|
311
|
-
'
|
|
373
|
+
'label',
|
|
312
374
|
'thickness',
|
|
313
375
|
'type',
|
|
314
|
-
'
|
|
315
|
-
'label',
|
|
316
|
-
'enableTooltip'
|
|
376
|
+
'value'
|
|
317
377
|
]);
|
|
318
378
|
export const BqRadio = /*@__PURE__*/ defineContainer('bq-radio', defineBqRadio, [
|
|
319
379
|
'checked',
|
|
@@ -327,15 +387,24 @@ export const BqRadio = /*@__PURE__*/ defineContainer('bq-radio', defineBqRadio,
|
|
|
327
387
|
'bqFocus',
|
|
328
388
|
'bqBlur',
|
|
329
389
|
'bqKeyDown'
|
|
390
|
+
], [
|
|
391
|
+
'bqClick',
|
|
392
|
+
'bqFocus',
|
|
393
|
+
'bqBlur',
|
|
394
|
+
'bqKeyDown'
|
|
330
395
|
]);
|
|
331
396
|
export const BqRadioGroup = /*@__PURE__*/ defineContainer('bq-radio-group', defineBqRadioGroup, [
|
|
332
397
|
'backgroundOnHover',
|
|
333
|
-
'
|
|
334
|
-
'value',
|
|
398
|
+
'debounceTime',
|
|
335
399
|
'disabled',
|
|
336
400
|
'fieldset',
|
|
401
|
+
'name',
|
|
337
402
|
'orientation',
|
|
338
|
-
'
|
|
403
|
+
'required',
|
|
404
|
+
'requiredValidationMessage',
|
|
405
|
+
'value',
|
|
406
|
+
'bqChange'
|
|
407
|
+
], [
|
|
339
408
|
'bqChange'
|
|
340
409
|
], 'value', 'bqChange');
|
|
341
410
|
export const BqSelect = /*@__PURE__*/ defineContainer('bq-select', defineBqSelect, [
|
|
@@ -365,6 +434,11 @@ export const BqSelect = /*@__PURE__*/ defineContainer('bq-select', defineBqSelec
|
|
|
365
434
|
'bqClear',
|
|
366
435
|
'bqFocus',
|
|
367
436
|
'bqSelect'
|
|
437
|
+
], [
|
|
438
|
+
'bqBlur',
|
|
439
|
+
'bqClear',
|
|
440
|
+
'bqFocus',
|
|
441
|
+
'bqSelect'
|
|
368
442
|
], 'value', 'bqChange');
|
|
369
443
|
export const BqSideMenu = /*@__PURE__*/ defineContainer('bq-side-menu', defineBqSideMenu, [
|
|
370
444
|
'appearance',
|
|
@@ -372,6 +446,9 @@ export const BqSideMenu = /*@__PURE__*/ defineContainer('bq-side-menu', defineBq
|
|
|
372
446
|
'size',
|
|
373
447
|
'bqCollapse',
|
|
374
448
|
'bqSelect'
|
|
449
|
+
], [
|
|
450
|
+
'bqCollapse',
|
|
451
|
+
'bqSelect'
|
|
375
452
|
]);
|
|
376
453
|
export const BqSideMenuItem = /*@__PURE__*/ defineContainer('bq-side-menu-item', defineBqSideMenuItem, [
|
|
377
454
|
'active',
|
|
@@ -380,6 +457,10 @@ export const BqSideMenuItem = /*@__PURE__*/ defineContainer('bq-side-menu-item',
|
|
|
380
457
|
'bqBlur',
|
|
381
458
|
'bqFocus',
|
|
382
459
|
'bqClick'
|
|
460
|
+
], [
|
|
461
|
+
'bqBlur',
|
|
462
|
+
'bqFocus',
|
|
463
|
+
'bqClick'
|
|
383
464
|
]);
|
|
384
465
|
export const BqSlider = /*@__PURE__*/ defineContainer('bq-slider', defineBqSlider, [
|
|
385
466
|
'debounceTime',
|
|
@@ -388,6 +469,7 @@ export const BqSlider = /*@__PURE__*/ defineContainer('bq-slider', defineBqSlide
|
|
|
388
469
|
'gap',
|
|
389
470
|
'max',
|
|
390
471
|
'min',
|
|
472
|
+
'name',
|
|
391
473
|
'step',
|
|
392
474
|
'type',
|
|
393
475
|
'value',
|
|
@@ -396,6 +478,10 @@ export const BqSlider = /*@__PURE__*/ defineContainer('bq-slider', defineBqSlide
|
|
|
396
478
|
'bqChange',
|
|
397
479
|
'bqBlur',
|
|
398
480
|
'bqFocus'
|
|
481
|
+
], [
|
|
482
|
+
'bqChange',
|
|
483
|
+
'bqBlur',
|
|
484
|
+
'bqFocus'
|
|
399
485
|
], 'value', 'bqChange');
|
|
400
486
|
export const BqSpinner = /*@__PURE__*/ defineContainer('bq-spinner', defineBqSpinner, [
|
|
401
487
|
'animation',
|
|
@@ -410,6 +496,8 @@ export const BqStepItem = /*@__PURE__*/ defineContainer('bq-step-item', defineBq
|
|
|
410
496
|
'status',
|
|
411
497
|
'type',
|
|
412
498
|
'bqClick'
|
|
499
|
+
], [
|
|
500
|
+
'bqClick'
|
|
413
501
|
]);
|
|
414
502
|
export const BqSteps = /*@__PURE__*/ defineContainer('bq-steps', defineBqSteps, [
|
|
415
503
|
'dividerColor',
|
|
@@ -420,6 +508,7 @@ export const BqSwitch = /*@__PURE__*/ defineContainer('bq-switch', defineBqSwitc
|
|
|
420
508
|
'backgroundOnHover',
|
|
421
509
|
'checked',
|
|
422
510
|
'disabled',
|
|
511
|
+
'formValidationMessage',
|
|
423
512
|
'fullWidth',
|
|
424
513
|
'innerLabel',
|
|
425
514
|
'justifyContent',
|
|
@@ -430,27 +519,38 @@ export const BqSwitch = /*@__PURE__*/ defineContainer('bq-switch', defineBqSwitc
|
|
|
430
519
|
'bqChange',
|
|
431
520
|
'bqFocus',
|
|
432
521
|
'bqBlur'
|
|
522
|
+
], [
|
|
523
|
+
'bqChange',
|
|
524
|
+
'bqFocus',
|
|
525
|
+
'bqBlur'
|
|
433
526
|
], 'checked', 'bqChange');
|
|
434
527
|
export const BqTab = /*@__PURE__*/ defineContainer('bq-tab', defineBqTab, [
|
|
435
528
|
'active',
|
|
529
|
+
'controls',
|
|
436
530
|
'disabled',
|
|
437
|
-
'size',
|
|
438
531
|
'orientation',
|
|
439
532
|
'placement',
|
|
533
|
+
'size',
|
|
440
534
|
'tabId',
|
|
441
|
-
'
|
|
535
|
+
'bqClick',
|
|
536
|
+
'bqFocus',
|
|
537
|
+
'bqBlur',
|
|
538
|
+
'bqKeyDown'
|
|
539
|
+
], [
|
|
442
540
|
'bqClick',
|
|
443
541
|
'bqFocus',
|
|
444
542
|
'bqBlur',
|
|
445
543
|
'bqKeyDown'
|
|
446
544
|
]);
|
|
447
545
|
export const BqTabGroup = /*@__PURE__*/ defineContainer('bq-tab-group', defineBqTabGroup, [
|
|
448
|
-
'value',
|
|
449
|
-
'size',
|
|
450
|
-
'orientation',
|
|
451
|
-
'placement',
|
|
452
546
|
'debounceTime',
|
|
453
547
|
'disableDivider',
|
|
548
|
+
'orientation',
|
|
549
|
+
'placement',
|
|
550
|
+
'size',
|
|
551
|
+
'value',
|
|
552
|
+
'bqChange'
|
|
553
|
+
], [
|
|
454
554
|
'bqChange'
|
|
455
555
|
]);
|
|
456
556
|
export const BqTag = /*@__PURE__*/ defineContainer('bq-tag', defineBqTag, [
|
|
@@ -468,6 +568,12 @@ export const BqTag = /*@__PURE__*/ defineContainer('bq-tag', defineBqTag, [
|
|
|
468
568
|
'bqBlur',
|
|
469
569
|
'bqClick',
|
|
470
570
|
'bqFocus'
|
|
571
|
+
], [
|
|
572
|
+
'bqClose',
|
|
573
|
+
'bqOpen',
|
|
574
|
+
'bqBlur',
|
|
575
|
+
'bqClick',
|
|
576
|
+
'bqFocus'
|
|
471
577
|
]);
|
|
472
578
|
export const BqTextarea = /*@__PURE__*/ defineContainer('bq-textarea', defineBqTextarea, [
|
|
473
579
|
'autocapitalize',
|
|
@@ -479,6 +585,7 @@ export const BqTextarea = /*@__PURE__*/ defineContainer('bq-textarea', defineBqT
|
|
|
479
585
|
'disabled',
|
|
480
586
|
'disableResize',
|
|
481
587
|
'form',
|
|
588
|
+
'formValidationMessage',
|
|
482
589
|
'maxlength',
|
|
483
590
|
'name',
|
|
484
591
|
'placeholder',
|
|
@@ -494,6 +601,12 @@ export const BqTextarea = /*@__PURE__*/ defineContainer('bq-textarea', defineBqT
|
|
|
494
601
|
'bqClear',
|
|
495
602
|
'bqFocus',
|
|
496
603
|
'bqInput'
|
|
604
|
+
], [
|
|
605
|
+
'bqBlur',
|
|
606
|
+
'bqChange',
|
|
607
|
+
'bqClear',
|
|
608
|
+
'bqFocus',
|
|
609
|
+
'bqInput'
|
|
497
610
|
], 'value', 'bqChange');
|
|
498
611
|
export const BqToast = /*@__PURE__*/ defineContainer('bq-toast', defineBqToast, [
|
|
499
612
|
'border',
|
|
@@ -504,6 +617,9 @@ export const BqToast = /*@__PURE__*/ defineContainer('bq-toast', defineBqToast,
|
|
|
504
617
|
'time',
|
|
505
618
|
'bqHide',
|
|
506
619
|
'bqShow'
|
|
620
|
+
], [
|
|
621
|
+
'bqHide',
|
|
622
|
+
'bqShow'
|
|
507
623
|
]);
|
|
508
624
|
export const BqTooltip = /*@__PURE__*/ defineContainer('bq-tooltip', defineBqTooltip, [
|
|
509
625
|
'alwaysVisible',
|
package/src/components.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../../packages/beeq-vue/src/components.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../../packages/beeq-vue/src/components.ts"],"names":[],"mappings":"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"}
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../packages/beeq-vue/src/index.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,cAAc,cAAc,CAAC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../packages/beeq-vue/src/index.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,cAAc,cAAc,CAAC"}
|
package/src/plugin.d.ts
DELETED
package/src/plugin.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { defineCustomElements } from '@beeq/core/dist/loader';
|
|
2
|
-
export const BeeqVue = {
|
|
3
|
-
async install() {
|
|
4
|
-
// @stencil/vue-output-target does not support camelCase event names
|
|
5
|
-
// so we are attaching a custom event listener to map camelCase to kebab-case event names
|
|
6
|
-
const camelCaseToKebab = (str) => {
|
|
7
|
-
return str
|
|
8
|
-
.split(/(?=[A-Z])/)
|
|
9
|
-
.join('-')
|
|
10
|
-
.toLowerCase();
|
|
11
|
-
};
|
|
12
|
-
defineCustomElements(window, {
|
|
13
|
-
ael: (el, eventName, cb, opts) => el.addEventListener(camelCaseToKebab(eventName), cb, opts),
|
|
14
|
-
rel: (el, eventName, cb, opts) => el.removeEventListener(camelCaseToKebab(eventName), cb, opts),
|
|
15
|
-
ce: (eventName, opts) => new CustomEvent(camelCaseToKebab(eventName), opts),
|
|
16
|
-
});
|
|
17
|
-
},
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=plugin.js.map
|
package/src/plugin.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../packages/beeq-vue/src/plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,MAAM,CAAC,MAAM,OAAO,GAAW;IAC7B,KAAK,CAAC,OAAO;QACX,oEAAoE;QACpE,yFAAyF;QACzF,MAAM,gBAAgB,GAAG,CAAC,GAAW,EAAE,EAAE;YACvC,OAAO,GAAG;iBACP,KAAK,CAAC,WAAW,CAAC;iBAClB,IAAI,CAAC,GAAG,CAAC;iBACT,WAAW,EAAE,CAAC;QACnB,CAAC,CAAC;QACF,oBAAoB,CAAC,MAAM,EAAE;YAC3B,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CACtD,EAAE,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;YAC5D,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CACtD,EAAE,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;YAC/D,EAAE,EAAE,CAAC,SAAiB,EAAE,IAAS,EAAE,EAAE,CAAC,IAAI,WAAW,CAAC,gBAAgB,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC;SAClF,CAAC,CAAC;IACZ,CAAC;CACF,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export interface InputProps<T> {
|
|
2
|
-
modelValue?: T;
|
|
3
|
-
}
|
|
4
|
-
/**
|
|
5
|
-
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
6
|
-
*
|
|
7
|
-
* @prop name - The component tag name (i.e. `ion-button`)
|
|
8
|
-
* @prop componentProps - An array of properties on the
|
|
9
|
-
* component. These usually match up with the @Prop definitions
|
|
10
|
-
* in each component's TSX file.
|
|
11
|
-
* @prop customElement - An option custom element instance to pass
|
|
12
|
-
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
13
|
-
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
14
|
-
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
15
|
-
*/
|
|
16
|
-
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => import("vue").DefineSetupFnComponent<Props & InputProps<VModelType>, {}, {}, Props & InputProps<VModelType> & {}, import("vue").PublicProps>;
|
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
// @ts-nocheck
|
|
2
|
-
// It's easier and safer for Volar to disable typechecking and let the return type inference do its job.
|
|
3
|
-
import { defineComponent, getCurrentInstance, h, inject, ref, withDirectives } from 'vue';
|
|
4
|
-
const UPDATE_VALUE_EVENT = 'update:modelValue';
|
|
5
|
-
const MODEL_VALUE = 'modelValue';
|
|
6
|
-
const ROUTER_LINK_VALUE = 'routerLink';
|
|
7
|
-
const NAV_MANAGER = 'navManager';
|
|
8
|
-
const ROUTER_PROP_PREFIX = 'router';
|
|
9
|
-
const ARIA_PROP_PREFIX = 'aria';
|
|
10
|
-
/**
|
|
11
|
-
* Starting in Vue 3.1.0, all properties are
|
|
12
|
-
* added as keys to the props object, even if
|
|
13
|
-
* they are not being used. In order to correctly
|
|
14
|
-
* account for both value props and v-model props,
|
|
15
|
-
* we need to check if the key exists for Vue <3.1.0
|
|
16
|
-
* and then check if it is not undefined for Vue >= 3.1.0.
|
|
17
|
-
* See https://github.com/vuejs/vue-next/issues/3889
|
|
18
|
-
*/
|
|
19
|
-
const EMPTY_PROP = Symbol();
|
|
20
|
-
const DEFAULT_EMPTY_PROP = { default: EMPTY_PROP };
|
|
21
|
-
const getComponentClasses = (classes) => {
|
|
22
|
-
return classes?.split(' ') || [];
|
|
23
|
-
};
|
|
24
|
-
const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
|
|
25
|
-
return [...Array.from(ref.value?.classList || []), ...defaultClasses].filter((c, i, self) => !componentClasses.has(c) && self.indexOf(c) === i);
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
29
|
-
*
|
|
30
|
-
* @prop name - The component tag name (i.e. `ion-button`)
|
|
31
|
-
* @prop componentProps - An array of properties on the
|
|
32
|
-
* component. These usually match up with the @Prop definitions
|
|
33
|
-
* in each component's TSX file.
|
|
34
|
-
* @prop customElement - An option custom element instance to pass
|
|
35
|
-
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
36
|
-
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
37
|
-
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
38
|
-
*/
|
|
39
|
-
export const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent) => {
|
|
40
|
-
/**
|
|
41
|
-
* Create a Vue component wrapper around a Web Component.
|
|
42
|
-
* Note: The `props` here are not all properties on a component.
|
|
43
|
-
* They refer to whatever properties are set on an instance of a component.
|
|
44
|
-
*/
|
|
45
|
-
if (defineCustomElement !== undefined) {
|
|
46
|
-
defineCustomElement();
|
|
47
|
-
}
|
|
48
|
-
const Container = defineComponent((props, { attrs, slots, emit }) => {
|
|
49
|
-
let modelPropValue = props[modelProp];
|
|
50
|
-
const containerRef = ref();
|
|
51
|
-
const classes = new Set(getComponentClasses(attrs.class));
|
|
52
|
-
/**
|
|
53
|
-
* This directive is responsible for updating any reactive
|
|
54
|
-
* reference associated with v-model on the component.
|
|
55
|
-
* This code must be run inside of the "created" callback.
|
|
56
|
-
* Since the following listener callbacks as well as any potential
|
|
57
|
-
* event callback defined in the developer's app are set on
|
|
58
|
-
* the same element, we need to make sure the following callbacks
|
|
59
|
-
* are set first so they fire first. If the developer's callback fires first
|
|
60
|
-
* then the reactive reference will not have been updated yet.
|
|
61
|
-
*/
|
|
62
|
-
const vModelDirective = {
|
|
63
|
-
created: (el) => {
|
|
64
|
-
const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
|
|
65
|
-
eventsNames.forEach((eventName) => {
|
|
66
|
-
el.addEventListener(eventName.toLowerCase(), (e) => {
|
|
67
|
-
/**
|
|
68
|
-
* Only update the v-model binding if the event's target is the element we are
|
|
69
|
-
* listening on. For example, Component A could emit ionChange, but it could also
|
|
70
|
-
* have a descendant Component B that also emits ionChange. We only want to update
|
|
71
|
-
* the v-model for Component A when ionChange originates from that element and not
|
|
72
|
-
* when ionChange bubbles up from Component B.
|
|
73
|
-
*/
|
|
74
|
-
if (e.target.tagName === el.tagName) {
|
|
75
|
-
modelPropValue = (e?.target)[modelProp];
|
|
76
|
-
emit(UPDATE_VALUE_EVENT, modelPropValue);
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
});
|
|
80
|
-
},
|
|
81
|
-
};
|
|
82
|
-
const currentInstance = getCurrentInstance();
|
|
83
|
-
const hasRouter = currentInstance?.appContext?.provides[NAV_MANAGER];
|
|
84
|
-
const navManager = hasRouter ? inject(NAV_MANAGER) : undefined;
|
|
85
|
-
const handleRouterLink = (ev) => {
|
|
86
|
-
const { routerLink } = props;
|
|
87
|
-
if (routerLink === EMPTY_PROP)
|
|
88
|
-
return;
|
|
89
|
-
if (navManager !== undefined) {
|
|
90
|
-
/**
|
|
91
|
-
* This prevents the browser from
|
|
92
|
-
* performing a page reload when pressing
|
|
93
|
-
* an Ionic component with routerLink.
|
|
94
|
-
* The page reload interferes with routing
|
|
95
|
-
* and causes ion-back-button to disappear
|
|
96
|
-
* since the local history is wiped on reload.
|
|
97
|
-
*/
|
|
98
|
-
ev.preventDefault();
|
|
99
|
-
let navigationPayload = { event: ev };
|
|
100
|
-
for (const key in props) {
|
|
101
|
-
const value = props[key];
|
|
102
|
-
if (props.hasOwnProperty(key) && key.startsWith(ROUTER_PROP_PREFIX) && value !== EMPTY_PROP) {
|
|
103
|
-
navigationPayload[key] = value;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
navManager.navigate(navigationPayload);
|
|
107
|
-
}
|
|
108
|
-
else {
|
|
109
|
-
console.warn('Tried to navigate, but no router was found. Make sure you have mounted Vue Router.');
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
return () => {
|
|
113
|
-
modelPropValue = props[modelProp];
|
|
114
|
-
getComponentClasses(attrs.class).forEach((value) => {
|
|
115
|
-
classes.add(value);
|
|
116
|
-
});
|
|
117
|
-
const oldClick = props.onClick;
|
|
118
|
-
const handleClick = (ev) => {
|
|
119
|
-
if (oldClick !== undefined) {
|
|
120
|
-
oldClick(ev);
|
|
121
|
-
}
|
|
122
|
-
if (!ev.defaultPrevented) {
|
|
123
|
-
handleRouterLink(ev);
|
|
124
|
-
}
|
|
125
|
-
};
|
|
126
|
-
let propsToAdd = {
|
|
127
|
-
ref: containerRef,
|
|
128
|
-
class: getElementClasses(containerRef, classes),
|
|
129
|
-
onClick: handleClick,
|
|
130
|
-
};
|
|
131
|
-
/**
|
|
132
|
-
* We can use Object.entries here
|
|
133
|
-
* to avoid the hasOwnProperty check,
|
|
134
|
-
* but that would require 2 iterations
|
|
135
|
-
* where as this only requires 1.
|
|
136
|
-
*/
|
|
137
|
-
for (const key in props) {
|
|
138
|
-
const value = props[key];
|
|
139
|
-
if ((props.hasOwnProperty(key) && value !== EMPTY_PROP) || key.startsWith(ARIA_PROP_PREFIX)) {
|
|
140
|
-
propsToAdd[key] = value;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
if (modelProp) {
|
|
144
|
-
/**
|
|
145
|
-
* If form value property was set using v-model
|
|
146
|
-
* then we should use that value.
|
|
147
|
-
* Otherwise, check to see if form value property
|
|
148
|
-
* was set as a static value (i.e. no v-model).
|
|
149
|
-
*/
|
|
150
|
-
if (props[MODEL_VALUE] !== EMPTY_PROP) {
|
|
151
|
-
propsToAdd = {
|
|
152
|
-
...propsToAdd,
|
|
153
|
-
[modelProp]: props[MODEL_VALUE],
|
|
154
|
-
};
|
|
155
|
-
}
|
|
156
|
-
else if (modelPropValue !== EMPTY_PROP) {
|
|
157
|
-
propsToAdd = {
|
|
158
|
-
...propsToAdd,
|
|
159
|
-
[modelProp]: modelPropValue,
|
|
160
|
-
};
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
// If router link is defined, add href to props
|
|
164
|
-
// in order to properly render an anchor tag inside
|
|
165
|
-
// of components that should become activatable and
|
|
166
|
-
// focusable with router link.
|
|
167
|
-
if (props[ROUTER_LINK_VALUE] !== EMPTY_PROP) {
|
|
168
|
-
propsToAdd = {
|
|
169
|
-
...propsToAdd,
|
|
170
|
-
href: props[ROUTER_LINK_VALUE],
|
|
171
|
-
};
|
|
172
|
-
}
|
|
173
|
-
/**
|
|
174
|
-
* vModelDirective is only needed on components that support v-model.
|
|
175
|
-
* As a result, we conditionally call withDirectives with v-model components.
|
|
176
|
-
*/
|
|
177
|
-
const node = h(name, propsToAdd, slots.default && slots.default());
|
|
178
|
-
return modelProp === undefined ? node : withDirectives(node, [[vModelDirective]]);
|
|
179
|
-
};
|
|
180
|
-
});
|
|
181
|
-
if (typeof Container !== 'function') {
|
|
182
|
-
Container.name = name;
|
|
183
|
-
Container.props = {
|
|
184
|
-
[ROUTER_LINK_VALUE]: DEFAULT_EMPTY_PROP,
|
|
185
|
-
};
|
|
186
|
-
componentProps.forEach((componentProp) => {
|
|
187
|
-
Container.props[componentProp] = DEFAULT_EMPTY_PROP;
|
|
188
|
-
});
|
|
189
|
-
if (modelProp) {
|
|
190
|
-
Container.props[MODEL_VALUE] = DEFAULT_EMPTY_PROP;
|
|
191
|
-
Container.emits = [UPDATE_VALUE_EVENT];
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
return Container;
|
|
195
|
-
};
|
|
196
|
-
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../packages/beeq-vue/src/vue-component-lib/utils.ts"],"names":[],"mappings":"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"}
|