aldehyde 0.2.271 → 0.2.273

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.
@@ -0,0 +1,20 @@
1
+
2
+ .base-text-component {
3
+ --stroke-color: #000000;
4
+ --stroke-width: 0;
5
+
6
+ height: 100%;
7
+ display: flex;
8
+ -webkit-text-stroke-color: var(--stroke-color);
9
+ -webkit-text-stroke-width: var(--stroke-width);
10
+ stroke-color: var(--stroke-color);
11
+ stroke-width: var(--stroke-width);
12
+
13
+ input {
14
+ outline: none;
15
+ width: 100%;
16
+ background-color: rgba(255, 222, 173, 0);
17
+ text-align: center;
18
+ border: none;
19
+ }
20
+ }
@@ -0,0 +1,5 @@
1
+ .date-time-component {
2
+ width: 100%;
3
+ height: 100%;
4
+ display: flex;
5
+ }
@@ -0,0 +1,50 @@
1
+ .four-angle-glow {
2
+ --fagb-color: #00ebff;
3
+ --fagb-width: 2px;
4
+ --fagb-length: 8px;
5
+ --fagb-radius: 3px;
6
+ width: 100%;
7
+ height: 100%;
8
+ position: relative;
9
+
10
+ .angle {
11
+ position: absolute;
12
+ border: var(--fagb-width) solid var(--fagb-color);
13
+ width: var(--fagb-length);
14
+ height: var(--fagb-length);
15
+ }
16
+
17
+ .angle-tl {
18
+ margin: -1px 0 0 -1px;
19
+ border-right: 0;
20
+ border-bottom: 0;
21
+ border-top-left-radius: var(--fagb-radius);
22
+ }
23
+
24
+ .angle-tr {
25
+ top: 0;
26
+ right: 0;
27
+ border-left: 0;
28
+ border-bottom: 0;
29
+ margin: -1px -1px 0 0;
30
+ border-top-right-radius: var(--fagb-radius);
31
+ }
32
+
33
+ .angle-bl {
34
+ bottom: 0;
35
+ left: 0;
36
+ border-top: 0;
37
+ border-right: 0;
38
+ margin: 0 0 -1px -1px;
39
+ border-bottom-left-radius: var(--fagb-radius);
40
+ }
41
+
42
+ .angle-br {
43
+ bottom: 0;
44
+ right: 0;
45
+ border-left: 0;
46
+ border-top: 0;
47
+ margin: 0 -1px -1px 0;
48
+ border-bottom-right-radius: var(--fagb-radius);
49
+ }
50
+ }
@@ -0,0 +1,13 @@
1
+ .react-screen-box {
2
+ background-size: 100% 100%;
3
+ width: 100%;
4
+ height: 100%;
5
+
6
+ .screen-wrapper {
7
+ transition-property: all;
8
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
9
+ transition-duration: 300ms;
10
+ position: relative;
11
+ transform-origin: left top;
12
+ }
13
+ }
@@ -0,0 +1,12 @@
1
+ .lowcodeView {
2
+ width: 100%;
3
+ -ms-overflow-style: none;
4
+ /* IE和Edge */
5
+ scrollbar-width: none;
6
+ /* Firefox */
7
+ }
8
+
9
+ .lowcodeView::-webkit-scrollbar {
10
+ display: none;
11
+ /* Chrome, Safari和Opera */
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aldehyde",
3
- "version": "0.2.271",
3
+ "version": "0.2.273",
4
4
  "author": "cosmicparticle",
5
5
  "main": "lib/index.js",
6
6
  "module": "src/aldehyde/index.txs",
@@ -18,7 +18,7 @@
18
18
  "npm:publish": "npm publish",
19
19
  "clean-lib": "rimraf lib && rimraf templib && rimraf dist",
20
20
  "tsc": "yarn clean-lib && tsc && yarn copy-files",
21
- "copy-files": "copyfiles -u 3 templib/src/aldehyde/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/**/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/**/**/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/* lib/ && copyfiles -u 2 src/aldehyde/**/*.html src/aldehyde/**/*.css src/aldehyde/**/**/*.css src/aldehyde/**/**/*.png src/aldehyde/**/*.png lib/"
21
+ "copy-files": "copyfiles -u 3 templib/src/aldehyde/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/**/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/**/**/**/* lib/ && copyfiles -u 3 templib/src/aldehyde/* lib/ && copyfiles -u 2 src/aldehyde/**/*.html src/aldehyde/**/*.css src/aldehyde/**/**/*.css src/aldehyde/**/**/*.png src/aldehyde/**/*.png src/aldehyde/**/**/*.less src/aldehyde/**/*.less lib/"
22
22
  },
23
23
  "homepage": "./",
24
24
  "dependencies": {