@m2c2kit/core 0.1.10 → 0.3.6
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/assets/canvaskit.wasm +0 -0
- package/assets/css/bootstrap-datepicker.standalone.css +539 -0
- package/assets/css/bootstrap-slider.css +328 -0
- package/assets/css/defaultV2.css +3655 -0
- package/assets/css/m2c2kit.css +72 -0
- package/assets/css/modern.css +2564 -0
- package/assets/css/nouislider.css +309 -0
- package/assets/css/select2.css +712 -0
- package/assets/css/survey.css +1006 -0
- package/dist/index.d.ts +2877 -1680
- package/dist/index.js +7663 -16
- package/index.html +31 -0
- package/package.json +29 -23
- package/post-install.mjs +98 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.m2c2kit-background-color {
|
|
2
|
+
background: white;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.m2c2kit-no-margin {
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.m2c2kit-display-none {
|
|
10
|
+
display: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.m2c2kit-display-block {
|
|
14
|
+
display: block;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.m2c2kit-full-viewport {
|
|
18
|
+
height: 100vh;
|
|
19
|
+
width: 100vw;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.m2c2kit-flex-container {
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: center;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.m2c2kit-canvas-overlay {
|
|
29
|
+
background-color: white;
|
|
30
|
+
width: 100vw;
|
|
31
|
+
height: 100vh;
|
|
32
|
+
position: absolute
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.m2c2kit-spinner {
|
|
36
|
+
border: 16px solid #f3f3f3;
|
|
37
|
+
border-radius: 50%;
|
|
38
|
+
border-top: 16px solid #212529;
|
|
39
|
+
width: 120px;
|
|
40
|
+
height: 120px;
|
|
41
|
+
/* Safari */
|
|
42
|
+
-webkit-animation: m2c2kit-loader-spin 1.5s linear infinite;
|
|
43
|
+
animation: m2c2kit-loader-spin 1.5s linear infinite;
|
|
44
|
+
position: absolute;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#m2c2kit-time-stepping-div {
|
|
48
|
+
position: fixed;
|
|
49
|
+
top: 4px;
|
|
50
|
+
left: 4px
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Safari */
|
|
54
|
+
@-webkit-keyframes m2c2kit-loader-spin {
|
|
55
|
+
0% {
|
|
56
|
+
-webkit-transform: rotate(0deg);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
100% {
|
|
60
|
+
-webkit-transform: rotate(360deg);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@keyframes m2c2kit-loader-spin {
|
|
65
|
+
0% {
|
|
66
|
+
transform: rotate(0deg);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
100% {
|
|
70
|
+
transform: rotate(360deg);
|
|
71
|
+
}
|
|
72
|
+
}
|