@abp/core 5.0.0-rc.1 → 5.0.2
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/abp.resourcemapping.js +4 -4
- package/package.json +2 -2
- package/src/abp.css +56 -56
- package/src/abp.js +776 -776
package/abp.resourcemapping.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
mappings: {
|
|
3
|
-
"@node_modules/@abp/core/src/*": "@libs/abp/core/"
|
|
4
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
mappings: {
|
|
3
|
+
"@node_modules/@abp/core/src/*": "@libs/abp/core/"
|
|
4
|
+
}
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.0.
|
|
2
|
+
"version": "5.0.2",
|
|
3
3
|
"name": "@abp/core",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@abp/utils": "~5.0.
|
|
13
|
+
"@abp/utils": "~5.0.2"
|
|
14
14
|
},
|
|
15
15
|
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
|
16
16
|
}
|
package/src/abp.css
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
@keyframes spin {
|
|
2
|
-
0% {
|
|
3
|
-
transform: translateZ(0) rotate(0deg);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
100% {
|
|
7
|
-
transform: translateZ(0) rotate(360deg);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.abp-block-area {
|
|
12
|
-
position: fixed;
|
|
13
|
-
top: 0;
|
|
14
|
-
left: 0;
|
|
15
|
-
width: 100%;
|
|
16
|
-
height: 100%;
|
|
17
|
-
z-index: 102;
|
|
18
|
-
background-color: #fff;
|
|
19
|
-
opacity: .8;
|
|
20
|
-
transition: opacity .25s;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.abp-block-area.abp-block-area-disappearing {
|
|
24
|
-
opacity: 0;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.abp-block-area.abp-block-area-busy:after {
|
|
28
|
-
content: attr(data-text);
|
|
29
|
-
display: block;
|
|
30
|
-
max-width: 125px;
|
|
31
|
-
position: absolute;
|
|
32
|
-
top: 50%;
|
|
33
|
-
left: 50%;
|
|
34
|
-
transform: translate(-50%, -50%);
|
|
35
|
-
font-size: 20px;
|
|
36
|
-
font-family: sans-serif;
|
|
37
|
-
color: #343a40;
|
|
38
|
-
text-align: center;
|
|
39
|
-
text-transform: uppercase;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.abp-block-area.abp-block-area-busy:before {
|
|
43
|
-
content: "";
|
|
44
|
-
display: block;
|
|
45
|
-
width: 150px;
|
|
46
|
-
height: 150px;
|
|
47
|
-
border-radius: 50%;
|
|
48
|
-
border-width: 2px;
|
|
49
|
-
border-style: solid;
|
|
50
|
-
border-color: transparent #228ae6 #228ae6 #228ae6;
|
|
51
|
-
position: absolute;
|
|
52
|
-
top: calc(50% - 75px);
|
|
53
|
-
left: calc(50% - 75px);
|
|
54
|
-
will-change: transform;
|
|
55
|
-
animation: spin .75s infinite ease-in-out;
|
|
56
|
-
}
|
|
1
|
+
@keyframes spin {
|
|
2
|
+
0% {
|
|
3
|
+
transform: translateZ(0) rotate(0deg);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
100% {
|
|
7
|
+
transform: translateZ(0) rotate(360deg);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.abp-block-area {
|
|
12
|
+
position: fixed;
|
|
13
|
+
top: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
z-index: 102;
|
|
18
|
+
background-color: #fff;
|
|
19
|
+
opacity: .8;
|
|
20
|
+
transition: opacity .25s;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.abp-block-area.abp-block-area-disappearing {
|
|
24
|
+
opacity: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.abp-block-area.abp-block-area-busy:after {
|
|
28
|
+
content: attr(data-text);
|
|
29
|
+
display: block;
|
|
30
|
+
max-width: 125px;
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: 50%;
|
|
33
|
+
left: 50%;
|
|
34
|
+
transform: translate(-50%, -50%);
|
|
35
|
+
font-size: 20px;
|
|
36
|
+
font-family: sans-serif;
|
|
37
|
+
color: #343a40;
|
|
38
|
+
text-align: center;
|
|
39
|
+
text-transform: uppercase;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.abp-block-area.abp-block-area-busy:before {
|
|
43
|
+
content: "";
|
|
44
|
+
display: block;
|
|
45
|
+
width: 150px;
|
|
46
|
+
height: 150px;
|
|
47
|
+
border-radius: 50%;
|
|
48
|
+
border-width: 2px;
|
|
49
|
+
border-style: solid;
|
|
50
|
+
border-color: transparent #228ae6 #228ae6 #228ae6;
|
|
51
|
+
position: absolute;
|
|
52
|
+
top: calc(50% - 75px);
|
|
53
|
+
left: calc(50% - 75px);
|
|
54
|
+
will-change: transform;
|
|
55
|
+
animation: spin .75s infinite ease-in-out;
|
|
56
|
+
}
|