@fy-/fws-vue 0.2.6 → 0.2.8
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 +0 -12
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -48,10 +48,6 @@ import FilterData from "./components/fws/FilterData.vue";
|
|
|
48
48
|
import CmsArticleBoxed from "./components/fws/CmsArticleBoxed.vue";
|
|
49
49
|
import CmsArticleSingle from "./components/fws/CmsArticleSingle.vue";
|
|
50
50
|
|
|
51
|
-
// Primevue
|
|
52
|
-
import Wind from "./presets/Wind";
|
|
53
|
-
import Lara from "./presets/Lara";
|
|
54
|
-
|
|
55
51
|
// Css
|
|
56
52
|
import "./style.css";
|
|
57
53
|
|
|
@@ -96,11 +92,6 @@ declare module "vue" {
|
|
|
96
92
|
}
|
|
97
93
|
}
|
|
98
94
|
|
|
99
|
-
const PrimevuePresets = {
|
|
100
|
-
Wind: Wind,
|
|
101
|
-
Lara: Lara,
|
|
102
|
-
} as Record<string, any>;
|
|
103
|
-
|
|
104
95
|
export {
|
|
105
96
|
i18nextPromise,
|
|
106
97
|
useTranslation,
|
|
@@ -141,7 +132,4 @@ export {
|
|
|
141
132
|
FilterData,
|
|
142
133
|
CmsArticleBoxed,
|
|
143
134
|
CmsArticleSingle,
|
|
144
|
-
|
|
145
|
-
// Primevue
|
|
146
|
-
PrimevuePresets,
|
|
147
135
|
};
|