Skip to content

Commit

Permalink
feat(ui): register a new VDivider component
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Jun 12, 2023
1 parent 0d6c269 commit 595de50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"@morpheme/toast": "^1.0.0-beta.9",
"@morpheme/tooltip": "^1.0.0-beta.9",
"@morpheme/utils": "^1.0.0-beta.9",
"@morpheme/divider": "^1.0.0-beta.9",
"@vue/test-utils": "^2.0.0-rc.17",
"sass": "^1.58.3",
"vue": "^3.3.4"
Expand Down
3 changes: 3 additions & 0 deletions packages/ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ import {
VTimelineItemContent,
} from '@morpheme/timeline';
import {VBanner, VBannerText} from '@morpheme/banner';
import {VDivider} from '@morpheme/divider';

const plugin: Plugin = {
install: (app) => {
Expand Down Expand Up @@ -175,6 +176,7 @@ const plugin: Plugin = {
app.component('VTimelineItemContent', VTimelineItemContent);
app.component('VBanner', VBanner);
app.component('VBannerText', VBannerText);
app.component('VDivider', VDivider);
},
};

Expand Down Expand Up @@ -239,6 +241,7 @@ export {
VTimelineItemContent,
VBanner,
VBannerText,
VDivider
};

export * from '@morpheme/utils';
Expand Down

0 comments on commit 595de50

Please sign in to comment.