spoko-design-system 0.2.36 → 0.2.37
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 +31 -2
- package/package.json +1 -1
- package/src/index.ts +0 -23
package/index.ts
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
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
|
-
import MyComponent from './src/MyComponent.astro';
|
|
4
|
+
// import MyComponent from './src/src/MyComponent.astro';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// export default MyComponent;
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
// src/index.ts
|
|
12
|
+
|
|
13
|
+
// Vue Components
|
|
14
|
+
export { default as FuckRussia } from './src/components/FuckRussia.vue';
|
|
15
|
+
export { default as FlagPL } from './src/components/flags/FlagPL.vue';
|
|
16
|
+
export { default as Badges } from './src/components/Badges.vue';
|
|
17
|
+
export { default as SlimBanner } from './src/components/SlimBanner.vue';
|
|
18
|
+
export { default as Jumbatron } from './src/components/Jumbatron.vue';
|
|
19
|
+
export { default as Button } from './src/components/Button.vue';
|
|
20
|
+
export { default as Breadcrumbs } from './src/components/Breadcrumbs.vue';
|
|
21
|
+
export { default as ProductDetailsList } from './src/components/ProductDetailsList.vue';
|
|
22
|
+
export { default as FeaturesList } from './src/components/FeaturesList.vue';
|
|
23
|
+
export { default as ProductCodes } from './src/components/ProductCodes.vue';
|
|
24
|
+
export { default as ProductEngineType } from './src/components/Product/ProductEngineType.vue';
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
// Astro Components
|
|
29
|
+
export { default as Copyright } from './src/components/Copyright.astro';
|
|
30
|
+
export { default as HandDrive } from './src/components/HandDrive.astro';
|
|
31
|
+
export { default as Faq } from './src/components/Faq.astro';
|
|
32
|
+
export { default as FaqItem } from './src/components/FaqItem.astro';
|
|
33
|
+
|
|
34
|
+
export { default as ProductNumber } from './src/components/Product/ProductNumber.astro';
|
|
35
|
+
export { default as ProductImage } from './src/components/Product/ProductImage.astro';
|
package/package.json
CHANGED
package/src/index.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// src/index.ts
|
|
2
|
-
|
|
3
|
-
// Vue Components
|
|
4
|
-
export { default as FuckRussia } from './components/FuckRussia.vue';
|
|
5
|
-
export { default as FlagPL } from './components/flags/FlagPL.vue';
|
|
6
|
-
export { default as Badges } from './components/Badges.vue';
|
|
7
|
-
export { default as SlimBanner } from './components/SlimBanner.vue';
|
|
8
|
-
export { default as Jumbatron } from './components/Jumbatron.vue';
|
|
9
|
-
export { default as Button } from './components/Button.vue';
|
|
10
|
-
export { default as Breadcrumbs } from './components/Breadcrumbs.vue';
|
|
11
|
-
export { default as ProductDetailsList } from './components/ProductDetailsList.vue';
|
|
12
|
-
export { default as FeaturesList } from './components/FeaturesList.vue';
|
|
13
|
-
export { default as ProductCodes } from './components/ProductCodes.vue';
|
|
14
|
-
export { default as ProductEngineType } from './components/Product/ProductEngineType.vue';
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
// Astro Components
|
|
19
|
-
export { default as Copyright } from './components/Copyright.astro';
|
|
20
|
-
export { default as HandDrive } from './components/HandDrive.astro';
|
|
21
|
-
export { default as Faq } from './components/Faq.astro';
|
|
22
|
-
export { default as ProductNumber } from './components/Product/ProductNumber.astro';
|
|
23
|
-
export { default as ProductImage } from './components/Product/ProductImage.astro';
|