inl-ui 0.1.53 → 0.1.54
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 +24 -4
- package/dist/components/index.js +6 -3
- package/dist/index.cjs +7 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -4
- package/dist/video/index.cjs +24 -4
- package/dist/video/index.js +6 -3
- package/package.json +3 -2
|
@@ -13,16 +13,32 @@ var dayjs = require('dayjs');
|
|
|
13
13
|
var qiankun = require('qiankun');
|
|
14
14
|
require('vite-plugin-qiankun');
|
|
15
15
|
var renderWithQiankun = require('vite-plugin-qiankun/dist/helper');
|
|
16
|
-
var EZUIKit = require('ezuikit-js');
|
|
17
16
|
var mobile = require('@sszj-temp/mobile');
|
|
18
17
|
var marked = require('marked');
|
|
19
18
|
|
|
20
19
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
21
20
|
|
|
21
|
+
function _interopNamespace(e) {
|
|
22
|
+
if (e && e.__esModule) return e;
|
|
23
|
+
var n = Object.create(null);
|
|
24
|
+
if (e) {
|
|
25
|
+
Object.keys(e).forEach(function (k) {
|
|
26
|
+
if (k !== 'default') {
|
|
27
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
28
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
29
|
+
enumerable: true,
|
|
30
|
+
get: function () { return e[k]; }
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
n["default"] = e;
|
|
36
|
+
return Object.freeze(n);
|
|
37
|
+
}
|
|
38
|
+
|
|
22
39
|
var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
23
40
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
24
41
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
25
|
-
var EZUIKit__default = /*#__PURE__*/_interopDefaultLegacy(EZUIKit);
|
|
26
42
|
|
|
27
43
|
const config = {
|
|
28
44
|
prefix: "inl",
|
|
@@ -10434,8 +10450,12 @@ const CloudVideo = vue.defineComponent({
|
|
|
10434
10450
|
if (prop.template) {
|
|
10435
10451
|
opt.height = prop.height;
|
|
10436
10452
|
}
|
|
10437
|
-
|
|
10438
|
-
|
|
10453
|
+
Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require('ezuikit-js')); }).then(async ({
|
|
10454
|
+
default: EZUIKit
|
|
10455
|
+
}) => {
|
|
10456
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
10457
|
+
_context.emit("complete", player);
|
|
10458
|
+
});
|
|
10439
10459
|
};
|
|
10440
10460
|
vue.onMounted(() => {
|
|
10441
10461
|
initVideo();
|
package/dist/components/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import dayjs from 'dayjs';
|
|
|
9
9
|
import { loadMicroApp } from 'qiankun';
|
|
10
10
|
import 'vite-plugin-qiankun';
|
|
11
11
|
import { qiankunWindow } from 'vite-plugin-qiankun/dist/helper';
|
|
12
|
-
import EZUIKit from 'ezuikit-js';
|
|
13
12
|
import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
14
13
|
import { marked } from 'marked';
|
|
15
14
|
|
|
@@ -10423,8 +10422,12 @@ const CloudVideo = defineComponent({
|
|
|
10423
10422
|
if (prop.template) {
|
|
10424
10423
|
opt.height = prop.height;
|
|
10425
10424
|
}
|
|
10426
|
-
|
|
10427
|
-
|
|
10425
|
+
import('ezuikit-js').then(async ({
|
|
10426
|
+
default: EZUIKit
|
|
10427
|
+
}) => {
|
|
10428
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
10429
|
+
_context.emit("complete", player);
|
|
10430
|
+
});
|
|
10428
10431
|
};
|
|
10429
10432
|
onMounted(() => {
|
|
10430
10433
|
initVideo();
|
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 EZUIKit = require('ezuikit-js');
|
|
17
16
|
var mobile = require('@sszj-temp/mobile');
|
|
18
17
|
var marked = require('marked');
|
|
19
18
|
require('@sszj-temp/mobile/style.css');
|
|
@@ -43,9 +42,8 @@ var renderWithQiankun__default = /*#__PURE__*/_interopDefaultLegacy(renderWithQi
|
|
|
43
42
|
var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
44
43
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
45
44
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
46
|
-
var EZUIKit__default = /*#__PURE__*/_interopDefaultLegacy(EZUIKit);
|
|
47
45
|
|
|
48
|
-
var version = "0.1.
|
|
46
|
+
var version = "0.1.53";
|
|
49
47
|
|
|
50
48
|
const setTheme = theme => {
|
|
51
49
|
if (theme === "dark") {
|
|
@@ -11438,8 +11436,12 @@ const CloudVideo = vue.defineComponent({
|
|
|
11438
11436
|
if (prop.template) {
|
|
11439
11437
|
opt.height = prop.height;
|
|
11440
11438
|
}
|
|
11441
|
-
|
|
11442
|
-
|
|
11439
|
+
Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require('ezuikit-js')); }).then(async ({
|
|
11440
|
+
default: EZUIKit
|
|
11441
|
+
}) => {
|
|
11442
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
11443
|
+
_context.emit("complete", player);
|
|
11444
|
+
});
|
|
11443
11445
|
};
|
|
11444
11446
|
vue.onMounted(() => {
|
|
11445
11447
|
initVideo();
|
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.53";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -9,12 +9,11 @@ import dayjs from 'dayjs';
|
|
|
9
9
|
import { useRouter, useRoute } from 'vue-router';
|
|
10
10
|
import { createFromIconfontCN, SearchOutlined, DownOutlined, PoweroffOutlined, MenuUnfoldOutlined, MenuFoldOutlined, SkinFilled, FullscreenOutlined, CaretUpOutlined, CaretRightOutlined, CaretDownOutlined, FileExcelTwoTone, InboxOutlined, MessageOutlined } from '@ant-design/icons-vue';
|
|
11
11
|
import { loadMicroApp } from 'qiankun';
|
|
12
|
-
import EZUIKit from 'ezuikit-js';
|
|
13
12
|
import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
14
13
|
import { marked } from 'marked';
|
|
15
14
|
import '@sszj-temp/mobile/style.css';
|
|
16
15
|
|
|
17
|
-
var version = "0.1.
|
|
16
|
+
var version = "0.1.53";
|
|
18
17
|
|
|
19
18
|
const setTheme = theme => {
|
|
20
19
|
if (theme === "dark") {
|
|
@@ -11407,8 +11406,12 @@ const CloudVideo = defineComponent({
|
|
|
11407
11406
|
if (prop.template) {
|
|
11408
11407
|
opt.height = prop.height;
|
|
11409
11408
|
}
|
|
11410
|
-
|
|
11411
|
-
|
|
11409
|
+
import('ezuikit-js').then(async ({
|
|
11410
|
+
default: EZUIKit
|
|
11411
|
+
}) => {
|
|
11412
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
11413
|
+
_context.emit("complete", player);
|
|
11414
|
+
});
|
|
11412
11415
|
};
|
|
11413
11416
|
onMounted(() => {
|
|
11414
11417
|
initVideo();
|
package/dist/video/index.cjs
CHANGED
|
@@ -7,12 +7,28 @@ var iconsVue = require('@ant-design/icons-vue');
|
|
|
7
7
|
var axios$2 = require('axios');
|
|
8
8
|
var lodash = require('lodash');
|
|
9
9
|
var vueRouter = require('vue-router');
|
|
10
|
-
var EZUIKit = require('ezuikit-js');
|
|
11
10
|
|
|
12
11
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
12
|
|
|
13
|
+
function _interopNamespace(e) {
|
|
14
|
+
if (e && e.__esModule) return e;
|
|
15
|
+
var n = Object.create(null);
|
|
16
|
+
if (e) {
|
|
17
|
+
Object.keys(e).forEach(function (k) {
|
|
18
|
+
if (k !== 'default') {
|
|
19
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () { return e[k]; }
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
n["default"] = e;
|
|
28
|
+
return Object.freeze(n);
|
|
29
|
+
}
|
|
30
|
+
|
|
14
31
|
var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
15
|
-
var EZUIKit__default = /*#__PURE__*/_interopDefaultLegacy(EZUIKit);
|
|
16
32
|
|
|
17
33
|
const config = {
|
|
18
34
|
prefix: "inl",
|
|
@@ -7857,8 +7873,12 @@ const CloudVideo = vue.defineComponent({
|
|
|
7857
7873
|
if (prop.template) {
|
|
7858
7874
|
opt.height = prop.height;
|
|
7859
7875
|
}
|
|
7860
|
-
|
|
7861
|
-
|
|
7876
|
+
Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require('ezuikit-js')); }).then(async ({
|
|
7877
|
+
default: EZUIKit
|
|
7878
|
+
}) => {
|
|
7879
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
7880
|
+
_context.emit("complete", player);
|
|
7881
|
+
});
|
|
7862
7882
|
};
|
|
7863
7883
|
vue.onMounted(() => {
|
|
7864
7884
|
initVideo();
|
package/dist/video/index.js
CHANGED
|
@@ -3,7 +3,6 @@ import { SearchOutlined, FullscreenOutlined, createFromIconfontCN } from '@ant-d
|
|
|
3
3
|
import axios$2 from 'axios';
|
|
4
4
|
import { cloneDeep } from 'lodash';
|
|
5
5
|
import { useRouter } from 'vue-router';
|
|
6
|
-
import EZUIKit from 'ezuikit-js';
|
|
7
6
|
|
|
8
7
|
const config = {
|
|
9
8
|
prefix: "inl",
|
|
@@ -7848,8 +7847,12 @@ const CloudVideo = defineComponent({
|
|
|
7848
7847
|
if (prop.template) {
|
|
7849
7848
|
opt.height = prop.height;
|
|
7850
7849
|
}
|
|
7851
|
-
|
|
7852
|
-
|
|
7850
|
+
import('ezuikit-js').then(async ({
|
|
7851
|
+
default: EZUIKit
|
|
7852
|
+
}) => {
|
|
7853
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
7854
|
+
_context.emit("complete", player);
|
|
7855
|
+
});
|
|
7853
7856
|
};
|
|
7854
7857
|
onMounted(() => {
|
|
7855
7858
|
initVideo();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inl-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.54",
|
|
4
4
|
"description": "工业 pc ui库",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"eslint": "^8.5.0",
|
|
61
61
|
"esno": "^0.16.3",
|
|
62
62
|
"fast-glob": "^3.2.12",
|
|
63
|
-
"inquirer": "
|
|
63
|
+
"inquirer": "9.1.4",
|
|
64
64
|
"less": "^4.2.0",
|
|
65
65
|
"lodash": "^4.17.21",
|
|
66
66
|
"npm-run-all": "^4.1.5",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"rollup-plugin-dts": "^5.0.0",
|
|
72
72
|
"rollup-plugin-esbuild": "^5.0.0",
|
|
73
73
|
"rollup-plugin-postcss": "^4.0.2",
|
|
74
|
+
"string-width": "^7.1.0",
|
|
74
75
|
"typescript": "~5.0.4",
|
|
75
76
|
"vite": "^4.3.9",
|
|
76
77
|
"vue": "^3.2.45",
|