Skip to content

Commit

Permalink
[beam] Export metadata beam components (#185)
Browse files Browse the repository at this point in the history
* fix: export beam metadata components

* feat: export beam metadata components
  • Loading branch information
agritheory authored Nov 5, 2024
1 parent 3f72304 commit 761f270
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions beam/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,10 @@ export {
ListView,
Navbar,
ScanInput,
SplitColumn,
BeamHeading,
BeamArrow,
BeamBtn,
BeamProgress,
install,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@stonecrop/beam",
"comment": "export beam metadata components",
"type": "none"
}
],
"packageName": "@stonecrop/beam"
}
15 changes: 15 additions & 0 deletions common/reviews/api/beam.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@

import ActionFooter from '@/components/ActionFooter.vue';
import { App } from 'vue';
import BeamArrow from './components/BeamArrow.vue';
import BeamBtn from './components/BeamBtn.vue';
import BeamHeading from './components/BeamHeading.vue';
import BeamMetadata from './components/BeamMetadata.vue';
import BeamModal from '@/components/BeamModal.vue';
import BeamModalOutlet from '@/components/BeamModalOutlet.vue';
import BeamProgress from './components/BeamProgress.vue';
import Confirm from '@/components/Confirm.vue';
import ItemCheck from '@/components/ItemCheck.vue';
import ItemCount from '@/components/ItemCount.vue';
Expand All @@ -17,15 +21,24 @@ import ListItem from '@/components/ListItem.vue';
import ListView from '@/components/ListView.vue';
import Navbar from '@/components/Navbar.vue';
import ScanInput from '@/components/ScanInput.vue';
import SplitColumn from './components/SplitColumn.vue';

export { ActionFooter }

export { BeamArrow }

export { BeamBtn }

export { BeamHeading }

export { BeamMetadata }

export { BeamModal }

export { BeamModalOutlet }

export { BeamProgress }

export { Confirm }

// @public
Expand All @@ -45,6 +58,8 @@ export { Navbar }

export { ScanInput }

export { SplitColumn }

// (No @packageDocumentation comment for this package)

```

0 comments on commit 761f270

Please sign in to comment.