admins-components 1.2.0 → 1.2.1
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/admins-components.css +1 -0
- package/dist/admins-components.js +959 -0
- package/dist/admins-components.umd.cjs +1 -0
- package/package.json +17 -1
- package/admins-components/.vscode/extensions.json +0 -3
- package/admins-components/README.md +0 -5
- package/admins-components/index.html +0 -13
- package/admins-components/package.json +0 -21
- package/admins-components/public/vite.svg +0 -1
- package/admins-components/src/App.vue +0 -30
- package/admins-components/src/assets/vue.svg +0 -1
- package/admins-components/src/components/HelloWorld.vue +0 -41
- package/admins-components/src/main.ts +0 -5
- package/admins-components/src/style.css +0 -79
- package/admins-components/src/vite-env.d.ts +0 -1
- package/admins-components/tsconfig.app.json +0 -14
- package/admins-components/tsconfig.json +0 -7
- package/admins-components/tsconfig.node.json +0 -24
- package/admins-components/vite.config.ts +0 -7
- package/index.html +0 -13
- package/src/App.vue +0 -5
- package/src/assets/dropdown.scss +0 -61
- package/src/assets/dropdowncallback.scss +0 -57
- package/src/assets/dropdownmenu.scss +0 -33
- package/src/assets/filtercompact.scss +0 -6
- package/src/assets/filtercontrol.scss +0 -23
- package/src/assets/iconbutton.scss +0 -31
- package/src/assets/main.scss +0 -38
- package/src/assets/paginatorcontrol.scss +0 -16
- package/src/assets/propertyselector.scss +0 -12
- package/src/assets/tabletolist.scss +0 -115
- package/src/assets/tabletolistoptions.scss +0 -22
- package/src/assets/textlistbox.scss +0 -16
- package/src/assets/toastcomponent.scss +0 -23
- package/src/components/CheckBox.vue +0 -25
- package/src/components/CheckBoxList.vue +0 -48
- package/src/components/DropDown.vue +0 -203
- package/src/components/DropDownCallBack.vue +0 -109
- package/src/components/DropDownMenu.vue +0 -88
- package/src/components/FilterCompact.vue +0 -146
- package/src/components/FilterControl.vue +0 -133
- package/src/components/IconButton.vue +0 -25
- package/src/components/PaginatorControl.vue +0 -82
- package/src/components/RadioButton.vue +0 -21
- package/src/components/RadioButtonGroup.vue +0 -28
- package/src/components/SpinningProgress.vue +0 -9
- package/src/components/TableToList.vue +0 -281
- package/src/components/TableToListOptions.vue +0 -99
- package/src/components/TextListBox.vue +0 -50
- package/src/components/ToastComponent.vue +0 -82
- package/src/components/ToastWrapper.vue +0 -44
- package/src/index.ts +0 -56
- package/src/main.ts +0 -5
- package/src/style.css +0 -79
- package/src/vite-env.d.ts +0 -1
- package/tsconfig.app.json +0 -14
- package/tsconfig.json +0 -7
- package/tsconfig.node.json +0 -24
- package/vite.config.ts +0 -49
package/src/style.css
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
3
|
-
line-height: 1.5;
|
|
4
|
-
font-weight: 400;
|
|
5
|
-
|
|
6
|
-
color-scheme: light dark;
|
|
7
|
-
color: rgba(255, 255, 255, 0.87);
|
|
8
|
-
background-color: #242424;
|
|
9
|
-
|
|
10
|
-
font-synthesis: none;
|
|
11
|
-
text-rendering: optimizeLegibility;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
a {
|
|
17
|
-
font-weight: 500;
|
|
18
|
-
color: #646cff;
|
|
19
|
-
text-decoration: inherit;
|
|
20
|
-
}
|
|
21
|
-
a:hover {
|
|
22
|
-
color: #535bf2;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
body {
|
|
26
|
-
margin: 0;
|
|
27
|
-
display: flex;
|
|
28
|
-
place-items: center;
|
|
29
|
-
min-width: 320px;
|
|
30
|
-
min-height: 100vh;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
h1 {
|
|
34
|
-
font-size: 3.2em;
|
|
35
|
-
line-height: 1.1;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
button {
|
|
39
|
-
border-radius: 8px;
|
|
40
|
-
border: 1px solid transparent;
|
|
41
|
-
padding: 0.6em 1.2em;
|
|
42
|
-
font-size: 1em;
|
|
43
|
-
font-weight: 500;
|
|
44
|
-
font-family: inherit;
|
|
45
|
-
background-color: #1a1a1a;
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
transition: border-color 0.25s;
|
|
48
|
-
}
|
|
49
|
-
button:hover {
|
|
50
|
-
border-color: #646cff;
|
|
51
|
-
}
|
|
52
|
-
button:focus,
|
|
53
|
-
button:focus-visible {
|
|
54
|
-
outline: 4px auto -webkit-focus-ring-color;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.card {
|
|
58
|
-
padding: 2em;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
#app {
|
|
62
|
-
max-width: 1280px;
|
|
63
|
-
margin: 0 auto;
|
|
64
|
-
padding: 2rem;
|
|
65
|
-
text-align: center;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@media (prefers-color-scheme: light) {
|
|
69
|
-
:root {
|
|
70
|
-
color: #213547;
|
|
71
|
-
background-color: #ffffff;
|
|
72
|
-
}
|
|
73
|
-
a:hover {
|
|
74
|
-
color: #747bff;
|
|
75
|
-
}
|
|
76
|
-
button {
|
|
77
|
-
background-color: #f9f9f9;
|
|
78
|
-
}
|
|
79
|
-
}
|
package/src/vite-env.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|
package/tsconfig.app.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
5
|
-
|
|
6
|
-
/* Linting */
|
|
7
|
-
"strict": true,
|
|
8
|
-
"noUnusedLocals": true,
|
|
9
|
-
"noUnusedParameters": true,
|
|
10
|
-
"noFallthroughCasesInSwitch": true,
|
|
11
|
-
"noUncheckedSideEffectImports": true
|
|
12
|
-
},
|
|
13
|
-
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
14
|
-
}
|
package/tsconfig.json
DELETED
package/tsconfig.node.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
4
|
-
"target": "ES2022",
|
|
5
|
-
"lib": ["ES2023"],
|
|
6
|
-
"module": "ESNext",
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
|
|
9
|
-
/* Bundler mode */
|
|
10
|
-
"moduleResolution": "bundler",
|
|
11
|
-
"allowImportingTsExtensions": true,
|
|
12
|
-
"isolatedModules": true,
|
|
13
|
-
"moduleDetection": "force",
|
|
14
|
-
"noEmit": true,
|
|
15
|
-
|
|
16
|
-
/* Linting */
|
|
17
|
-
"strict": true,
|
|
18
|
-
"noUnusedLocals": true,
|
|
19
|
-
"noUnusedParameters": true,
|
|
20
|
-
"noFallthroughCasesInSwitch": true,
|
|
21
|
-
"noUncheckedSideEffectImports": true
|
|
22
|
-
},
|
|
23
|
-
"include": ["vite.config.ts"]
|
|
24
|
-
}
|
package/vite.config.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from "vite";
|
|
2
|
-
import vue from "@vitejs/plugin-vue";
|
|
3
|
-
import typescript2 from "rollup-plugin-typescript2";
|
|
4
|
-
|
|
5
|
-
export default defineConfig({
|
|
6
|
-
plugins: [
|
|
7
|
-
vue(),
|
|
8
|
-
typescript2({
|
|
9
|
-
check: false,
|
|
10
|
-
include: [
|
|
11
|
-
"src/components/*.vue",
|
|
12
|
-
"src/components/**/*.vue",
|
|
13
|
-
"src/*.ts",
|
|
14
|
-
"src/**/*.ts",
|
|
15
|
-
],
|
|
16
|
-
|
|
17
|
-
tsconfigOverride: {
|
|
18
|
-
compilerOptions: {
|
|
19
|
-
outDir: "dist",
|
|
20
|
-
sourceMap: true,
|
|
21
|
-
declaration: true,
|
|
22
|
-
declarationMap: true,
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
exclude: ["vite.config.ts", "main.ts"],
|
|
27
|
-
}),
|
|
28
|
-
],
|
|
29
|
-
|
|
30
|
-
build: {
|
|
31
|
-
cssCodeSplit: false,
|
|
32
|
-
lib: {
|
|
33
|
-
entry: "./src/index.ts",
|
|
34
|
-
formats: ["es", "cjs"],
|
|
35
|
-
name: "admins-components",
|
|
36
|
-
fileName: (format) => `plugin.${format}.js`,
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
rollupOptions: {
|
|
40
|
-
external: ["vue"],
|
|
41
|
-
output: {
|
|
42
|
-
exports: "named",
|
|
43
|
-
globals: {
|
|
44
|
-
Vue: "Vue",
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
});
|