@vixcom/ui 1.7.4 → 1.7.6
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/LICENSE +21 -0
- package/dist/css/helper/primefaces.css +16 -1
- package/dist/css/helper/tailwindcss.css +3 -1
- package/dist/css/main.css +18 -17
- package/dist/package.json +2 -1
- package/package.json +2 -1
- package/dist/assets/img/avatar.svg +0 -1
- package/dist/assets/img/default.png +0 -0
- package/dist/assets/img/favicon.png +0 -0
- package/dist/assets/img/icon.png +0 -0
- package/dist/assets/img/logo.dark.png +0 -0
- package/dist/assets/img/logo.png +0 -0
- package/dist/assets/img/logo.white.png +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 vixson
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -123,6 +123,13 @@
|
|
|
123
123
|
gap: 0.5rem;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.p-tree {
|
|
127
|
+
padding: 0;
|
|
128
|
+
}
|
|
129
|
+
.p-treenode-children {
|
|
130
|
+
padding-left: 0.75rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
126
133
|
.p-toast {
|
|
127
134
|
z-index: 5;
|
|
128
135
|
}
|
|
@@ -199,7 +206,9 @@
|
|
|
199
206
|
border-radius: var(--border-radius);
|
|
200
207
|
}
|
|
201
208
|
.p-dropdown .p-dropdown-label {
|
|
202
|
-
|
|
209
|
+
display: flex;
|
|
210
|
+
align-items: center;
|
|
211
|
+
gap: 0.5rem;
|
|
203
212
|
}
|
|
204
213
|
|
|
205
214
|
.p-inputswitch {
|
|
@@ -368,10 +377,16 @@
|
|
|
368
377
|
gap: 1rem;
|
|
369
378
|
}
|
|
370
379
|
|
|
380
|
+
.p-toast {
|
|
381
|
+
white-space: unset;
|
|
382
|
+
}
|
|
371
383
|
.p-toast .p-toast-message .p-toast-icon-close {
|
|
372
384
|
min-width: 2rem;
|
|
373
385
|
border: none;
|
|
374
386
|
}
|
|
387
|
+
.p-toast ul {
|
|
388
|
+
list-style: disc;
|
|
389
|
+
}
|
|
375
390
|
|
|
376
391
|
.p-selectbutton {
|
|
377
392
|
display: flex;
|
package/dist/css/main.css
CHANGED
|
@@ -83,23 +83,12 @@ b {
|
|
|
83
83
|
.bg-text-color {
|
|
84
84
|
--opacity: 0.055;
|
|
85
85
|
position: relative;
|
|
86
|
+
background-color: color-mix(in oklch, currentColor, white 75%);
|
|
86
87
|
}
|
|
87
|
-
.bg-text:hover
|
|
88
|
-
.bg-text-color:hover
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
.bg-text::after,
|
|
92
|
-
.bg-text-color::after {
|
|
93
|
-
content: "";
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 0;
|
|
96
|
-
left: 0;
|
|
97
|
-
background-color: currentColor;
|
|
98
|
-
opacity: var(--opacity);
|
|
99
|
-
height: 100%;
|
|
100
|
-
width: 100%;
|
|
101
|
-
border-radius: inherit;
|
|
102
|
-
z-index: 0;
|
|
88
|
+
.bg-text:is(a):hover, .bg-text.link:hover,
|
|
89
|
+
.bg-text-color:is(a):hover,
|
|
90
|
+
.bg-text-color.link:hover {
|
|
91
|
+
background-color: color-mix(in oklch, currentColor, white 70%);
|
|
103
92
|
}
|
|
104
93
|
|
|
105
94
|
.is-blur {
|
|
@@ -887,7 +876,6 @@ button,
|
|
|
887
876
|
border-radius: var(--border-radius, 0.25rem);
|
|
888
877
|
padding: 0.25rem 0.75rem;
|
|
889
878
|
font-size: 120%;
|
|
890
|
-
max-width: 5rem;
|
|
891
879
|
min-width: fit-content;
|
|
892
880
|
gap: 0.25rem;
|
|
893
881
|
justify-content: center;
|
|
@@ -1172,6 +1160,19 @@ table {
|
|
|
1172
1160
|
}
|
|
1173
1161
|
|
|
1174
1162
|
/* Modal Close Button - End */
|
|
1163
|
+
.collapsable {
|
|
1164
|
+
overflow: scroll;
|
|
1165
|
+
transition-property: max-height cubic-bezier(0.4, 0, 0.2, 1) 150ms;
|
|
1166
|
+
max-height: 100vh;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.trigger:checked ~ .icon {
|
|
1170
|
+
transform: rotate(180deg);
|
|
1171
|
+
}
|
|
1172
|
+
.trigger:checked ~ .collapsable {
|
|
1173
|
+
max-height: 0;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1175
1176
|
/* Scrollable Container - Start */
|
|
1176
1177
|
.scroll-container {
|
|
1177
1178
|
position: relative;
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixcom/ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ui",
|
|
6
6
|
"styling",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"publish": "npm publish"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
+
"dotenv": "^17.2.3",
|
|
25
26
|
"sass": "^1.58.3",
|
|
26
27
|
"serve": "^14.2.5",
|
|
27
28
|
"tailwindcss": "^3.2.7"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixcom/ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ui",
|
|
6
6
|
"styling",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"publish": "npm publish"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
+
"dotenv": "^17.2.3",
|
|
25
26
|
"sass": "^1.58.3",
|
|
26
27
|
"serve": "^14.2.5",
|
|
27
28
|
"tailwindcss": "^3.2.7"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 594 594" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><circle id="Avatar" cx="296.789" cy="296.789" r="296.789" style="fill:#fff;"/><clipPath id="_clip1"><circle cx="296.789" cy="296.789" r="296.789"/></clipPath><g clip-path="url(#_clip1)"><path d="M296.789,353.398c163.802,0 296.788,53.81 296.788,120.09c0,66.279 -132.986,120.089 -296.788,120.089c-163.803,0 -296.789,-53.81 -296.789,-120.089c0,-66.28 132.986,-120.09 296.789,-120.09Zm-0,-259.595c66.279,0 120.089,53.811 120.089,120.09c0,66.279 -53.81,120.089 -120.089,120.089c-66.28,0 -120.09,-53.81 -120.09,-120.089c0,-66.279 53.81,-120.09 120.09,-120.09Z" style="fill:#404040;"/></g></svg>
|
|
Binary file
|
|
Binary file
|
package/dist/assets/img/icon.png
DELETED
|
Binary file
|
|
Binary file
|
package/dist/assets/img/logo.png
DELETED
|
Binary file
|
|
Binary file
|