@dev-tcloud/tcloud-ui 5.0.2 → 5.0.3

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.
Files changed (55) hide show
  1. package/README.md +106 -106
  2. package/datepicker/js/_info.txt +3 -3
  3. package/fesm2022/dev-tcloud-tcloud-ui.mjs +74 -74
  4. package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
  5. package/lib/_modules/tcloud-ui-datepicker/tcloud-ui-datepicker.component.d.ts +1 -1
  6. package/package.json +1 -1
  7. package/scss/components/custom/el-copy.scss +17 -17
  8. package/scss/components/custom/loading-transitions.scss +27 -27
  9. package/scss/components/custom/loading.scss +2 -2
  10. package/scss/components/custom/tab-menu.scss +57 -57
  11. package/scss/components/custom/table.scss +98 -98
  12. package/scss/components/custom/tooltip.scss +89 -89
  13. package/scss/components/custom/ui-datepicker.scss +15 -15
  14. package/scss/components/custom/validation.scss +7 -7
  15. package/scss/components/custom/variables.scss +32 -32
  16. package/scss/components/styles.scss +8 -8
  17. package/scss/tcloud/custom/alerts.scss +37 -37
  18. package/scss/tcloud/custom/buttons.scss +1002 -1002
  19. package/scss/tcloud/custom/card.scss +51 -51
  20. package/scss/tcloud/custom/colors.scss +97 -97
  21. package/scss/tcloud/custom/forms.scss +81 -81
  22. package/scss/tcloud/custom/layout.scss +5 -5
  23. package/scss/tcloud/custom/left-navigation.scss +47 -47
  24. package/scss/tcloud/custom/mixins.scss +318 -318
  25. package/scss/tcloud/custom/tcloud-prime.scss +4519 -4519
  26. package/scss/tcloud/custom/tcloud-standard.scss +121 -121
  27. package/scss/tcloud/custom/text.scss +57 -57
  28. package/scss/tcloud/custom/top-navigation.scss +59 -59
  29. package/scss/tcloud/custom/variables.scss +60 -60
  30. package/scss/tcloud/disaster-recovery/colors.scss +14 -14
  31. package/scss/tcloud/disaster-recovery/layout.scss +13 -13
  32. package/scss/tcloud/disaster-recovery/styles.scss +1 -1
  33. package/scss/tcloud/prime/cards-products.scss +331 -331
  34. package/scss/tcloud/prime/left-navigation.scss +327 -327
  35. package/scss/tcloud/prime/styles.scss +2 -2
  36. package/scss/tcloud/prime/tcloud-prime.scss +3872 -3872
  37. package/scss/tcloud/standard/left-navigation.scss +47 -47
  38. package/scss/tcloud/standard/styles.scss +2 -2
  39. package/scss/tcloud/standard/tcloud-standard.scss +125 -125
  40. package/scss/tcloud/standard/top-navigation.scss +61 -61
  41. package/scss/tcloud/styles.scss +19 -19
  42. package/scss/tcloud/tcloud-ui.scss +7 -7
  43. package/scss/tcloud-revitalizacao/_tc-rev-border.scss +93 -0
  44. package/scss/tcloud-revitalizacao/_tc-rev-colors.scss +74 -0
  45. package/scss/tcloud-revitalizacao/_tc-rev-opacity.scss +19 -0
  46. package/scss/tcloud-revitalizacao/_tc-rev-shadow.scss +25 -0
  47. package/scss/tcloud-revitalizacao/_tc-rev-sizes.scss +159 -0
  48. package/scss/tcloud-revitalizacao/_tc-rev-themes.scss +39 -0
  49. package/scss/tcloud-revitalizacao/_tc-rev-typography.scss +122 -0
  50. package/scss/tcloud-revitalizacao/components/_tc-rev-button.scss +172 -0
  51. package/scss/tcloud-revitalizacao/components/_tc-rev-input-control.scss +292 -0
  52. package/scss/tcloud-revitalizacao/components/_tc-rev-tab-item.scss +39 -0
  53. package/scss/tcloud-revitalizacao/components/_tc-rev-table.scss +57 -0
  54. package/scss/tcloud-revitalizacao/components/_tc-rev-util.scss +24 -0
  55. package/scss/tcloud-revitalizacao/tc-rev-styles.scss +26 -0
@@ -1,319 +1,319 @@
1
-
2
- // ===============================================
3
- // Font and text
4
- // ===============================================
5
-
6
- @mixin bold {
7
- font-weight: bold;
8
- }
9
-
10
-
11
- @mixin uppercase {
12
- text-transform: uppercase;
13
- }
14
-
15
-
16
-
17
- // ===============================================
18
- // Helpers
19
- // ===============================================
20
-
21
- @mixin test($args...){
22
- border:1px solid $args
23
- }
24
-
25
-
26
-
27
- // ===============================================
28
- // Misc
29
- // ===============================================
30
-
31
- @mixin brdr($color: var(--tc-gray-200)) {
32
- border: 1px solid $color;
33
- }
34
-
35
- @mixin bd-bottom($color: var(--tc-gray-200)) {
36
- border-bottom: 1px solid $color;
37
- }
38
-
39
- @mixin bd-top($color: var(--tc-gray-200)) {
40
- border-top: 1px solid $color;
41
- }
42
-
43
- @mixin bd-rgt($color: var(--tc-gray-200)) {
44
- border-right: 1px solid $color;
45
- }
46
-
47
- @mixin bd-lft($color: var(--tc-gray-200)) {
48
- border-left: 1px solid $color;
49
- }
50
-
51
-
52
- @mixin arrow-top ($size, $color){
53
- content: '';
54
- height: 0;
55
- width: 0;
56
- border-style: solid;
57
- border-color: transparent transparent $color transparent;
58
- border-width: 0 $size $size $size;
59
- }
60
-
61
- @mixin arrow-bottom ($size, $color){
62
- content: '';
63
- height: 0;
64
- width: 0;
65
- border-style: solid;
66
- border-color: $color transparent transparent transparent;
67
- border-width: $size $size 0 $size;
68
- }
69
-
70
-
71
-
72
-
73
- // ===============================================
74
- // Font and text
75
- // ===============================================
76
-
77
- @mixin bold {
78
- font-weight: bold;
79
- }
80
-
81
-
82
- @mixin uppercase {
83
- text-transform: uppercase;
84
- }
85
-
86
- // ===============================================
87
- // Helpers
88
- // ===============================================
89
-
90
- @mixin test($args...) {
91
- border: 1px solid $args;
92
- }
93
-
94
- @mixin flex-center {
95
- display: flex;
96
- align-items: center;
97
- justify-content: center;
98
- }
99
-
100
- // ===============================================
101
- // Font and text
102
- // ===============================================
103
-
104
- @mixin bold {
105
- font-weight: bold;
106
- }
107
-
108
- @mixin ellipsis {
109
- text-overflow: ellipsis; /* enables ellipsis */
110
- white-space: nowrap; /* keeps the text in a single line */
111
- overflow: hidden; /* keeps the element from overflowing its parent */
112
- }
113
-
114
- // ===============================================
115
- // Misc
116
- // ===============================================
117
-
118
- @mixin arrow-top($size, $color) {
119
- content: '';
120
- height: 0;
121
- width: 0;
122
- border-style: solid;
123
- border-color: transparent transparent $color transparent;
124
- border-width: 0 $size $size $size;
125
- }
126
-
127
- @mixin arrow-bottom($size, $color) {
128
- content: '';
129
- height: 0;
130
- width: 0;
131
- border-style: solid;
132
- border-color: $color transparent transparent transparent;
133
- border-width: $size $size 0 $size;
134
- }
135
-
136
- @mixin thin-scroll-bar() {
137
- &::-webkit-scrollbar {
138
- width: 10px;
139
- }
140
- /* Track */
141
- &::-webkit-scrollbar-track {
142
- background: var(--tc-gray-200);
143
- border-radius: 10px;
144
- }
145
- /* Handle */
146
- &::-webkit-scrollbar-thumb {
147
- background: var(--tc-gray-300);
148
- border-radius: 10px;
149
- }
150
- /* Handle on hover */
151
- &::-webkit-scrollbar-thumb:hover {
152
- background: var(--tc-gray-400);
153
- }
154
- }
155
-
156
- @mixin bdr-bottom( $sz, $clr) {
157
- border-bottom: 1px solid $clr;
158
- margin-bottom: $sz;
159
- padding-bottom: $sz;
160
- }
161
-
162
- @mixin flex-center {
163
- display: flex;
164
- justify-content: center;
165
- align-items: center;
166
- }
167
-
168
- // ===============================================
169
- // T-Cloud Prime
170
- // ===============================================
171
-
172
- @mixin prime-color {
173
- // @include prime-color;
174
- color: var(--tc-primary) !important;
175
- }
176
-
177
- @mixin prime-gray-100 {
178
- // @include prime-gray-100;
179
- color: var(--tc-gray-100) !important;
180
- }
181
-
182
- @mixin prime-gray-50 {
183
- // @include prime-gray-50;
184
- color: var(--tc-gray-50) !important;
185
- }
186
-
187
-
188
-
189
-
190
- @mixin prime-bg {
191
- // @include prime-bg;
192
- background: var(--tc-primary) !important;
193
- }
194
-
195
- @mixin prime-bgc {
196
- // @include prime-bgc;
197
- background-color: var(--tc-primary) !important;
198
- }
199
-
200
- @mixin prime-bg-100 {
201
- // @include prime-bg-100;
202
- background: var(--tc-gray-100) !important;
203
- }
204
-
205
- @mixin prime-bg-50 {
206
- // @include prime-bg-50;
207
- background: var(--tc-gray-50) !important;
208
- }
209
-
210
- @mixin prime-bg-10 {
211
- // @include prime-bg-10;
212
- background: var(--tc-gray-100) !important;
213
- }
214
-
215
-
216
-
217
-
218
- @mixin prime-bdr {
219
- // @include prime-color;
220
- border-color: var(--tc-primary) !important;
221
- }
222
-
223
- @mixin prime-bdr-100 {
224
- // @include prime-bdr-100;
225
- border-color: var(--tc-gray-100) !important;
226
- }
227
-
228
- @mixin prime-bdr-50 {
229
- // @include prime-bdr-50;
230
- border-color: var(--tc-gray-50) !important;
231
- }
232
-
233
-
234
-
235
-
236
- @mixin prime-black {
237
- // @include prime-black;
238
- color: var(--black) !important;
239
- }
240
-
241
- @mixin prime-white {
242
- // @include prime-white;
243
- color: var(--white) !important;
244
- }
245
-
246
- @mixin prime-mkt-gradient {
247
- $tcprimary: var(--tc-primary);
248
- $tcprimary2: var(--tc-primary2);
249
-
250
- // @include prime-mkt-gradient;
251
- /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,362480+100 */
252
- background: $tcprimary!important; /* Old browsers */
253
- background: -moz-linear-gradient(left, $tcprimary 0%, $tcprimary2 100%)!important; /* FF3.6-15 */
254
- background: -webkit-linear-gradient(left, $tcprimary 0%,$tcprimary2 100%)!important; /* Chrome10-25,Safari5.1-6 */
255
- background: linear-gradient(to right, $tcprimary 0%,$tcprimary2 100%)!important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
256
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$tcprimary, endColorstr=$tcprimary2,GradientType=1 )!important; /* IE6-9 */
257
- }
258
-
259
- @mixin prime-bg-gradient {
260
- $tcprimary: var(--tc-primary);
261
- // @include prime-bg-gradient;
262
- /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,7151ff+100 */
263
- background: $tcprimary; /* Old browsers */
264
- background: -moz-linear-gradient(left, $tcprimary 0%, $tcprimary 100%); /* FF3.6-15 */
265
- background: -webkit-linear-gradient(left, $tcprimary 0%,$tcprimary 100%); /* Chrome10-25,Safari5.1-6 */
266
- background: linear-gradient(to right, $tcprimary 0%,$tcprimary 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
267
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$tcprimary, endColorstr=$tcprimary,GradientType=1 ); /* IE6-9 */
268
- }
269
-
270
-
271
- @mixin prime-title {
272
- // @include prime-title;
273
- font-size: 20px;
274
- font-weight: bold;
275
- text-transform: uppercase;
276
- padding-bottom: 10px;
277
- border-bottom: 1px solid var(--tc-gray-50);
278
- margin-bottom: 20px;
279
- }
280
-
281
-
282
- @mixin prime-subtitle {
283
- // @include prime-subtitle;
284
- font-size: 16px !important;
285
- text-transform: uppercase !important;
286
- border-bottom: 1px solid var(--tc-gray-50) !important;
287
- padding-bottom: 10px !important;
288
- margin-bottom: 20px !important;
289
- }
290
-
291
- @mixin ico-menu($img, $hgt, $wdt) {
292
- background: url(/assets/img/menu/#{$img}.svg);
293
- height: $hgt;
294
- width: $wdt;
295
- background-repeat: no-repeat;
296
- background-position: center;
297
-
298
- &::before {
299
- display: none;
300
- }
301
-
302
- }
303
-
304
- @mixin ico-topmenu($img, $hgt, $wdt) {
305
- background: url(/assets/img/topmenu/#{$img}.svg);
306
- height: $hgt;
307
- width: $wdt;
308
- background-repeat: no-repeat;
309
- background-position: center;
310
-
311
- &::before {
312
- display: none !important;
313
- }
314
-
315
- }
316
-
317
- @mixin svg-prime {
318
- filter: invert(37%) sepia(99%) saturate(5131%) hue-rotate(243deg) brightness(100%) contrast(103%);
1
+
2
+ // ===============================================
3
+ // Font and text
4
+ // ===============================================
5
+
6
+ @mixin bold {
7
+ font-weight: bold;
8
+ }
9
+
10
+
11
+ @mixin uppercase {
12
+ text-transform: uppercase;
13
+ }
14
+
15
+
16
+
17
+ // ===============================================
18
+ // Helpers
19
+ // ===============================================
20
+
21
+ @mixin test($args...){
22
+ border:1px solid $args
23
+ }
24
+
25
+
26
+
27
+ // ===============================================
28
+ // Misc
29
+ // ===============================================
30
+
31
+ @mixin brdr($color: var(--tc-gray-200)) {
32
+ border: 1px solid $color;
33
+ }
34
+
35
+ @mixin bd-bottom($color: var(--tc-gray-200)) {
36
+ border-bottom: 1px solid $color;
37
+ }
38
+
39
+ @mixin bd-top($color: var(--tc-gray-200)) {
40
+ border-top: 1px solid $color;
41
+ }
42
+
43
+ @mixin bd-rgt($color: var(--tc-gray-200)) {
44
+ border-right: 1px solid $color;
45
+ }
46
+
47
+ @mixin bd-lft($color: var(--tc-gray-200)) {
48
+ border-left: 1px solid $color;
49
+ }
50
+
51
+
52
+ @mixin arrow-top ($size, $color){
53
+ content: '';
54
+ height: 0;
55
+ width: 0;
56
+ border-style: solid;
57
+ border-color: transparent transparent $color transparent;
58
+ border-width: 0 $size $size $size;
59
+ }
60
+
61
+ @mixin arrow-bottom ($size, $color){
62
+ content: '';
63
+ height: 0;
64
+ width: 0;
65
+ border-style: solid;
66
+ border-color: $color transparent transparent transparent;
67
+ border-width: $size $size 0 $size;
68
+ }
69
+
70
+
71
+
72
+
73
+ // ===============================================
74
+ // Font and text
75
+ // ===============================================
76
+
77
+ @mixin bold {
78
+ font-weight: bold;
79
+ }
80
+
81
+
82
+ @mixin uppercase {
83
+ text-transform: uppercase;
84
+ }
85
+
86
+ // ===============================================
87
+ // Helpers
88
+ // ===============================================
89
+
90
+ @mixin test($args...) {
91
+ border: 1px solid $args;
92
+ }
93
+
94
+ @mixin flex-center {
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: center;
98
+ }
99
+
100
+ // ===============================================
101
+ // Font and text
102
+ // ===============================================
103
+
104
+ @mixin bold {
105
+ font-weight: bold;
106
+ }
107
+
108
+ @mixin ellipsis {
109
+ text-overflow: ellipsis; /* enables ellipsis */
110
+ white-space: nowrap; /* keeps the text in a single line */
111
+ overflow: hidden; /* keeps the element from overflowing its parent */
112
+ }
113
+
114
+ // ===============================================
115
+ // Misc
116
+ // ===============================================
117
+
118
+ @mixin arrow-top($size, $color) {
119
+ content: '';
120
+ height: 0;
121
+ width: 0;
122
+ border-style: solid;
123
+ border-color: transparent transparent $color transparent;
124
+ border-width: 0 $size $size $size;
125
+ }
126
+
127
+ @mixin arrow-bottom($size, $color) {
128
+ content: '';
129
+ height: 0;
130
+ width: 0;
131
+ border-style: solid;
132
+ border-color: $color transparent transparent transparent;
133
+ border-width: $size $size 0 $size;
134
+ }
135
+
136
+ @mixin thin-scroll-bar() {
137
+ &::-webkit-scrollbar {
138
+ width: 10px;
139
+ }
140
+ /* Track */
141
+ &::-webkit-scrollbar-track {
142
+ background: var(--tc-gray-200);
143
+ border-radius: 10px;
144
+ }
145
+ /* Handle */
146
+ &::-webkit-scrollbar-thumb {
147
+ background: var(--tc-gray-300);
148
+ border-radius: 10px;
149
+ }
150
+ /* Handle on hover */
151
+ &::-webkit-scrollbar-thumb:hover {
152
+ background: var(--tc-gray-400);
153
+ }
154
+ }
155
+
156
+ @mixin bdr-bottom( $sz, $clr) {
157
+ border-bottom: 1px solid $clr;
158
+ margin-bottom: $sz;
159
+ padding-bottom: $sz;
160
+ }
161
+
162
+ @mixin flex-center {
163
+ display: flex;
164
+ justify-content: center;
165
+ align-items: center;
166
+ }
167
+
168
+ // ===============================================
169
+ // T-Cloud Prime
170
+ // ===============================================
171
+
172
+ @mixin prime-color {
173
+ // @include prime-color;
174
+ color: var(--tc-primary) !important;
175
+ }
176
+
177
+ @mixin prime-gray-100 {
178
+ // @include prime-gray-100;
179
+ color: var(--tc-gray-100) !important;
180
+ }
181
+
182
+ @mixin prime-gray-50 {
183
+ // @include prime-gray-50;
184
+ color: var(--tc-gray-50) !important;
185
+ }
186
+
187
+
188
+
189
+
190
+ @mixin prime-bg {
191
+ // @include prime-bg;
192
+ background: var(--tc-primary) !important;
193
+ }
194
+
195
+ @mixin prime-bgc {
196
+ // @include prime-bgc;
197
+ background-color: var(--tc-primary) !important;
198
+ }
199
+
200
+ @mixin prime-bg-100 {
201
+ // @include prime-bg-100;
202
+ background: var(--tc-gray-100) !important;
203
+ }
204
+
205
+ @mixin prime-bg-50 {
206
+ // @include prime-bg-50;
207
+ background: var(--tc-gray-50) !important;
208
+ }
209
+
210
+ @mixin prime-bg-10 {
211
+ // @include prime-bg-10;
212
+ background: var(--tc-gray-100) !important;
213
+ }
214
+
215
+
216
+
217
+
218
+ @mixin prime-bdr {
219
+ // @include prime-color;
220
+ border-color: var(--tc-primary) !important;
221
+ }
222
+
223
+ @mixin prime-bdr-100 {
224
+ // @include prime-bdr-100;
225
+ border-color: var(--tc-gray-100) !important;
226
+ }
227
+
228
+ @mixin prime-bdr-50 {
229
+ // @include prime-bdr-50;
230
+ border-color: var(--tc-gray-50) !important;
231
+ }
232
+
233
+
234
+
235
+
236
+ @mixin prime-black {
237
+ // @include prime-black;
238
+ color: var(--black) !important;
239
+ }
240
+
241
+ @mixin prime-white {
242
+ // @include prime-white;
243
+ color: var(--white) !important;
244
+ }
245
+
246
+ @mixin prime-mkt-gradient {
247
+ $tcprimary: var(--tc-primary);
248
+ $tcprimary2: var(--tc-primary2);
249
+
250
+ // @include prime-mkt-gradient;
251
+ /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,362480+100 */
252
+ background: $tcprimary!important; /* Old browsers */
253
+ background: -moz-linear-gradient(left, $tcprimary 0%, $tcprimary2 100%)!important; /* FF3.6-15 */
254
+ background: -webkit-linear-gradient(left, $tcprimary 0%,$tcprimary2 100%)!important; /* Chrome10-25,Safari5.1-6 */
255
+ background: linear-gradient(to right, $tcprimary 0%,$tcprimary2 100%)!important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
256
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$tcprimary, endColorstr=$tcprimary2,GradientType=1 )!important; /* IE6-9 */
257
+ }
258
+
259
+ @mixin prime-bg-gradient {
260
+ $tcprimary: var(--tc-primary);
261
+ // @include prime-bg-gradient;
262
+ /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6b48ff+0,7151ff+100 */
263
+ background: $tcprimary; /* Old browsers */
264
+ background: -moz-linear-gradient(left, $tcprimary 0%, $tcprimary 100%); /* FF3.6-15 */
265
+ background: -webkit-linear-gradient(left, $tcprimary 0%,$tcprimary 100%); /* Chrome10-25,Safari5.1-6 */
266
+ background: linear-gradient(to right, $tcprimary 0%,$tcprimary 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
267
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$tcprimary, endColorstr=$tcprimary,GradientType=1 ); /* IE6-9 */
268
+ }
269
+
270
+
271
+ @mixin prime-title {
272
+ // @include prime-title;
273
+ font-size: 20px;
274
+ font-weight: bold;
275
+ text-transform: uppercase;
276
+ padding-bottom: 10px;
277
+ border-bottom: 1px solid var(--tc-gray-50);
278
+ margin-bottom: 20px;
279
+ }
280
+
281
+
282
+ @mixin prime-subtitle {
283
+ // @include prime-subtitle;
284
+ font-size: 16px !important;
285
+ text-transform: uppercase !important;
286
+ border-bottom: 1px solid var(--tc-gray-50) !important;
287
+ padding-bottom: 10px !important;
288
+ margin-bottom: 20px !important;
289
+ }
290
+
291
+ @mixin ico-menu($img, $hgt, $wdt) {
292
+ background: url(/assets/img/menu/#{$img}.svg);
293
+ height: $hgt;
294
+ width: $wdt;
295
+ background-repeat: no-repeat;
296
+ background-position: center;
297
+
298
+ &::before {
299
+ display: none;
300
+ }
301
+
302
+ }
303
+
304
+ @mixin ico-topmenu($img, $hgt, $wdt) {
305
+ background: url(/assets/img/topmenu/#{$img}.svg);
306
+ height: $hgt;
307
+ width: $wdt;
308
+ background-repeat: no-repeat;
309
+ background-position: center;
310
+
311
+ &::before {
312
+ display: none !important;
313
+ }
314
+
315
+ }
316
+
317
+ @mixin svg-prime {
318
+ filter: invert(37%) sepia(99%) saturate(5131%) hue-rotate(243deg) brightness(100%) contrast(103%);
319
319
  }