admins-components 1.0.0 → 1.2.0
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/README.md +5 -0
- package/admins-components/.vscode/extensions.json +3 -0
- package/admins-components/README.md +5 -0
- package/admins-components/index.html +13 -0
- package/admins-components/package.json +21 -0
- package/admins-components/public/vite.svg +1 -0
- package/admins-components/src/App.vue +30 -0
- package/admins-components/src/assets/vue.svg +1 -0
- package/admins-components/src/components/HelloWorld.vue +41 -0
- package/admins-components/src/main.ts +5 -0
- package/admins-components/src/style.css +79 -0
- package/admins-components/src/vite-env.d.ts +1 -0
- package/admins-components/tsconfig.app.json +14 -0
- package/admins-components/tsconfig.json +7 -0
- package/admins-components/tsconfig.node.json +24 -0
- package/admins-components/vite.config.ts +7 -0
- package/index.html +13 -0
- package/package.json +9 -19
- package/src/App.vue +5 -0
- package/src/assets/dropdown.scss +61 -0
- package/src/assets/dropdowncallback.scss +57 -0
- package/src/assets/dropdownmenu.scss +33 -0
- package/src/assets/filtercompact.scss +6 -0
- package/src/assets/filtercontrol.scss +23 -0
- package/src/assets/iconbutton.scss +31 -0
- package/src/assets/main.scss +38 -0
- package/src/assets/paginatorcontrol.scss +16 -0
- package/src/assets/propertyselector.scss +12 -0
- package/src/assets/tabletolist.scss +115 -0
- package/src/assets/tabletolistoptions.scss +22 -0
- package/src/assets/textlistbox.scss +16 -0
- package/src/assets/toastcomponent.scss +23 -0
- package/src/components/CheckBox.vue +25 -0
- package/src/components/CheckBoxList.vue +48 -0
- package/src/components/DropDown.vue +203 -0
- package/src/components/DropDownCallBack.vue +109 -0
- package/src/components/DropDownMenu.vue +88 -0
- package/src/components/FilterCompact.vue +146 -0
- package/src/components/FilterControl.vue +133 -0
- package/src/components/IconButton.vue +25 -0
- package/src/components/PaginatorControl.vue +82 -0
- package/src/components/RadioButton.vue +21 -0
- package/src/components/RadioButtonGroup.vue +28 -0
- package/src/components/SpinningProgress.vue +9 -0
- package/src/components/TableToList.vue +281 -0
- package/src/components/TableToListOptions.vue +99 -0
- package/src/components/TextListBox.vue +50 -0
- package/src/components/ToastComponent.vue +82 -0
- package/src/components/ToastWrapper.vue +44 -0
- package/src/index.ts +56 -0
- package/src/main.ts +5 -0
- package/src/style.css +79 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.app.json +14 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +24 -0
- package/vite.config.ts +49 -0
- package/dist/admins-components.css +0 -1
- package/dist/admins-components.mjs +0 -948
- package/dist/admins-components.umd.js +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Vite + Vue + TS</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"></div>
|
|
11
|
+
<script type="module" src="/src/main.ts"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "admins-components",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "vue-tsc -b && vite build",
|
|
9
|
+
"preview": "vite preview"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"vue": "^3.5.13"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
16
|
+
"@vue/tsconfig": "^0.7.0",
|
|
17
|
+
"typescript": "~5.7.2",
|
|
18
|
+
"vite": "^6.2.0",
|
|
19
|
+
"vue-tsc": "^2.2.4"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import HelloWorld from './components/HelloWorld.vue'
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<div>
|
|
7
|
+
<a href="https://vite.dev" target="_blank">
|
|
8
|
+
<img src="/vite.svg" class="logo" alt="Vite logo" />
|
|
9
|
+
</a>
|
|
10
|
+
<a href="https://vuejs.org/" target="_blank">
|
|
11
|
+
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
|
|
12
|
+
</a>
|
|
13
|
+
</div>
|
|
14
|
+
<HelloWorld msg="Vite + Vue" />
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<style scoped>
|
|
18
|
+
.logo {
|
|
19
|
+
height: 6em;
|
|
20
|
+
padding: 1.5em;
|
|
21
|
+
will-change: filter;
|
|
22
|
+
transition: filter 300ms;
|
|
23
|
+
}
|
|
24
|
+
.logo:hover {
|
|
25
|
+
filter: drop-shadow(0 0 2em #646cffaa);
|
|
26
|
+
}
|
|
27
|
+
.logo.vue:hover {
|
|
28
|
+
filter: drop-shadow(0 0 2em #42b883aa);
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { ref } from 'vue'
|
|
3
|
+
|
|
4
|
+
defineProps<{ msg: string }>()
|
|
5
|
+
|
|
6
|
+
const count = ref(0)
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<template>
|
|
10
|
+
<h1>{{ msg }}</h1>
|
|
11
|
+
|
|
12
|
+
<div class="card">
|
|
13
|
+
<button type="button" @click="count++">count is {{ count }}</button>
|
|
14
|
+
<p>
|
|
15
|
+
Edit
|
|
16
|
+
<code>components/HelloWorld.vue</code> to test HMR
|
|
17
|
+
</p>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<p>
|
|
21
|
+
Check out
|
|
22
|
+
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
|
|
23
|
+
>create-vue</a
|
|
24
|
+
>, the official Vue + Vite starter
|
|
25
|
+
</p>
|
|
26
|
+
<p>
|
|
27
|
+
Learn more about IDE Support for Vue in the
|
|
28
|
+
<a
|
|
29
|
+
href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
|
|
30
|
+
target="_blank"
|
|
31
|
+
>Vue Docs Scaling up Guide</a
|
|
32
|
+
>.
|
|
33
|
+
</p>
|
|
34
|
+
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<style scoped>
|
|
38
|
+
.read-the-docs {
|
|
39
|
+
color: #888;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
@@ -0,0 +1,79 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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/index.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Vite + Vue + TS</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"></div>
|
|
11
|
+
<script type="module" src="/src/main.ts"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,32 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "admins-components",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"
|
|
5
|
-
"main": "dist/index.cjs.js",
|
|
6
|
-
"module": "dist/index.esm.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"type": "module",
|
|
11
5
|
"scripts": {
|
|
12
|
-
"
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "vue-tsc -b && vite build",
|
|
8
|
+
"preview": "vite preview"
|
|
13
9
|
},
|
|
14
|
-
"keywords": [],
|
|
15
|
-
"author": "",
|
|
16
|
-
"license": "ISC",
|
|
17
|
-
"type": "commonjs",
|
|
18
10
|
"dependencies": {
|
|
11
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
19
12
|
"vue": "^3.5.13"
|
|
20
13
|
},
|
|
21
14
|
"devDependencies": {
|
|
22
|
-
"@rollup/plugin-commonjs": "^28.0.2",
|
|
23
|
-
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
24
|
-
"@rollup/plugin-typescript": "^12.1.2",
|
|
25
15
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
26
|
-
"
|
|
16
|
+
"@vue/tsconfig": "^0.7.0",
|
|
27
17
|
"sass-embedded": "^1.85.1",
|
|
28
|
-
"typescript": "
|
|
18
|
+
"typescript": "~5.7.2",
|
|
29
19
|
"vite": "^6.2.0",
|
|
30
|
-
"vue-tsc": "^2.2.
|
|
20
|
+
"vue-tsc": "^2.2.4"
|
|
31
21
|
}
|
|
32
22
|
}
|
package/src/App.vue
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.dd-flex {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.dd-button {
|
|
7
|
+
width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.dd-label {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex: 1;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.dd-menu {
|
|
17
|
+
position: absolute;
|
|
18
|
+
z-index: 1000;
|
|
19
|
+
background-color: white;
|
|
20
|
+
display: block;
|
|
21
|
+
width: auto;
|
|
22
|
+
border: 1px solid var(--bs-gray-600);
|
|
23
|
+
border-radius: 5px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dd-item-list {
|
|
27
|
+
overflow: auto;
|
|
28
|
+
max-height: 400px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.dd-item {
|
|
32
|
+
font-size: 1rem;
|
|
33
|
+
font-weight: normal;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
padding: 0.2rem;
|
|
36
|
+
padding-left: 0.5rem;
|
|
37
|
+
padding-right: 0.5rem;
|
|
38
|
+
|
|
39
|
+
&__icon {
|
|
40
|
+
margin-right: 0.25rem;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.dd-item:hover {
|
|
45
|
+
background-color: var(--bs-gray-200);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.dd-toggle::after {
|
|
49
|
+
margin: auto;
|
|
50
|
+
|
|
51
|
+
display: inline-block;
|
|
52
|
+
width: 0;
|
|
53
|
+
height: 0;
|
|
54
|
+
margin-left: 0.255em;
|
|
55
|
+
vertical-align: 0.255em;
|
|
56
|
+
content: '';
|
|
57
|
+
border-top: 0.3em solid;
|
|
58
|
+
border-right: 0.3em solid transparent;
|
|
59
|
+
border-bottom: 0;
|
|
60
|
+
border-left: 0.3em solid transparent;
|
|
61
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.ddc-flex {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex: 1 !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ddc-button {
|
|
7
|
+
width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ddc-menu {
|
|
11
|
+
position: absolute;
|
|
12
|
+
z-index: 1000;
|
|
13
|
+
background-color: white;
|
|
14
|
+
display: block;
|
|
15
|
+
border: 1px solid var(--bs-gray-200);
|
|
16
|
+
border-radius: 5px;
|
|
17
|
+
width: auto;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ddc-row {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex: 1;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: 1rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ddc-item {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: row;
|
|
30
|
+
gap: 1rem;
|
|
31
|
+
align-items: center;
|
|
32
|
+
font-size: 1rem;
|
|
33
|
+
font-weight: normal;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
padding: 0.2rem;
|
|
36
|
+
padding-left: 0.5rem;
|
|
37
|
+
padding-right: 0.5rem;
|
|
38
|
+
width: auto;
|
|
39
|
+
min-width: 150px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ddc-item:hover {
|
|
43
|
+
background-color: var(--bs-gray-200);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.ddc-label {
|
|
47
|
+
display: flex;
|
|
48
|
+
flex: 1;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ddc-icon {
|
|
52
|
+
display: flex;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.dropdown-toggle::after {
|
|
56
|
+
margin: auto;
|
|
57
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.ddm-menu {
|
|
2
|
+
position: absolute;
|
|
3
|
+
z-index: 1000;
|
|
4
|
+
background-color: white;
|
|
5
|
+
display: block;
|
|
6
|
+
border: 1px solid var(--bs-gray-200);
|
|
7
|
+
border-radius: 5px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ddm-item {
|
|
11
|
+
display: flex;
|
|
12
|
+
gap: 1rem;
|
|
13
|
+
align-items: center;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
padding: 0.5rem;
|
|
16
|
+
max-height: 400px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ddm-item:hover {
|
|
20
|
+
background-color: var(--bs-gray-400);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ddm-item:active {
|
|
24
|
+
background-color: var(--bs-gray-200);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ddm-label {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex: 1;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
align-items: center;
|
|
32
|
+
min-height: 1.5rem;
|
|
33
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.fltrctrl-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.form-date {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-shrink: 1;
|
|
9
|
+
width: 100%;
|
|
10
|
+
padding: 0.375rem 0.75rem;
|
|
11
|
+
font-size: 1rem;
|
|
12
|
+
font-weight: 400;
|
|
13
|
+
line-height: 1.5;
|
|
14
|
+
color: var(--bs-body-color);
|
|
15
|
+
appearance: none;
|
|
16
|
+
background-color: var(--bs-body-bg);
|
|
17
|
+
background-clip: padding-box;
|
|
18
|
+
border: var(--bs-border-width) solid var(--bs-border-color);
|
|
19
|
+
border-radius: var(--bs-border-radius);
|
|
20
|
+
transition:
|
|
21
|
+
border-color 0.15s ease-in-out,
|
|
22
|
+
box-shadow 0.15s ease-in-out;
|
|
23
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.ib-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: end;
|
|
4
|
+
padding-right: 1rem;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.ib-button {
|
|
8
|
+
height: 2rem;
|
|
9
|
+
width: 2rem;
|
|
10
|
+
border-radius: 1rem;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ib-button:hover {
|
|
18
|
+
background-color: var(--bs-gray-400);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ib-button:active {
|
|
22
|
+
background-color: var(--bs-gray-200);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ib-button-active {
|
|
26
|
+
background-color: var(--bs-gray-100);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ib-button-big {
|
|
30
|
+
font-size: 1.5rem;
|
|
31
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
::-webkit-scrollbar {
|
|
2
|
+
width: 0.7rem;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
::-webkit-scrollbar-track {
|
|
6
|
+
border-radius: 0.7rem;
|
|
7
|
+
background-color: rgb(236, 235, 235);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
::-webkit-scrollbar-thumb {
|
|
11
|
+
border-radius: 0.7rem;
|
|
12
|
+
background-color: rgb(219, 217, 217);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.clickable {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.align-items-base {
|
|
20
|
+
align-items: baseline;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.label {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@import "textlistbox.scss";
|
|
28
|
+
@import "propertyselector.scss";
|
|
29
|
+
@import "./dropdown.scss";
|
|
30
|
+
@import "./dropdowncallback.scss";
|
|
31
|
+
@import "./dropdownmenu.scss";
|
|
32
|
+
@import "./filtercompact.scss";
|
|
33
|
+
@import "./filtercontrol.scss";
|
|
34
|
+
@import "./iconbutton.scss";
|
|
35
|
+
@import "./paginatorcontrol.scss";
|
|
36
|
+
@import "./tabletolist.scss";
|
|
37
|
+
@import "./tabletolistoptions.scss";
|
|
38
|
+
@import "./toastcomponent.scss";
|