quasar-factory-lib 0.0.2 → 0.0.4
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/K-Table.vue.d.ts +836 -0
- package/dist/components/K-Table/components/BasicCheckBox.vue.d.ts +33 -0
- package/dist/components/K-Table/components/CardListSkeleton.vue.d.ts +2 -0
- package/dist/components/K-Table/components/CustomizedButton.vue.d.ts +30 -0
- package/dist/components/K-Table/components/CustomizedCheckBox.vue.d.ts +65 -0
- package/dist/components/K-Table/components/CustomizedIcon.vue.d.ts +36 -0
- package/dist/components/K-Table/components/TableColumnsSelector.vue.d.ts +28 -0
- package/dist/components/K-Table/components/TableFilter.vue.d.ts +17 -0
- package/dist/components/K-Table/components/TablePopupEdit.vue.d.ts +87 -0
- package/dist/components/K-Table/components/TableSkeleton.vue.d.ts +2 -0
- package/dist/components/K-Table/components/TableSlotBody.vue.d.ts +282 -0
- package/dist/components/K-Table/components/TableSlotGrid.vue.d.ts +289 -0
- package/dist/components/K-Table/components/TableSlotHeader.vue.d.ts +34 -0
- package/dist/components/K-Table/index.d.ts +8 -0
- package/dist/components/K-Table/utils/filterMethod.d.ts +9 -0
- package/dist/components/K-Table/utils/infiniteScroll.d.ts +22 -0
- package/dist/components/K-Table/utils/setTableHeight.d.ts +4 -0
- package/dist/components/K-Table/utils/sort.d.ts +5 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/plugins.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/quasar-factory-lib.js +9001 -2514
- package/dist/quasar-factory-lib.umd.cjs +9 -9
- package/dist/style.css +1 -1
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { App, Plugin } from 'vue'
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
import MyTable from './K-Table.vue'
|
|
4
4
|
|
|
5
5
|
import { registerComponent } from '@/utils/plugins'
|
|
6
6
|
|
|
@@ -10,9 +10,9 @@ import { registerComponent } from '@/utils/plugins'
|
|
|
10
10
|
/** export button plugin */
|
|
11
11
|
export default {
|
|
12
12
|
install (app: App) {
|
|
13
|
-
registerComponent(app, 'KTable',
|
|
13
|
+
registerComponent(app, 'KTable', MyTable)
|
|
14
14
|
}
|
|
15
15
|
} as Plugin
|
|
16
16
|
|
|
17
17
|
/** export button components */
|
|
18
|
-
export {
|
|
18
|
+
export { MyTable as MyTable }
|
package/src/index.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '@quasar/extras/material-icons/material-icons.css'
|
|
2
2
|
import { Quasar } from 'quasar'
|
|
3
3
|
import { App, Plugin } from 'vue'
|
|
4
|
-
import { KMyButton,
|
|
4
|
+
import { KMyButton, MyTable } from './components/plugins.ts'
|
|
5
5
|
import { registerPlugin, setVueInstance } from './utils/plugins.ts'
|
|
6
6
|
import TranslateKeys from './i18n/translateKeys.ts'
|
|
7
7
|
|
|
8
|
-
export { KMyButton,
|
|
8
|
+
export { KMyButton, MyTable } from './components/index.ts'
|
|
9
9
|
|
|
10
10
|
export type { TranslateKeys }
|
|
11
11
|
// import plugins from "./components/plugins";
|
|
@@ -19,7 +19,7 @@ const plugin: Plugin = {
|
|
|
19
19
|
console.log('[Quasar Components] Installing...')
|
|
20
20
|
setVueInstance(app)
|
|
21
21
|
registerPlugin(app, KMyButton)
|
|
22
|
-
registerPlugin(app,
|
|
22
|
+
registerPlugin(app, MyTable)
|
|
23
23
|
app.use(i18n)
|
|
24
24
|
i18n.global.locale = 'en'
|
|
25
25
|
app.use(Quasar, {
|