Skip to content

Commit fb81bd4

Browse files
authored
Merge pull request #269 from multiversx/development
0.1.4
2 parents b5973b8 + 2d43837 commit fb81bd4

File tree

4 files changed

+171
-2
lines changed

4 files changed

+171
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [[0.1.4](https://github.com/multiversx/mx-sdk-dapp-ui/pull/269)] - 2025-11-21
11+
12+
- [Added Vue.js component outputs](https://github.com/multiversx/mx-sdk-dapp-ui/pull/268)
13+
1014
## [[0.1.3](https://github.com/multiversx/mx-sdk-dapp-ui/pull/266)] - 2025-11-12
1115

1216
- [Added skip tests if PR is in draft](https://github.com/multiversx/mx-sdk-dapp-ui/pull/265)

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp-ui",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -67,6 +67,10 @@
6767
"./react": {
6868
"import": "./dist/react/components.ts",
6969
"require": "./dist/react/components.ts"
70+
},
71+
"./vue": {
72+
"types": "./dist/vue/components.ts",
73+
"import": "./dist/vue/components.ts"
7074
}
7175
},
7276
"repository": {
@@ -100,6 +104,7 @@
100104
"dependencies": {
101105
"@stencil/core": "^4.36.2",
102106
"@stencil/react-output-target": "1.2.0",
107+
"@stencil/vue-output-target": "0.11.8",
103108
"classnames": ">=2.5.1",
104109
"lodash.capitalize": "^4.2.1",
105110
"lodash.inrange": "^3.3.0",
@@ -141,4 +146,4 @@
141146
"typescript": "^5.7.3",
142147
"vite": "^7.0.6"
143148
}
144-
}
149+
}

pnpm-lock.yaml

Lines changed: 153 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stencil.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Config } from '@stencil/core';
22
import { sass } from '@stencil/sass';
33
import { reactOutputTarget } from '@stencil/react-output-target';
4+
import { vueOutputTarget } from '@stencil/vue-output-target';
45
import nodePolyfills from 'rollup-plugin-node-polyfills';
56
import tailwind from 'stencil-tailwind-plugin';
67
import { getExcludedComponentTags } from './src/global/scripts/exclude-react-components';
@@ -42,6 +43,12 @@ export const config: Config = {
4243
customElementsDir: '../web-components',
4344
excludeComponents,
4445
}),
46+
vueOutputTarget({
47+
componentCorePackage: '../../dist/types',
48+
proxiesFile: './dist/vue/components.ts',
49+
customElementsDir: '../web-components',
50+
excludeComponents,
51+
}),
4552
{
4653
type: 'dist-custom-elements',
4754
externalRuntime: false,

0 commit comments

Comments
 (0)