@dev-tcloud/tcloud-ui 4.0.0 → 4.1.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 +11 -0
- package/esm2022/lib/_directives/currency/currency.directive.mjs +7 -7
- package/esm2022/lib/_directives/directives.module.mjs +43 -7
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-check-access.directive.mjs +66 -0
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-ng-check-access.directive.mjs +50 -0
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-ng-feature-flags.directive.mjs +44 -0
- package/esm2022/lib/_directives/tcloud-ui-digit-only.directive.mjs +64 -0
- package/esm2022/lib/_directives/tcloud-ui-highlight.diretive.mjs +36 -0
- package/esm2022/lib/_directives/tcloud-ui-ip-mask.directive.mjs +54 -0
- package/esm2022/lib/_interfaces/user.service.interface.mjs +2 -0
- package/esm2022/lib/_modules/tcloud-ui-progress-bar/tcloud-ui-progress-bar.component.mjs +2 -2
- package/esm2022/lib/_modules/tcloud-ui-scroll-box/tcloud-ui-scroll-box.component.mjs +2 -2
- package/esm2022/lib/_services/tcloud-ui-check-access.service.mjs +170 -0
- package/esm2022/lib/tcloud-ui.config.mjs +2 -0
- package/esm2022/lib/tcloud-ui.module.mjs +13 -1
- package/esm2022/public-api.mjs +9 -1
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +522 -15
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_directives/currency/currency.directive.d.ts +3 -3
- package/lib/_directives/directives.module.d.ts +7 -1
- package/lib/_directives/tcloud-access/tcloud-ui-check-access.directive.d.ts +17 -0
- package/lib/_directives/tcloud-access/tcloud-ui-ng-check-access.directive.d.ts +15 -0
- package/lib/_directives/tcloud-access/tcloud-ui-ng-feature-flags.directive.d.ts +15 -0
- package/lib/_directives/tcloud-ui-digit-only.directive.d.ts +12 -0
- package/lib/_directives/tcloud-ui-highlight.diretive.d.ts +11 -0
- package/lib/_directives/tcloud-ui-ip-mask.directive.d.ts +10 -0
- package/lib/_interfaces/user.service.interface.d.ts +3 -0
- package/lib/_services/tcloud-ui-check-access.service.d.ts +15 -0
- package/lib/tcloud-ui.config.d.ts +7 -0
- package/lib/tcloud-ui.module.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
- package/scss/tcloud/custom/buttons.scss +7 -3
- package/scss/tcloud/custom/colors.scss +8 -0
- package/scss/tcloud/custom/mixins.scss +143 -143
- package/scss/tcloud/custom/variables.scss +4 -1
- package/scss/tcloud/disaster-recovery/colors.scss +15 -0
- package/scss/tcloud/disaster-recovery/layout.scss +14 -0
- package/scss/tcloud/disaster-recovery/styles.scss +2 -0
- package/scss/tcloud/prime/cards-products.scss +332 -0
- package/scss/tcloud/prime/left-navigation.scss +328 -0
- package/scss/tcloud/prime/styles.scss +3 -0
- package/scss/tcloud/prime/tcloud-prime.scss +3872 -0
- package/scss/tcloud/standard/left-navigation.scss +48 -0
- package/scss/tcloud/standard/styles.scss +3 -0
- package/scss/tcloud/standard/tcloud-standard.scss +126 -0
- package/scss/tcloud/standard/top-navigation.scss +61 -0
- package/scss/tcloud/styles.scss +7 -5
- package/scss/tcloud/tcloud-ui.scss +8 -0
- package/scss/tcloud/iaas/forms.scss +0 -18
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
.menu-area-floating{
|
|
3
|
+
-webkit-box-shadow: 8px 0px 18px -9px rgba(0,0,0,0.75);
|
|
4
|
+
-moz-box-shadow: 8px 0px 18px -9px rgba(0,0,0,0.75);
|
|
5
|
+
box-shadow: 8px 0px 18px -9px rgba(0,0,0,0.75);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.tc-prime.mini-navbar{
|
|
9
|
+
.footer{
|
|
10
|
+
display: none;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.mini-navbar{
|
|
15
|
+
#side-menu{
|
|
16
|
+
li{
|
|
17
|
+
padding-left: 8px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fixed-sidebar-below{
|
|
23
|
+
margin-left: 62px !important;
|
|
24
|
+
|
|
25
|
+
.navbar-fixed-top{
|
|
26
|
+
z-index: 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.wrap-main{
|
|
30
|
+
.background-page-global-internal{
|
|
31
|
+
margin-top: 8px !important;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.mini-navbar{
|
|
38
|
+
#page-wrapper{
|
|
39
|
+
.wrap-main{
|
|
40
|
+
.background-page-global-internal{
|
|
41
|
+
margin-top: 70px;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
nav.navbar{
|
|
45
|
+
padding: 0 70px 0 0 !important;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
@import '../tcloud-ui.scss';
|
|
2
|
+
|
|
3
|
+
// ===============================
|
|
4
|
+
// T-Cloud Styles
|
|
5
|
+
// ===============================
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
9
|
+
background: var(--tc-base-main);
|
|
10
|
+
font-size: 13px;
|
|
11
|
+
color: #676a6c;
|
|
12
|
+
overflow-x: hidden;
|
|
13
|
+
|
|
14
|
+
#wrapper{
|
|
15
|
+
background: #fff;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
html,
|
|
20
|
+
body {
|
|
21
|
+
height: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
a:hover {
|
|
25
|
+
text-decoration: none!important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// ---------------------------------------------
|
|
29
|
+
// Card
|
|
30
|
+
// ---------------------------------------------
|
|
31
|
+
|
|
32
|
+
.card {
|
|
33
|
+
background: #fff;
|
|
34
|
+
color: var(--tc-gray-500);
|
|
35
|
+
border-radius: 10px;
|
|
36
|
+
padding: 20px;
|
|
37
|
+
border: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.card-container {
|
|
41
|
+
background: var(--white);
|
|
42
|
+
border-radius: 20px;
|
|
43
|
+
padding: 20px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.card-title {
|
|
47
|
+
color: var(--tc-primary);
|
|
48
|
+
text-transform: uppercase;
|
|
49
|
+
font-size: 16px;
|
|
50
|
+
margin-top: 0;
|
|
51
|
+
font-weight: normal;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.card.shadow {
|
|
55
|
+
box-shadow: 2px 3px 20px rgba(var(--black), .1)!important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.card.card-shadow {
|
|
59
|
+
box-shadow: 2px 3px 20px rgba(var(--black), .1);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.card.margin-top {
|
|
63
|
+
margin-top: 20px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.card-shadow {
|
|
67
|
+
background: var(--white);
|
|
68
|
+
border-radius: 10px;
|
|
69
|
+
box-shadow: 2px 3px 20px rgba(var(--black), .1);
|
|
70
|
+
padding: 20px;
|
|
71
|
+
margin-bottom: 20px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.card-shadow-header {
|
|
75
|
+
display: flex;
|
|
76
|
+
justify-content: space-between;
|
|
77
|
+
flex-flow: column;
|
|
78
|
+
gap: 10px;
|
|
79
|
+
margin-bottom: 15px;
|
|
80
|
+
padding-bottom: 15px;
|
|
81
|
+
border-bottom: 1px solid var(--tc-gray-200);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.card-shadow-tit {
|
|
85
|
+
font-size: 16px;
|
|
86
|
+
color:var(--tc-primary);
|
|
87
|
+
text-transform: uppercase;
|
|
88
|
+
margin: 0;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.card-shadow-subtit {
|
|
92
|
+
font-size: 12px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.card-shadow-content-tit {
|
|
96
|
+
color: var(--tc-primary);
|
|
97
|
+
margin-bottom: 20px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.quick-filter-wrap {
|
|
101
|
+
margin-bottom: 15px;
|
|
102
|
+
|
|
103
|
+
input {
|
|
104
|
+
margin-left: 5px;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.tc-pipeline-report-all {
|
|
109
|
+
|
|
110
|
+
.wrapper-content {
|
|
111
|
+
padding: 10px 0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.form-group {
|
|
115
|
+
margin: 0 !important;
|
|
116
|
+
padding: 0 0 10px !important;
|
|
117
|
+
border-bottom: none!important;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.trustcenter-container {
|
|
122
|
+
|
|
123
|
+
.trust-center-prime {
|
|
124
|
+
display: none;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.tc-top-navigation{
|
|
2
|
+
|
|
3
|
+
.tc-navbar-nav{
|
|
4
|
+
margin-right: 5px !important;
|
|
5
|
+
li{
|
|
6
|
+
.tc-btn{
|
|
7
|
+
margin: 5px !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.label-warning{
|
|
11
|
+
margin-left: 3px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.dropdown-toggle::after{
|
|
17
|
+
display: none !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.navbar-collapse{
|
|
21
|
+
&.collapse{
|
|
22
|
+
&.show{
|
|
23
|
+
ul{
|
|
24
|
+
li{
|
|
25
|
+
.tc-btn:first-child{
|
|
26
|
+
width: 100% !important;
|
|
27
|
+
display: flex !important;
|
|
28
|
+
margin: 5px;
|
|
29
|
+
justify-content: left;
|
|
30
|
+
padding-left: 24px;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.tc-prime{
|
|
42
|
+
.tc-top-navigation{
|
|
43
|
+
ul{
|
|
44
|
+
li > .tc-btn{
|
|
45
|
+
border: none !important;
|
|
46
|
+
&:not(.tc-btn-primary) {
|
|
47
|
+
background: transparent !important;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.tc-top-navigation{
|
|
55
|
+
.dropdown{
|
|
56
|
+
.dropdown-menu{
|
|
57
|
+
z-index: 2001 !important;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
package/scss/tcloud/styles.scss
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
@import 'custom/variables.scss';
|
|
2
2
|
@import 'custom/mixins.scss';
|
|
3
3
|
|
|
4
|
-
@import 'custom/top-navigation.scss';
|
|
5
|
-
@import 'custom/left-navigation.scss';
|
|
6
4
|
@import 'custom/buttons.scss';
|
|
7
5
|
|
|
8
6
|
@import 'custom/card.scss';
|
|
@@ -11,7 +9,11 @@
|
|
|
11
9
|
@import 'custom/text.scss';
|
|
12
10
|
@import 'custom/alerts.scss';
|
|
13
11
|
|
|
14
|
-
|
|
15
|
-
@import '
|
|
12
|
+
/* STANDARD STYLES */
|
|
13
|
+
@import 'standard/styles.scss';
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
/* PRIME STYLES */
|
|
16
|
+
@import 'prime/styles.scss';
|
|
17
|
+
|
|
18
|
+
/* DISASTER-RECOVERY */
|
|
19
|
+
@import 'disaster-recovery/styles.scss';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
@import 'custom/variables.scss';
|
|
2
|
+
@import 'custom/mixins.scss';
|
|
3
|
+
@import 'custom/colors.scss';
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
@import 'node_modules/@dev-tcloud/tcloud-ui/scss/tcloud/custom/variables.scss';
|
|
7
|
+
@import 'node_modules/@dev-tcloud/tcloud-ui/scss/tcloud/custom/mixins.scss';
|
|
8
|
+
*/
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
.iaas-page{
|
|
2
|
-
|
|
3
|
-
.tc-form-control {
|
|
4
|
-
background-color: white;
|
|
5
|
-
border: 1px solid #A2A2A2;
|
|
6
|
-
border-radius: 3px;
|
|
7
|
-
color: var(--cinza);
|
|
8
|
-
font-family: "Open Sans";
|
|
9
|
-
font-size: 13px;
|
|
10
|
-
height: 40px;
|
|
11
|
-
padding: 0 10px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.tc-form-control:disabled {
|
|
15
|
-
opacity: 0.6;
|
|
16
|
-
cursor: not-allowed;
|
|
17
|
-
}
|
|
18
|
-
}
|