quasar-factory-lib 0.0.5 → 0.0.6

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/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import TranslateKeys from './i18n/translateKeys.ts';
4
4
  export { KMyButton, MyTable } from './components/index.ts';
5
5
  export type { TranslateKeys };
6
6
  export * from './i18n/messages.js';
7
- import './css/app.scss';
7
+ import './css/app.css';
8
8
  declare const plugin: Plugin;
9
9
  export declare function updatePackageLanguage(lang: 'es' | 'en'): void;
10
10
  export { plugin as QuasarFactoryLib };
package/package.json CHANGED
@@ -102,5 +102,5 @@
102
102
  "release": "standard-version"
103
103
  },
104
104
  "type": "module",
105
- "version": "0.0.5"
105
+ "version": "0.0.6"
106
106
  }
@@ -288,5 +288,5 @@ export default defineComponent({
288
288
  })
289
289
  </script>
290
290
  <style>
291
- @import url('./style.css');
291
+ /* @import url('./style.css'); */
292
292
  </style>
@@ -0,0 +1 @@
1
+ @import url('../components/K-Table/css/table.css');
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ export type { TranslateKeys }
11
11
  // import plugins from "./components/plugins";
12
12
  export * from './i18n/messages.js'
13
13
  // Import Quasar css
14
- import './css/app.scss'
14
+ import './css/app.css'
15
15
  import i18n from './i18n'
16
16
 
17
17
  const plugin: Plugin = {
package/src/css/app.scss DELETED
File without changes