sccoreui 2.4.5 → 2.4.8
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/dist/App.scss +5 -5
- package/dist/assets/sccoreui.css +15 -15
- package/dist/assets/theme.css +34 -12
- package/dist/directives/svg-component.js +950 -2433
- package/dist/directives/svg-icons.js +4560 -1887
- package/dist/pages/home.js +2 -1
- package/dist/pages/not-found/not-found.js +10 -0
- package/dist/pages/tooltip/tooltip.js +1 -1
- package/dist/types/directives/svg-component.d.ts +1 -2
- package/dist/types/directives/svg-icons.d.ts +4 -0
- package/dist/types/pages/not-found/not-found.d.ts +2 -0
- package/package.json +1 -1
package/dist/App.scss
CHANGED
|
@@ -75,13 +75,13 @@ h3 {
|
|
|
75
75
|
&.horizontal::before {
|
|
76
76
|
height: 2px;
|
|
77
77
|
width: 100%;
|
|
78
|
-
top:
|
|
78
|
+
top: 11%;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
&.vertical::before {
|
|
82
82
|
height: 100%;
|
|
83
83
|
width: 2px;
|
|
84
|
-
left:
|
|
84
|
+
left: 5%;
|
|
85
85
|
top: 0;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
@@ -92,13 +92,13 @@ h3 {
|
|
|
92
92
|
|
|
93
93
|
&.horizontal {
|
|
94
94
|
left: 0;
|
|
95
|
-
top: 13%;
|
|
96
95
|
height: 2px;
|
|
96
|
+
top: 11%;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
&.vertical {
|
|
100
100
|
width: 2px;
|
|
101
|
-
left:
|
|
101
|
+
left: 5%;
|
|
102
102
|
top: 0;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -127,4 +127,4 @@ h3 {
|
|
|
127
127
|
transform: translateY(100%);
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
-
}
|
|
130
|
+
}
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -960,7 +960,6 @@ a {
|
|
|
960
960
|
height: 40px;
|
|
961
961
|
}
|
|
962
962
|
|
|
963
|
-
|
|
964
963
|
.p-inputgroup > .p-dropdown {
|
|
965
964
|
background: #ffffff;
|
|
966
965
|
height: 40px;
|
|
@@ -2484,13 +2483,12 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
2484
2483
|
} */
|
|
2485
2484
|
|
|
2486
2485
|
.p-fileupload .p-button {
|
|
2487
|
-
background-color: #f4f6fd
|
|
2486
|
+
background-color: #f4f6fd;
|
|
2488
2487
|
color: var(--gray-900);
|
|
2489
2488
|
height: 48px !important;
|
|
2490
2489
|
line-height: 48px !important;
|
|
2491
2490
|
padding: 0px 22px;
|
|
2492
2491
|
border-radius: 4px;
|
|
2493
|
-
border: 1px dashed #c6cae0;
|
|
2494
2492
|
font-size: 14px;
|
|
2495
2493
|
}
|
|
2496
2494
|
|
|
@@ -5827,7 +5825,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
5827
5825
|
}
|
|
5828
5826
|
|
|
5829
5827
|
.p-dialog {
|
|
5830
|
-
border-radius:
|
|
5828
|
+
border-radius: 12px;
|
|
5831
5829
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
5832
5830
|
border: 0 none;
|
|
5833
5831
|
}
|
|
@@ -5872,8 +5870,8 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
5872
5870
|
padding: 24px;
|
|
5873
5871
|
}
|
|
5874
5872
|
.p-dialog .p-dialog-content:last-of-type {
|
|
5875
|
-
border-bottom-right-radius:
|
|
5876
|
-
border-bottom-left-radius:
|
|
5873
|
+
border-bottom-right-radius: 12px;
|
|
5874
|
+
border-bottom-left-radius: 12px;
|
|
5877
5875
|
}
|
|
5878
5876
|
.p-dialog .p-dialog-footer {
|
|
5879
5877
|
border-top: 1px solid #eaecf0;
|
|
@@ -5970,11 +5968,11 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
5970
5968
|
/* outline-offset: 0;
|
|
5971
5969
|
box-shadow: 0 0 0 0.2rem #C7D2FE; */
|
|
5972
5970
|
}
|
|
5973
|
-
.p-sidebar .p-sidebar-header + .p-sidebar-content {
|
|
5971
|
+
/* .p-sidebar .p-sidebar-header + .p-sidebar-content {
|
|
5974
5972
|
padding-top: 24px;
|
|
5975
|
-
}
|
|
5973
|
+
} */
|
|
5976
5974
|
.p-sidebar .p-sidebar-content:not(.footer) {
|
|
5977
|
-
padding: 24px;
|
|
5975
|
+
/* padding: 24px; */
|
|
5978
5976
|
display: flex;
|
|
5979
5977
|
flex-direction: column;
|
|
5980
5978
|
/* padding-left: 0px; */
|
|
@@ -6042,9 +6040,9 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
6042
6040
|
.p-fileupload .p-progressbar {
|
|
6043
6041
|
height: 0.25rem;
|
|
6044
6042
|
}
|
|
6045
|
-
.p-fileupload .p-fileupload-row > div {
|
|
6043
|
+
/* .p-fileupload .p-fileupload-row > div {
|
|
6046
6044
|
padding: 1rem 1rem;
|
|
6047
|
-
}
|
|
6045
|
+
} */
|
|
6048
6046
|
.p-fileupload.p-fileupload-advanced .p-message {
|
|
6049
6047
|
margin-top: 0;
|
|
6050
6048
|
}
|
|
@@ -7786,8 +7784,6 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
7786
7784
|
.p-chip img {
|
|
7787
7785
|
width: 1rem;
|
|
7788
7786
|
height: 1rem;
|
|
7789
|
-
margin-left: -0.75rem;
|
|
7790
|
-
margin-right: 0.5rem;
|
|
7791
7787
|
}
|
|
7792
7788
|
.p-chip .p-chip-remove-icon {
|
|
7793
7789
|
border-radius: 6px;
|
|
@@ -8581,10 +8577,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8581
8577
|
width: 100%;
|
|
8582
8578
|
}
|
|
8583
8579
|
|
|
8584
|
-
.payment-card-input > .p-input-prefix {
|
|
8580
|
+
/* .payment-card-input > .p-input-prefix {
|
|
8585
8581
|
position: absolute;
|
|
8586
8582
|
top: 37% !important;
|
|
8587
|
-
}
|
|
8583
|
+
} */
|
|
8588
8584
|
|
|
8589
8585
|
.border-noround-right > .p-inputnumber-input {
|
|
8590
8586
|
border-top-right-radius: 0px !important;
|
|
@@ -8688,6 +8684,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8688
8684
|
}
|
|
8689
8685
|
|
|
8690
8686
|
|
|
8687
|
+
.tab-view-bg-dark.p-tabview-nav-container.p-tabview-nav-content{
|
|
8688
|
+
border-bottom: none;
|
|
8689
|
+
}
|
|
8690
|
+
|
|
8691
8691
|
|
|
8692
8692
|
/* SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
|
|
8693
8693
|
|
package/dist/assets/theme.css
CHANGED
|
@@ -501,6 +501,10 @@
|
|
|
501
501
|
.p-calendar .p-inputtext {
|
|
502
502
|
flex: 1 1 auto;
|
|
503
503
|
width: 1%;
|
|
504
|
+
padding-left: 8px;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.p-calendar.p-calendar-w-btn-left .p-inputtext{
|
|
504
508
|
padding-left: 0;
|
|
505
509
|
}
|
|
506
510
|
|
|
@@ -3684,9 +3688,12 @@ input.p-dropdown-label {
|
|
|
3684
3688
|
.p-input-icon-left > .p-input-prefix,
|
|
3685
3689
|
.p-input-icon-right > .p-input-suffix {
|
|
3686
3690
|
position: absolute;
|
|
3687
|
-
top: 47%;
|
|
3688
|
-
margin-top: -7px;
|
|
3691
|
+
/* top: 47%;
|
|
3692
|
+
margin-top: -7px; */
|
|
3689
3693
|
font-size: 13px;
|
|
3694
|
+
display: flex;
|
|
3695
|
+
height: 100%;
|
|
3696
|
+
align-items: center;
|
|
3690
3697
|
}
|
|
3691
3698
|
|
|
3692
3699
|
.p-fluid .p-input-icon-left,
|
|
@@ -6084,6 +6091,21 @@ input.p-dropdown-label {
|
|
|
6084
6091
|
}
|
|
6085
6092
|
|
|
6086
6093
|
|
|
6094
|
+
.p-tooltip.p-tooltip-top {
|
|
6095
|
+
padding: 0.25em 0;
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
.p-tooltip.p-tooltip-bottom {
|
|
6099
|
+
padding: 0.25em 0;
|
|
6100
|
+
}
|
|
6101
|
+
|
|
6102
|
+
.p-tooltip.p-tooltip-right {
|
|
6103
|
+
padding: 0 0.25rem;
|
|
6104
|
+
}
|
|
6105
|
+
|
|
6106
|
+
.p-tooltip.p-tooltip-left {
|
|
6107
|
+
padding: 0 0.25rem;
|
|
6108
|
+
}
|
|
6087
6109
|
.p-tooltip .p-tooltip-text {
|
|
6088
6110
|
white-space: pre-line;
|
|
6089
6111
|
word-break: break-word;
|
|
@@ -6098,31 +6120,31 @@ input.p-dropdown-label {
|
|
|
6098
6120
|
}
|
|
6099
6121
|
|
|
6100
6122
|
.p-tooltip-right .p-tooltip-arrow {
|
|
6101
|
-
top:
|
|
6102
|
-
left:
|
|
6123
|
+
top: 50%;
|
|
6124
|
+
left: -1px;
|
|
6103
6125
|
margin-top: -0.25rem;
|
|
6104
|
-
border-width: 0.
|
|
6126
|
+
border-width: 0.4em 0.4em 0.4em 0;
|
|
6105
6127
|
}
|
|
6106
6128
|
|
|
6107
6129
|
.p-tooltip-left .p-tooltip-arrow {
|
|
6108
|
-
top:
|
|
6109
|
-
right:
|
|
6130
|
+
top: 50%;
|
|
6131
|
+
right: -1px;
|
|
6110
6132
|
margin-top: -0.25rem;
|
|
6111
|
-
border-width: 0.
|
|
6133
|
+
border-width: 0.4em 0 0.4em 0.4rem;
|
|
6112
6134
|
}
|
|
6113
6135
|
|
|
6114
6136
|
.p-tooltip-top .p-tooltip-arrow {
|
|
6115
6137
|
bottom: -2px;
|
|
6116
|
-
left:
|
|
6138
|
+
left: 50%;
|
|
6117
6139
|
margin-left: -0.25rem;
|
|
6118
|
-
border-width: 0.
|
|
6140
|
+
border-width: 0.4em 0.4em 0;
|
|
6119
6141
|
}
|
|
6120
6142
|
|
|
6121
6143
|
.p-tooltip-bottom .p-tooltip-arrow {
|
|
6122
6144
|
top: -2px;
|
|
6123
|
-
left:
|
|
6145
|
+
left: 50%;
|
|
6124
6146
|
margin-left: -0.25rem;
|
|
6125
|
-
border-width: 0 0.
|
|
6147
|
+
border-width: 0 0.4em 0.4rem;
|
|
6126
6148
|
}
|
|
6127
6149
|
|
|
6128
6150
|
/* ############################# Changes END Here ############################# */
|