inl-ui 0.1.20 → 0.1.21
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/README.md +49 -49
- package/dist/iconfont.js +69 -69
- package/dist/index.cjs +6 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -8
- package/dist/theme/index.js +70 -70
- package/dist/theme/scripts/dark-vars.js +21 -21
- package/dist/theme/scripts/default-vars.js +25 -25
- package/dist/theme/scripts/light-vars.js +22 -22
- package/dist/theme/style/color/bezierEasing.less +110 -110
- package/dist/theme/style/color/colorPalette.less +81 -81
- package/dist/theme/style/color/colors.less +162 -162
- package/dist/theme/style/color/tinyColor.less +1184 -1184
- package/dist/theme/style/compact.less +4 -4
- package/dist/theme/style/dark.less +4 -4
- package/dist/theme/style/default.less +4 -4
- package/dist/theme/style/index.less +2 -2
- package/dist/theme/style/index.tsx +2 -2
- package/dist/theme/style/themes/compact.less +295 -295
- package/dist/theme/style/themes/dark.less +790 -790
- package/dist/theme/style/themes/default.less +1067 -1067
- package/dist/theme/style/themes/index.less +7 -7
- package/dist/theme/style/themes/var-dark.less +343 -343
- package/dist/theme/style/themes/var-default.less +184 -184
- package/dist/theme/style/themes/variable.less +1122 -1122
- package/dist/theme/style/variable.less +4 -4
- package/dist/tplib/index.cjs +5 -7
- package/dist/tplib/index.js +5 -7
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@root-entry-name: variable;
|
|
2
|
-
|
|
3
|
-
@import './themes/variable.less';
|
|
4
|
-
@import './core/index';
|
|
1
|
+
@root-entry-name: variable;
|
|
2
|
+
|
|
3
|
+
@import './themes/variable.less';
|
|
4
|
+
@import './core/index';
|
package/dist/tplib/index.cjs
CHANGED
|
@@ -4821,7 +4821,7 @@ const GetDeviceDetailOnce = async (codes, params) => {
|
|
|
4821
4821
|
if (instance.thingInstCode === i) {
|
|
4822
4822
|
for (let n of instance.detailGroupList) {
|
|
4823
4823
|
for (let m of n.thingPropertyValueVoList) {
|
|
4824
|
-
refhCodes[i] =
|
|
4824
|
+
refhCodes[i] = instance;
|
|
4825
4825
|
}
|
|
4826
4826
|
}
|
|
4827
4827
|
}
|
|
@@ -4878,12 +4878,10 @@ const InjectDeviceCodeGetDetail = async (codes, params) => {
|
|
|
4878
4878
|
if (!item) continue;
|
|
4879
4879
|
for (let n in item.detailGroupList) {
|
|
4880
4880
|
for (let m in item.detailGroupList[n].thingPropertyValueVoList) {
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
};
|
|
4886
|
-
}
|
|
4881
|
+
newResData[i] = {
|
|
4882
|
+
pointCode: item.detailGroupList[n].thingPropertyValueVoList[m].pointCode,
|
|
4883
|
+
value: item.detailGroupList[n].thingPropertyValueVoList[m].value
|
|
4884
|
+
};
|
|
4887
4885
|
}
|
|
4888
4886
|
}
|
|
4889
4887
|
}
|
package/dist/tplib/index.js
CHANGED
|
@@ -4817,7 +4817,7 @@ const GetDeviceDetailOnce = async (codes, params) => {
|
|
|
4817
4817
|
if (instance.thingInstCode === i) {
|
|
4818
4818
|
for (let n of instance.detailGroupList) {
|
|
4819
4819
|
for (let m of n.thingPropertyValueVoList) {
|
|
4820
|
-
refhCodes[i] =
|
|
4820
|
+
refhCodes[i] = instance;
|
|
4821
4821
|
}
|
|
4822
4822
|
}
|
|
4823
4823
|
}
|
|
@@ -4874,12 +4874,10 @@ const InjectDeviceCodeGetDetail = async (codes, params) => {
|
|
|
4874
4874
|
if (!item) continue;
|
|
4875
4875
|
for (let n in item.detailGroupList) {
|
|
4876
4876
|
for (let m in item.detailGroupList[n].thingPropertyValueVoList) {
|
|
4877
|
-
|
|
4878
|
-
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
};
|
|
4882
|
-
}
|
|
4877
|
+
newResData[i] = {
|
|
4878
|
+
pointCode: item.detailGroupList[n].thingPropertyValueVoList[m].pointCode,
|
|
4879
|
+
value: item.detailGroupList[n].thingPropertyValueVoList[m].value
|
|
4880
|
+
};
|
|
4883
4881
|
}
|
|
4884
4882
|
}
|
|
4885
4883
|
}
|