@timus-networks/theme 1.0.143 → 1.0.144

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "1.0.143",
3
+ "version": "1.0.144",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "main": "module.js",
6
6
  "types": "index.d.ts",
@@ -1,10 +1,10 @@
1
1
  import Vue from 'vue';
2
2
 
3
+ import components from '../components-js/exporter';
4
+
3
5
  // get options passed from module.js
4
6
  const options = JSON.parse(`<%= JSON.stringify(options) %>`);
5
7
 
6
- import components from '../components-js/exporter';
7
-
8
8
  // loop through components and register them
9
9
  for (const name in components) {
10
10
  Vue.component(name, {
@@ -1,10 +1,10 @@
1
1
  import Vue from 'vue';
2
2
 
3
+ import components from '../components-ts/exporter';
4
+
3
5
  // get options passed from module.js
4
6
  const options = JSON.parse(`<%= JSON.stringify(options) %>`);
5
7
 
6
- import components from '../components-ts/exporter';
7
-
8
8
  // loop through components and register them
9
9
  for (const name in components) {
10
10
  Vue.component(name, {