@opentiny/vue-docs 2.0.3 → 2.0.4

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.
@@ -2,22 +2,75 @@
2
2
 
3
3
  ## v2.10.0/v3.10.0
4
4
 
5
- ### Other Changes
5
+ `2023/08/14`
6
+
7
+ ### Exciting New Features 🎉
8
+
9
+ * feat(pop-editor): 当编辑框弹出时添加自定义事件 fix #268 by @yuanningning in https://github.com/opentiny/tiny-vue/pull/315
10
+ * feat(ip-address): 更改ipAddress组件的IPv6类型 close #272 by @yuanningning in https://github.com/opentiny/tiny-vue/pull/337
11
+ * feat(filter-panel): 新增过滤器面板组件
12
+ * feat(dialog-select): 新增 DialogSelect 组件
13
+ * feat(infinite-scroll): 新增 InfiniteScroll 无限滚动组件
14
+ * feat(tag-group): 新增 TagGroup 标签组组件
15
+ * feat(docs): 官网添加示例composition-api写法,支持切换composition-api和option-api
16
+ * feat(docs): 组件demo支持playground
17
+ * feat(grid): 表格增加快捷筛选面板,可以支持多选框筛选和日期筛选 ,同时支持用户配置默认筛选项
18
+ * feat(grid): 表格排序按钮默认为x-design最新规范图标
19
+ * feat(grid): 表格提示现在支持自定义tooltip内容显示,支持字符串或者jsx
20
+ * feat(tree-menu): TreeMenu新增设置与获取当前选中节点的方法
21
+ * feat(tree-menu): 树形菜单新增可折叠特性
22
+ * feat(tree): Tree新增连接线设置
23
+ * feat(timeline-item): 新增timeline-item组件
24
+ * feat(modal): modal支持配置底部按钮props与文字
25
+ * feat(button-group): 按钮组新增单个disabled特性
26
+ * feat(alert): 新增close插槽,实现外部控制显示或隐藏
27
+ * feat(alert): 组件图标取消垂直居中,采用固定定位
28
+ * feat(time-picker): 支持设置步长 `step`
29
+ * feat(date-picker): 增加 label 内置功能 `label`
30
+ * feat(date-picker): 支持设置时间选择的步长 `step`
31
+ * feat(date-picker): 支持显示周次 `show-week-number`
32
+ * feat(date-picker): 支持过滤器模式 `shape="filter"`
33
+ * feat(date-picker): 支持年份多选和年份范围选择 `type="years" | type="yearrange"`
34
+ * feat(date-picker): 支持某日起始/某日为止功能 `type: 'startFrom'`
6
35
 
7
- - fix: 主题变量 token 命名变更,默认按钮最小宽度 --ti-button-size-normal-mini-width 改为 --ti-button-size-normal-min-width
8
- - fix: 主题变量 token 命名变更,超大按钮最小宽度 --ti-button-size-large-mini-width 改为 --ti-button-size-large-min-width
9
- - fix: 主题变量 token 命名变更,中等按钮最小宽度 --ti-button-size-medium-mini-width 改为 --ti-button-size-medium-min-width
10
- - fix: 主题变量 token 命名变更,小尺寸按钮最小宽度 --ti-button-size-small-mini-width 改为 --ti-button-size-small-min-width
11
- - fix: 主题变量 token 命名变更,迷你尺寸按钮最小宽度 --ti-button-size-mini-mini-width 改为 --ti-button-size-mini-min-width
12
- - fix: 主题变量 token 命名变更, 默认按钮悬浮背景色 --ti-button-normal-hover-background-color 改为 --ti-button-normal-hover-bg-color
13
- - fix: 主题变量 token 命名变更,默认按钮点击瞬间背景色 --ti-button-normal-active-background-color 改为 --ti-button-normal-active-bg-color
14
- - fix: 主题变量 token 命名变更,禁用类默认按钮背景色 --ti-button-normal-disabled-background-color 改为 --ti-button-normal-disabled-bg-color
15
- - fix: 主题变量 token 命名变更,文字按钮图标填充色 --ti-button-text-svg-fill 改为 --ti-button-text-svg-fill-color
16
- - fix: 主题变量 token 命名变更,文字按钮图标悬浮填充色 --ti-button-text-svg-hover-fill 改为 --ti-button-text-svg-hover-fill-color
17
- - fix: 主题变量 token 命名变更,文字按钮禁用时图标填充色 --ti-button-text-svg-fill-disabled 改为 --ti-button-text-svg-disabled-fill-color
18
- - fix: 主题变量 token 命名变更,分页上一页和下一页图标填充色 --ti-pager-btn-svg-color 改为 --ti-pager-btn-svg-fill-color
19
- - fix: 主题变量 token 命名变更,文字按钮禁用时图标填充色 --ti-pager-total-svg-color 改为 --ti-pager-total-svg-fill-color
20
- - fix: 主题变量 token 命名变更,IP 地址输入框图标尺寸 --ti-ip-address-icon-width 改为 --ti-ip-address-icon-size
36
+ ### Bug Fixes 🐛
37
+ * fix(numeric): 修复当前值+Step>max时不能取max的问题 by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/297
38
+ * fix(grid): 修复了列冻结且没有滚动条时表格组件中的异常样式 by @zzcr in https://github.com/opentiny/tiny-vue/pull/298
39
+ * fix(button): 修复了朴素按钮图标禁用颜色的问题 by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/299
40
+ * fix(grid): 修复了表过滤器面板的错误样式,修复了webpack本地环境下ResizeWatch接口的警告问题 by @zzcr in https://github.com/opentiny/tiny-vue/pull/305
41
+ * fix(theme): 从容器、布局中删除样式 by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/306
42
+ * fix(vue-theme): 在文本区域组件中修复 `@apply` by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/319
43
+ * fix(input): 修复了禁用的输入在表单错误中不生效的问题 by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/322
44
+ * fix(checkbox): 修复了复选框标签为0时不显示错误的问题 by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/331
45
+ * fix(select): 修复了计算选择组件的高度和错误创建项目的问题 by @MomoPoppy in https://github.com/opentiny/tiny-vue/pull/358
46
+ * fix(carousel): 将箭头圆宽度调整为28px by @lyx-jay in https://github.com/opentiny/tiny-vue/pull/376
47
+ * fix(drawer): 蒙版消失的速度比内容更快 by @lyx-jay in https://github.com/opentiny/tiny-vue/pull/375
48
+ * fix(badge): 修复显示重复内容的问题 by @lyx-jay in https://github.com/opentiny/tiny-vue/pull/382
49
+ * fix: 修复了执行 pnpm build:ui vue 命令时的ts声明错误 by @kagol in https://github.com/opentiny/tiny-vue/pull/386
50
+ * fix(grid): 修复表格冻结列在x-design规范显示异常问题
51
+ * fix(grid): 修复表格冻结列在表格有纵向滚动条时
52
+ * fix(grid):修复表格fetchdata情况下,表格数据被处理两次问题
53
+ * fix(tree): 修复isEmpty属性在节点数据变化后没响应变化的问题
54
+ * fix(button-group): XDesign主题朴素按钮字体颜色修复
55
+ * fix(input): 修复input在表单禁用状态时不生效bug
56
+ * fix(popover): 避免初始加载时,触发的hide事件
57
+ * fix(dialog-box): 不在body上增加class,可以避免引起的页面抖动
58
+ * fix(tabs): 取消初始化赋值,修复超出页签栏显示问题,优化更多弹出框
59
+ * fix(icons): 优化图标部分的自定义宽度和颜色
60
+ * fix(theme): 取消主题切换后自动刷新页面
61
+ * fix(anchor): 修复锚点异步获取数据导致监听bug,增加切换动画效果
62
+ * fix(dropdown): 修复设置箭头显示不生效
63
+ * fix(select): 修复组件初始化创建条目的场景,同时设置option 和value,有匹配项却自动创建的问题
64
+ * fix(select): 修复 select 组件多选多行时input框高度计算有误的问题
65
+ * fix(popEditor): 编辑框关闭时先隐藏了内容的问题
66
+
67
+ ### Other Changes
68
+ * perf(tooltip): Tooltip 组件性能优化 by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/368
69
+ * chore(row): 恢复演示示例中的样式 by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/311
70
+ * feat(pnpm-lock): 添加 pnpm-lock.ymal 文件 by @zzcr in https://github.com/opentiny/tiny-vue/pull/320
71
+ * feat(button): 完善单元测试 by @chenqifeng66 in https://github.com/opentiny/tiny-vue/pull/364
72
+ * test(alert): 增加 Alert 组件单元测试 by @Zz-ZzzZ in https://github.com/opentiny/tiny-vue/pull/369
73
+ * docs(tag): 增加标签灵活用法,超出隐藏,显示title示例
21
74
 
22
75
  ## v2.9.0/v3.9.0
23
76
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentiny/vue-docs",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "dependencies": {
5
5
  "@unocss/reset": "0.38.2",
6
6
  "@vue/repl": "^2.5.5",
@@ -20,11 +20,11 @@
20
20
  "@opentiny/vue-common": "~3.10.0",
21
21
  "@opentiny/vue-design-aurora": "~3.10.0",
22
22
  "@opentiny/vue-icon": "~3.10.0",
23
- "@opentiny/vue-design-smb": "~3.10.0",
24
23
  "@opentiny/vue-vite-import": "~1.1.5",
25
24
  "@opentiny/vue-theme": "~3.10.0",
26
- "@opentiny/vue-theme-mobile": "~3.10.0",
27
- "@opentiny/vue-theme-saas": "~3.10.0"
25
+ "@opentiny/vue-design-smb": "~3.10.0",
26
+ "@opentiny/vue-theme-saas": "~3.10.0",
27
+ "@opentiny/vue-theme-mobile": "~3.10.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/markdown-it": "^12.2.3",