inl-ui 0.1.67 → 0.1.69
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/components/index.cjs +4 -0
- package/dist/components/index.js +4 -0
- package/dist/iconfont.js +1 -1
- package/dist/index.cjs +5 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- 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/video/index.cjs +4 -0
- package/dist/video/index.js +4 -0
- package/dist/videoMobile/index.cjs +4 -0
- package/dist/videoMobile/index.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
# 工业PC ui库
|
|
2
|
-
|
|
3
|
-
前端通用库,包括组件、hooks、utils等。
|
|
4
|
-
|
|
5
|
-
### 运行
|
|
6
|
-
|
|
7
|
-
+ 开发模式 yarn dev
|
|
8
|
-
+ 生产打包 yarn build
|
|
9
|
-
+ 生成文档 yarn build:docs
|
|
10
|
-
+ 打包图扑工具 yarn buildtp
|
|
11
|
-
|
|
12
|
-
### 使用方法
|
|
13
|
-
|
|
14
|
-
```javascript
|
|
15
|
-
import inl from 'inl-ui';
|
|
16
|
-
import 'inl-ui/dist/style.css';
|
|
17
|
-
|
|
18
|
-
vue.use(inl)
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### 激活主题
|
|
24
|
-
|
|
25
|
-
**vite.config.ts**
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
const additionalData = require("inl-ui/dist/theme").default;
|
|
29
|
-
|
|
30
|
-
...
|
|
31
|
-
|
|
32
|
-
css: {
|
|
33
|
-
preprocessorOptions: {
|
|
34
|
-
less: {
|
|
35
|
-
javascriptEnabled: true,
|
|
36
|
-
additionalData,
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### 文档链接
|
|
43
|
-
|
|
44
|
-
##### [组件文档](./src/components/README.md)
|
|
45
|
-
|
|
46
|
-
##### [hooks文档](./src/hooks/README.md)
|
|
47
|
-
|
|
48
|
-
##### [Utils文档](./src/utils/README.md)
|
|
49
|
-
|
|
1
|
+
# 工业PC ui库
|
|
2
|
+
|
|
3
|
+
前端通用库,包括组件、hooks、utils等。
|
|
4
|
+
|
|
5
|
+
### 运行
|
|
6
|
+
|
|
7
|
+
+ 开发模式 yarn dev
|
|
8
|
+
+ 生产打包 yarn build
|
|
9
|
+
+ 生成文档 yarn build:docs
|
|
10
|
+
+ 打包图扑工具 yarn buildtp
|
|
11
|
+
|
|
12
|
+
### 使用方法
|
|
13
|
+
|
|
14
|
+
```javascript
|
|
15
|
+
import inl from 'inl-ui';
|
|
16
|
+
import 'inl-ui/dist/style.css';
|
|
17
|
+
|
|
18
|
+
vue.use(inl)
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### 激活主题
|
|
24
|
+
|
|
25
|
+
**vite.config.ts**
|
|
26
|
+
|
|
27
|
+
```javascript
|
|
28
|
+
const additionalData = require("inl-ui/dist/theme").default;
|
|
29
|
+
|
|
30
|
+
...
|
|
31
|
+
|
|
32
|
+
css: {
|
|
33
|
+
preprocessorOptions: {
|
|
34
|
+
less: {
|
|
35
|
+
javascriptEnabled: true,
|
|
36
|
+
additionalData,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### 文档链接
|
|
43
|
+
|
|
44
|
+
##### [组件文档](./src/components/README.md)
|
|
45
|
+
|
|
46
|
+
##### [hooks文档](./src/hooks/README.md)
|
|
47
|
+
|
|
48
|
+
##### [Utils文档](./src/utils/README.md)
|
|
49
|
+
|
|
@@ -8906,6 +8906,8 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
8906
8906
|
"id": `videoPlayer_${uuid}`,
|
|
8907
8907
|
"class": "videoComponent fill",
|
|
8908
8908
|
"src": videoInfo2.value.mp4ResourcesPath,
|
|
8909
|
+
"webkit-playsinline": "false",
|
|
8910
|
+
"playsinline": "false",
|
|
8909
8911
|
"autoplay": true,
|
|
8910
8912
|
"loop": true,
|
|
8911
8913
|
"muted": true
|
|
@@ -8914,6 +8916,8 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
8914
8916
|
return vue.createVNode("video", {
|
|
8915
8917
|
"id": `videoPlayer_${uuid}`,
|
|
8916
8918
|
"class": `videoComponent ${_prop.fill}`,
|
|
8919
|
+
"webkit-playsinline": "false",
|
|
8920
|
+
"playsinline": "false",
|
|
8917
8921
|
"muted": true,
|
|
8918
8922
|
"autoplay": true
|
|
8919
8923
|
}, null);
|
package/dist/components/index.js
CHANGED
|
@@ -8878,6 +8878,8 @@ const VideoPlayerV2 = defineComponent({
|
|
|
8878
8878
|
"id": `videoPlayer_${uuid}`,
|
|
8879
8879
|
"class": "videoComponent fill",
|
|
8880
8880
|
"src": videoInfo2.value.mp4ResourcesPath,
|
|
8881
|
+
"webkit-playsinline": "false",
|
|
8882
|
+
"playsinline": "false",
|
|
8881
8883
|
"autoplay": true,
|
|
8882
8884
|
"loop": true,
|
|
8883
8885
|
"muted": true
|
|
@@ -8886,6 +8888,8 @@ const VideoPlayerV2 = defineComponent({
|
|
|
8886
8888
|
return createVNode("video", {
|
|
8887
8889
|
"id": `videoPlayer_${uuid}`,
|
|
8888
8890
|
"class": `videoComponent ${_prop.fill}`,
|
|
8891
|
+
"webkit-playsinline": "false",
|
|
8892
|
+
"playsinline": "false",
|
|
8889
8893
|
"muted": true,
|
|
8890
8894
|
"autoplay": true
|
|
8891
8895
|
}, null);
|