@ansiversa/components 0.0.4 → 0.0.5
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/index.ts +16 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
// Do not write code directly here, instead use the `src` folder!
|
|
2
2
|
// Then, use this file to export everything you want your user to access.
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
export { default as AvBrand } from './src/AvBrand.astro';
|
|
5
|
+
export { default as AvButton } from './src/AvButton.astro';
|
|
6
|
+
export { default as AvCard } from './src/AvCard.astro';
|
|
7
|
+
export { default as AvCheckbox } from './src/AvCheckbox.astro';
|
|
8
|
+
export { default as AvContainer } from './src/AvContainer.astro';
|
|
9
|
+
export { default as AvDivider } from './src/AvDivider.astro';
|
|
10
|
+
export { default as AvFeatureItem } from './src/AvFeatureItem.astro';
|
|
11
|
+
export { default as AvFeatureList } from './src/AvFeatureList.astro';
|
|
12
|
+
export { default as AvFooter } from './src/AvFooter.astro';
|
|
13
|
+
export { default as AvInput } from './src/AvInput.astro';
|
|
14
|
+
export { default as AvNavbar } from './src/AvNavbar.astro';
|
|
15
|
+
export { default as AvNavbarActions } from './src/AvNavbarActions.astro';
|
|
16
|
+
export { default as AvTimeline } from './src/AvTimeline.astro';
|
|
17
|
+
export { default as MyComponent } from './src/MyComponent.astro';
|
|
5
18
|
|
|
6
|
-
|
|
19
|
+
// Preserve default export for backwards compatibility.
|
|
20
|
+
export { default } from './src/MyComponent.astro';
|