quasar-factory-lib 0.0.3 → 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/dist/components/K-Table/index.d.ts +2 -2
- package/dist/components/plugins.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/quasar-factory-lib.js +2 -2
- package/dist/quasar-factory-lib.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/K-Table/index.ts +3 -3
- package/src/components/plugins.ts +2 -2
- package/src/index.ts +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Plugin } from 'vue';
|
|
2
|
-
import
|
|
2
|
+
import MyTable from './K-Table.vue';
|
|
3
3
|
/** export button specific types */
|
|
4
4
|
/** export button plugin */
|
|
5
5
|
declare const _default: Plugin;
|
|
6
6
|
export default _default;
|
|
7
7
|
/** export button components */
|
|
8
|
-
export {
|
|
8
|
+
export { MyTable as MyTable };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import KMyButton from './KMyButton';
|
|
2
|
-
import
|
|
3
|
-
export { KMyButton,
|
|
2
|
+
import MyTable from './K-Table';
|
|
3
|
+
export { KMyButton, MyTable };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@quasar/extras/material-icons/material-icons.css';
|
|
2
2
|
import { Plugin } from 'vue';
|
|
3
3
|
import TranslateKeys from './i18n/translateKeys.ts';
|
|
4
|
-
export { KMyButton,
|
|
4
|
+
export { KMyButton, MyTable } from './components/index.ts';
|
|
5
5
|
export type { TranslateKeys };
|
|
6
6
|
export * from './i18n/messages.js';
|
|
7
7
|
import './css/app.scss';
|
|
@@ -7959,7 +7959,7 @@ function nf(e, t, n, l, o, a) {
|
|
|
7959
7959
|
}
|
|
7960
7960
|
const lf = /* @__PURE__ */ mt(tf, [["render", nf]]), of = {
|
|
7961
7961
|
install(e) {
|
|
7962
|
-
Xr(e, "
|
|
7962
|
+
Xr(e, "MyTable", lf);
|
|
7963
7963
|
}
|
|
7964
7964
|
}, af = {
|
|
7965
7965
|
test: "Test"
|
|
@@ -11514,7 +11514,7 @@ function Jv(e) {
|
|
|
11514
11514
|
}
|
|
11515
11515
|
export {
|
|
11516
11516
|
bu as KMyButton,
|
|
11517
|
-
lf as
|
|
11517
|
+
lf as MyTable,
|
|
11518
11518
|
Xv as QuasarFactoryLib,
|
|
11519
11519
|
Jv as updatePackageLanguage
|
|
11520
11520
|
};
|