@opentiny/vue-docs 2.2.3 → 2.2.5

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.
Files changed (52) hide show
  1. package/demos/pc/app/anchor/change.spec.ts +1 -2
  2. package/demos/pc/app/anchor/is-affix.spec.ts +4 -3
  3. package/demos/pc/app/anchor/set-container.spec.ts +7 -7
  4. package/demos/pc/app/anchor/webdoc/anchor.js +17 -16
  5. package/demos/pc/app/button/basic-usage-composition-api.vue +1 -1
  6. package/demos/pc/app/button/basic-usage.vue +1 -1
  7. package/demos/pc/app/button/dynamic-disabled-composition-api.vue +0 -1
  8. package/demos/pc/app/button/dynamic-disabled.spec.js +3 -0
  9. package/demos/pc/app/button/dynamic-disabled.vue +0 -1
  10. package/demos/pc/app/button/icon-composition-api.vue +2 -1
  11. package/demos/pc/app/button/icon.vue +2 -1
  12. package/demos/pc/app/grid/data-source/static-data-composition-api.vue +1 -1
  13. package/demos/pc/app/grid/expand/expand-config-composition-api.vue +1 -1
  14. package/demos/pc/app/grid/filter/simple-date-filter.spec.ts +2 -20
  15. package/demos/pc/app/grid/operation-column/selection-config-composition-api.vue +1 -1
  16. package/demos/pc/app/grid/operation-column/selection-config.vue +2 -3
  17. package/demos/pc/app/grid/slot/editor-slot-composition-api.vue +1 -1
  18. package/demos/pc/app/grid/slot/header-slot-composition-api.vue +4 -1
  19. package/demos/pc/app/grid/slot/header-slot.vue +2 -1
  20. package/demos/pc/app/icon/basic-usage.spec.js +8 -1
  21. package/demos/pc/app/icon/iconGroups.js +195 -195
  22. package/demos/pc/app/icon/list.spec.js +10 -5
  23. package/demos/pc/app/icon/show-title.spec.ts +8 -0
  24. package/demos/pc/app/layout/gutter-composition-api.vue +11 -0
  25. package/demos/pc/app/layout/gutter.spec.ts +3 -0
  26. package/demos/pc/app/layout/gutter.vue +11 -0
  27. package/demos/pc/app/layout/webdoc/layout.js +14 -3
  28. package/demos/pc/app/select/copy-multi.spec.ts +15 -6
  29. package/demos/pc/app/select/is-drop-inherit-width.spec.ts +2 -3
  30. package/demos/pc/app/select/nest-grid-composition-api.vue +3 -1
  31. package/demos/pc/app/select/optimization.spec.ts +1 -0
  32. package/demos/pc/app/tag/closable.spec.ts +1 -1
  33. package/demos/pc/app/tag/color3.spec.ts +1 -1
  34. package/demos/pc/app/tag/content.spec.ts +2 -2
  35. package/demos/pc/app/tag/create.spec.ts +3 -3
  36. package/demos/pc/app/tag/disabled.spec.ts +1 -1
  37. package/demos/pc/app/tag/effect.spec.ts +4 -3
  38. package/demos/pc/app/wizard/btn-events-composition-api.vue +5 -5
  39. package/demos/pc/app/wizard/btn-events.spec.ts +63 -0
  40. package/demos/pc/app/wizard/btn-events.vue +5 -5
  41. package/demos/pc/app/wizard/page-guide.spec.ts +6 -6
  42. package/demos/pc/app/wizard/slot-step-button.spec.ts +1 -1
  43. package/demos/pc/app/wizard/time-line-flow.spec.ts +5 -5
  44. package/demos/pc/menus.js +1 -1
  45. package/demos/pc/webdoc/changelog.md +522 -305
  46. package/demos/pc/webdoc/installation-en.md +11 -6
  47. package/demos/pc/webdoc/installation.md +14 -8
  48. package/package.json +7 -7
  49. package/playground/App.vue +2 -2
  50. package/src/App.vue +2 -0
  51. package/src/tools/useBulletin.jsx +43 -0
  52. package/src/views/components/components.vue +12 -10
@@ -1,159 +1,374 @@
1
1
  # 更新日志
2
2
 
3
+ ## v2.12.0/v3.12.0
4
+
5
+ `2023/11/30`
6
+
7
+ ### Exciting New Features 🎉
8
+
9
+ - feat: 新增 QrCode 二维码、Watermark 水印两个全新组件 🎊
10
+ - feat(Timeline): Timeline component adapts to new themes by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/615
11
+ - feat(grid-slot):Add Table Header Slot by @ianxinnew in https://github.com/opentiny/tiny-vue/pull/674
12
+ - feat(components): [date-picker] add props time-editable by @kagol in https://github.com/opentiny/tiny-vue/pull/696
13
+ - feat(components):[tree-menu]The placeholder of the search box can be customized by @fanbingbing16 in https://github.com/opentiny/tiny-vue/pull/686
14
+ - feat(theme): [playground] add design theme in playground by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/679
15
+ - refactor(test-e2e): the e2e tests in example/site/pc/app support baseURL by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/693
16
+ - feat: update mobile-first and saas by @zzcr in https://github.com/opentiny/tiny-vue/pull/702
17
+ - feat(component): [file-upload] add form error verification an… by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/690
18
+ - feat(react): use api of @vue/runtime-core in tiny-react by @pe-3 in https://github.com/opentiny/tiny-vue/pull/710
19
+ - feat(components):[color-picker] add props size、predefine and history by @fanbingbing16 in https://github.com/opentiny/tiny-vue/pull/711
20
+ - Fileupload/cryptojs version by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/775
21
+ - feat(react): add render stack to build parent-child relationship by @pe-3 in https://github.com/opentiny/tiny-vue/pull/770
22
+ - feat(color-picker): dynamic trigger background color by @GaoNeng-wWw in https://github.com/opentiny/tiny-vue/pull/793
23
+ - feat(theme): Add default values for theme variables by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/842
24
+ - feat(internals/playwright-config): [input] Change the default e2e test environment to site by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/855
25
+ - feat(sites): add mobile-first playground by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/864
26
+ - Add new token for TinyVueMobile by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/829
27
+ - fix(button): [button] delete duplicate css var by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/874
28
+ - Add new token and delete unused code by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/877
29
+ - feat(vue-theme): add theme-tool version in style attribute by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/872
30
+ - feat(toast): add mobile-toast by @MNZhu in https://github.com/opentiny/tiny-vue/pull/751
31
+ - feat(sites): add saas playground by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/893
32
+ - build(internal): build all template when run build:runtime by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/895
33
+ - feat(radio): refresh radio UI by @MNZhu in https://github.com/opentiny/tiny-vue/pull/845
34
+ - feat(switch): refresh switch UI by @MNZhu in https://github.com/opentiny/tiny-vue/pull/852
35
+ - feat(react): reimplementing Vue instance in React by @pe-3 in https://github.com/opentiny/tiny-vue/pull/783
36
+ - feat(color-select-panel): add color-update event by @GaoNeng-wWw in https://github.com/opentiny/tiny-vue/pull/884
37
+ - feat(grid): [grid] add dynamic filter by @zzcr in https://github.com/opentiny/tiny-vue/pull/912
38
+ - feat(theme): Add Chinese descriptions of theme variables by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/932
39
+ - fix(color-picker): [color-picker] Standardize Style Files by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/950
40
+ - build(theme): [theme] Theme package structure optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/949
41
+ - feat(site): added component version prompting by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/977
42
+
43
+ ### Bug Fixes 🐛
44
+
45
+ - fix(playground): fix CDN url by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/624
46
+ - fix(rich-text-editor): Add mono:true params by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/626
47
+ - fix(check-select-demo): Unify Check Demo Optimize Example Show Style by @Xppp0217 in https://github.com/opentiny/tiny-vue/pull/625
48
+ - fix(modlue): When repairing on-demand installation of components, no … by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/660
49
+ - fix(dev2): when run dev2, fix the mode value by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/673
50
+ - fix mobile-first's demo config error by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/675
51
+ - fix(components): [date-picker] fix year type current year color by @kagol in https://github.com/opentiny/tiny-vue/pull/698
52
+ - fix(select-events-merge):Select Multiple Events Merge by @Xppp0217 in https://github.com/opentiny/tiny-vue/pull/663
53
+ - fix(amount): fix custom-currency demo disabled by @dyh333 in https://github.com/opentiny/tiny-vue/pull/667
54
+ - fix(form): remove native modifiy on DOM element by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/701
55
+ - fix(component): [anchor] fix anchor not updating in real-time when clicking and j… by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/706
56
+ - fix(internals): fix playwright-config syntax bug by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/705
57
+ - fix(components): [cascader] fix cascader node active style using smb aurora theme by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/713
58
+ - fix(tabs): [tabs] fix tab content padding not work close #735 by @kagol in https://github.com/opentiny/tiny-vue/pull/736
59
+ - fix(components): [tooltip] when type is error, the background is not as expected by @betavs in https://github.com/opentiny/tiny-vue/pull/719
60
+ - fix(sites): fix api table link error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/754
61
+ - fix(components): [drawer] The animation direction of left/top/bottom … by @AcWrong02 in https://github.com/opentiny/tiny-vue/pull/738
62
+ - fix(sites): fix english mode doc by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/784
63
+ - fix(theme): [slider] fix css var not effective by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/790
64
+ - fix: fix the error caused by not setting defaultValue by @kagol in https://github.com/opentiny/tiny-vue/pull/791
65
+ - fix resolveMode and remove outer initComponent() by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/803
66
+ - fix(components): [file-upload] Fixed an issue where the deletio… by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/769
67
+ - fix(vue/grid/edit): [grid] fix Number input box returns string type data by @David-TechNomad in https://github.com/opentiny/tiny-vue/pull/772
68
+ - fix(components): [Collapse] Collapse The foldable panel can only be e… by @AcWrong02 in https://github.com/opentiny/tiny-vue/pull/758
69
+ - docs(wizard): [wizard] docs optimization, add Events Api, fixed Event Bug by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/805
70
+ - fix(components): [collapse] fix overflow by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/835
71
+ - fix: Deserialization problem by @GaoNeng-wWw in https://github.com/opentiny/tiny-vue/pull/836
72
+ - docs(components): Further optimize the document, add empty default value display,and add API anchor dynamic display function by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/859
73
+ - fix(col): [col] fix error when col not use in layout by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/858
74
+ - fix(package.json): [input] pnpm site by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/869
75
+ - fix(components): [tabs] Fix bug when dynamically switching tab style to default in tabs by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/846
76
+ - fix(components): [anchor] fix anchor change event warnning by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/870
77
+ - fix(sites): fix mobile-first playground icon style by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/883
78
+ - fix(dcos): Fixed the slow initial loading of resources in official we… by @zzcr in https://github.com/opentiny/tiny-vue/pull/887
79
+ - David/fix 722 by @David-TechNomad in https://github.com/opentiny/tiny-vue/pull/811
80
+ - fix(vite): update Vite version and delete useless package by @zzcr in https://github.com/opentiny/tiny-vue/pull/892
81
+ - fix(e2e): modify playwright retry times by @zzcr in https://github.com/opentiny/tiny-vue/pull/898
82
+ - fix(grid): [grid] fix grid fixed style error when config prop border by @zzcr in https://github.com/opentiny/tiny-vue/pull/889
83
+ - fix(grid): [grid] Fix the filtering function problem of grid componen… by @zzcr in https://github.com/opentiny/tiny-vue/pull/897
84
+ - fix(renderless/common): [autocomplete] fix poperOptions undefind bug by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/899
85
+ - fix(vue-renderless): [cascader] fix cascade component multiple selection configuration emitPath: false does not echo the selected name by @falcon-jin in https://github.com/opentiny/tiny-vue/pull/844
86
+ - docs(i18n): fix vue2 i18n’s docs error by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/911
87
+ - fix(grid): [grid] fix tree table expand slowly bug by @zzcr in https://github.com/opentiny/tiny-vue/pull/906
88
+ - fix(docs): Fix the abnormal display of anchor component after officia… by @zzcr in https://github.com/opentiny/tiny-vue/pull/917
89
+ - fix(input): [input] Fixed the clearable attribute being invalid when the append slot was opened by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/922
90
+ - fix(vue-theme): fix popconfirm css var incorrect name by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/940
91
+ - fix(tree): misalignment issue by @GaoNeng-wWw in https://github.com/opentiny/tiny-vue/pull/936
92
+ - perf(rich-text-editor): Optimized component code to add v-model echo by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/947
93
+ - fix(renderless): synchronize release code to dev by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/954
94
+ - fix(sites): not display types anchor when doc has not types by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/969
95
+ - fix(rich-text): delete repeat import by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/967
96
+ - fix(sites): fix error relative path in playground by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/959
97
+ - fix(sites): fix api table style error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/975
98
+ - fix(link): fix link icon color error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/982
99
+
100
+ ### Other Changes
101
+
102
+ - ci(test-e2e): add github actions for E2E Testing by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/671
103
+ - fix components bug and update docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/700
104
+ - fix(docs): [grid] update big data docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/703
105
+ - docs(search): [search] Add types display area and Optimize search documents by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/720
106
+ - docs(sites): add faq doc in guidance by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/716
107
+ - docs: add commit message guideline by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/715
108
+ - feat(react): js to ts by @kagol in https://github.com/opentiny/tiny-vue/pull/733
109
+ - docs(menu): Adjust the category of list, imageViewer, table, dropdown… by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/718
110
+ - docs(site): [cascader] improve the cascader component documentation by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/728
111
+ - chore(mobile): add icon-mobile-error-white/icon-mobile-success-white by @kagol in https://github.com/opentiny/tiny-vue/pull/730
112
+ - feat: prompt the contributor to contributing guide when the e2e test by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/743
113
+ - fix(site): [split] correct the description of the event document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/752
114
+ - chore(docs): [checkbox] optimize checkbox demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/750
115
+ - fix: avoid injection risks when parsing PR title by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/748
116
+ - docs(site): [autocomplete] complete the document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/753
117
+ - chore(docs): [radio] optimize radio demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/761
118
+ - docs(grid): [grid] update grid docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/762
119
+ - docs(date-picker): [date-picker] optimize date-picker api docs by @kagol in https://github.com/opentiny/tiny-vue/pull/767
120
+ - docs(milestone): [milestone] update milestone docs by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/765
121
+ - fix(docs): [modal] update default value docs by @betterdancing in https://github.com/opentiny/tiny-vue/pull/742
122
+ - docs(tag): [tag] tag docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/768
123
+ - chore(docs): [pager] optimize pager demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/776
124
+ - docs(site): [loading] Supplementary document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/777
125
+ - chore(docs): [badge] optimize badge demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/778
126
+ - chore(docs): [switch] optimize switch demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/782
127
+ - docs(anchor): [anchor] anchor docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/781
128
+ - docs(icons): [icon] icon docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/779
129
+ - docs(site): [input] Supplementary document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/787
130
+ - docs(progress): [progress] progress docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/789
131
+ - docs(time-picker): [time-picker] optimize time-picker api docs by @kagol in https://github.com/opentiny/tiny-vue/pull/795
132
+ - docs(collapse): [collapse] optimize collapse docs by @kagol in https://github.com/opentiny/tiny-vue/pull/798
133
+ - docs(guide): [guide] optimize guide docs by @kagol in https://github.com/opentiny/tiny-vue/pull/799
134
+ - docs(Steps): [Steps] optimize steps docs by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/801
135
+ - docs(popover): [popover]Improve the description of the role of the modelValue attribute by @AcWrong02 in https://github.com/opentiny/tiny-vue/pull/800
136
+ - docs(site): [slider] Improve documentation by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/807
137
+ - docs(button): [button] optimize button demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/819
138
+ - docs(site): [notify] Improve documentation by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/792
139
+ - Hyl/optimize timeline docs by @Huangyilin19 in https://github.com/opentiny/tiny-vue/pull/808
140
+ - docs(breadcrumb): [breadcrumb] docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/810
141
+ - chore(docs): [form] optimize form demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/813
142
+ - docs(site): [rate] Improve documentation by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/814
143
+ - docs(ip-address): [ip-address] optimize ip-address demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/815
144
+ - docs(button-group): [button-group] optimize button-group demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/818
145
+ - docs(nav-menu): [nav-menu] docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/816
146
+ - docs(site): [tag-group] Improve documentation by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/817
147
+ - docs(tabs): [tabs] docs optimization by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/821
148
+ - docs(grid): [grid] update grid docs and api by @zzcr in https://github.com/opentiny/tiny-vue/pull/822
149
+ - docs(container): Optimize Container's docs and demo by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/812
150
+ - docs(transfer): Optimize Transfer's docs and demo by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/827
151
+ - docs(laylout): Optimize Layout's docs and demos by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/806
152
+ - docs(sites) update docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/839
153
+ - docs(tooltip): Optimize Tooltip's docs and demos by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/838
154
+ - test(pc/app/input): [input] Refine e2e test cases by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/837
155
+ - docs(alert): [alert] optimize alert demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/834
156
+ - docs(popconfirm): [popconfirm] optimize popconfirm demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/832
157
+ - test(pc/app/cascader-panel): [cascader-panel] Refine e2e test cases by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/841
158
+ - feat(select): [select] optimize select docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/856
159
+ - doc(components): demo and api docs optimize by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/860
160
+ - perf(transition): merge transition css to base.less by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/851
161
+ - docs(image): optimize image's docs by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/868
162
+ - docs(poppover): Optimize Popover's docs by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/866
163
+ - test(button-group): [button-group] update button E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/863
164
+ - test(button): [button] update button E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/862
165
+ - feat(grid): [grid]Update grid e2e test by @zzcr in https://github.com/opentiny/tiny-vue/pull/853
166
+ - docs(grid): change demoId of 'before-page-change' by @KevinAndrewDong in https://github.com/opentiny/tiny-vue/pull/824
167
+ - docs(pop-editor): [pop-editor] optimize pop editor docs by @kagol in https://github.com/opentiny/tiny-vue/pull/871
168
+ - docs(site): [cascader, cascader-panel] Optimize document6 by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/873
169
+ - docs(grid): [grid] update grid docs and apis by @zzcr in https://github.com/opentiny/tiny-vue/pull/878
170
+ - fix(site): Fix the problem that official website table type switching… by @zzcr in https://github.com/opentiny/tiny-vue/pull/879
171
+ - test(badge): [badge] update button E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/880
172
+ - Dev docs fix review by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/882
173
+ - docs(site): [autocomplete, loading, notify] Optimize document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/885
174
+ - docs(site): [rate, tag-group] Optimize document by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/886
175
+ - test(site/loading): [loading] e2e test case completion by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/896
176
+ - docs(grid/export): [grid] update export docs by @zzcr in https://github.com/opentiny/tiny-vue/pull/900
177
+ - docs(drawer): [drawer] Optimize document and e2e test by @zzcr in https://github.com/opentiny/tiny-vue/pull/888
178
+ - docs(tree-menu): [tree-menu] Optimize TreeMenu component documentation and demos by @MomoPoppy in https://github.com/opentiny/tiny-vue/pull/905
179
+ - docs(modal): [modal] optimize modal demo and api by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/909
180
+ - Optimize Select/Dropdown/ActionMenu components documentation by @MomoPoppy in https://github.com/opentiny/tiny-vue/pull/908
181
+ - test(site/pc/app): [rate, tag-group, input] e2e test case completion by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/913
182
+ - test(form): [form] update button E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/914
183
+ - test(switch): [switch] update switch E2E test case by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/916
184
+ - docs(grid): optimize grid editor slots demo by @zzcr in https://github.com/opentiny/tiny-vue/pull/920
185
+ - test(radio): [radio] update radio E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/924
186
+ - docs(split): [split] optimize split docs and e2e by @zzcr in https://github.com/opentiny/tiny-vue/pull/923
187
+ - docs(grid): [grid] optimize drag control demo and e2e by @zzcr in https://github.com/opentiny/tiny-vue/pull/929
188
+ - test(alert): [alert] update alert E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/931
189
+ - test(popconfirm): [popconfirm] update popconfirm E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/928
190
+ - test(checkbox): [checkbox] update checkbox E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/927
191
+ - docs(container): fix container demo by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/933
192
+ - test(action-menu): [action-menu] Optimize action-menu component e2e test cases by @MomoPoppy in https://github.com/opentiny/tiny-vue/pull/934
193
+ - chore(site): [cascader, cascader-panel, loading] Make the file structure conform to the standard by @yoyo201626 in https://github.com/opentiny/tiny-vue/pull/937
194
+ - test(pager): [pager] update pager E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/938
195
+ - test(modal): [modal] update modal E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/939
196
+ - test(collapse):[collapse] update collapse E2E test by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/944
197
+ - docs(icon): [icon] text correction by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/945
198
+ - test(ip-address): [ip-address] update ip-address E2E test by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/946
199
+ - docs(tree): Optimize tree docs/demos by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/941
200
+ - Add container/layout/popover/tooltip e2e tests by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/971
201
+ - test(tabs): [tabs] update tabs E2E test by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/968
202
+ - test(search): [search] update search E2E test by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/972
203
+ - test(progress): [progress] update progress E2E test by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/974
204
+ - test(select): [select] Optimized the E2E test cases of the select component. Fixed an issue where the allowCopy and autoSearch attributes do not take effect by @MomoPoppy in https://github.com/opentiny/tiny-vue/pull/981
205
+ - test(milestone): [milestone] update milestone E2E test by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/980
206
+
207
+ ## New Contributors
208
+
209
+ - @fanbingbing16 made their first contribution in https://github.com/opentiny/tiny-vue/pull/686
210
+ - @dyh333 made their first contribution in https://github.com/opentiny/tiny-vue/pull/667
211
+ - @betavs made their first contribution in https://github.com/opentiny/tiny-vue/pull/719
212
+ - @betterdancing made their first contribution in https://github.com/opentiny/tiny-vue/pull/742
213
+ - @David-TechNomad made their first contribution in https://github.com/opentiny/tiny-vue/pull/772
214
+ - @falcon-jin made their first contribution in https://github.com/opentiny/tiny-vue/pull/844
215
+ - @wuyiping0628 made their first contribution in https://github.com/opentiny/tiny-vue/pull/944
216
+ - @James-9696 made their first contribution in https://github.com/opentiny/tiny-vue/pull/970
217
+
3
218
  ## v2.11.0/v3.11.0
4
219
 
5
220
  `2023/10/24`
6
221
 
7
222
  ### Exciting New Features 🎉
8
223
 
9
- * feat(color-picker): add color-picker component by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#383](https://github.com/opentiny/tiny-vue/pull/383)
10
- * feat: add rich-text-editor component by [@kagol](https://github.com/kagol) in [#401](https://github.com/opentiny/tiny-vue/pull/401)
11
- * feat(rich-text-editor): add row height and merge h1-h6 and pargraph by [@Caesar-ch](https://github.com/Caesar-ch) in [#414](https://github.com/opentiny/tiny-vue/pull/414)
12
- * feat(rich-text-editor): support code highlight by [@Caesar-ch](https://github.com/Caesar-ch) in [#440](https://github.com/opentiny/tiny-vue/pull/440)
13
- * feat: optimize rich text editor toolbar style by [@kagol](https://github.com/kagol) in [#444](https://github.com/opentiny/tiny-vue/pull/444)
14
- * feat(rich-text-editor): add font-size selection by [@Caesar-ch](https://github.com/Caesar-ch) in [#448](https://github.com/opentiny/tiny-vue/pull/448)
15
- * feat(rich-text-editor): css style adjustment by [@Caesar-ch](https://github.com/Caesar-ch) in [#459](https://github.com/opentiny/tiny-vue/pull/459)
16
- * feature(divider): 增加 Divider 组件 ([#354](https://github.com/opentiny/tiny-vue/issues/354) close) by [@vaebe](https://github.com/vaebe) in [#471](https://github.com/opentiny/tiny-vue/pull/471)
17
- * feat(rich-text-editor): add vue2 support by [@Caesar-ch](https://github.com/Caesar-ch) in [#483](https://github.com/opentiny/tiny-vue/pull/483)
18
- * feat(rich-text-editor): fix bug, add font-size and add api demo by [@Caesar-ch](https://github.com/Caesar-ch) in [#497](https://github.com/opentiny/tiny-vue/pull/497)
19
- * feat(rich-text-editor): support media url by [@Caesar-ch](https://github.com/Caesar-ch) in [#508](https://github.com/opentiny/tiny-vue/pull/508)
20
- * feat: color select panel component by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#492](https://github.com/opentiny/tiny-vue/pull/492)
21
- * feat: scripts support cross-platform by [@gweesin](https://github.com/gweesin) in [#554](https://github.com/opentiny/tiny-vue/pull/554)
22
- * feat(react): collect refs and children in one traverse by [@pe-3](https://github.com/pe-3) in [#551](https://github.com/opentiny/tiny-vue/pull/551)
23
- * feat(color-select-panel): history & predefine color by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#530](https://github.com/opentiny/tiny-vue/pull/530)
24
- * feat(react): add switch comp with mobile & pc mode by [@pe-3](https://github.com/pe-3) in [#565](https://github.com/opentiny/tiny-vue/pull/565)
25
- * feat(react): add badge comp with mobile & pc mode by [@pe-3](https://github.com/pe-3) in [#566](https://github.com/opentiny/tiny-vue/pull/566)
26
- * feat(react): ehance virtual comp,each comp has v-if,default as true by [@pe-3](https://github.com/pe-3) in [#564](https://github.com/opentiny/tiny-vue/pull/564)
27
- * feat(popeditor): adds the autoreset property by [@wkif](https://github.com/wkif) in [#562](https://github.com/opentiny/tiny-vue/pull/562)
28
- * feat(react): add mobile mode in tiny react alert by [@pe-3](https://github.com/pe-3) in [#550](https://github.com/opentiny/tiny-vue/pull/550)
29
- * feat(anchor): Add anchor component dot type theme by [@chenxi-20](https://github.com/chenxi-20) in [#587](https://github.com/opentiny/tiny-vue/pull/587)
30
- * feat(fileupload): Added the function of pasting and uploading files by [@chenxi-20](https://github.com/chenxi-20) in [#593](https://github.com/opentiny/tiny-vue/pull/593)
31
- * feat(search): Add default selection function for search types and pre… by [@chenxi-20](https://github.com/chenxi-20) in [#614](https://github.com/opentiny/tiny-vue/pull/614)
32
- * feat(calendar-view): add calendar-view component
33
- * feat(search):增加搜索类型默认值属性
34
- * feat(fileupload):增加粘贴上传功能
35
- * feat(anchor): 增加锚点 dot 类型
36
- * feat: 使用一套组件库包支持vue2.6.x和vue2.7.x
37
- * feat(form): XDesign表单校验失败新增错误图标
38
- * feat(select): Select组件,新增clearNoMatchValue属性,自动清空不匹配值
39
- * feat(tree): tree组件适配XDesign设计规范
40
- * feat(timeline): Timeline组件增加line-width属性, 用以设置连接线长度
224
+ - feat(color-picker): add color-picker component by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#383](https://github.com/opentiny/tiny-vue/pull/383)
225
+ - feat: add rich-text-editor component by [@kagol](https://github.com/kagol) in [#401](https://github.com/opentiny/tiny-vue/pull/401)
226
+ - feat(rich-text-editor): add row height and merge h1-h6 and pargraph by [@Caesar-ch](https://github.com/Caesar-ch) in [#414](https://github.com/opentiny/tiny-vue/pull/414)
227
+ - feat(rich-text-editor): support code highlight by [@Caesar-ch](https://github.com/Caesar-ch) in [#440](https://github.com/opentiny/tiny-vue/pull/440)
228
+ - feat: optimize rich text editor toolbar style by [@kagol](https://github.com/kagol) in [#444](https://github.com/opentiny/tiny-vue/pull/444)
229
+ - feat(rich-text-editor): add font-size selection by [@Caesar-ch](https://github.com/Caesar-ch) in [#448](https://github.com/opentiny/tiny-vue/pull/448)
230
+ - feat(rich-text-editor): css style adjustment by [@Caesar-ch](https://github.com/Caesar-ch) in [#459](https://github.com/opentiny/tiny-vue/pull/459)
231
+ - feature(divider): 增加 Divider 组件 ([#354](https://github.com/opentiny/tiny-vue/issues/354) close) by [@vaebe](https://github.com/vaebe) in [#471](https://github.com/opentiny/tiny-vue/pull/471)
232
+ - feat(rich-text-editor): add vue2 support by [@Caesar-ch](https://github.com/Caesar-ch) in [#483](https://github.com/opentiny/tiny-vue/pull/483)
233
+ - feat(rich-text-editor): fix bug, add font-size and add api demo by [@Caesar-ch](https://github.com/Caesar-ch) in [#497](https://github.com/opentiny/tiny-vue/pull/497)
234
+ - feat(rich-text-editor): support media url by [@Caesar-ch](https://github.com/Caesar-ch) in [#508](https://github.com/opentiny/tiny-vue/pull/508)
235
+ - feat: color select panel component by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#492](https://github.com/opentiny/tiny-vue/pull/492)
236
+ - feat: scripts support cross-platform by [@gweesin](https://github.com/gweesin) in [#554](https://github.com/opentiny/tiny-vue/pull/554)
237
+ - feat(react): collect refs and children in one traverse by [@pe-3](https://github.com/pe-3) in [#551](https://github.com/opentiny/tiny-vue/pull/551)
238
+ - feat(color-select-panel): history & predefine color by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#530](https://github.com/opentiny/tiny-vue/pull/530)
239
+ - feat(react): add switch comp with mobile & pc mode by [@pe-3](https://github.com/pe-3) in [#565](https://github.com/opentiny/tiny-vue/pull/565)
240
+ - feat(react): add badge comp with mobile & pc mode by [@pe-3](https://github.com/pe-3) in [#566](https://github.com/opentiny/tiny-vue/pull/566)
241
+ - feat(react): ehance virtual comp,each comp has v-if,default as true by [@pe-3](https://github.com/pe-3) in [#564](https://github.com/opentiny/tiny-vue/pull/564)
242
+ - feat(popeditor): adds the autoreset property by [@wkif](https://github.com/wkif) in [#562](https://github.com/opentiny/tiny-vue/pull/562)
243
+ - feat(react): add mobile mode in tiny react alert by [@pe-3](https://github.com/pe-3) in [#550](https://github.com/opentiny/tiny-vue/pull/550)
244
+ - feat(anchor): Add anchor component dot type theme by [@chenxi-20](https://github.com/chenxi-20) in [#587](https://github.com/opentiny/tiny-vue/pull/587)
245
+ - feat(fileupload): Added the function of pasting and uploading files by [@chenxi-20](https://github.com/chenxi-20) in [#593](https://github.com/opentiny/tiny-vue/pull/593)
246
+ - feat(search): Add default selection function for search types and pre… by [@chenxi-20](https://github.com/chenxi-20) in [#614](https://github.com/opentiny/tiny-vue/pull/614)
247
+ - feat(calendar-view): add calendar-view component
248
+ - feat(search):增加搜索类型默认值属性
249
+ - feat(fileupload):增加粘贴上传功能
250
+ - feat(anchor): 增加锚点 dot 类型
251
+ - feat: 使用一套组件库包支持 vue2.6.x vue2.7.x
252
+ - feat(form): XDesign 表单校验失败新增错误图标
253
+ - feat(select): Select 组件,新增 clearNoMatchValue 属性,自动清空不匹配值
254
+ - feat(tree): tree 组件适配 XDesign 设计规范
255
+ - feat(timeline): Timeline 组件增加 line-width 属性, 用以设置连接线长度
41
256
 
42
257
  ### Bug Fixes 🐛
43
258
 
44
- * fix(sites): 切换 sites 引用 @opentiny/vue-repl包 by [@shenjunjian](https://github.com/shenjunjian) in [#391](https://github.com/opentiny/tiny-vue/pull/391)
45
- * fix:When nesting using Split, the mouse direction on the left and right split line is wrong when the upper and lower division is nested by [@jack-zishan](https://github.com/jack-zishan) in [#392](https://github.com/opentiny/tiny-vue/pull/392)
46
- * fix: fix packages/vue/package.json format error when execute pnpm dev by [@kagol](https://github.com/kagol) in [#387](https://github.com/opentiny/tiny-vue/pull/387)
47
- * fix(sites): change design config when change theme by [@gimmyhehe](https://github.com/gimmyhehe) in [#393](https://github.com/opentiny/tiny-vue/pull/393)
48
- * fix(color-picker): 修复组件若干问题 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#394](https://github.com/opentiny/tiny-vue/pull/394)
49
- * fix Playground Page by [@shenjunjian](https://github.com/shenjunjian) in [#399](https://github.com/opentiny/tiny-vue/pull/399)
50
- * fix(sites): fix by [@shenjunjian](https://github.com/shenjunjian) in [#400](https://github.com/opentiny/tiny-vue/pull/400)
51
- * fix(playground): fix process.env \ changeVersion \sortablejs bugs by [@shenjunjian](https://github.com/shenjunjian) in [#422](https://github.com/opentiny/tiny-vue/pull/422)
52
- * fix(sites): fix grid demo api link jump error url by [@gimmyhehe](https://github.com/gimmyhehe) in [#421](https://github.com/opentiny/tiny-vue/pull/421)
53
- * fix(modal): fix css value error by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#426](https://github.com/opentiny/tiny-vue/pull/426)
54
- * fix(search): the enter bug of the search component is fixed by [@chenxi-20](https://github.com/chenxi-20) in [#439](https://github.com/opentiny/tiny-vue/pull/439)
55
- * fix(checkbox): fix checkbox selected icon bug close [#450](https://github.com/opentiny/tiny-vue/issues/450) by [@gimmyhehe](https://github.com/gimmyhehe) in [#451](https://github.com/opentiny/tiny-vue/pull/451)
56
- * fix: fix when datetime component in dialog-box, the popper scroll awa… by [@shenjunjian](https://github.com/shenjunjian) in [#455](https://github.com/opentiny/tiny-vue/pull/455)
57
- * fix(time-picker): fix time-picker arrow-control bug by [@kagol](https://github.com/kagol) in [#464](https://github.com/opentiny/tiny-vue/pull/464)
58
- * fix: alert mobile close should works by [@LinboLen](https://github.com/LinboLen) in [#478](https://github.com/opentiny/tiny-vue/pull/478)
59
- * 🐛 fork tiny-vue 启动失败,添加字符串末尾缺少的引号 by [@allenli178](https://github.com/allenli178) in [#488](https://github.com/opentiny/tiny-vue/pull/488)
60
- * fix(dialog-box): 修复右侧弹窗不能滚动问题 by [@Binks123](https://github.com/Binks123) in [#500](https://github.com/opentiny/tiny-vue/pull/500)
61
- * fix(Cascader, DropDown, Popeditor): fixed Cascader component panel no… by [@yoyo201626](https://github.com/yoyo201626) in [#513](https://github.com/opentiny/tiny-vue/pull/513)
62
- * feat(rich-text-editor): resolve svg viewbox by [@Caesar-ch](https://github.com/Caesar-ch) in [#515](https://github.com/opentiny/tiny-vue/pull/515)
63
- * fix(collapse): 修复collapse未深度监听导致Pc端tiny-collapse activeNames直接push无法响… by [@wkif](https://github.com/wkif) in [#512](https://github.com/opentiny/tiny-vue/pull/512)
64
- * fix(slider): slider range select bug ([#390](https://github.com/opentiny/tiny-vue/issues/390)) by [@chenguang1994](https://github.com/chenguang1994) in [#518](https://github.com/opentiny/tiny-vue/pull/518)
65
- * fix(dialog-box): dialog mask err([#495](https://github.com/opentiny/tiny-vue/issues/495)) by [@Zuowendong](https://github.com/Zuowendong) in [#503](https://github.com/opentiny/tiny-vue/pull/503)
66
- * fix(theme): 修复官网组件标题背景色异常 by [@vaebe](https://github.com/vaebe) in [#496](https://github.com/opentiny/tiny-vue/pull/496)
67
- * fix: fix pnpm dev:site error by [@kagol](https://github.com/kagol) in [#536](https://github.com/opentiny/tiny-vue/pull/536)
68
- * docs(guide): fix alert out of bounds by [@Binks123](https://github.com/Binks123) in [#541](https://github.com/opentiny/tiny-vue/pull/541)
69
- * fix: fix extra highlight color when press button in mobile mode by [@gweesin](https://github.com/gweesin) in [#537](https://github.com/opentiny/tiny-vue/pull/537)
70
- * docs: fix popover demo position error when toggle code block by [@gweesin](https://github.com/gweesin) in [#535](https://github.com/opentiny/tiny-vue/pull/535)
71
- * fix(color-select-panel): z-index by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#560](https://github.com/opentiny/tiny-vue/pull/560)
72
- * fix(guider): 箭头部分情况超出了指定位置,优化样式 ,解决计算问题([#454](https://github.com/opentiny/tiny-vue/issues/454)) by [@chenguang1994](https://github.com/chenguang1994) in [#539](https://github.com/opentiny/tiny-vue/pull/539)
73
- * fix(tree): Click margin-top zoom will collapse treemenu([#559](https://github.com/opentiny/tiny-vue/issues/559)) by [@chenguang1994](https://github.com/chenguang1994) in [#568](https://github.com/opentiny/tiny-vue/pull/568)
74
- * fix(popper): fix popper element offset error in micro-app by [@gimmyhehe](https://github.com/gimmyhehe) in [#570](https://github.com/opentiny/tiny-vue/pull/570)
75
- * fix: Guide component mobile overflow by [@xlearns](https://github.com/xlearns) in [#574](https://github.com/opentiny/tiny-vue/pull/574)
76
- * fix(numeric):numeric 修复输入超大数字变为科学计数法时失焦后组件消失的问题 by [@shonen7](https://github.com/shonen7) in [#563](https://github.com/opentiny/tiny-vue/pull/563)
77
- * fix(rich-text-editor): fix Unsupported URL Type "link:" when execute npm i by [@kagol](https://github.com/kagol) in [#579](https://github.com/opentiny/tiny-vue/pull/579)
78
- * fix:Added version import to component templates by [@wkif](https://github.com/wkif) in [#578](https://github.com/opentiny/tiny-vue/pull/578)
79
- * fix(popper): remove window variable code by [@gimmyhehe](https://github.com/gimmyhehe) in [#586](https://github.com/opentiny/tiny-vue/pull/586)
80
- * fix(rich-text-edtior):fix rich-text-edtior functionality and style issues by [@shonen7](https://github.com/shonen7) in [#592](https://github.com/opentiny/tiny-vue/pull/592)
81
- * fix(doc): rename dom id avioding conflicts([#595](https://github.com/opentiny/tiny-vue/issues/595)) by [@chenguang1994](https://github.com/chenguang1994) in [#597](https://github.com/opentiny/tiny-vue/pull/597)
82
- * chore: support alpha version and fix build error by [@kagol](https://github.com/kagol) in [#600](https://github.com/opentiny/tiny-vue/pull/600)
83
- * fix(form): form tooltip append-to-body fix by [@gimmyhehe](https://github.com/gimmyhehe) in [#599](https://github.com/opentiny/tiny-vue/pull/599)
84
- * fix(rich-text-editor): fix Unsupported URL Type link by [@kagol](https://github.com/kagol) in [#601](https://github.com/opentiny/tiny-vue/pull/601)
85
- * fix: fix global registration error with rich-text-editor by [@zzcr](https://github.com/zzcr) in [#602](https://github.com/opentiny/tiny-vue/pull/602)
86
- * fix(vue-icon_left-ward-arrow): Correct LeftWardArrow import path by [@yoyo201626](https://github.com/yoyo201626) in [#603](https://github.com/opentiny/tiny-vue/pull/603)
87
- * fix: fix incorrect target in webComponent by [@gimmyhehe](https://github.com/gimmyhehe) in [#605](https://github.com/opentiny/tiny-vue/pull/605)
88
- * fix: fix rich-text build error by [@zzcr](https://github.com/zzcr) in [#618](https://github.com/opentiny/tiny-vue/pull/618)
89
- * fix(Rich Text Editor): Fix bugs in the Rich Text Editor by [@shonen7](https://github.com/shonen7) in [#616](https://github.com/opentiny/tiny-vue/pull/616)
90
- * fix(color-picker、divider):Fix 'color picker' switch color failure, de… by [@shonen7](https://github.com/shonen7) in [#619](https://github.com/opentiny/tiny-vue/pull/619)
91
- * fix(select-text-field): Select,text-fiel And value-field Example For One by [@Xppp0217](https://github.com/Xppp0217) in [#610](https://github.com/opentiny/tiny-vue/pull/610)
92
- * Fix the issue of blocked headers in dialogBox by [@Huangyilin19](https://github.com/Huangyilin19) in [#620](https://github.com/opentiny/tiny-vue/pull/620)
93
- * fix: add missing svg to fix build:ui error
94
- * fix: fix vue-renderless/types path error
95
- * fix(search): 修复enter回车键搜索报错问题
96
- * fix(search): 修复搜索类型文字过长显示错位问题
97
- * fix(fileupload):修复上传组件在文件上传时,点击取消上传报错问题
98
- * fix(anchor):修复官网使用锚点时,固定模式闪现的问题**
99
- * fix(grid): 修复grid表格筛选手动调用clearFilter不会触发filter-change方法的问题
100
- * fix(popeditor): 修复popeditor组件在vue2.7下报错bug
101
- * fix(form): 修复表单项下多个子元素导致tooltip重复
102
- * fix(collapse): collspse组件图标与文体间距修改
103
- * fix(checkbox): 修复checkbox禁用态悬浮bug
104
- * fix(select): 修复 Select 组件,多选时初始化输入框高度不对
105
- * fix(select): 修复Select组件下拉框没有默认添加到body上
106
- * fix(select): 修复 Select 组件,折叠 Tag时,位置够却换行了
107
- * fix(dropdown): 修复dropdownItem禁用时触发itemclick
108
- * fix(dropdown): 修复Dropdown组件smb图标显示不正确
109
- * fix(select): 修复select组件,大数据开启optimization时,未显示正确label
110
- * fix(Slider): fix slider 范围选择
111
- * fix(input): 修复当input组件传入id时,造成内部标签会接收透传id,造成双id问题
112
- * fix(Cascader): 修复在验证Cascader单组件引入时面板不能正常关闭的问题
113
- * fix(modal): Modal组件不响应动态宽度与高度
114
- * fix(tree-menu): TreeMenu组件Saas主题下TreeMenu元素排布变形, 默认主题下图标位置不正确, 节点选中与悬浮的样式不对
115
- * fix(tree-menu): TreeMenu组件的collapsible属性同时控制多个功能
116
- * fix(tabbar): 移动端tabbar组件点击事件报错
117
- * fix(tree): Tree组件自定义渲染内容时, 节点没对齐
118
- * fix(steps): Steps组件内容鼠标悬浮光标不正确; 节点序号与图标颜色不正确
119
- * fix(tree): Tree树懒加载数据无法渲染第一层节点
259
+ - fix(sites): 切换 sites 引用 @opentiny/vue-repl 包 by [@shenjunjian](https://github.com/shenjunjian) in [#391](https://github.com/opentiny/tiny-vue/pull/391)
260
+ - fix:When nesting using Split, the mouse direction on the left and right split line is wrong when the upper and lower division is nested by [@jack-zishan](https://github.com/jack-zishan) in [#392](https://github.com/opentiny/tiny-vue/pull/392)
261
+ - fix: fix packages/vue/package.json format error when execute pnpm dev by [@kagol](https://github.com/kagol) in [#387](https://github.com/opentiny/tiny-vue/pull/387)
262
+ - fix(sites): change design config when change theme by [@gimmyhehe](https://github.com/gimmyhehe) in [#393](https://github.com/opentiny/tiny-vue/pull/393)
263
+ - fix(color-picker): 修复组件若干问题 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#394](https://github.com/opentiny/tiny-vue/pull/394)
264
+ - fix Playground Page by [@shenjunjian](https://github.com/shenjunjian) in [#399](https://github.com/opentiny/tiny-vue/pull/399)
265
+ - fix(sites): fix by [@shenjunjian](https://github.com/shenjunjian) in [#400](https://github.com/opentiny/tiny-vue/pull/400)
266
+ - fix(playground): fix process.env \ changeVersion \sortablejs bugs by [@shenjunjian](https://github.com/shenjunjian) in [#422](https://github.com/opentiny/tiny-vue/pull/422)
267
+ - fix(sites): fix grid demo api link jump error url by [@gimmyhehe](https://github.com/gimmyhehe) in [#421](https://github.com/opentiny/tiny-vue/pull/421)
268
+ - fix(modal): fix css value error by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#426](https://github.com/opentiny/tiny-vue/pull/426)
269
+ - fix(search): the enter bug of the search component is fixed by [@chenxi-20](https://github.com/chenxi-20) in [#439](https://github.com/opentiny/tiny-vue/pull/439)
270
+ - fix(checkbox): fix checkbox selected icon bug close [#450](https://github.com/opentiny/tiny-vue/issues/450) by [@gimmyhehe](https://github.com/gimmyhehe) in [#451](https://github.com/opentiny/tiny-vue/pull/451)
271
+ - fix: fix when datetime component in dialog-box, the popper scroll awa… by [@shenjunjian](https://github.com/shenjunjian) in [#455](https://github.com/opentiny/tiny-vue/pull/455)
272
+ - fix(time-picker): fix time-picker arrow-control bug by [@kagol](https://github.com/kagol) in [#464](https://github.com/opentiny/tiny-vue/pull/464)
273
+ - fix: alert mobile close should works by [@LinboLen](https://github.com/LinboLen) in [#478](https://github.com/opentiny/tiny-vue/pull/478)
274
+ - 🐛 fork tiny-vue 启动失败,添加字符串末尾缺少的引号 by [@allenli178](https://github.com/allenli178) in [#488](https://github.com/opentiny/tiny-vue/pull/488)
275
+ - fix(dialog-box): 修复右侧弹窗不能滚动问题 by [@Binks123](https://github.com/Binks123) in [#500](https://github.com/opentiny/tiny-vue/pull/500)
276
+ - fix(Cascader, DropDown, Popeditor): fixed Cascader component panel no… by [@yoyo201626](https://github.com/yoyo201626) in [#513](https://github.com/opentiny/tiny-vue/pull/513)
277
+ - feat(rich-text-editor): resolve svg viewbox by [@Caesar-ch](https://github.com/Caesar-ch) in [#515](https://github.com/opentiny/tiny-vue/pull/515)
278
+ - fix(collapse): 修复 collapse 未深度监听导致 Pc tiny-collapse activeNames 直接 push 无法响… by [@wkif](https://github.com/wkif) in [#512](https://github.com/opentiny/tiny-vue/pull/512)
279
+ - fix(slider): slider range select bug ([#390](https://github.com/opentiny/tiny-vue/issues/390)) by [@chenguang1994](https://github.com/chenguang1994) in [#518](https://github.com/opentiny/tiny-vue/pull/518)
280
+ - fix(dialog-box): dialog mask err([#495](https://github.com/opentiny/tiny-vue/issues/495)) by [@Zuowendong](https://github.com/Zuowendong) in [#503](https://github.com/opentiny/tiny-vue/pull/503)
281
+ - fix(theme): 修复官网组件标题背景色异常 by [@vaebe](https://github.com/vaebe) in [#496](https://github.com/opentiny/tiny-vue/pull/496)
282
+ - fix: fix pnpm dev:site error by [@kagol](https://github.com/kagol) in [#536](https://github.com/opentiny/tiny-vue/pull/536)
283
+ - docs(guide): fix alert out of bounds by [@Binks123](https://github.com/Binks123) in [#541](https://github.com/opentiny/tiny-vue/pull/541)
284
+ - fix: fix extra highlight color when press button in mobile mode by [@gweesin](https://github.com/gweesin) in [#537](https://github.com/opentiny/tiny-vue/pull/537)
285
+ - docs: fix popover demo position error when toggle code block by [@gweesin](https://github.com/gweesin) in [#535](https://github.com/opentiny/tiny-vue/pull/535)
286
+ - fix(color-select-panel): z-index by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#560](https://github.com/opentiny/tiny-vue/pull/560)
287
+ - fix(guider): 箭头部分情况超出了指定位置,优化样式 ,解决计算问题([#454](https://github.com/opentiny/tiny-vue/issues/454)) by [@chenguang1994](https://github.com/chenguang1994) in [#539](https://github.com/opentiny/tiny-vue/pull/539)
288
+ - fix(tree): Click margin-top zoom will collapse treemenu([#559](https://github.com/opentiny/tiny-vue/issues/559)) by [@chenguang1994](https://github.com/chenguang1994) in [#568](https://github.com/opentiny/tiny-vue/pull/568)
289
+ - fix(popper): fix popper element offset error in micro-app by [@gimmyhehe](https://github.com/gimmyhehe) in [#570](https://github.com/opentiny/tiny-vue/pull/570)
290
+ - fix: Guide component mobile overflow by [@xlearns](https://github.com/xlearns) in [#574](https://github.com/opentiny/tiny-vue/pull/574)
291
+ - fix(numeric):numeric 修复输入超大数字变为科学计数法时失焦后组件消失的问题 by [@shonen7](https://github.com/shonen7) in [#563](https://github.com/opentiny/tiny-vue/pull/563)
292
+ - fix(rich-text-editor): fix Unsupported URL Type "link:" when execute npm i by [@kagol](https://github.com/kagol) in [#579](https://github.com/opentiny/tiny-vue/pull/579)
293
+ - fix:Added version import to component templates by [@wkif](https://github.com/wkif) in [#578](https://github.com/opentiny/tiny-vue/pull/578)
294
+ - fix(popper): remove window variable code by [@gimmyhehe](https://github.com/gimmyhehe) in [#586](https://github.com/opentiny/tiny-vue/pull/586)
295
+ - fix(rich-text-edtior):fix rich-text-edtior functionality and style issues by [@shonen7](https://github.com/shonen7) in [#592](https://github.com/opentiny/tiny-vue/pull/592)
296
+ - fix(doc): rename dom id avioding conflicts([#595](https://github.com/opentiny/tiny-vue/issues/595)) by [@chenguang1994](https://github.com/chenguang1994) in [#597](https://github.com/opentiny/tiny-vue/pull/597)
297
+ - chore: support alpha version and fix build error by [@kagol](https://github.com/kagol) in [#600](https://github.com/opentiny/tiny-vue/pull/600)
298
+ - fix(form): form tooltip append-to-body fix by [@gimmyhehe](https://github.com/gimmyhehe) in [#599](https://github.com/opentiny/tiny-vue/pull/599)
299
+ - fix(rich-text-editor): fix Unsupported URL Type link by [@kagol](https://github.com/kagol) in [#601](https://github.com/opentiny/tiny-vue/pull/601)
300
+ - fix: fix global registration error with rich-text-editor by [@zzcr](https://github.com/zzcr) in [#602](https://github.com/opentiny/tiny-vue/pull/602)
301
+ - fix(vue-icon_left-ward-arrow): Correct LeftWardArrow import path by [@yoyo201626](https://github.com/yoyo201626) in [#603](https://github.com/opentiny/tiny-vue/pull/603)
302
+ - fix: fix incorrect target in webComponent by [@gimmyhehe](https://github.com/gimmyhehe) in [#605](https://github.com/opentiny/tiny-vue/pull/605)
303
+ - fix: fix rich-text build error by [@zzcr](https://github.com/zzcr) in [#618](https://github.com/opentiny/tiny-vue/pull/618)
304
+ - fix(Rich Text Editor): Fix bugs in the Rich Text Editor by [@shonen7](https://github.com/shonen7) in [#616](https://github.com/opentiny/tiny-vue/pull/616)
305
+ - fix(color-picker、divider):Fix 'color picker' switch color failure, de… by [@shonen7](https://github.com/shonen7) in [#619](https://github.com/opentiny/tiny-vue/pull/619)
306
+ - fix(select-text-field): Select,text-fiel And value-field Example For One by [@Xppp0217](https://github.com/Xppp0217) in [#610](https://github.com/opentiny/tiny-vue/pull/610)
307
+ - Fix the issue of blocked headers in dialogBox by [@Huangyilin19](https://github.com/Huangyilin19) in [#620](https://github.com/opentiny/tiny-vue/pull/620)
308
+ - fix: add missing svg to fix build:ui error
309
+ - fix: fix vue-renderless/types path error
310
+ - fix(search): 修复 enter 回车键搜索报错问题
311
+ - fix(search): 修复搜索类型文字过长显示错位问题
312
+ - fix(fileupload):修复上传组件在文件上传时,点击取消上传报错问题
313
+ - fix(anchor):修复官网使用锚点时,固定模式闪现的问题\*\*
314
+ - fix(grid): 修复 grid 表格筛选手动调用 clearFilter 不会触发 filter-change 方法的问题
315
+ - fix(popeditor): 修复 popeditor 组件在 vue2.7 下报错 bug
316
+ - fix(form): 修复表单项下多个子元素导致 tooltip 重复
317
+ - fix(collapse): collspse 组件图标与文体间距修改
318
+ - fix(checkbox): 修复 checkbox 禁用态悬浮 bug
319
+ - fix(select): 修复 Select 组件,多选时初始化输入框高度不对
320
+ - fix(select): 修复 Select 组件下拉框没有默认添加到 body
321
+ - fix(select): 修复 Select 组件,折叠 Tag 时,位置够却换行了
322
+ - fix(dropdown): 修复 dropdownItem 禁用时触发 itemclick
323
+ - fix(dropdown): 修复 Dropdown 组件 smb 图标显示不正确
324
+ - fix(select): 修复 select 组件,大数据开启 optimization 时,未显示正确 label
325
+ - fix(Slider): fix slider 范围选择
326
+ - fix(input): 修复当 input 组件传入 id 时,造成内部标签会接收透传 id,造成双 id 问题
327
+ - fix(Cascader): 修复在验证 Cascader 单组件引入时面板不能正常关闭的问题
328
+ - fix(modal): Modal 组件不响应动态宽度与高度
329
+ - fix(tree-menu): TreeMenu 组件 Saas 主题下 TreeMenu 元素排布变形, 默认主题下图标位置不正确, 节点选中与悬浮的样式不对
330
+ - fix(tree-menu): TreeMenu 组件的 collapsible 属性同时控制多个功能
331
+ - fix(tabbar): 移动端 tabbar 组件点击事件报错
332
+ - fix(tree): Tree 组件自定义渲染内容时, 节点没对齐
333
+ - fix(steps): Steps 组件内容鼠标悬浮光标不正确; 节点序号与图标颜色不正确
334
+ - fix(tree): Tree 树懒加载数据无法渲染第一层节点
120
335
 
121
336
  ### Other Changes
122
337
 
123
- * test(badge): add unit test by [@lyx-jay](https://github.com/lyx-jay) in [#388](https://github.com/opentiny/tiny-vue/pull/388)
124
- * test(modal): add modal unit test by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#374](https://github.com/opentiny/tiny-vue/pull/374)
125
- * docs: update release notes by [@kagol](https://github.com/kagol) in [#397](https://github.com/opentiny/tiny-vue/pull/397)
126
- * style(rich-text-editor): format code style by [@kagol](https://github.com/kagol) in [#402](https://github.com/opentiny/tiny-vue/pull/402)
127
- * docs(rich-text-editor): add demo and api docs by [@kagol](https://github.com/kagol) in [#404](https://github.com/opentiny/tiny-vue/pull/404)
128
- * docs(container): fix container composition demos fix [#425](https://github.com/opentiny/tiny-vue/issues/425) by [@kagol](https://github.com/kagol) in [#441](https://github.com/opentiny/tiny-vue/pull/441)
129
- * test(modal): add surplus unit test by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#435](https://github.com/opentiny/tiny-vue/pull/435)
130
- * docs: fix the problem of missing container component style by [@kagol](https://github.com/kagol) in [#453](https://github.com/opentiny/tiny-vue/pull/453)
131
- * feat(unit): add breadcrumb unit test by [@lyx-jay](https://github.com/lyx-jay) in [#457](https://github.com/opentiny/tiny-vue/pull/457)
132
- * refactor(date-table): supplement the ts type declaration of the date-table component by [@kagol](https://github.com/kagol) in [#456](https://github.com/opentiny/tiny-vue/pull/456)
133
- * feat(rich-text-editor): Add api design by [@Caesar-ch](https://github.com/Caesar-ch) in [#475](https://github.com/opentiny/tiny-vue/pull/475)
134
- * docs: optimize time picker demo api docs by [@kagol](https://github.com/kagol) in [#482](https://github.com/opentiny/tiny-vue/pull/482)
135
- * docs: optimzie date picker demo/api by [@kagol](https://github.com/kagol) in [#486](https://github.com/opentiny/tiny-vue/pull/486)
136
- * optimize button docs by [@Binks123](https://github.com/Binks123) in [#522](https://github.com/opentiny/tiny-vue/pull/522)
137
- * docs(anchor): optimize anchor demo api docs by [@Binks123](https://github.com/Binks123) in [#540](https://github.com/opentiny/tiny-vue/pull/540)
138
- * docs(breadcrumb): optimize breadcrumb docs by [@Binks123](https://github.com/Binks123) in [#547](https://github.com/opentiny/tiny-vue/pull/547)
139
- * feat(react): 添加贡献文档,readme 改名为 README by [@pe-3](https://github.com/pe-3) in [#538](https://github.com/opentiny/tiny-vue/pull/538)
140
- * docs(README): correct misspellings by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#561](https://github.com/opentiny/tiny-vue/pull/561)
141
- * fix(divider,color-picker): divider组件content-position描述完善,以及部分api关联示例变动;color-picker组件修改错误变量 by [@shonen7](https://github.com/shonen7) in [#567](https://github.com/opentiny/tiny-vue/pull/567)
142
- * feat: update pc/mobile/mobile-first docs by [@zzcr](https://github.com/zzcr) in [#583](https://github.com/opentiny/tiny-vue/pull/583)
143
- * docs: update component number by [@kagol](https://github.com/kagol) in [#585](https://github.com/opentiny/tiny-vue/pull/585)
144
- * feat: update docs api by [@zzcr](https://github.com/zzcr) in [#613](https://github.com/opentiny/tiny-vue/pull/613)
145
- * feat(grid-size): table size integration by [@ianxinnew](https://github.com/ianxinnew) in [#617](https://github.com/opentiny/tiny-vue/pull/617)
146
- * fix(grid-slot): Table Example Add Editor Slot by [@ianxinnew](https://github.com/ianxinnew) in [#608](https://github.com/opentiny/tiny-vue/pull/608)
147
- * feat(grid-api): API Remove Default Text by [@ianxinnew](https://github.com/ianxinnew) in [#622](https://github.com/opentiny/tiny-vue/pull/622)
148
- * fix(select-size): select component medium,small,mini Type For One by [@Xppp0217](https://github.com/Xppp0217) in [#607](https://github.com/opentiny/tiny-vue/pull/607)
149
- * chore: examples/site demo support ts intellisense
150
- * chore(picker): add picker ts declaration(vue.ts)
151
- * chore(timeline): timeline与timelineItem组件补充ts类型
152
- * chore(modal): modal组件补充ts类型声明
153
- * chore(floatbar): floatbar组件补充ts类型声明
154
- * chore(dialog-box): dialog-box组件补充ts类型声明
155
- * chore(numeric): Numeric补充ts类型声明
156
- * chore(playground): 优化playground的编辑器和分享功能
338
+ - test(badge): add unit test by [@lyx-jay](https://github.com/lyx-jay) in [#388](https://github.com/opentiny/tiny-vue/pull/388)
339
+ - test(modal): add modal unit test by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#374](https://github.com/opentiny/tiny-vue/pull/374)
340
+ - docs: update release notes by [@kagol](https://github.com/kagol) in [#397](https://github.com/opentiny/tiny-vue/pull/397)
341
+ - style(rich-text-editor): format code style by [@kagol](https://github.com/kagol) in [#402](https://github.com/opentiny/tiny-vue/pull/402)
342
+ - docs(rich-text-editor): add demo and api docs by [@kagol](https://github.com/kagol) in [#404](https://github.com/opentiny/tiny-vue/pull/404)
343
+ - docs(container): fix container composition demos fix [#425](https://github.com/opentiny/tiny-vue/issues/425) by [@kagol](https://github.com/kagol) in [#441](https://github.com/opentiny/tiny-vue/pull/441)
344
+ - test(modal): add surplus unit test by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#435](https://github.com/opentiny/tiny-vue/pull/435)
345
+ - docs: fix the problem of missing container component style by [@kagol](https://github.com/kagol) in [#453](https://github.com/opentiny/tiny-vue/pull/453)
346
+ - feat(unit): add breadcrumb unit test by [@lyx-jay](https://github.com/lyx-jay) in [#457](https://github.com/opentiny/tiny-vue/pull/457)
347
+ - refactor(date-table): supplement the ts type declaration of the date-table component by [@kagol](https://github.com/kagol) in [#456](https://github.com/opentiny/tiny-vue/pull/456)
348
+ - feat(rich-text-editor): Add api design by [@Caesar-ch](https://github.com/Caesar-ch) in [#475](https://github.com/opentiny/tiny-vue/pull/475)
349
+ - docs: optimize time picker demo api docs by [@kagol](https://github.com/kagol) in [#482](https://github.com/opentiny/tiny-vue/pull/482)
350
+ - docs: optimzie date picker demo/api by [@kagol](https://github.com/kagol) in [#486](https://github.com/opentiny/tiny-vue/pull/486)
351
+ - optimize button docs by [@Binks123](https://github.com/Binks123) in [#522](https://github.com/opentiny/tiny-vue/pull/522)
352
+ - docs(anchor): optimize anchor demo api docs by [@Binks123](https://github.com/Binks123) in [#540](https://github.com/opentiny/tiny-vue/pull/540)
353
+ - docs(breadcrumb): optimize breadcrumb docs by [@Binks123](https://github.com/Binks123) in [#547](https://github.com/opentiny/tiny-vue/pull/547)
354
+ - feat(react): 添加贡献文档,readme 改名为 README by [@pe-3](https://github.com/pe-3) in [#538](https://github.com/opentiny/tiny-vue/pull/538)
355
+ - docs(README): correct misspellings by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#561](https://github.com/opentiny/tiny-vue/pull/561)
356
+ - fix(divider,color-picker): divider 组件 content-position 描述完善,以及部分 api 关联示例变动;color-picker 组件修改错误变量 by [@shonen7](https://github.com/shonen7) in [#567](https://github.com/opentiny/tiny-vue/pull/567)
357
+ - feat: update pc/mobile/mobile-first docs by [@zzcr](https://github.com/zzcr) in [#583](https://github.com/opentiny/tiny-vue/pull/583)
358
+ - docs: update component number by [@kagol](https://github.com/kagol) in [#585](https://github.com/opentiny/tiny-vue/pull/585)
359
+ - feat: update docs api by [@zzcr](https://github.com/zzcr) in [#613](https://github.com/opentiny/tiny-vue/pull/613)
360
+ - feat(grid-size): table size integration by [@ianxinnew](https://github.com/ianxinnew) in [#617](https://github.com/opentiny/tiny-vue/pull/617)
361
+ - fix(grid-slot): Table Example Add Editor Slot by [@ianxinnew](https://github.com/ianxinnew) in [#608](https://github.com/opentiny/tiny-vue/pull/608)
362
+ - feat(grid-api): API Remove Default Text by [@ianxinnew](https://github.com/ianxinnew) in [#622](https://github.com/opentiny/tiny-vue/pull/622)
363
+ - fix(select-size): select component medium,small,mini Type For One by [@Xppp0217](https://github.com/Xppp0217) in [#607](https://github.com/opentiny/tiny-vue/pull/607)
364
+ - chore: examples/site demo support ts intellisense
365
+ - chore(picker): add picker ts declaration(vue.ts)
366
+ - chore(timeline): timeline timelineItem 组件补充 ts 类型
367
+ - chore(modal): modal 组件补充 ts 类型声明
368
+ - chore(floatbar): floatbar 组件补充 ts 类型声明
369
+ - chore(dialog-box): dialog-box 组件补充 ts 类型声明
370
+ - chore(numeric): Numeric 补充 ts 类型声明
371
+ - chore(playground): 优化 playground 的编辑器和分享功能
157
372
 
158
373
  ## v2.10.0/v3.10.0
159
374
 
@@ -161,71 +376,73 @@
161
376
 
162
377
  ### Exciting New Features 🎉
163
378
 
164
- * feat(pop-editor): 当编辑框弹出时添加自定义事件 fix [#268](https://github.com/opentiny/tiny-vue/issues/268) by [@yuanningning](https://github.com/yuanningning) in [#315](https://github.com/opentiny/tiny-vue/pull/315)
165
- * feat(ip-address): 更改ipAddress组件的IPv6类型 close [#272](https://github.com/opentiny/tiny-vue/issues/272) by [@yuanningning](https://github.com/yuanningning) in [#337](https://github.com/opentiny/tiny-vue/pull/337)
166
- * feat(filter-panel): 新增过滤器面板组件
167
- * feat(dialog-select): 新增 DialogSelect 组件
168
- * feat(infinite-scroll): 新增 InfiniteScroll 无限滚动组件
169
- * feat(tag-group): 新增 TagGroup 标签组组件
170
- * feat(docs): 官网添加示例composition-api写法,支持切换composition-api和option-api
171
- * feat(docs): 组件demo支持playground
172
- * feat(grid): 表格增加快捷筛选面板,可以支持多选框筛选和日期筛选 ,同时支持用户配置默认筛选项
173
- * feat(grid): 表格排序按钮默认为x-design最新规范图标
174
- * feat(grid): 表格提示现在支持自定义tooltip内容显示,支持字符串或者jsx
175
- * feat(tree-menu): TreeMenu新增设置与获取当前选中节点的方法
176
- * feat(tree-menu): 树形菜单新增可折叠特性
177
- * feat(tree): Tree新增连接线设置
178
- * feat(timeline-item): 新增timeline-item组件
179
- * feat(modal): modal支持配置底部按钮props与文字
180
- * feat(button-group): 按钮组新增单个disabled特性
181
- * feat(alert): 新增close插槽,实现外部控制显示或隐藏
182
- * feat(alert): 组件图标取消垂直居中,采用固定定位
183
- * feat(time-picker): 支持设置步长 `step`
184
- * feat(date-picker): 增加 label 内置功能 `label`
185
- * feat(date-picker): 支持设置时间选择的步长 `step`
186
- * feat(date-picker): 支持显示周次 `show-week-number`
187
- * feat(date-picker): 支持过滤器模式 `shape="filter"`
188
- * feat(date-picker): 支持年份多选和年份范围选择 `type="years" | type="yearrange"`
189
- * feat(date-picker): 支持某日起始/某日为止功能 `type: 'startFrom'`
379
+ - feat(pop-editor): 当编辑框弹出时添加自定义事件 fix [#268](https://github.com/opentiny/tiny-vue/issues/268) by [@yuanningning](https://github.com/yuanningning) in [#315](https://github.com/opentiny/tiny-vue/pull/315)
380
+ - feat(ip-address): 更改 ipAddress 组件的 IPv6 类型 close [#272](https://github.com/opentiny/tiny-vue/issues/272) by [@yuanningning](https://github.com/yuanningning) in [#337](https://github.com/opentiny/tiny-vue/pull/337)
381
+ - feat(filter-panel): 新增过滤器面板组件
382
+ - feat(dialog-select): 新增 DialogSelect 组件
383
+ - feat(infinite-scroll): 新增 InfiniteScroll 无限滚动组件
384
+ - feat(tag-group): 新增 TagGroup 标签组组件
385
+ - feat(docs): 官网添加示例 composition-api 写法,支持切换 composition-api option-api
386
+ - feat(docs): 组件 demo 支持 playground
387
+ - feat(grid): 表格增加快捷筛选面板,可以支持多选框筛选和日期筛选 ,同时支持用户配置默认筛选项
388
+ - feat(grid): 表格排序按钮默认为 x-design 最新规范图标
389
+ - feat(grid): 表格提示现在支持自定义 tooltip 内容显示,支持字符串或者 jsx
390
+ - feat(tree-menu): TreeMenu 新增设置与获取当前选中节点的方法
391
+ - feat(tree-menu): 树形菜单新增可折叠特性
392
+ - feat(tree): Tree 新增连接线设置
393
+ - feat(timeline-item): 新增 timeline-item 组件
394
+ - feat(modal): modal 支持配置底部按钮 props 与文字
395
+ - feat(button-group): 按钮组新增单个 disabled 特性
396
+ - feat(alert): 新增 close 插槽,实现外部控制显示或隐藏
397
+ - feat(alert): 组件图标取消垂直居中,采用固定定位
398
+ - feat(time-picker): 支持设置步长 `step`
399
+ - feat(date-picker): 增加 label 内置功能 `label`
400
+ - feat(date-picker): 支持设置时间选择的步长 `step`
401
+ - feat(date-picker): 支持显示周次 `show-week-number`
402
+ - feat(date-picker): 支持过滤器模式 `shape="filter"`
403
+ - feat(date-picker): 支持年份多选和年份范围选择 `type="years" | type="yearrange"`
404
+ - feat(date-picker): 支持某日起始/某日为止功能 `type: 'startFrom'`
190
405
 
191
406
  ### Bug Fixes 🐛
192
- * fix(numeric): 修复当前值+Step>max时不能取max的问题 by [@Huangyilin19](https://github.com/Huangyilin19) in [#297](https://github.com/opentiny/tiny-vue/pull/297)
193
- * fix(grid): 修复了列冻结且没有滚动条时表格组件中的异常样式 by [@zzcr](https://github.com/zzcr) in [#298](https://github.com/opentiny/tiny-vue/pull/298)
194
- * fix(button): 修复了朴素按钮图标禁用颜色的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#299](https://github.com/opentiny/tiny-vue/pull/299)
195
- * fix(grid): 修复了表过滤器面板的错误样式,修复了webpack本地环境下ResizeWatch接口的警告问题 by [@zzcr](https://github.com/zzcr) in [#305](https://github.com/opentiny/tiny-vue/pull/305)
196
- * fix(theme): 从容器、布局中删除样式 by [@shenjunjian](https://github.com/shenjunjian) in [#306](https://github.com/opentiny/tiny-vue/pull/306)
197
- * fix(vue-theme): 在文本区域组件中修复 `@apply` by [@shenjunjian](https://github.com/shenjunjian) in [#319](https://github.com/opentiny/tiny-vue/pull/319)
198
- * fix(input): 修复了禁用的输入在表单错误中不生效的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#322](https://github.com/opentiny/tiny-vue/pull/322)
199
- * fix(checkbox): 修复了复选框标签为0时不显示错误的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#331](https://github.com/opentiny/tiny-vue/pull/331)
200
- * fix(select): 修复了计算选择组件的高度和错误创建项目的问题 by [@MomoPoppy](https://github.com/MomoPoppy) in [#358](https://github.com/opentiny/tiny-vue/pull/358)
201
- * fix(carousel): 将箭头圆宽度调整为28px by [@lyx-jay](https://github.com/lyx-jay) in [#376](https://github.com/opentiny/tiny-vue/pull/376)
202
- * fix(drawer): 蒙版消失的速度比内容更快 by [@lyx-jay](https://github.com/lyx-jay) in [#375](https://github.com/opentiny/tiny-vue/pull/375)
203
- * fix(badge): 修复显示重复内容的问题 by [@lyx-jay](https://github.com/lyx-jay) in [#382](https://github.com/opentiny/tiny-vue/pull/382)
204
- * fix: 修复了执行 pnpm build:ui vue 命令时的ts声明错误 by [@kagol](https://github.com/kagol) in [#386](https://github.com/opentiny/tiny-vue/pull/386)
205
- * fix(grid): 修复表格冻结列在x-design规范显示异常问题
206
- * fix(grid): 修复表格冻结列在表格有纵向滚动条时
207
- * fix(grid):修复表格fetchdata情况下,表格数据被处理两次问题
208
- * fix(tree): 修复isEmpty属性在节点数据变化后没响应变化的问题
209
- * fix(button-group): XDesign主题朴素按钮字体颜色修复
210
- * fix(input): 修复input在表单禁用状态时不生效bug
211
- * fix(popover): 避免初始加载时,触发的hide事件
212
- * fix(dialog-box): 不在body上增加class,可以避免引起的页面抖动
213
- * fix(tabs): 取消初始化赋值,修复超出页签栏显示问题,优化更多弹出框
214
- * fix(icons): 优化图标部分的自定义宽度和颜色
215
- * fix(theme): 取消主题切换后自动刷新页面
216
- * fix(anchor): 修复锚点异步获取数据导致监听bug,增加切换动画效果
217
- * fix(dropdown): 修复设置箭头显示不生效
218
- * fix(select): 修复组件初始化创建条目的场景,同时设置option 和value,有匹配项却自动创建的问题
219
- * fix(select): 修复 select 组件多选多行时input框高度计算有误的问题
220
- * fix(popEditor): 编辑框关闭时先隐藏了内容的问题
407
+
408
+ - fix(numeric): 修复当前值+Step>max 时不能取 max 的问题 by [@Huangyilin19](https://github.com/Huangyilin19) in [#297](https://github.com/opentiny/tiny-vue/pull/297)
409
+ - fix(grid): 修复了列冻结且没有滚动条时表格组件中的异常样式 by [@zzcr](https://github.com/zzcr) in [#298](https://github.com/opentiny/tiny-vue/pull/298)
410
+ - fix(button): 修复了朴素按钮图标禁用颜色的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#299](https://github.com/opentiny/tiny-vue/pull/299)
411
+ - fix(grid): 修复了表过滤器面板的错误样式,修复了 webpack 本地环境下 ResizeWatch 接口的警告问题 by [@zzcr](https://github.com/zzcr) in [#305](https://github.com/opentiny/tiny-vue/pull/305)
412
+ - fix(theme): 从容器、布局中删除样式 by [@shenjunjian](https://github.com/shenjunjian) in [#306](https://github.com/opentiny/tiny-vue/pull/306)
413
+ - fix(vue-theme): 在文本区域组件中修复  `@apply` by [@shenjunjian](https://github.com/shenjunjian) in [#319](https://github.com/opentiny/tiny-vue/pull/319)
414
+ - fix(input): 修复了禁用的输入在表单错误中不生效的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#322](https://github.com/opentiny/tiny-vue/pull/322)
415
+ - fix(checkbox): 修复了复选框标签为 0 时不显示错误的问题 by [@gimmyhehe](https://github.com/gimmyhehe) in [#331](https://github.com/opentiny/tiny-vue/pull/331)
416
+ - fix(select): 修复了计算选择组件的高度和错误创建项目的问题 by [@MomoPoppy](https://github.com/MomoPoppy) in [#358](https://github.com/opentiny/tiny-vue/pull/358)
417
+ - fix(carousel): 将箭头圆宽度调整为 28px by [@lyx-jay](https://github.com/lyx-jay) in [#376](https://github.com/opentiny/tiny-vue/pull/376)
418
+ - fix(drawer): 蒙版消失的速度比内容更快 by [@lyx-jay](https://github.com/lyx-jay) in [#375](https://github.com/opentiny/tiny-vue/pull/375)
419
+ - fix(badge): 修复显示重复内容的问题 by [@lyx-jay](https://github.com/lyx-jay) in [#382](https://github.com/opentiny/tiny-vue/pull/382)
420
+ - fix: 修复了执行 pnpm build:ui vue 命令时的 ts 声明错误 by [@kagol](https://github.com/kagol) in [#386](https://github.com/opentiny/tiny-vue/pull/386)
421
+ - fix(grid): 修复表格冻结列在 x-design 规范显示异常问题
422
+ - fix(grid): 修复表格冻结列在表格有纵向滚动条时
423
+ - fix(grid):修复表格 fetchdata 情况下,表格数据被处理两次问题
424
+ - fix(tree): 修复 isEmpty 属性在节点数据变化后没响应变化的问题
425
+ - fix(button-group): XDesign 主题朴素按钮字体颜色修复
426
+ - fix(input): 修复 input 在表单禁用状态时不生效 bug
427
+ - fix(popover): 避免初始加载时,触发的 hide 事件
428
+ - fix(dialog-box): 不在 body 上增加 class,可以避免引起的页面抖动
429
+ - fix(tabs): 取消初始化赋值,修复超出页签栏显示问题,优化更多弹出框
430
+ - fix(icons): 优化图标部分的自定义宽度和颜色
431
+ - fix(theme): 取消主题切换后自动刷新页面
432
+ - fix(anchor): 修复锚点异步获取数据导致监听 bug,增加切换动画效果
433
+ - fix(dropdown): 修复设置箭头显示不生效
434
+ - fix(select): 修复组件初始化创建条目的场景,同时设置 option 和 value,有匹配项却自动创建的问题
435
+ - fix(select): 修复 select 组件多选多行时 input 框高度计算有误的问题
436
+ - fix(popEditor): 编辑框关闭时先隐藏了内容的问题
221
437
 
222
438
  ### Other Changes
223
- * perf(tooltip): Tooltip 组件性能优化 by [@shenjunjian](https://github.com/shenjunjian) in [#368](https://github.com/opentiny/tiny-vue/pull/368)
224
- * chore(row): 恢复演示示例中的样式 by [@shenjunjian](https://github.com/shenjunjian) in [#311](https://github.com/opentiny/tiny-vue/pull/311)
225
- * feat(pnpm-lock): 添加 pnpm-lock.ymal 文件 by [@zzcr](https://github.com/zzcr) in [#320](https://github.com/opentiny/tiny-vue/pull/320)
226
- * feat(button): 完善单元测试 by [@chenqifeng66](https://github.com/chenqifeng66) in [#364](https://github.com/opentiny/tiny-vue/pull/364)
227
- * test(alert): 增加 Alert 组件单元测试 by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#369](https://github.com/opentiny/tiny-vue/pull/369)
228
- * docs(tag): 增加标签灵活用法,超出隐藏,显示title示例
439
+
440
+ - perf(tooltip): Tooltip 组件性能优化 by [@shenjunjian](https://github.com/shenjunjian) in [#368](https://github.com/opentiny/tiny-vue/pull/368)
441
+ - chore(row): 恢复演示示例中的样式 by [@shenjunjian](https://github.com/shenjunjian) in [#311](https://github.com/opentiny/tiny-vue/pull/311)
442
+ - feat(pnpm-lock): 添加 pnpm-lock.ymal 文件 by [@zzcr](https://github.com/zzcr) in [#320](https://github.com/opentiny/tiny-vue/pull/320)
443
+ - feat(button): 完善单元测试 by [@chenqifeng66](https://github.com/chenqifeng66) in [#364](https://github.com/opentiny/tiny-vue/pull/364)
444
+ - test(alert): 增加 Alert 组件单元测试 by [@Zz-ZzzZ](https://github.com/Zz-ZzzZ) in [#369](https://github.com/opentiny/tiny-vue/pull/369)
445
+ - docs(tag): 增加标签灵活用法,超出隐藏,显示 title 示例
229
446
 
230
447
  ## v2.9.0/v3.9.0
231
448
 
@@ -267,34 +484,34 @@
267
484
 
268
485
  ### Bug Fixes 🐛
269
486
 
270
- * fix: 修复windows下pnpm install rm rf not found by [@coderbaozi](https://github.com/coderbaozi) in [#149](https://github.com/opentiny/tiny-vue/pull/149)
271
- * 修复build:ui打包出来的产物有问题bug,修复input组件本地开发报警告bug by [@zzcr](https://github.com/zzcr) in [#150](https://github.com/opentiny/tiny-vue/pull/150)
272
- * fix(tabs): fix tab header bottom border line close [#154](https://github.com/opentiny/tiny-vue/issues/154) by [@kagol](https://github.com/kagol) in [#155](https://github.com/opentiny/tiny-vue/pull/155)
273
- * chore: Compatible with windows users by [@ErKeLost](https://github.com/ErKeLost) in [#151](https://github.com/opentiny/tiny-vue/pull/151)
274
- * fix(carousel-item): 合并重复属性 by [@linxiang07](https://github.com/linxiang07) in [#152](https://github.com/opentiny/tiny-vue/pull/152)
275
- * fix(checkbox): icon position when checked by [@zuixinwang](https://github.com/zuixinwang) in [#164](https://github.com/opentiny/tiny-vue/pull/164)
276
- * fix(build:runtime): 修复打包runtime产物的脚本 by [@shenjunjian](https://github.com/shenjunjian) in [#183](https://github.com/opentiny/tiny-vue/pull/183)
277
- * fix(build runtime) 修复打包运行时报错问题 by [@zzcr](https://github.com/zzcr) in [#185](https://github.com/opentiny/tiny-vue/pull/185)
278
- * fix(carousel) 走马灯手动轮播切换到此处数据会偶现与实际不符 by [@WXC-Spring](https://github.com/WXC-Spring) in [#188](https://github.com/opentiny/tiny-vue/pull/188)
279
- * fix(runtime-build) 修复:运行时多入口打包会抽取公共依赖,导致加载报错 by [@zzcr](https://github.com/zzcr) in [#191](https://github.com/opentiny/tiny-vue/pull/191)
280
- * fix(dialog-box): 修复对话框移动后动态style没更新的bug by [@Huangyilin19](https://github.com/Huangyilin19) in [#195](https://github.com/opentiny/tiny-vue/pull/195)
281
- * fix(upload) 修复upload组件销毁时报错的bug by [@zzcr](https://github.com/zzcr) in [#196](https://github.com/opentiny/tiny-vue/pull/196)
282
- * fix(fileupload): 上传组件增加用户不配置action属性产生的报错,告知用户需要配置 by [@chenxi-20](https://github.com/chenxi-20) in [#199](https://github.com/opentiny/tiny-vue/pull/199)
283
- * fix(button): 修复无内容的情况下上下错位的问题([#194](https://github.com/opentiny/tiny-vue/issues/194)) by [@qinwencheng](https://github.com/qinwencheng) in [#203](https://github.com/opentiny/tiny-vue/pull/203)
284
- * fix: 修复pullRefresh组件,数据类型不匹配,导致控制台告警日志超大量打印,导致页面渲染慢的问题 by [@MrWang2016](https://github.com/MrWang2016) in [#211](https://github.com/opentiny/tiny-vue/pull/211)
285
- * fix: 修复Breadcrumb配置textField的demo不显示面包屑内容 [#207](https://github.com/opentiny/tiny-vue/issues/207) by [@yuanningning](https://github.com/yuanningning) in [#210](https://github.com/opentiny/tiny-vue/pull/210)
286
- * fix(rate) 修复组件Rate半选加禁选后,2.5与3星实际不匹配的问题 by [@wwttff](https://github.com/wwttff) in [#200](https://github.com/opentiny/tiny-vue/pull/200)
287
- * fix(build) 修复grid、pager组件bug by [@zzcr](https://github.com/zzcr) in [#240](https://github.com/opentiny/tiny-vue/pull/240)
288
- * fix: fix npm publish 402 error by [@kagol](https://github.com/kagol) in [#241](https://github.com/opentiny/tiny-vue/pull/241)
487
+ - fix: 修复 windows pnpm install rm rf not found by [@coderbaozi](https://github.com/coderbaozi) in [#149](https://github.com/opentiny/tiny-vue/pull/149)
488
+ - 修复 build:ui 打包出来的产物有问题 bug,修复 input 组件本地开发报警告 bug by [@zzcr](https://github.com/zzcr) in [#150](https://github.com/opentiny/tiny-vue/pull/150)
489
+ - fix(tabs): fix tab header bottom border line close [#154](https://github.com/opentiny/tiny-vue/issues/154) by [@kagol](https://github.com/kagol) in [#155](https://github.com/opentiny/tiny-vue/pull/155)
490
+ - chore: Compatible with windows users by [@ErKeLost](https://github.com/ErKeLost) in [#151](https://github.com/opentiny/tiny-vue/pull/151)
491
+ - fix(carousel-item): 合并重复属性 by [@linxiang07](https://github.com/linxiang07) in [#152](https://github.com/opentiny/tiny-vue/pull/152)
492
+ - fix(checkbox): icon position when checked by [@zuixinwang](https://github.com/zuixinwang) in [#164](https://github.com/opentiny/tiny-vue/pull/164)
493
+ - fix(build:runtime): 修复打包 runtime 产物的脚本 by [@shenjunjian](https://github.com/shenjunjian) in [#183](https://github.com/opentiny/tiny-vue/pull/183)
494
+ - fix(build runtime) 修复打包运行时报错问题 by [@zzcr](https://github.com/zzcr) in [#185](https://github.com/opentiny/tiny-vue/pull/185)
495
+ - fix(carousel) 走马灯手动轮播切换到此处数据会偶现与实际不符 by [@WXC-Spring](https://github.com/WXC-Spring) in [#188](https://github.com/opentiny/tiny-vue/pull/188)
496
+ - fix(runtime-build) 修复:运行时多入口打包会抽取公共依赖,导致加载报错 by [@zzcr](https://github.com/zzcr) in [#191](https://github.com/opentiny/tiny-vue/pull/191)
497
+ - fix(dialog-box): 修复对话框移动后动态 style 没更新的 bug by [@Huangyilin19](https://github.com/Huangyilin19) in [#195](https://github.com/opentiny/tiny-vue/pull/195)
498
+ - fix(upload) 修复 upload 组件销毁时报错的 bug by [@zzcr](https://github.com/zzcr) in [#196](https://github.com/opentiny/tiny-vue/pull/196)
499
+ - fix(fileupload): 上传组件增加用户不配置 action 属性产生的报错,告知用户需要配置 by [@chenxi-20](https://github.com/chenxi-20) in [#199](https://github.com/opentiny/tiny-vue/pull/199)
500
+ - fix(button): 修复无内容的情况下上下错位的问题([#194](https://github.com/opentiny/tiny-vue/issues/194)) by [@qinwencheng](https://github.com/qinwencheng) in [#203](https://github.com/opentiny/tiny-vue/pull/203)
501
+ - fix: 修复 pullRefresh 组件,数据类型不匹配,导致控制台告警日志超大量打印,导致页面渲染慢的问题 by [@MrWang2016](https://github.com/MrWang2016) in [#211](https://github.com/opentiny/tiny-vue/pull/211)
502
+ - fix: 修复 Breadcrumb 配置 textField demo 不显示面包屑内容  [#207](https://github.com/opentiny/tiny-vue/issues/207) by [@yuanningning](https://github.com/yuanningning) in [#210](https://github.com/opentiny/tiny-vue/pull/210)
503
+ - fix(rate) 修复组件 Rate 半选加禁选后,2.5 3 星实际不匹配的问题 by [@wwttff](https://github.com/wwttff) in [#200](https://github.com/opentiny/tiny-vue/pull/200)
504
+ - fix(build) 修复 grid、pager 组件 bug by [@zzcr](https://github.com/zzcr) in [#240](https://github.com/opentiny/tiny-vue/pull/240)
505
+ - fix: fix npm publish 402 error by [@kagol](https://github.com/kagol) in [#241](https://github.com/opentiny/tiny-vue/pull/241)
289
506
 
290
507
  ### Other Changes
291
508
 
292
- * chore: 添加文件后缀名 by [@CatsAndMice](https://github.com/CatsAndMice) in [#160](https://github.com/opentiny/tiny-vue/pull/160)
293
- * refactor(button): 优化size属性校验 by [@LadyChatterleyLover](https://github.com/LadyChatterleyLover) in [#162](https://github.com/opentiny/tiny-vue/pull/162)
294
- * docs:中英文README和贡献指南文档中端口号的修正,以及Issue模板中的小助手微信号修正 by [@heygsc](https://github.com/heygsc) in [#171](https://github.com/opentiny/tiny-vue/pull/171)
295
- * docs: 增加 all-contributors 机器人🤖️用于自动添加贡献者 by [@kagol](https://github.com/kagol) in [#214](https://github.com/opentiny/tiny-vue/pull/214)
296
- * docs: update README.zh-CN.md by [@kagol](https://github.com/kagol) in [#216](https://github.com/opentiny/tiny-vue/pull/216)
297
- * doc: 修改文档示例 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#224](https://github.com/opentiny/tiny-vue/pull/224)
509
+ - chore: 添加文件后缀名 by [@CatsAndMice](https://github.com/CatsAndMice) in [#160](https://github.com/opentiny/tiny-vue/pull/160)
510
+ - refactor(button): 优化 size 属性校验 by [@LadyChatterleyLover](https://github.com/LadyChatterleyLover) in [#162](https://github.com/opentiny/tiny-vue/pull/162)
511
+ - docs:中英文 README 和贡献指南文档中端口号的修正,以及 Issue 模板中的小助手微信号修正 by [@heygsc](https://github.com/heygsc) in [#171](https://github.com/opentiny/tiny-vue/pull/171)
512
+ - docs: 增加 all-contributors 机器人 🤖️ 用于自动添加贡献者 by [@kagol](https://github.com/kagol) in [#214](https://github.com/opentiny/tiny-vue/pull/214)
513
+ - docs: update README.zh-CN.md by [@kagol](https://github.com/kagol) in [#216](https://github.com/opentiny/tiny-vue/pull/216)
514
+ - doc: 修改文档示例 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#224](https://github.com/opentiny/tiny-vue/pull/224)
298
515
 
299
516
  ## v2.6.6/v3.6.6
300
517
 
@@ -302,25 +519,25 @@
302
519
 
303
520
  ### Exciting New Features 🎉
304
521
 
305
- * feat: 增加 vue-vite-import 插件 by [@kagol](https://github.com/kagol) in [#135](https://github.com/opentiny/tiny-vue/pull/135)
306
- * feat: 当children为空数组是认为是叶子节点 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#143](https://github.com/opentiny/tiny-vue/pull/143)
522
+ - feat: 增加 vue-vite-import 插件 by [@kagol](https://github.com/kagol) in [#135](https://github.com/opentiny/tiny-vue/pull/135)
523
+ - feat: 当 children 为空数组是认为是叶子节点 by [@GaoNeng-wWw](https://github.com/GaoNeng-wWw) in [#143](https://github.com/opentiny/tiny-vue/pull/143)
307
524
 
308
525
  ### Bug Fixes 🐛
309
526
 
310
- * fix(ipaddress): 切换tab键会从192跳过168到0 by [@rayhaoqin](https://github.com/rayhaoqin) in [#122](https://github.com/opentiny/tiny-vue/pull/122)
311
- * fix: 修复 pnpm dev:docs 报错的问题。 by [@ygj6](https://github.com/ygj6) in [#123](https://github.com/opentiny/tiny-vue/pull/123)
312
- * fix: fix vuepress-vite version error when execute pnpm i by [@kagol](https://github.com/kagol) in [#126](https://github.com/opentiny/tiny-vue/pull/126)
313
- * fix(chart-line): fix line-chart tooltip.axisPointer.lineStyle does not take effect close [#130](https://github.com/opentiny/tiny-vue/issues/130) by [@kagol](https://github.com/kagol) in [#131](https://github.com/opentiny/tiny-vue/pull/131)
314
- * fix(types): 修复vue3-example项目中的ts报错。 by [@ygj6](https://github.com/ygj6) in [#132](https://github.com/opentiny/tiny-vue/pull/132)
315
- * fix(date-picker): fix date-picker style by [@kagol](https://github.com/kagol) in [#136](https://github.com/opentiny/tiny-vue/pull/136)
316
- * Fix issue [#115](https://github.com/opentiny/tiny-vue/issues/115) by [@acyza](https://github.com/acyza) in [#116](https://github.com/opentiny/tiny-vue/pull/116)
317
- * fix(table): table-misaligned when frozen columns by [@awspi](https://github.com/awspi) in [#140](https://github.com/opentiny/tiny-vue/pull/140)
318
- * 修复tooltip`append-to-body="false"`时在表格中位置计算错误 by [@acyza](https://github.com/acyza) in [#146](https://github.com/opentiny/tiny-vue/pull/146)
319
- * fix(pull-refresh): 修复下拉刷新组件频繁触发的问题 by [@TC-twwang](https://github.com/TC-twwang) in [#145](https://github.com/opentiny/tiny-vue/pull/145)
527
+ - fix(ipaddress): 切换 tab 键会从 192 跳过 168 0 by [@rayhaoqin](https://github.com/rayhaoqin) in [#122](https://github.com/opentiny/tiny-vue/pull/122)
528
+ - fix: 修复 pnpm dev:docs 报错的问题。 by [@ygj6](https://github.com/ygj6) in [#123](https://github.com/opentiny/tiny-vue/pull/123)
529
+ - fix: fix vuepress-vite version error when execute pnpm i by [@kagol](https://github.com/kagol) in [#126](https://github.com/opentiny/tiny-vue/pull/126)
530
+ - fix(chart-line): fix line-chart tooltip.axisPointer.lineStyle does not take effect close [#130](https://github.com/opentiny/tiny-vue/issues/130) by [@kagol](https://github.com/kagol) in [#131](https://github.com/opentiny/tiny-vue/pull/131)
531
+ - fix(types): 修复 vue3-example 项目中的 ts 报错。 by [@ygj6](https://github.com/ygj6) in [#132](https://github.com/opentiny/tiny-vue/pull/132)
532
+ - fix(date-picker): fix date-picker style by [@kagol](https://github.com/kagol) in [#136](https://github.com/opentiny/tiny-vue/pull/136)
533
+ - Fix issue [#115](https://github.com/opentiny/tiny-vue/issues/115) by [@acyza](https://github.com/acyza) in [#116](https://github.com/opentiny/tiny-vue/pull/116)
534
+ - fix(table): table-misaligned when frozen columns by [@awspi](https://github.com/awspi) in [#140](https://github.com/opentiny/tiny-vue/pull/140)
535
+ - 修复 tooltip`append-to-body="false"`时在表格中位置计算错误 by [@acyza](https://github.com/acyza) in [#146](https://github.com/opentiny/tiny-vue/pull/146)
536
+ - fix(pull-refresh): 修复下拉刷新组件频繁触发的问题 by [@TC-twwang](https://github.com/TC-twwang) in [#145](https://github.com/opentiny/tiny-vue/pull/145)
320
537
 
321
538
  ### Other Changes
322
539
 
323
- * refactor(tabs): optimize new tab button postion close [#127](https://github.com/opentiny/tiny-vue/issues/127) by [@kagol](https://github.com/kagol) in [#128](https://github.com/opentiny/tiny-vue/pull/128)
540
+ - refactor(tabs): optimize new tab button postion close [#127](https://github.com/opentiny/tiny-vue/issues/127) by [@kagol](https://github.com/kagol) in [#128](https://github.com/opentiny/tiny-vue/pull/128)
324
541
 
325
542
  ## v2.6.1/v3.6.1
326
543
 
@@ -328,32 +545,32 @@
328
545
 
329
546
  ### Exciting New Features 🎉
330
547
 
331
- * feat(timeline): 增加箭头点击区域 by [@MNZhu](https://github.com/MNZhu) in [#103](https://github.com/opentiny/tiny-vue/pull/103)
548
+ - feat(timeline): 增加箭头点击区域 by [@MNZhu](https://github.com/MNZhu) in [#103](https://github.com/opentiny/tiny-vue/pull/103)
332
549
 
333
550
  ### Bug Fixes 🐛
334
551
 
335
- * fix(radio): 修复主题配置radio-button无法继承属性的bug,打开可继承属性 by [@chenxi-20](https://github.com/chenxi-20) in [#82](https://github.com/opentiny/tiny-vue/pull/82)
336
- * fix: fix monorepo by [@kagol](https://github.com/kagol) in [#91](https://github.com/opentiny/tiny-vue/pull/91)
337
- * fix(anchor): 修复父锚点指示异常的问题 by [@chenxi-20](https://github.com/chenxi-20) in [#93](https://github.com/opentiny/tiny-vue/pull/93)
338
- * fix: Failed to resolve entry for package "@opentiny/vue" close [#99](https://github.com/opentiny/tiny-vue/issues/99) by [@kagol](https://github.com/kagol) in [#100](https://github.com/opentiny/tiny-vue/pull/100)
339
- * fix(upload): 取消fileupload组件的自动隐藏和提示功能,修改成用户可自定义配置 by [@chenxi-20](https://github.com/chenxi-20) in [#95](https://github.com/opentiny/tiny-vue/pull/95)
340
- * fix(exception): 优化定位布局样式 by [@MNZhu](https://github.com/MNZhu) in [#104](https://github.com/opentiny/tiny-vue/pull/104)
341
- * fix(timeline): 修复单个节点数据显示线条问题 by [@MNZhu](https://github.com/MNZhu) in [#105](https://github.com/opentiny/tiny-vue/pull/105)
342
- * fix: 修复打包,发布报错等问题,调整类型声明等问题 by [@zzcr](https://github.com/zzcr) in [#108](https://github.com/opentiny/tiny-vue/pull/108)
343
- * fix(vue-common): 修复adapter中的mode的传值问题 by [@shenjunjian](https://github.com/shenjunjian) in [#110](https://github.com/opentiny/tiny-vue/pull/110)
344
- * fix: 修复文档初始`pathname`错误 by [@acyza](https://github.com/acyza) in [#107](https://github.com/opentiny/tiny-vue/pull/107)
345
- * fix: 修复国际化键值的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#111](https://github.com/opentiny/tiny-vue/pull/111)
346
- * fix: 添加打包前置脚本 by [@zzcr](https://github.com/zzcr) in [#112](https://github.com/opentiny/tiny-vue/pull/112)
347
- * fix(vue-panel): 修复panel 的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#113](https://github.com/opentiny/tiny-vue/pull/113)
348
- * fix: Removing the invalid resource path enables `pnpm dev` to succeed. by [@ygj6](https://github.com/ygj6) in [#109](https://github.com/opentiny/tiny-vue/pull/109)
349
- * fix: fix build error by [@kagol](https://github.com/kagol) in [#119](https://github.com/opentiny/tiny-vue/pull/119)
350
- * fix(grid): 使用gpu加速优化虚拟滚动性能,修复筛选面板单选框无法选中问题 by [@zzcr](https://github.com/zzcr) in [#121](https://github.com/opentiny/tiny-vue/pull/121)
552
+ - fix(radio): 修复主题配置 radio-button 无法继承属性的 bug,打开可继承属性 by [@chenxi-20](https://github.com/chenxi-20) in [#82](https://github.com/opentiny/tiny-vue/pull/82)
553
+ - fix: fix monorepo by [@kagol](https://github.com/kagol) in [#91](https://github.com/opentiny/tiny-vue/pull/91)
554
+ - fix(anchor): 修复父锚点指示异常的问题 by [@chenxi-20](https://github.com/chenxi-20) in [#93](https://github.com/opentiny/tiny-vue/pull/93)
555
+ - fix: Failed to resolve entry for package "@opentiny/vue" close [#99](https://github.com/opentiny/tiny-vue/issues/99) by [@kagol](https://github.com/kagol) in [#100](https://github.com/opentiny/tiny-vue/pull/100)
556
+ - fix(upload): 取消 fileupload 组件的自动隐藏和提示功能,修改成用户可自定义配置 by [@chenxi-20](https://github.com/chenxi-20) in [#95](https://github.com/opentiny/tiny-vue/pull/95)
557
+ - fix(exception): 优化定位布局样式 by [@MNZhu](https://github.com/MNZhu) in [#104](https://github.com/opentiny/tiny-vue/pull/104)
558
+ - fix(timeline): 修复单个节点数据显示线条问题 by [@MNZhu](https://github.com/MNZhu) in [#105](https://github.com/opentiny/tiny-vue/pull/105)
559
+ - fix: 修复打包,发布报错等问题,调整类型声明等问题 by [@zzcr](https://github.com/zzcr) in [#108](https://github.com/opentiny/tiny-vue/pull/108)
560
+ - fix(vue-common): 修复 adapter 中的 mode 的传值问题 by [@shenjunjian](https://github.com/shenjunjian) in [#110](https://github.com/opentiny/tiny-vue/pull/110)
561
+ - fix: 修复文档初始`pathname`错误 by [@acyza](https://github.com/acyza) in [#107](https://github.com/opentiny/tiny-vue/pull/107)
562
+ - fix: 修复国际化键值的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#111](https://github.com/opentiny/tiny-vue/pull/111)
563
+ - fix: 添加打包前置脚本 by [@zzcr](https://github.com/zzcr) in [#112](https://github.com/opentiny/tiny-vue/pull/112)
564
+ - fix(vue-panel): 修复 panel 的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#113](https://github.com/opentiny/tiny-vue/pull/113)
565
+ - fix: Removing the invalid resource path enables `pnpm dev` to succeed. by [@ygj6](https://github.com/ygj6) in [#109](https://github.com/opentiny/tiny-vue/pull/109)
566
+ - fix: fix build error by [@kagol](https://github.com/kagol) in [#119](https://github.com/opentiny/tiny-vue/pull/119)
567
+ - fix(grid): 使用 gpu 加速优化虚拟滚动性能,修复筛选面板单选框无法选中问题 by [@zzcr](https://github.com/zzcr) in [#121](https://github.com/opentiny/tiny-vue/pull/121)
351
568
 
352
569
  ### Other Changes
353
570
 
354
- * refactor: Refactor project to Monorepo and TypeScript by [@kagol](https://github.com/kagol) in [#90](https://github.com/opentiny/tiny-vue/pull/90)
355
- * refactor: remove useless files by [@kagol](https://github.com/kagol) in [#92](https://github.com/opentiny/tiny-vue/pull/92)
356
- * docs: update README by [@kagol](https://github.com/kagol) in [#98](https://github.com/opentiny/tiny-vue/pull/98)
571
+ - refactor: Refactor project to Monorepo and TypeScript by [@kagol](https://github.com/kagol) in [#90](https://github.com/opentiny/tiny-vue/pull/90)
572
+ - refactor: remove useless files by [@kagol](https://github.com/kagol) in [#92](https://github.com/opentiny/tiny-vue/pull/92)
573
+ - docs: update README by [@kagol](https://github.com/kagol) in [#98](https://github.com/opentiny/tiny-vue/pull/98)
357
574
 
358
575
  ## v2.6.0/v3.6.0
359
576
 
@@ -361,56 +578,56 @@
361
578
 
362
579
  ### Exciting New Features 🎉
363
580
 
364
- * feat(anchor): 新增anchor组件第一个功能:基本使用 by [@chenxi-20](https://github.com/chenxi-20) in [#30](https://github.com/opentiny/tiny-vue/pull/30)
365
- * feat(modal): 增加反馈弹窗modal组件 by [@MNZhu](https://github.com/MNZhu) in [#19](https://github.com/opentiny/tiny-vue/pull/19)
366
- * feat(button): 按钮组件样式修改 by [@MNZhu](https://github.com/MNZhu) in [#21](https://github.com/opentiny/tiny-vue/pull/21)
367
- * feat(multi-select): 增加下拉选择器multi-select组件 by [@TC-twwang](https://github.com/TC-twwang) in [#22](https://github.com/opentiny/tiny-vue/pull/22)
368
- * feat(search): 搜索组件样式修改 by [@MNZhu](https://github.com/MNZhu) in [#33](https://github.com/opentiny/tiny-vue/pull/33)
369
- * feat(anchor): 添加锚点anchor组件onchange事件 by [@chenxi-20](https://github.com/chenxi-20) in [#35](https://github.com/opentiny/tiny-vue/pull/35)
370
- * feat(timeline): 时间线插槽作用域增加index属性 by [@chenxi-20](https://github.com/chenxi-20) in [#39](https://github.com/opentiny/tiny-vue/pull/39)
371
- * feat(timeline): timeline样式修改 by [@MNZhu](https://github.com/MNZhu) in [#38](https://github.com/opentiny/tiny-vue/pull/38)
372
- * feat(form): form组件增加自动换行 by [@TC-twwang](https://github.com/TC-twwang) in [#40](https://github.com/opentiny/tiny-vue/pull/40)
373
- * feat(indexbar): 增加索引组件 by [@MNZhu](https://github.com/MNZhu) in [#47](https://github.com/opentiny/tiny-vue/pull/47)
374
- * feat(form): form组件增加自动换行-检视意见修改 by [@TC-twwang](https://github.com/TC-twwang) in [#54](https://github.com/opentiny/tiny-vue/pull/54)
375
- * feat(anchor): 锚点组件增加固定模式,修复示例文档bug问题 by [@chenxi-20](https://github.com/chenxi-20) in [#49](https://github.com/opentiny/tiny-vue/pull/49)
376
- * feat(anchor): 修复检视意见,同步远程代码 by [@chenxi-20](https://github.com/chenxi-20) in [#55](https://github.com/opentiny/tiny-vue/pull/55)
377
- * feat(anchor): 调整anchor组件,让其可以适配主题配置 by [@chenxi-20](https://github.com/chenxi-20) in [#57](https://github.com/opentiny/tiny-vue/pull/57)
378
- * feat(badge): add badge-class close [#50](https://github.com/opentiny/tiny-vue/issues/50) by [@kagol](https://github.com/kagol) in [#51](https://github.com/opentiny/tiny-vue/pull/51)
379
- * feat(tag): add beforeDelete props by [@kagol](https://github.com/kagol) in [#52](https://github.com/opentiny/tiny-vue/pull/52)
380
- * feat(form): form组件增加自动换行-增加移动端条件校验 by [@TC-twwang](https://github.com/TC-twwang) in [#58](https://github.com/opentiny/tiny-vue/pull/58)
381
- * feat(switch): add beforeChange props by [@kagol](https://github.com/kagol) in [#59](https://github.com/opentiny/tiny-vue/pull/59)
382
- * feat(fullscreen): add beforeChange props by [@kagol](https://github.com/kagol) in [#61](https://github.com/opentiny/tiny-vue/pull/61)
383
- * feat(badge): add offset props by [@kagol](https://github.com/kagol) in [#63](https://github.com/opentiny/tiny-vue/pull/63)
384
- * feat(tabs): tabs组件支持展开 by [@TC-twwang](https://github.com/TC-twwang) in [#60](https://github.com/opentiny/tiny-vue/pull/60)
385
- * feat(split): add collapsible props by [@kagol](https://github.com/kagol) in [#64](https://github.com/opentiny/tiny-vue/pull/64)
386
- * feat(pull-refresh): pull-refresh组件支持上拉刷新 by [@TC-twwang](https://github.com/TC-twwang) in [#67](https://github.com/opentiny/tiny-vue/pull/67)
387
- * feat(tabs): 增加tabs组件超出隐藏提示tip配置 by [@chenxi-20](https://github.com/chenxi-20) in [#68](https://github.com/opentiny/tiny-vue/pull/68)
388
- * feat(action-menu): 修复 ActionMenu 下拉后箭头旋转向上 by [@MomoPoppy](https://github.com/MomoPoppy) in [#70](https://github.com/opentiny/tiny-vue/pull/70)
389
- * feat(transfer): add beforeTransfer props by [@kagol](https://github.com/kagol) in [#75](https://github.com/opentiny/tiny-vue/pull/75)
390
- * feat(search): add prefix/suffix slots by [@kagol](https://github.com/kagol) in [#77](https://github.com/opentiny/tiny-vue/pull/77)
581
+ - feat(anchor): 新增 anchor 组件第一个功能:基本使用 by [@chenxi-20](https://github.com/chenxi-20) in [#30](https://github.com/opentiny/tiny-vue/pull/30)
582
+ - feat(modal): 增加反馈弹窗 modal 组件 by [@MNZhu](https://github.com/MNZhu) in [#19](https://github.com/opentiny/tiny-vue/pull/19)
583
+ - feat(button): 按钮组件样式修改 by [@MNZhu](https://github.com/MNZhu) in [#21](https://github.com/opentiny/tiny-vue/pull/21)
584
+ - feat(multi-select): 增加下拉选择器 multi-select 组件 by [@TC-twwang](https://github.com/TC-twwang) in [#22](https://github.com/opentiny/tiny-vue/pull/22)
585
+ - feat(search): 搜索组件样式修改 by [@MNZhu](https://github.com/MNZhu) in [#33](https://github.com/opentiny/tiny-vue/pull/33)
586
+ - feat(anchor): 添加锚点 anchor 组件 onchange 事件 by [@chenxi-20](https://github.com/chenxi-20) in [#35](https://github.com/opentiny/tiny-vue/pull/35)
587
+ - feat(timeline): 时间线插槽作用域增加 index 属性 by [@chenxi-20](https://github.com/chenxi-20) in [#39](https://github.com/opentiny/tiny-vue/pull/39)
588
+ - feat(timeline): timeline 样式修改 by [@MNZhu](https://github.com/MNZhu) in [#38](https://github.com/opentiny/tiny-vue/pull/38)
589
+ - feat(form): form 组件增加自动换行 by [@TC-twwang](https://github.com/TC-twwang) in [#40](https://github.com/opentiny/tiny-vue/pull/40)
590
+ - feat(indexbar): 增加索引组件 by [@MNZhu](https://github.com/MNZhu) in [#47](https://github.com/opentiny/tiny-vue/pull/47)
591
+ - feat(form): form 组件增加自动换行-检视意见修改 by [@TC-twwang](https://github.com/TC-twwang) in [#54](https://github.com/opentiny/tiny-vue/pull/54)
592
+ - feat(anchor): 锚点组件增加固定模式,修复示例文档 bug 问题 by [@chenxi-20](https://github.com/chenxi-20) in [#49](https://github.com/opentiny/tiny-vue/pull/49)
593
+ - feat(anchor): 修复检视意见,同步远程代码 by [@chenxi-20](https://github.com/chenxi-20) in [#55](https://github.com/opentiny/tiny-vue/pull/55)
594
+ - feat(anchor): 调整 anchor 组件,让其可以适配主题配置 by [@chenxi-20](https://github.com/chenxi-20) in [#57](https://github.com/opentiny/tiny-vue/pull/57)
595
+ - feat(badge): add badge-class close [#50](https://github.com/opentiny/tiny-vue/issues/50) by [@kagol](https://github.com/kagol) in [#51](https://github.com/opentiny/tiny-vue/pull/51)
596
+ - feat(tag): add beforeDelete props by [@kagol](https://github.com/kagol) in [#52](https://github.com/opentiny/tiny-vue/pull/52)
597
+ - feat(form): form 组件增加自动换行-增加移动端条件校验 by [@TC-twwang](https://github.com/TC-twwang) in [#58](https://github.com/opentiny/tiny-vue/pull/58)
598
+ - feat(switch): add beforeChange props by [@kagol](https://github.com/kagol) in [#59](https://github.com/opentiny/tiny-vue/pull/59)
599
+ - feat(fullscreen): add beforeChange props by [@kagol](https://github.com/kagol) in [#61](https://github.com/opentiny/tiny-vue/pull/61)
600
+ - feat(badge): add offset props by [@kagol](https://github.com/kagol) in [#63](https://github.com/opentiny/tiny-vue/pull/63)
601
+ - feat(tabs): tabs 组件支持展开 by [@TC-twwang](https://github.com/TC-twwang) in [#60](https://github.com/opentiny/tiny-vue/pull/60)
602
+ - feat(split): add collapsible props by [@kagol](https://github.com/kagol) in [#64](https://github.com/opentiny/tiny-vue/pull/64)
603
+ - feat(pull-refresh): pull-refresh 组件支持上拉刷新 by [@TC-twwang](https://github.com/TC-twwang) in [#67](https://github.com/opentiny/tiny-vue/pull/67)
604
+ - feat(tabs): 增加 tabs 组件超出隐藏提示 tip 配置 by [@chenxi-20](https://github.com/chenxi-20) in [#68](https://github.com/opentiny/tiny-vue/pull/68)
605
+ - feat(action-menu): 修复 ActionMenu 下拉后箭头旋转向上 by [@MomoPoppy](https://github.com/MomoPoppy) in [#70](https://github.com/opentiny/tiny-vue/pull/70)
606
+ - feat(transfer): add beforeTransfer props by [@kagol](https://github.com/kagol) in [#75](https://github.com/opentiny/tiny-vue/pull/75)
607
+ - feat(search): add prefix/suffix slots by [@kagol](https://github.com/kagol) in [#77](https://github.com/opentiny/tiny-vue/pull/77)
391
608
 
392
609
  ### Bug Fixes 🐛
393
610
 
394
- * fix(ipaddress): form的示例增加numeric,ipaddress的校验示例 by [@shenjunjian](https://github.com/shenjunjian) in [#29](https://github.com/opentiny/tiny-vue/pull/29)
395
- * fix: 修复构建错误 by [@kagol](https://github.com/kagol) in [#25](https://github.com/opentiny/tiny-vue/pull/25)
396
- * fix: 修复echarts和cropperjs依赖版本落后问题 by [@yuanningning](https://github.com/yuanningning) in [#27](https://github.com/opentiny/tiny-vue/pull/27)
397
- * fix(grid): 修复表格再虚拟滚动模式下,始终有横向滚动条问题 by [@zzcr](https://github.com/zzcr) in [#32](https://github.com/opentiny/tiny-vue/pull/32)
398
- * fix(checkbox): 修复vue3模式下,checkbox-group的change事件触发2次的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#31](https://github.com/opentiny/tiny-vue/pull/31)
399
- * fix(anchor): 修复anchor组件MD文档说明 by [@chenxi-20](https://github.com/chenxi-20) in [#34](https://github.com/opentiny/tiny-vue/pull/34)
400
- * fix(milestone): 修复里程碑图标不对齐bug by [@chenxi-20](https://github.com/chenxi-20) in [#37](https://github.com/opentiny/tiny-vue/pull/37)
401
- * fix: 修复存在2个高度不一样的notify时,新增的notify高度错误 by [@rayhaoqin](https://github.com/rayhaoqin) in [#26](https://github.com/opentiny/tiny-vue/pull/26)
402
- * fix(switch): switch组件提示文字只在首次显示,切换开关状态后提示文字消失 by [@yuanningning](https://github.com/yuanningning) in [#42](https://github.com/opentiny/tiny-vue/pull/42)
403
- * fix(tiny-loading): 修复loading组件在vue2.0版本报错bug by [@zzcr](https://github.com/zzcr) in [#46](https://github.com/opentiny/tiny-vue/pull/46)
404
- * fix(indexbar): 类命名整改 by [@MNZhu](https://github.com/MNZhu) in [#56](https://github.com/opentiny/tiny-vue/pull/56)
405
- * fix(dropdown): 修复 dropdown 下拉后箭头旋转向上 by [@MomoPoppy](https://github.com/MomoPoppy) in [#45](https://github.com/opentiny/tiny-vue/pull/45)
406
- * fix(cascader): 修复级联组件属性无法透传问题 by [@rayhaoqin](https://github.com/rayhaoqin) in [#66](https://github.com/opentiny/tiny-vue/pull/66)
407
- * fix(dropdown-mobile): 修复移动端组件dropdownMenu无法正常渲染的问题,顺带修复pc端dropDown组件的警告 by [@chenxi-20](https://github.com/chenxi-20) in [#80](https://github.com/opentiny/tiny-vue/pull/80)
408
- * fix: 修复tabs组件展开内容被遮盖,multi-slect返回值增加value by [@TC-twwang](https://github.com/TC-twwang) in [#81](https://github.com/opentiny/tiny-vue/pull/81)
611
+ - fix(ipaddress): form 的示例增加 numeric,ipaddress 的校验示例 by [@shenjunjian](https://github.com/shenjunjian) in [#29](https://github.com/opentiny/tiny-vue/pull/29)
612
+ - fix: 修复构建错误 by [@kagol](https://github.com/kagol) in [#25](https://github.com/opentiny/tiny-vue/pull/25)
613
+ - fix: 修复 echarts cropperjs 依赖版本落后问题 by [@yuanningning](https://github.com/yuanningning) in [#27](https://github.com/opentiny/tiny-vue/pull/27)
614
+ - fix(grid): 修复表格再虚拟滚动模式下,始终有横向滚动条问题 by [@zzcr](https://github.com/zzcr) in [#32](https://github.com/opentiny/tiny-vue/pull/32)
615
+ - fix(checkbox): 修复 vue3 模式下,checkbox-group change 事件触发 2 次的问题 by [@shenjunjian](https://github.com/shenjunjian) in [#31](https://github.com/opentiny/tiny-vue/pull/31)
616
+ - fix(anchor): 修复 anchor 组件 MD 文档说明 by [@chenxi-20](https://github.com/chenxi-20) in [#34](https://github.com/opentiny/tiny-vue/pull/34)
617
+ - fix(milestone): 修复里程碑图标不对齐 bug by [@chenxi-20](https://github.com/chenxi-20) in [#37](https://github.com/opentiny/tiny-vue/pull/37)
618
+ - fix: 修复存在 2 个高度不一样的 notify 时,新增的 notify 高度错误 by [@rayhaoqin](https://github.com/rayhaoqin) in [#26](https://github.com/opentiny/tiny-vue/pull/26)
619
+ - fix(switch): switch 组件提示文字只在首次显示,切换开关状态后提示文字消失 by [@yuanningning](https://github.com/yuanningning) in [#42](https://github.com/opentiny/tiny-vue/pull/42)
620
+ - fix(tiny-loading): 修复 loading 组件在 vue2.0 版本报错 bug by [@zzcr](https://github.com/zzcr) in [#46](https://github.com/opentiny/tiny-vue/pull/46)
621
+ - fix(indexbar): 类命名整改 by [@MNZhu](https://github.com/MNZhu) in [#56](https://github.com/opentiny/tiny-vue/pull/56)
622
+ - fix(dropdown): 修复 dropdown 下拉后箭头旋转向上 by [@MomoPoppy](https://github.com/MomoPoppy) in [#45](https://github.com/opentiny/tiny-vue/pull/45)
623
+ - fix(cascader): 修复级联组件属性无法透传问题 by [@rayhaoqin](https://github.com/rayhaoqin) in [#66](https://github.com/opentiny/tiny-vue/pull/66)
624
+ - fix(dropdown-mobile): 修复移动端组件 dropdownMenu 无法正常渲染的问题,顺带修复 pc dropDown 组件的警告 by [@chenxi-20](https://github.com/chenxi-20) in [#80](https://github.com/opentiny/tiny-vue/pull/80)
625
+ - fix: 修复 tabs 组件展开内容被遮盖,multi-slect 返回值增加 value by [@TC-twwang](https://github.com/TC-twwang) in [#81](https://github.com/opentiny/tiny-vue/pull/81)
409
626
 
410
627
  ### Other Changes
411
628
 
412
- * docs: update CONTRIBUTING.md by [@kagol](https://github.com/kagol) in [#62](https://github.com/opentiny/tiny-vue/pull/62)
413
- * docs: add english README and CONTRIBUTING by [@kagol](https://github.com/kagol) in [#79](https://github.com/opentiny/tiny-vue/pull/79)
629
+ - docs: update CONTRIBUTING.md by [@kagol](https://github.com/kagol) in [#62](https://github.com/opentiny/tiny-vue/pull/62)
630
+ - docs: add english README and CONTRIBUTING by [@kagol](https://github.com/kagol) in [#79](https://github.com/opentiny/tiny-vue/pull/79)
414
631
 
415
632
  ## v2.5.0/v3.5.0
416
633