@tplc/wot 0.1.26 → 0.1.28

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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.28](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.65...v0.1.28) (2024-11-21)
6
+
7
+ ### [0.1.27](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.26...v0.1.27) (2024-11-20)
8
+
9
+
10
+ ### ✨ Features | 新功能
11
+
12
+ * add lcb-vip ([efc7f5e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/efc7f5e3c24f616ebc7b41bc99dbb8918ed4b81d))
13
+
5
14
  ### [0.1.26](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.60...v0.1.26) (2024-11-20)
6
15
 
7
16
  ### [0.1.24](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.57...v0.1.24) (2024-11-07)
@@ -1,4 +1,3 @@
1
- import type { PropType } from 'vue'
2
1
  import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
3
2
 
4
3
  export const qrCodeProps = {
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <view
3
3
  class="uqrcode"
4
- :class="{ 'uqrcode-hide': hide, customClass }"
4
+ :class="[{ 'uqrcode-hide': hide }, customClass]"
5
5
  :style="{ width: `${templateOptions.width}px`, height: `${templateOptions.height}px` }"
6
6
  >
7
7
  <view class="uqrcode-canvas-wrapper">
package/global.d.ts CHANGED
@@ -91,6 +91,7 @@ declare module 'vue' {
91
91
  'wd-index-anchor': (typeof import('./types/components/wd-index-anchor/wd-index-anchor.vue'))['default']
92
92
  'wd-text': (typeof import('./types/components/wd-text/wd-text.vue'))['default']
93
93
  'wd-count-to': (typeof import('./types/components/wd-count-to/wd-count-to.vue'))['default']
94
+ 'wd-qr-code': (typeof import('./types/components/wd-qr-code/wd-qr-code.vue'))['default']
94
95
  }
95
96
  }
96
97
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "@tplc/wot",
3
3
  "name": "@tplc/wot",
4
- "version": "0.1.26",
4
+ "version": "0.1.28",
5
5
  "keywords": [
6
6
  "wot-design-uni",
7
7
  "国际化",
@@ -1,13 +1,12 @@
1
- import type { PropType } from 'vue'
2
1
  export declare const qrCodeProps: {
3
2
  /** canvas组件id */
4
3
  canvasId: {
5
- type: PropType<string>
4
+ type: import('vue').PropType<string>
6
5
  default: string
7
6
  }
8
7
  /** 二维码内容 */
9
8
  value: {
10
- type: PropType<string>
9
+ type: import('vue').PropType<string>
11
10
  default: string
12
11
  }
13
12
  options: {
@@ -20,12 +19,12 @@ export declare const qrCodeProps: {
20
19
  }
21
20
  /** 二维码尺寸单位 */
22
21
  sizeUnit: {
23
- type: PropType<string>
22
+ type: import('vue').PropType<string>
24
23
  default: string
25
24
  }
26
25
  /** 导出的文件类型 */
27
26
  fileType: {
28
- type: PropType<string>
27
+ type: import('vue').PropType<string>
29
28
  default: string
30
29
  }
31
30
  /** 是否初始化组件后就开始生成 */
@@ -45,7 +44,7 @@ export declare const qrCodeProps: {
45
44
  }
46
45
  /** canvas 类型,微信小程序默认使用2d,非2d微信官方已放弃维护,问题比较多 */
47
46
  type: {
48
- type: PropType<string>
47
+ type: import('vue').PropType<string>
49
48
  default: string
50
49
  }
51
50
  /** 队列绘制,主要针对NVue端 */
@@ -70,15 +69,15 @@ export declare const qrCodeProps: {
70
69
  }
71
70
  /** H5下载名称 */
72
71
  h5DownloadName: {
73
- type: PropType<string>
72
+ type: import('vue').PropType<string>
74
73
  default: string
75
74
  }
76
75
  customClass: {
77
- type: PropType<string>
76
+ type: import('vue').PropType<string>
78
77
  default: string
79
78
  }
80
79
  customStyle: {
81
- type: PropType<string>
80
+ type: import('vue').PropType<string>
82
81
  default: string
83
82
  }
84
83
  }