inl-ui 0.1.160 → 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
|
@@ -11,7 +11,6 @@ var antDesignVue = require('ant-design-vue');
|
|
|
11
11
|
var _ = require('lodash');
|
|
12
12
|
var qiankun = require('qiankun');
|
|
13
13
|
var dayjs = require('dayjs');
|
|
14
|
-
var ramdom = require('src/utils/ramdom');
|
|
15
14
|
require('vite-plugin-qiankun');
|
|
16
15
|
var renderWithQiankun = require('vite-plugin-qiankun/dist/helper');
|
|
17
16
|
var mqtt = require('mqtt');
|
|
@@ -6990,6 +6989,14 @@ const TabList = vue.defineComponent({
|
|
|
6990
6989
|
}
|
|
6991
6990
|
});
|
|
6992
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
|
+
|
|
6993
7000
|
const Props$1 = {
|
|
6994
7001
|
currMenu: {
|
|
6995
7002
|
type: Object
|
|
@@ -7193,7 +7200,6 @@ const PageContent = vue.defineComponent({
|
|
|
7193
7200
|
});
|
|
7194
7201
|
};
|
|
7195
7202
|
vue.watch(activeMenu, (val, oldVal) => {
|
|
7196
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
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
|
@@ -7,7 +7,6 @@ import { message, Menu, MenuItem, Input as Input$1, Badge, Avatar as Avatar$1, M
|
|
|
7
7
|
import _, { isPlainObject as isPlainObject$2, omit, differenceBy, cloneDeep, isObject as isObject$3, concat } from 'lodash';
|
|
8
8
|
import { loadMicroApp } from 'qiankun';
|
|
9
9
|
import dayjs from 'dayjs';
|
|
10
|
-
import { UUID as UUID$1 } from 'src/utils/ramdom';
|
|
11
10
|
import 'vite-plugin-qiankun';
|
|
12
11
|
import { qiankunWindow } from 'vite-plugin-qiankun/dist/helper';
|
|
13
12
|
import mqtt from 'mqtt';
|
|
@@ -6961,6 +6960,14 @@ const TabList = defineComponent({
|
|
|
6961
6960
|
}
|
|
6962
6961
|
});
|
|
6963
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
|
+
|
|
6964
6971
|
const Props$1 = {
|
|
6965
6972
|
currMenu: {
|
|
6966
6973
|
type: Object
|
|
@@ -7164,7 +7171,6 @@ const PageContent = defineComponent({
|
|
|
7164
7171
|
});
|
|
7165
7172
|
};
|
|
7166
7173
|
watch(activeMenu, (val, oldVal) => {
|
|
7167
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
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 = 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
|
@@ -13,7 +13,6 @@ var dayjs = require('dayjs');
|
|
|
13
13
|
var vueRouter = require('vue-router');
|
|
14
14
|
var iconsVue = require('@ant-design/icons-vue');
|
|
15
15
|
var qiankun$1 = require('qiankun');
|
|
16
|
-
var ramdom$1 = require('src/utils/ramdom');
|
|
17
16
|
var mqtt = require('mqtt');
|
|
18
17
|
var mobile = require('@sszj-temp/mobile');
|
|
19
18
|
var marked = require('marked');
|
|
@@ -46,7 +45,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
46
45
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
47
46
|
var mqtt__default = /*#__PURE__*/_interopDefaultLegacy(mqtt);
|
|
48
47
|
|
|
49
|
-
var version = "0.1.
|
|
48
|
+
var version = "0.1.160";
|
|
50
49
|
|
|
51
50
|
const setTheme = theme => {
|
|
52
51
|
if (theme === "dark") {
|
|
@@ -8348,7 +8347,6 @@ const PageContent = vue.defineComponent({
|
|
|
8348
8347
|
});
|
|
8349
8348
|
};
|
|
8350
8349
|
vue.watch(activeMenu, (val, oldVal) => {
|
|
8351
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
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
|
@@ -9,13 +9,12 @@ import dayjs from 'dayjs';
|
|
|
9
9
|
import { useRouter, useRoute } from 'vue-router';
|
|
10
10
|
import { createFromIconfontCN, SearchOutlined, DownOutlined, PoweroffOutlined, MenuUnfoldOutlined, MenuFoldOutlined, SkinFilled, FullscreenOutlined, PauseCircleOutlined, PlayCircleFilled, FullscreenExitOutlined, CaretUpOutlined, CaretRightOutlined, CaretDownOutlined, FileExcelTwoTone, InboxOutlined, MessageOutlined } from '@ant-design/icons-vue';
|
|
11
11
|
import { loadMicroApp } from 'qiankun';
|
|
12
|
-
import { UUID as UUID$1 } from 'src/utils/ramdom';
|
|
13
12
|
import mqtt from 'mqtt';
|
|
14
13
|
import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
15
14
|
import { marked } from 'marked';
|
|
16
15
|
import '@sszj-temp/mobile/style.css';
|
|
17
16
|
|
|
18
|
-
var version = "0.1.
|
|
17
|
+
var version = "0.1.160";
|
|
19
18
|
|
|
20
19
|
const setTheme = theme => {
|
|
21
20
|
if (theme === "dark") {
|
|
@@ -8317,7 +8316,6 @@ const PageContent = defineComponent({
|
|
|
8317
8316
|
});
|
|
8318
8317
|
};
|
|
8319
8318
|
watch(activeMenu, (val, oldVal) => {
|
|
8320
|
-
console.log("activeMenu changed:", val, oldVal);
|
|
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 = UUID
|
|
8341
|
+
val.uuid = UUID();
|
|
8344
8342
|
historyArr.push(val);
|
|
8345
8343
|
sendRecord(val, "insert");
|
|
8346
8344
|
}
|