@modeltables/fontawesome-vuetify 1.0.2 → 1.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/components/headerFilters/Filters.vue +90 -0
- package/components/helpers/instances.ts +20 -0
- package/components/index.d.ts +1 -1
- package/components/index.js +7 -0
- package/components/models/tablemodels.d.ts +20 -0
- package/components/models/tablemodels.js +26 -0
- package/components/pagination/PaginationView.vue +4 -0
- package/components/search/SearchView.vue +41 -0
- package/components/table/TableView.vue +28 -72
- package/components/table/data/ItemView.vue +45 -0
- package/dist/index.amd.ts +14 -14
- package/dist/index.cjs.ts +14 -14
- package/dist/style.css +1 -1
- package/package.json +52 -55
- package/tsconfig.json +4 -7
- package/vue.config.js +53 -0
- /package/{README.md → components/index.html} +0 -0
- /package/components/models/{table-models.ts → tablemodels.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,55 +1,52 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@modeltables/fontawesome-vuetify",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"fortawesome",
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"cli-
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"author": "Ignjat Koicki",
|
|
54
|
-
"description": ""
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@modeltables/fontawesome-vuetify",
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./components/index.d.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"default": "./dist/index.cjs.ts",
|
|
10
|
+
"types": "./dist/index.amd.ts"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"vue",
|
|
15
|
+
"vuetify",
|
|
16
|
+
"fortawesome",
|
|
17
|
+
"boilerPlate"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"vite-build": "vite build",
|
|
21
|
+
"cli-build": "vue-cli-service build",
|
|
22
|
+
"type-check": "vue-tsc --build",
|
|
23
|
+
"tsc": "tsc"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"registry": "https://registry.npmjs.org/"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/node": "^24.10.1",
|
|
30
|
+
"@vue/cli-plugin-typescript": "^5.0.9",
|
|
31
|
+
"ts-loader": "^9.4.4",
|
|
32
|
+
"vue-tsc": "^1.5.0"
|
|
33
|
+
},
|
|
34
|
+
"author": "Ignjat Koicki",
|
|
35
|
+
"license": "ISC",
|
|
36
|
+
"packageManager": "pnpm@10.25.0",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
39
|
+
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
|
40
|
+
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
41
|
+
"@fortawesome/vue-fontawesome": "^3.1.2",
|
|
42
|
+
"@vitejs/plugin-vue": "5.0.0",
|
|
43
|
+
"@vue/cli-service": "^5.0.9",
|
|
44
|
+
"tsconfig": "^7.0.0",
|
|
45
|
+
"typescript": "^5.9.3",
|
|
46
|
+
"vite": "5.4.2",
|
|
47
|
+
"vite-plugin-vuetify": "2.1.2",
|
|
48
|
+
"vue": "^3.5.26",
|
|
49
|
+
"vuetify": "^3.11.5",
|
|
50
|
+
"webpack": "^5.104.1"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"include": [
|
|
3
|
-
"components/index.d.ts",
|
|
4
|
-
"components/test/*.ts",
|
|
5
|
-
"components/test/*.vue",
|
|
3
|
+
"./components/index.d.ts",
|
|
6
4
|
"types"
|
|
7
5
|
],
|
|
8
6
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
@@ -10,13 +8,12 @@
|
|
|
10
8
|
// File Layout
|
|
11
9
|
// "rootDir": "./src",
|
|
12
10
|
"outDir": "./dist",
|
|
13
|
-
"module": "preserve",
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
|
-
|
|
16
11
|
|
|
17
12
|
// Environment Settings
|
|
18
13
|
// See also https://aka.ms/tsconfig/module
|
|
19
|
-
"
|
|
14
|
+
"module": "preserve",
|
|
15
|
+
"moduleResolution": "bundler",
|
|
16
|
+
"target": "esnext",
|
|
20
17
|
"types": [],
|
|
21
18
|
// For nodejs:
|
|
22
19
|
// "lib": ["esnext"],
|
package/vue.config.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { defineConfig } from "@vue/cli-service";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
pages: {
|
|
5
|
+
index: {
|
|
6
|
+
// entry for the page (must be a JS/TS entry, not a .d.ts file)
|
|
7
|
+
entry: 'components/index.js',
|
|
8
|
+
// the source template
|
|
9
|
+
template: 'components/index.html',
|
|
10
|
+
// output as dist/index.html
|
|
11
|
+
filename: './styles/index.html',
|
|
12
|
+
// when using title option,
|
|
13
|
+
// template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title>
|
|
14
|
+
title: 'Index Page',
|
|
15
|
+
// chunks to include on this page, by default includes
|
|
16
|
+
// extracted common chunks and vendor chunks.
|
|
17
|
+
chunks: ['index', 'chunk-common', 'index.d']
|
|
18
|
+
},
|
|
19
|
+
// when using the entry-only string format,
|
|
20
|
+
// template is inferred to be `public/subpage.html`
|
|
21
|
+
// and falls back to `public/index.html` if not found.
|
|
22
|
+
// Output filename is inferred to be `subpage.html`.
|
|
23
|
+
//subpage: 'src/subpage/main.js'
|
|
24
|
+
},
|
|
25
|
+
transpileDependencies: true,
|
|
26
|
+
chainWebpack : (config) => {
|
|
27
|
+
console.warn(config);
|
|
28
|
+
config.output.filename('./js/[name].js');
|
|
29
|
+
},
|
|
30
|
+
configureWebpack: {
|
|
31
|
+
resolve: {
|
|
32
|
+
extensions: ['.ts', '.tsx', '.js', '.vue', '.json']
|
|
33
|
+
},
|
|
34
|
+
output: {
|
|
35
|
+
filename: './js/[name].d.js',
|
|
36
|
+
chunkFilename: './js/[name].d.js',
|
|
37
|
+
library: 'MyLib',
|
|
38
|
+
umdNamedDefine: true,
|
|
39
|
+
},
|
|
40
|
+
externals: {
|
|
41
|
+
vue: 'Vue'
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
css: {
|
|
45
|
+
extract: {
|
|
46
|
+
filename: './styles/[name].css',
|
|
47
|
+
chunkFilename: './styles/[name].css',
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
// testMatch: [
|
|
51
|
+
// 'src/test/form.test.ts'
|
|
52
|
+
// ],
|
|
53
|
+
});
|
|
File without changes
|
|
File without changes
|