inl-ui 0.0.39 → 0.0.40
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/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/src/pageComponent/assets/styles/alarm/warning-record.less +7 -0
- package/src/pageComponent/assets/styles/login/login.less +2 -1
- package/src/pageComponent/assets/styles/systemManager/aboutNew.less +10 -11
- package/src/pageComponent/assets/styles/systemManager/index.less +13 -0
- package/src/pageComponent/assets/styles/systemManager/noticeManager/noticeCenter.less +12 -0
- package/src/pageComponent/assets/styles/systemManager/param-manager.less +7 -0
- package/src/pageComponent/assets/styles/systemManager/systemSetting.less +1 -1
- package/src/pageComponent/components/CommonTree.tsx +1 -1
- package/src/pageComponent/views/alarms/warning-record/index.tsx +1 -1
- package/src/pageComponent/views/alarms/warning-record/record-table.tsx +1 -1
- package/src/pageComponent/views/pss/assets/less/index.less +1 -0
- package/src/pageComponent/views/systemManager/noticeManager/noticeCenter.tsx +1 -1
- package/src/pageComponent/views/systemManager/noticeManager/noticeManager.tsx +1 -1
- package/src/pageComponent/views/systemManager/paramManager/index.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import { ColorPicker } from 'vue-color-kit';
|
|
|
18
18
|
import 'vue-color-kit/dist/vue-color-kit.css';
|
|
19
19
|
import 'inl-card/dist/style.css';
|
|
20
20
|
|
|
21
|
-
var version = "0.0.
|
|
21
|
+
var version = "0.0.40";
|
|
22
22
|
|
|
23
23
|
const config$1 = {
|
|
24
24
|
prefix: "inl"
|
|
@@ -9654,7 +9654,7 @@ const CommonTree$1 = defineComponent({
|
|
|
9654
9654
|
onMounted(() => bus.on("tree/refresh", handleRefresh));
|
|
9655
9655
|
onBeforeUnmount(() => bus.off("tree/refresh", handleRefresh));
|
|
9656
9656
|
return () => createVNode("div", {
|
|
9657
|
-
"class": "common-tree"
|
|
9657
|
+
"class": "common-tree flex"
|
|
9658
9658
|
}, [createVNode(resolveComponent("a-input"), {
|
|
9659
9659
|
"style": {
|
|
9660
9660
|
marginBottom: "16px"
|
|
@@ -14981,7 +14981,7 @@ const ParamManager = defineComponent({
|
|
|
14981
14981
|
return () => {
|
|
14982
14982
|
let _slot, _slot2;
|
|
14983
14983
|
return createVNode("div", {
|
|
14984
|
-
"class": "param-manager"
|
|
14984
|
+
"class": "param-manager flex"
|
|
14985
14985
|
}, [!props.menu && createVNode(resolveComponent("a-space"), null, _isSlot$$(_slot = menus.value.map((item, index) => createVNode(resolveComponent("a-button"), {
|
|
14986
14986
|
"type": currentMenu.value.id === item.id ? "primary" : "default",
|
|
14987
14987
|
"onClick": () => changeMenu(item)
|
|
@@ -34553,7 +34553,7 @@ const WarningRecord$1 = defineComponent({
|
|
|
34553
34553
|
return () => {
|
|
34554
34554
|
let _slot;
|
|
34555
34555
|
return createVNode("div", {
|
|
34556
|
-
"class": "warning-record"
|
|
34556
|
+
"class": "warning-record flex"
|
|
34557
34557
|
}, [createVNode(QueryFilter, {
|
|
34558
34558
|
"onSubmit": search,
|
|
34559
34559
|
"enumObj": enumObj
|
|
@@ -34943,7 +34943,8 @@ const WarningRecord = defineComponent({
|
|
|
34943
34943
|
isDetailShow.value = true;
|
|
34944
34944
|
};
|
|
34945
34945
|
return () => createVNode("div", {
|
|
34946
|
-
"class": "warning-record-index"
|
|
34946
|
+
"class": "warning-record-index flex",
|
|
34947
|
+
"style": "overflow: hidden;"
|
|
34947
34948
|
}, [isDetailShow.value ? createVNode(alarmDetail, {
|
|
34948
34949
|
"record": detailRecord.value,
|
|
34949
34950
|
"onClose": () => isDetailShow.value = false
|
|
@@ -37494,7 +37495,7 @@ const noticeManager$1 = defineComponent({
|
|
|
37494
37495
|
http();
|
|
37495
37496
|
});
|
|
37496
37497
|
return () => createVNode("div", {
|
|
37497
|
-
"class": "noticeManager"
|
|
37498
|
+
"class": "noticeManager flex"
|
|
37498
37499
|
}, [createVNode("div", {
|
|
37499
37500
|
"class": "noticeManager-top"
|
|
37500
37501
|
}, [createVNode(resolveComponent("a-button"), {
|
|
@@ -38558,7 +38559,7 @@ const noticeCenter = defineComponent({
|
|
|
38558
38559
|
})]
|
|
38559
38560
|
})]
|
|
38560
38561
|
})]), createVNode("div", {
|
|
38561
|
-
"class": "noticeCenter-content"
|
|
38562
|
+
"class": "noticeCenter-content flex"
|
|
38562
38563
|
}, [createVNode("div", {
|
|
38563
38564
|
"style": "margin-bottom: 20px;"
|
|
38564
38565
|
}, [createVNode(resolveComponent("a-button"), {
|