coolcare-lite-scada-component 2.0.20 → 2.0.22
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/es/element/EleSwitch/Component.js +1 -0
- package/es/elementCss.css +16 -0
- package/es/global.css +0 -16
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ import Switch from "../../components/Switch";
|
|
|
11
11
|
import { usePointWatch } from "../../hooks";
|
|
12
12
|
import { isNumber } from "../../utils";
|
|
13
13
|
import { pointWrite } from "../utils";
|
|
14
|
+
import "../../elementCss.css";
|
|
14
15
|
import styles from "./index.css";
|
|
15
16
|
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
|
16
17
|
var confirm = Modal.confirm;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.big .anticon-exclamation-circle {
|
|
2
|
+
font-size: 44px;
|
|
3
|
+
}
|
|
4
|
+
.big .ant-modal-confirm-title {
|
|
5
|
+
font-size: 64px;
|
|
6
|
+
}
|
|
7
|
+
.big .ant-modal-confirm-content {
|
|
8
|
+
font-size: 48px;
|
|
9
|
+
}
|
|
10
|
+
.big .ant-modal-body {
|
|
11
|
+
padding: 64px 64px 48px;
|
|
12
|
+
}
|
|
13
|
+
.big .ant-btn {
|
|
14
|
+
font-size: 28px !important;
|
|
15
|
+
height: auto !important;
|
|
16
|
+
}
|
package/es/global.css
CHANGED
|
@@ -160,19 +160,3 @@ body svg {
|
|
|
160
160
|
.secondary-collapse.ant-collapse .ant-collapse-arrow {
|
|
161
161
|
font-size: 10px !important;
|
|
162
162
|
}
|
|
163
|
-
.big .anticon-exclamation-circle {
|
|
164
|
-
font-size: 44px;
|
|
165
|
-
}
|
|
166
|
-
.big .ant-modal-confirm-title {
|
|
167
|
-
font-size: 64px;
|
|
168
|
-
}
|
|
169
|
-
.big .ant-modal-confirm-content {
|
|
170
|
-
font-size: 48px;
|
|
171
|
-
}
|
|
172
|
-
.big .ant-modal-body {
|
|
173
|
-
padding: 64px 64px 48px;
|
|
174
|
-
}
|
|
175
|
-
.big .ant-btn {
|
|
176
|
-
font-size: 28px !important;
|
|
177
|
-
height: auto !important;
|
|
178
|
-
}
|