@vixcom/ui 1.7.3 → 1.7.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/LICENSE +21 -0
- package/dist/css/animations.css +1 -1
- package/dist/css/colors.css +1 -1
- package/dist/css/fonts.css +66 -48
- package/dist/css/helper/primefaces.css +28 -3
- package/dist/css/main.css +3 -2
- package/dist/css/variables.css +2 -1
- package/dist/package.json +4 -3
- package/package.json +4 -3
- /package/dist/assets/{img → images}/avatar.svg +0 -0
- /package/dist/assets/{img → images}/default.png +0 -0
- /package/dist/assets/{img → images}/favicon.png +0 -0
- /package/dist/assets/{img → images}/icon.png +0 -0
- /package/dist/assets/{img → images}/logo.dark.png +0 -0
- /package/dist/assets/{img → images}/logo.png +0 -0
- /package/dist/assets/{img → images}/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.
|
package/dist/css/animations.css
CHANGED
package/dist/css/colors.css
CHANGED
package/dist/css/fonts.css
CHANGED
|
@@ -36,15 +36,18 @@ h6,
|
|
|
36
36
|
.h6,
|
|
37
37
|
.font-1 {
|
|
38
38
|
--heading-size: calc(
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
5 *
|
|
39
|
+
(
|
|
40
|
+
var(--heading-start, 200%) -
|
|
42
41
|
(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
42
|
+
5 *
|
|
43
|
+
(
|
|
44
|
+
var(--heading-start, 200%) -
|
|
45
|
+
var(--heading-end, 100%)
|
|
46
|
+
) /
|
|
47
|
+
5
|
|
48
|
+
)
|
|
49
|
+
) *
|
|
50
|
+
var(--heading-size-r, 1)
|
|
48
51
|
);
|
|
49
52
|
}
|
|
50
53
|
|
|
@@ -52,15 +55,18 @@ h5,
|
|
|
52
55
|
.h5,
|
|
53
56
|
.font-2 {
|
|
54
57
|
--heading-size: calc(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
4 *
|
|
58
|
+
(
|
|
59
|
+
var(--heading-start, 200%) -
|
|
58
60
|
(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
4 *
|
|
62
|
+
(
|
|
63
|
+
var(--heading-start, 200%) -
|
|
64
|
+
var(--heading-end, 100%)
|
|
65
|
+
) /
|
|
66
|
+
5
|
|
67
|
+
)
|
|
68
|
+
) *
|
|
69
|
+
var(--heading-size-r, 1)
|
|
64
70
|
);
|
|
65
71
|
}
|
|
66
72
|
|
|
@@ -68,15 +74,18 @@ h4,
|
|
|
68
74
|
.h4,
|
|
69
75
|
.font-3 {
|
|
70
76
|
--heading-size: calc(
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
3 *
|
|
77
|
+
(
|
|
78
|
+
var(--heading-start, 200%) -
|
|
74
79
|
(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
+
3 *
|
|
81
|
+
(
|
|
82
|
+
var(--heading-start, 200%) -
|
|
83
|
+
var(--heading-end, 100%)
|
|
84
|
+
) /
|
|
85
|
+
5
|
|
86
|
+
)
|
|
87
|
+
) *
|
|
88
|
+
var(--heading-size-r, 1)
|
|
80
89
|
);
|
|
81
90
|
}
|
|
82
91
|
|
|
@@ -84,15 +93,18 @@ h3,
|
|
|
84
93
|
.h3,
|
|
85
94
|
.font-4 {
|
|
86
95
|
--heading-size: calc(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
2 *
|
|
96
|
+
(
|
|
97
|
+
var(--heading-start, 200%) -
|
|
90
98
|
(
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
99
|
+
2 *
|
|
100
|
+
(
|
|
101
|
+
var(--heading-start, 200%) -
|
|
102
|
+
var(--heading-end, 100%)
|
|
103
|
+
) /
|
|
104
|
+
5
|
|
105
|
+
)
|
|
106
|
+
) *
|
|
107
|
+
var(--heading-size-r, 1)
|
|
96
108
|
);
|
|
97
109
|
}
|
|
98
110
|
|
|
@@ -100,15 +112,18 @@ h2,
|
|
|
100
112
|
.h2,
|
|
101
113
|
.font-5 {
|
|
102
114
|
--heading-size: calc(
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
1 *
|
|
115
|
+
(
|
|
116
|
+
var(--heading-start, 200%) -
|
|
106
117
|
(
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
118
|
+
1 *
|
|
119
|
+
(
|
|
120
|
+
var(--heading-start, 200%) -
|
|
121
|
+
var(--heading-end, 100%)
|
|
122
|
+
) /
|
|
123
|
+
5
|
|
124
|
+
)
|
|
125
|
+
) *
|
|
126
|
+
var(--heading-size-r, 1)
|
|
112
127
|
);
|
|
113
128
|
}
|
|
114
129
|
|
|
@@ -116,15 +131,18 @@ h1,
|
|
|
116
131
|
.h1,
|
|
117
132
|
.font-6 {
|
|
118
133
|
--heading-size: calc(
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
0 *
|
|
134
|
+
(
|
|
135
|
+
var(--heading-start, 200%) -
|
|
122
136
|
(
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
137
|
+
0 *
|
|
138
|
+
(
|
|
139
|
+
var(--heading-start, 200%) -
|
|
140
|
+
var(--heading-end, 100%)
|
|
141
|
+
) /
|
|
142
|
+
5
|
|
143
|
+
)
|
|
144
|
+
) *
|
|
145
|
+
var(--heading-size-r, 1)
|
|
128
146
|
);
|
|
129
147
|
}
|
|
130
148
|
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
color: var(--white);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
.p-progressbar {
|
|
21
|
+
height: 1rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
20
24
|
.p-tabview.no-header .p-tabview-nav {
|
|
21
25
|
display: none;
|
|
22
26
|
}
|
|
@@ -119,9 +123,19 @@
|
|
|
119
123
|
gap: 0.5rem;
|
|
120
124
|
}
|
|
121
125
|
|
|
126
|
+
.p-tree {
|
|
127
|
+
padding: 0;
|
|
128
|
+
}
|
|
129
|
+
.p-treenode-children {
|
|
130
|
+
padding-left: 0.75rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
122
133
|
.p-toast {
|
|
123
134
|
z-index: 5;
|
|
124
135
|
}
|
|
136
|
+
.p-toast-icon-close-icon {
|
|
137
|
+
padding: 0;
|
|
138
|
+
}
|
|
125
139
|
|
|
126
140
|
.p-badge {
|
|
127
141
|
font-size: 0.75rem;
|
|
@@ -135,8 +149,12 @@
|
|
|
135
149
|
width: 100%;
|
|
136
150
|
flex: 1 1 auto;
|
|
137
151
|
}
|
|
138
|
-
.p-float-label
|
|
139
|
-
.p-float-label .p-
|
|
152
|
+
.p-float-label.active label,
|
|
153
|
+
.p-float-label.active .float, .p-float-label.focus-within label,
|
|
154
|
+
.p-float-label.focus-within .float, .p-float-label:focus-within label,
|
|
155
|
+
.p-float-label:focus-within .float, .p-float-label :focus ~ label,
|
|
156
|
+
.p-float-label :focus ~ .float, .p-float-label .p-filled ~ label,
|
|
157
|
+
.p-float-label .p-filled ~ .float {
|
|
140
158
|
top: 0;
|
|
141
159
|
transform: translateY(-100%);
|
|
142
160
|
}
|
|
@@ -188,7 +206,9 @@
|
|
|
188
206
|
border-radius: var(--border-radius);
|
|
189
207
|
}
|
|
190
208
|
.p-dropdown .p-dropdown-label {
|
|
191
|
-
|
|
209
|
+
display: flex;
|
|
210
|
+
align-items: center;
|
|
211
|
+
gap: 0.5rem;
|
|
192
212
|
}
|
|
193
213
|
|
|
194
214
|
.p-inputswitch {
|
|
@@ -249,6 +269,11 @@
|
|
|
249
269
|
height: 2.25rem;
|
|
250
270
|
}
|
|
251
271
|
|
|
272
|
+
.p-datatable-table .p-frozen-column {
|
|
273
|
+
left: 0;
|
|
274
|
+
right: 0;
|
|
275
|
+
}
|
|
276
|
+
|
|
252
277
|
.p-panel > :first-child {
|
|
253
278
|
border-top-left-radius: inherit;
|
|
254
279
|
border-top-right-radius: inherit;
|
package/dist/css/main.css
CHANGED
|
@@ -320,7 +320,7 @@ input .input,
|
|
|
320
320
|
/* margin: 0.25rem 0 1rem; */
|
|
321
321
|
border-radius: 0.25rem;
|
|
322
322
|
border: 1px solid currentColor;
|
|
323
|
-
|
|
323
|
+
max-width: 100%;
|
|
324
324
|
}
|
|
325
325
|
input .input:not(.has-addon),
|
|
326
326
|
*:not(.input) > .input:not(.has-addon) {
|
|
@@ -887,7 +887,7 @@ button,
|
|
|
887
887
|
border-radius: var(--border-radius, 0.25rem);
|
|
888
888
|
padding: 0.25rem 0.75rem;
|
|
889
889
|
font-size: 120%;
|
|
890
|
-
min-width:
|
|
890
|
+
min-width: fit-content;
|
|
891
891
|
gap: 0.25rem;
|
|
892
892
|
justify-content: center;
|
|
893
893
|
align-items: center;
|
|
@@ -895,6 +895,7 @@ button,
|
|
|
895
895
|
text-overflow: ellipsis;
|
|
896
896
|
white-space: nowrap;
|
|
897
897
|
border: 1px;
|
|
898
|
+
cursor: pointer;
|
|
898
899
|
}
|
|
899
900
|
button:focus,
|
|
900
901
|
.button:focus {
|
package/dist/css/variables.css
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixcom/ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ui",
|
|
6
6
|
"styling",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dist/**"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"start": "
|
|
16
|
+
"start": "serve src -l 1400 -nLC",
|
|
17
17
|
"serve": "sass src/styles:src/css -w",
|
|
18
18
|
"build": "sass --no-source-map src/styles:dist/css",
|
|
19
19
|
"preview": "npm run build && firebase serve --only hosting:dashboard --port=9000",
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
"publish": "npm publish"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"
|
|
25
|
+
"dotenv": "^17.2.3",
|
|
26
26
|
"sass": "^1.58.3",
|
|
27
|
+
"serve": "^14.2.5",
|
|
27
28
|
"tailwindcss": "^3.2.7"
|
|
28
29
|
}
|
|
29
30
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixcom/ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ui",
|
|
6
6
|
"styling",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dist/**"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"start": "
|
|
16
|
+
"start": "serve src -l 1400 -nLC",
|
|
17
17
|
"serve": "sass src/styles:src/css -w",
|
|
18
18
|
"build": "sass --no-source-map src/styles:dist/css",
|
|
19
19
|
"preview": "npm run build && firebase serve --only hosting:dashboard --port=9000",
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
"publish": "npm publish"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"
|
|
25
|
+
"dotenv": "^17.2.3",
|
|
26
26
|
"sass": "^1.58.3",
|
|
27
|
+
"serve": "^14.2.5",
|
|
27
28
|
"tailwindcss": "^3.2.7"
|
|
28
29
|
}
|
|
29
30
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|