@tplc/wot 0.1.60 → 0.1.62

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,31 @@
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.62](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.57...v0.1.62) (2025-02-24)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.3.58 ([5714272](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/5714272e0acc716ec8fb1326c15e73cac448151b))
11
+ * **release:** 0.3.59 ([4b94bc6](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/4b94bc63f3b25112370adf3fe0d3082e70adb3b7))
12
+ * **release:** 0.3.60 ([d58f018](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d58f01898d3fa953c2e008878b30e4f79964a323))
13
+ * **release:** 0.3.61 ([9d90cab](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9d90cab4b70b69acc065176b08c82251739aff6d))
14
+
15
+
16
+ ### ✨ Features | 新功能
17
+
18
+ * getFinalUrl 调整不插入其他数据 ([a96a25f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a96a25ffe3f82475c20b2166aef45cb5ae53308a))
19
+ * 修改整体字体大小 ([80a7abb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/80a7abb1e670a2bb191d9d0175fcc87423c5ed40))
20
+ * 字体加粗 ([d35519f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d35519fa29db1fb340efd6b710f210a5813de382))
21
+ * 调整ui ([2cb67aa](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2cb67aa044ceb3ddb8a26a8a4a4345a3944c6ded))
22
+
23
+ ### [0.1.61](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.53...v0.1.61) (2025-02-18)
24
+
25
+
26
+ ### ✨ Features | 新功能
27
+
28
+ * 新增popup safe判断 ([539a081](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/539a08168621193a6435431f5b4277875a50efe0))
29
+
5
30
  ### [0.1.60](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.44...v0.1.60) (2025-02-13)
6
31
 
7
32
 
@@ -7,7 +7,7 @@
7
7
  * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-calendar/types.ts
8
8
  * 记得注释
9
9
  */
10
- import type { PropType } from 'vue'
10
+ import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
11
11
  import {
12
12
  baseProps,
13
13
  makeArrayProp,
@@ -207,6 +207,11 @@ export const calendarProps = {
207
207
  * 打开前执行的函数
208
208
  */
209
209
  initFun: Function as PropType<() => void>,
210
+ /**
211
+ * 是否使用内置单元格
212
+ * 默认为 true,使用内置单元格
213
+ */
214
+ withCell: makeBooleanProp(true),
210
215
  }
211
216
 
212
217
  export type CalendarDisplayFormat = (value: number | number[], type: CalendarType) => string
@@ -237,3 +242,7 @@ export type CalendarExpose = {
237
242
  /** 打开时间选择器弹窗 */
238
243
  open: () => void
239
244
  }
245
+
246
+ export type CalendarProps = ExtractPropTypes<typeof calendarProps>
247
+
248
+ export type CalendarInstance = ComponentPublicInstance<CalendarExpose, CalendarProps>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <view :class="`wd-calendar ${cell.border.value ? 'is-border' : ''} ${customClass}`">
3
- <view class="wd-calendar__field" @click="open">
3
+ <view class="wd-calendar__field" @click="open" v-if="withCell">
4
4
  <slot v-if="useDefaultSlot"></slot>
5
5
  <view
6
6
  v-else
@@ -22,6 +22,7 @@
22
22
  top: 0;
23
23
  left: 0;
24
24
  z-index: -1;
25
+ opacity: 0;
25
26
  }
26
27
  @include e(content) {
27
28
  font-size: $-collapse-body-fs;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "@tplc/wot",
3
3
  "name": "@tplc/wot",
4
- "version": "0.1.60",
4
+ "version": "0.1.62",
5
5
  "keywords": [
6
6
  "wot-design-uni",
7
7
  "国际化",
@@ -1,4 +1,4 @@
1
- import type { PropType } from 'vue'
1
+ import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
2
2
  import type { CalendarFormatter, CalendarTimeFilter, CalendarType } from '../wd-calendar-view/types'
3
3
  import type { FormItemRule } from '../wd-form/types'
4
4
  export declare const calendarProps: {
@@ -258,6 +258,14 @@ export declare const calendarProps: {
258
258
  * 打开前执行的函数
259
259
  */
260
260
  initFun: PropType<() => void>
261
+ /**
262
+ * 是否使用内置单元格
263
+ * 默认为 true,使用内置单元格
264
+ */
265
+ withCell: {
266
+ type: BooleanConstructor
267
+ default: boolean
268
+ }
261
269
  customStyle: {
262
270
  type: PropType<string>
263
271
  default: string
@@ -289,3 +297,5 @@ export type CalendarExpose = {
289
297
  /** 打开时间选择器弹窗 */
290
298
  open: () => void
291
299
  }
300
+ export type CalendarProps = ExtractPropTypes<typeof calendarProps>
301
+ export type CalendarInstance = ComponentPublicInstance<CalendarExpose, CalendarProps>
@@ -130,6 +130,10 @@ declare const _default: __VLS_WithTemplateSlots<
130
130
  default: boolean
131
131
  }
132
132
  initFun: import('vue').PropType<() => void>
133
+ withCell: {
134
+ type: BooleanConstructor
135
+ default: boolean
136
+ }
133
137
  customStyle: {
134
138
  type: import('vue').PropType<string>
135
139
  default: string
@@ -286,6 +290,10 @@ declare const _default: __VLS_WithTemplateSlots<
286
290
  default: boolean
287
291
  }
288
292
  initFun: import('vue').PropType<() => void>
293
+ withCell: {
294
+ type: BooleanConstructor
295
+ default: boolean
296
+ }
289
297
  customStyle: {
290
298
  type: import('vue').PropType<string>
291
299
  default: string
@@ -331,6 +339,7 @@ declare const _default: __VLS_WithTemplateSlots<
331
339
  customViewClass: string
332
340
  customLabelClass: string
333
341
  customValueClass: string
342
+ withCell: boolean
334
343
  },
335
344
  {}
336
345
  >,