File tree Expand file tree Collapse file tree 4 files changed +171
-2
lines changed
Expand file tree Collapse file tree 4 files changed +171
-2
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 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" ,
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" : {
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" ,
141146 "typescript" : " ^5.7.3" ,
142147 "vite" : " ^7.0.6"
143148 }
144- }
149+ }
Original file line number Diff line number Diff line change 11import { Config } from '@stencil/core' ;
22import { sass } from '@stencil/sass' ;
33import { reactOutputTarget } from '@stencil/react-output-target' ;
4+ import { vueOutputTarget } from '@stencil/vue-output-target' ;
45import nodePolyfills from 'rollup-plugin-node-polyfills' ;
56import tailwind from 'stencil-tailwind-plugin' ;
67import { 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 ,
You can’t perform that action at this time.
0 commit comments