inl-ui 0.1.158 → 0.1.161
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/components/index.cjs +9 -11
- package/dist/components/index.js +9 -11
- package/dist/index.cjs +2 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -4
- package/package.json +1 -1
|
@@ -6989,6 +6989,14 @@ const TabList = vue.defineComponent({
|
|
|
6989
6989
|
}
|
|
6990
6990
|
});
|
|
6991
6991
|
|
|
6992
|
+
const UUID = (n = 16) => {
|
|
6993
|
+
return "xxxx-xx-4x-yx-xx".replace(/[xy]/g, c => {
|
|
6994
|
+
const r = Math.random() * 16 | 0,
|
|
6995
|
+
v = c == "x" ? r : r & 3 | 8;
|
|
6996
|
+
return v.toString(n);
|
|
6997
|
+
});
|
|
6998
|
+
};
|
|
6999
|
+
|
|
6992
7000
|
const Props$1 = {
|
|
6993
7001
|
currMenu: {
|
|
6994
7002
|
type: Object
|
|
@@ -7192,8 +7200,6 @@ const PageContent = vue.defineComponent({
|
|
|
7192
7200
|
});
|
|
7193
7201
|
};
|
|
7194
7202
|
vue.watch(activeMenu, (val, oldVal) => {
|
|
7195
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
7196
|
-
debugger;
|
|
7197
7203
|
if (oldVal) {
|
|
7198
7204
|
const historyItem = historyArr.find(item => item.id === oldVal.id);
|
|
7199
7205
|
if (historyItem) {
|
|
@@ -7216,7 +7222,7 @@ const PageContent = vue.defineComponent({
|
|
|
7216
7222
|
val.leaveTime = 0;
|
|
7217
7223
|
val.sendTime = 0;
|
|
7218
7224
|
val.inUse = true;
|
|
7219
|
-
val.uuid =
|
|
7225
|
+
val.uuid = UUID();
|
|
7220
7226
|
historyArr.push(val);
|
|
7221
7227
|
sendRecord(val, "insert");
|
|
7222
7228
|
}
|
|
@@ -7759,14 +7765,6 @@ var changeTheme = {
|
|
|
7759
7765
|
}
|
|
7760
7766
|
};
|
|
7761
7767
|
|
|
7762
|
-
const UUID = (n = 16) => {
|
|
7763
|
-
return "xxxx-xx-4x-yx-xx".replace(/[xy]/g, c => {
|
|
7764
|
-
const r = Math.random() * 16 | 0,
|
|
7765
|
-
v = c == "x" ? r : r & 3 | 8;
|
|
7766
|
-
return v.toString(n);
|
|
7767
|
-
});
|
|
7768
|
-
};
|
|
7769
|
-
|
|
7770
7768
|
const Undeveloped = vue.defineComponent({
|
|
7771
7769
|
setup() {
|
|
7772
7770
|
return () => vue.createVNode("div", {
|
package/dist/components/index.js
CHANGED
|
@@ -6960,6 +6960,14 @@ const TabList = defineComponent({
|
|
|
6960
6960
|
}
|
|
6961
6961
|
});
|
|
6962
6962
|
|
|
6963
|
+
const UUID = (n = 16) => {
|
|
6964
|
+
return "xxxx-xx-4x-yx-xx".replace(/[xy]/g, c => {
|
|
6965
|
+
const r = Math.random() * 16 | 0,
|
|
6966
|
+
v = c == "x" ? r : r & 3 | 8;
|
|
6967
|
+
return v.toString(n);
|
|
6968
|
+
});
|
|
6969
|
+
};
|
|
6970
|
+
|
|
6963
6971
|
const Props$1 = {
|
|
6964
6972
|
currMenu: {
|
|
6965
6973
|
type: Object
|
|
@@ -7163,8 +7171,6 @@ const PageContent = defineComponent({
|
|
|
7163
7171
|
});
|
|
7164
7172
|
};
|
|
7165
7173
|
watch(activeMenu, (val, oldVal) => {
|
|
7166
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
7167
|
-
debugger;
|
|
7168
7174
|
if (oldVal) {
|
|
7169
7175
|
const historyItem = historyArr.find(item => item.id === oldVal.id);
|
|
7170
7176
|
if (historyItem) {
|
|
@@ -7187,7 +7193,7 @@ const PageContent = defineComponent({
|
|
|
7187
7193
|
val.leaveTime = 0;
|
|
7188
7194
|
val.sendTime = 0;
|
|
7189
7195
|
val.inUse = true;
|
|
7190
|
-
val.uuid =
|
|
7196
|
+
val.uuid = UUID();
|
|
7191
7197
|
historyArr.push(val);
|
|
7192
7198
|
sendRecord(val, "insert");
|
|
7193
7199
|
}
|
|
@@ -7730,14 +7736,6 @@ var changeTheme = {
|
|
|
7730
7736
|
}
|
|
7731
7737
|
};
|
|
7732
7738
|
|
|
7733
|
-
const UUID = (n = 16) => {
|
|
7734
|
-
return "xxxx-xx-4x-yx-xx".replace(/[xy]/g, c => {
|
|
7735
|
-
const r = Math.random() * 16 | 0,
|
|
7736
|
-
v = c == "x" ? r : r & 3 | 8;
|
|
7737
|
-
return v.toString(n);
|
|
7738
|
-
});
|
|
7739
|
-
};
|
|
7740
|
-
|
|
7741
7739
|
const Undeveloped = defineComponent({
|
|
7742
7740
|
setup() {
|
|
7743
7741
|
return () => createVNode("div", {
|
package/dist/index.cjs
CHANGED
|
@@ -45,7 +45,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
45
45
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
46
46
|
var mqtt__default = /*#__PURE__*/_interopDefaultLegacy(mqtt);
|
|
47
47
|
|
|
48
|
-
var version = "0.1.
|
|
48
|
+
var version = "0.1.160";
|
|
49
49
|
|
|
50
50
|
const setTheme = theme => {
|
|
51
51
|
if (theme === "dark") {
|
|
@@ -8347,8 +8347,6 @@ const PageContent = vue.defineComponent({
|
|
|
8347
8347
|
});
|
|
8348
8348
|
};
|
|
8349
8349
|
vue.watch(activeMenu, (val, oldVal) => {
|
|
8350
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
8351
|
-
debugger;
|
|
8352
8350
|
if (oldVal) {
|
|
8353
8351
|
const historyItem = historyArr.find(item => item.id === oldVal.id);
|
|
8354
8352
|
if (historyItem) {
|
|
@@ -8371,7 +8369,7 @@ const PageContent = vue.defineComponent({
|
|
|
8371
8369
|
val.leaveTime = 0;
|
|
8372
8370
|
val.sendTime = 0;
|
|
8373
8371
|
val.inUse = true;
|
|
8374
|
-
val.uuid =
|
|
8372
|
+
val.uuid = UUID();
|
|
8375
8373
|
historyArr.push(val);
|
|
8376
8374
|
sendRecord(val, "insert");
|
|
8377
8375
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { Key } from 'ant-design-vue/lib/table/interface';
|
|
|
11
11
|
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
12
12
|
import * as _ant_design_icons_vue_lib_components_IconFont from '@ant-design/icons-vue/lib/components/IconFont';
|
|
13
13
|
|
|
14
|
-
var version = "0.1.
|
|
14
|
+
var version = "0.1.160";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
|
14
14
|
import { marked } from 'marked';
|
|
15
15
|
import '@sszj-temp/mobile/style.css';
|
|
16
16
|
|
|
17
|
-
var version = "0.1.
|
|
17
|
+
var version = "0.1.160";
|
|
18
18
|
|
|
19
19
|
const setTheme = theme => {
|
|
20
20
|
if (theme === "dark") {
|
|
@@ -8316,8 +8316,6 @@ const PageContent = defineComponent({
|
|
|
8316
8316
|
});
|
|
8317
8317
|
};
|
|
8318
8318
|
watch(activeMenu, (val, oldVal) => {
|
|
8319
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
8320
|
-
debugger;
|
|
8321
8319
|
if (oldVal) {
|
|
8322
8320
|
const historyItem = historyArr.find(item => item.id === oldVal.id);
|
|
8323
8321
|
if (historyItem) {
|
|
@@ -8340,7 +8338,7 @@ const PageContent = defineComponent({
|
|
|
8340
8338
|
val.leaveTime = 0;
|
|
8341
8339
|
val.sendTime = 0;
|
|
8342
8340
|
val.inUse = true;
|
|
8343
|
-
val.uuid =
|
|
8341
|
+
val.uuid = UUID();
|
|
8344
8342
|
historyArr.push(val);
|
|
8345
8343
|
sendRecord(val, "insert");
|
|
8346
8344
|
}
|