@opentiny/vue-docs 3.26.8 → 3.27.0

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 (161) hide show
  1. package/demos/apis/base-select.js +13 -0
  2. package/demos/apis/calendar-view.js +12 -0
  3. package/demos/apis/color-picker.js +16 -0
  4. package/demos/apis/color-select-panel.js +14 -0
  5. package/demos/apis/config-provider.js +2 -1
  6. package/demos/apis/date-picker.js +52 -0
  7. package/demos/apis/dialog-box.js +16 -4
  8. package/demos/apis/drawer.js +22 -0
  9. package/demos/apis/exception.js +43 -27
  10. package/demos/apis/grid.js +38 -3
  11. package/demos/apis/guide.js +14 -0
  12. package/demos/apis/pager.js +3 -3
  13. package/demos/apis/query-builder.js +346 -1
  14. package/demos/apis/select.js +41 -0
  15. package/demos/apis/space.js +99 -0
  16. package/demos/apis/steps.js +15 -0
  17. package/demos/apis/time-picker.js +28 -0
  18. package/demos/apis/time-select.js +30 -0
  19. package/demos/apis/tree-menu.js +14 -0
  20. package/demos/mobile-first/app/calendar-view/basic-usage.vue +1 -1
  21. package/demos/mobile-first/app/exception/webdoc/exception.js +4 -4
  22. package/demos/mobile-first/app/load-list/webdoc/load-list.en.md +1 -1
  23. package/demos/mobile-first/app/space/basic-usage-composition-api.vue +41 -0
  24. package/demos/mobile-first/app/space/basic-usage.spec.ts +37 -0
  25. package/demos/mobile-first/app/space/basic-usage.vue +37 -0
  26. package/demos/mobile-first/app/space/space-align-composition-api.vue +37 -0
  27. package/demos/mobile-first/app/space/space-align.spec.ts +24 -0
  28. package/demos/mobile-first/app/space/space-align.vue +37 -0
  29. package/demos/mobile-first/app/space/space-direction-composition-api.vue +32 -0
  30. package/demos/mobile-first/app/space/space-direction.spec.ts +17 -0
  31. package/demos/mobile-first/app/space/space-direction.vue +32 -0
  32. package/demos/mobile-first/app/space/space-justify-composition-api.vue +44 -0
  33. package/demos/mobile-first/app/space/space-justify.spec.ts +18 -0
  34. package/demos/mobile-first/app/space/space-justify.vue +39 -0
  35. package/demos/mobile-first/app/space/space-order-composition-api.vue +14 -0
  36. package/demos/mobile-first/app/space/space-order.spec.ts +13 -0
  37. package/demos/mobile-first/app/space/space-order.vue +14 -0
  38. package/demos/mobile-first/app/space/space-size-composition-api.vue +39 -0
  39. package/demos/mobile-first/app/space/space-size.spec.ts +37 -0
  40. package/demos/mobile-first/app/space/space-size.vue +39 -0
  41. package/demos/mobile-first/app/space/space-wrap-composition-api.vue +31 -0
  42. package/demos/mobile-first/app/space/space-wrap.spec.ts +25 -0
  43. package/demos/mobile-first/app/space/space-wrap.vue +31 -0
  44. package/demos/mobile-first/app/space/webdoc/space.cn.md +9 -0
  45. package/demos/mobile-first/app/space/webdoc/space.en.md +9 -0
  46. package/demos/mobile-first/app/space/webdoc/space.js +98 -0
  47. package/demos/mobile-first/menus.js +3 -1
  48. package/demos/pc/app/calendar-view/basic-usage-composition-api.vue +1 -1
  49. package/demos/pc/app/calendar-view/basic-usage.vue +1 -1
  50. package/demos/pc/app/carousel/webdoc/carousel.js +2 -1
  51. package/demos/pc/app/color-picker/linear-gradient-composition-api.vue +20 -0
  52. package/demos/pc/app/color-picker/linear-gradient.spec.ts +10 -0
  53. package/demos/pc/app/color-picker/linear-gradient.vue +28 -0
  54. package/demos/pc/app/color-picker/webdoc/color-picker.js +27 -0
  55. package/demos/pc/app/color-select-panel/linear-gradient-composition-api.vue +38 -0
  56. package/demos/pc/app/color-select-panel/linear-gradient.spec.ts +71 -0
  57. package/demos/pc/app/color-select-panel/linear-gradient.vue +45 -0
  58. package/demos/pc/app/color-select-panel/webdoc/color-select-panel.js +12 -0
  59. package/demos/pc/app/config-provider/webdoc/config-provider.js +2 -1
  60. package/demos/pc/app/date-panel/basic-usage.vue +19 -8
  61. package/demos/pc/app/date-panel/custom-weeks.vue +19 -9
  62. package/demos/pc/app/date-panel/disabled-date.vue +29 -19
  63. package/demos/pc/app/date-panel/event.vue +38 -31
  64. package/demos/pc/app/date-panel/format.vue +15 -5
  65. package/demos/pc/app/date-panel/readonly.vue +19 -8
  66. package/demos/pc/app/date-panel/shortcuts.vue +182 -176
  67. package/demos/pc/app/date-panel/unlink-panels.vue +15 -5
  68. package/demos/pc/app/date-picker/now-composition-api.vue +4 -1
  69. package/demos/pc/app/date-picker/now.vue +6 -2
  70. package/demos/pc/app/date-picker/slot-composition-api.vue +112 -0
  71. package/demos/pc/app/date-picker/slot.spec.ts +41 -0
  72. package/demos/pc/app/date-picker/slot.vue +119 -0
  73. package/demos/pc/app/date-picker/webdoc/date-picker.js +12 -0
  74. package/demos/pc/app/dialog-box/before-close-composition-api.vue +65 -0
  75. package/demos/pc/app/dialog-box/before-close.spec.ts +6 -0
  76. package/demos/pc/app/dialog-box/before-close.vue +71 -0
  77. package/demos/pc/app/dialog-box/webdoc/dialog-box.js +16 -0
  78. package/demos/pc/app/dialog-select/nest-tree-single.spec.ts +4 -7
  79. package/demos/pc/app/drawer/webdoc/drawer.js +2 -1
  80. package/demos/pc/app/exception/basic-usage-composition-api.vue +15 -0
  81. package/demos/pc/app/exception/basic-usage.vue +21 -0
  82. package/demos/pc/app/exception/button-text-composition-api.vue +13 -0
  83. package/demos/pc/app/exception/button-text.vue +21 -0
  84. package/demos/pc/app/exception/component-page-composition-api.vue +44 -0
  85. package/demos/pc/app/exception/component-page.vue +55 -0
  86. package/demos/pc/app/exception/page-empty-composition-api.vue +7 -0
  87. package/demos/pc/app/exception/page-empty.vue +13 -0
  88. package/demos/pc/app/exception/slot-composition-api.vue +29 -0
  89. package/demos/pc/app/exception/slot.vue +23 -0
  90. package/demos/pc/app/exception/sub-message-composition-api.vue +7 -0
  91. package/demos/pc/app/exception/sub-message.vue +13 -0
  92. package/demos/pc/app/exception/webdoc/exception.cn.md +5 -0
  93. package/demos/pc/app/exception/webdoc/exception.en.md +5 -0
  94. package/demos/pc/app/exception/webdoc/exception.js +84 -0
  95. package/demos/pc/app/grid/custom/default-customs-composition-api.vue +66 -0
  96. package/demos/pc/app/grid/custom/default-customs.spec.ts +9 -0
  97. package/demos/pc/app/grid/custom/default-customs.vue +75 -0
  98. package/demos/pc/app/grid/mouse-keyboard/mouse-config-hover-composition-api.vue +70 -0
  99. package/demos/pc/app/grid/mouse-keyboard/mouse-config-hover.vue +79 -0
  100. package/demos/pc/app/grid/validation/highlight-error-composition-api.vue +183 -0
  101. package/demos/pc/app/grid/validation/highlight-error.vue +192 -0
  102. package/demos/pc/app/grid/webdoc/grid-custom.js +11 -0
  103. package/demos/pc/app/grid/webdoc/grid-editor.js +2 -2
  104. package/demos/pc/app/grid/webdoc/grid-mouse-keyboard.js +9 -0
  105. package/demos/pc/app/grid/webdoc/grid-validation.js +9 -0
  106. package/demos/pc/app/guide/mask-composition-api.vue +31 -0
  107. package/demos/pc/app/guide/mask.spec.ts +13 -0
  108. package/demos/pc/app/guide/mask.vue +41 -0
  109. package/demos/pc/app/guide/webdoc/guide.js +12 -0
  110. package/demos/pc/app/input/resize.spec.ts +1 -1
  111. package/demos/pc/app/notify/manual-close-composition-api.vue +9 -11
  112. package/demos/pc/app/notify/manual-close.spec.ts +1 -1
  113. package/demos/pc/app/notify/manual-close.vue +9 -11
  114. package/demos/pc/app/notify/verticalOffset.spec.ts +3 -1
  115. package/demos/pc/app/query-builder/handle.vue +558 -0
  116. package/demos/pc/app/query-builder/limit.vue +555 -0
  117. package/demos/pc/app/query-builder/webdoc/query-builder.js +29 -1
  118. package/demos/pc/app/radio/dynamic-disable.vue +1 -1
  119. package/demos/pc/app/space/basic-usage-composition-api.vue +41 -0
  120. package/demos/pc/app/space/basic-usage.spec.ts +37 -0
  121. package/demos/pc/app/space/basic-usage.vue +37 -0
  122. package/demos/pc/app/space/space-align-composition-api.vue +37 -0
  123. package/demos/pc/app/space/space-align.spec.ts +24 -0
  124. package/demos/pc/app/space/space-align.vue +37 -0
  125. package/demos/pc/app/space/space-direction-composition-api.vue +32 -0
  126. package/demos/pc/app/space/space-direction.spec.ts +17 -0
  127. package/demos/pc/app/space/space-direction.vue +32 -0
  128. package/demos/pc/app/space/space-justify-composition-api.vue +44 -0
  129. package/demos/pc/app/space/space-justify.spec.ts +18 -0
  130. package/demos/pc/app/space/space-justify.vue +39 -0
  131. package/demos/pc/app/space/space-order-composition-api.vue +14 -0
  132. package/demos/pc/app/space/space-order.spec.ts +13 -0
  133. package/demos/pc/app/space/space-order.vue +14 -0
  134. package/demos/pc/app/space/space-size-composition-api.vue +39 -0
  135. package/demos/pc/app/space/space-size.spec.ts +37 -0
  136. package/demos/pc/app/space/space-size.vue +39 -0
  137. package/demos/pc/app/space/space-wrap-composition-api.vue +31 -0
  138. package/demos/pc/app/space/space-wrap.spec.ts +25 -0
  139. package/demos/pc/app/space/space-wrap.vue +31 -0
  140. package/demos/pc/app/space/webdoc/space.cn.md +9 -0
  141. package/demos/pc/app/space/webdoc/space.en.md +9 -0
  142. package/demos/pc/app/space/webdoc/space.js +98 -0
  143. package/demos/pc/app/steps/slot-icon-composition-api.vue +46 -0
  144. package/demos/pc/app/steps/slot-icon.vue +54 -0
  145. package/demos/pc/app/steps/webdoc/steps.js +12 -0
  146. package/demos/pc/app/tree-menu/events-composition-api.vue +4 -0
  147. package/demos/pc/app/tree-menu/events.vue +4 -0
  148. package/demos/pc/app/tree-menu/webdoc/tree-menu.js +2 -2
  149. package/demos/pc/app/tree-menu/with-icon-composition-api.vue +149 -24
  150. package/demos/pc/app/tree-menu/with-icon.spec.ts +1 -1
  151. package/demos/pc/app/tree-menu/with-icon.vue +149 -24
  152. package/demos/pc/menus.js +16 -0
  153. package/demos/pc/webdoc/changelog.md +209 -177
  154. package/env/.env.saas +1 -1
  155. package/env/.env.saaspages +9 -0
  156. package/package.json +20 -19
  157. package/playground/App.vue +2 -2
  158. package/src/components/anchor.vue +19 -72
  159. package/src/views/components-doc/common.vue +76 -12
  160. /package/demos/pc/app/user/{nodata-text-composition-api.vue → no-data-text-composition-api.vue} +0 -0
  161. /package/demos/pc/app/user/{nodata-text.vue → no-data-text.vue} +0 -0
package/demos/pc/menus.js CHANGED
@@ -114,6 +114,14 @@ export const cmpMenus = [
114
114
  'meta': {
115
115
  'stable': '3.19.0'
116
116
  }
117
+ },
118
+ {
119
+ 'nameCn': '间距',
120
+ 'name': 'Space',
121
+ 'key': 'space',
122
+ 'meta': {
123
+ 'stable': '3.27.0'
124
+ }
117
125
  }
118
126
  ]
119
127
  },
@@ -283,6 +291,14 @@ export const cmpMenus = [
283
291
  { 'nameCn': '警告', 'name': 'Alert', 'key': 'alert' },
284
292
  { 'nameCn': '对话框', 'name': 'DialogBox', 'key': 'dialog-box' },
285
293
  { 'nameCn': '抽屉', 'name': 'Drawer', 'key': 'drawer' },
294
+ {
295
+ 'nameCn': '异常页',
296
+ 'name': 'Exception',
297
+ 'key': 'exception',
298
+ 'meta': {
299
+ 'stable': '3.27.0'
300
+ }
301
+ },
286
302
  { 'nameCn': '加载', 'name': 'Loading', 'key': 'loading' },
287
303
  { 'nameCn': '模态框', 'name': 'Modal', 'key': 'modal' },
288
304
  { 'nameCn': '通知', 'name': 'Notify', 'key': 'notify' },
@@ -4,221 +4,253 @@ Tiny Vue 团队在正常情况下使用 每月 发布策略。
4
4
 
5
5
  在此页面上,您只能看到我们的 更新日志 最新三个迭代的日志记录,如您要查看完整记录可以查看:[Release](https://github.com/opentiny/tiny-vue/releases)
6
6
 
7
- ## v3.26.0/v2.26.0
7
+ ## v3.27.0/v2.27.0
8
8
 
9
- `2025/09/15`
9
+ `2025/11/07`
10
10
 
11
11
  ## What's Changed
12
12
 
13
13
  ### Exciting New Features 🎉
14
14
 
15
- - feat(steps): Add wizard style step bar itemStyle differentiated configuration by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3594
16
- - feat(color-picker): refactoring the ColorPicker component style by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/3595
17
- - feat: modify the resource file loading mode and add postcss plugin configuration. by @zzcr in https://github.com/opentiny/tiny-vue/pull/3615
18
- - feat(site): connect next-sdk and ai dialog box to realize dynamic switching routing function of large models by @zzcr in https://github.com/opentiny/tiny-vue/pull/3619
19
- - feat(grid): saas theme add filter select style by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3626
20
- - feat(grid): add cascader full width grid by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3627
21
- - feat(button): add a list of theme tokens to the component documentation by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/3631
22
- - feat(silder-button): add displayed attribute by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3639
23
- - feat: Add table configuration slot example usage by @zzcr in https://github.com/opentiny/tiny-vue/pull/3649
24
- - feat(cascader): Add the tooltip function for cascading panels by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3665
25
- - feat(search): Add mini search box expansion and retraction hook callback API by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3664
26
- - feat(tabs): add header-only by @liangguanhui0117 in https://github.com/opentiny/tiny-vue/pull/3638
15
+ * feat(date-picker ):adds footer slot by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3710>
16
+ * feat(calendar-view): The date can be specified to a day. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3719>
17
+ * feat(select): add autoSelect props by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3725>
18
+ * feat(steps): Add a single chain circular node icon slot API by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3732>
19
+ * feat(date-picker): supports line feed display. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3735>
20
+ * feat(exception): Add pc templates, document examples, and dark mode support by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3736>
21
+ * feat(guide): [guide] whether to display the mask layer when adding the guide component by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3743>
22
+ * feat: [tree-menu] change the demo data of tree menu by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3752>
23
+ * feat(grid): add valid-config add highlightError by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3751>
24
+ * feat(tree-menu): [tree-menu] provide tree-menu search events by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3729>
25
+ * feat(color-select-panel): linear-gradient by @GaoNeng-wWw in <https://github.com/opentiny/tiny-vue/pull/3738>
26
+ * feat(color-select): `color-mode` prop support by @GaoNeng-wWw in <https://github.com/opentiny/tiny-vue/pull/3763>
27
+ * feat(grid): add mouse hover show align lines by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3768>
28
+ * feat: add space component by @ynnnny in <https://github.com/opentiny/tiny-vue/pull/3783>
29
+ * feat(query-builder): add attribute values and add demo by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3784>
30
+ * feat(ip-address): modify Saas theme style by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3790>
31
+ * feat: add the hideSaas attribute to hide the demo and related properties by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3788>
32
+ * feat: Added the GitHub Pages SaaS build script by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3797>
33
+ * feat: update 3.27.0 version by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3798>
34
+ * feat(menus): add meta information for 'Space' menu item with stable version 3.27.0 by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3803>
27
35
 
28
36
  ### Bug Fixes 🐛
29
37
 
30
- - fix(dropdown):Fix the drop-down component menu spacing. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3586
31
- - fix: adapt mf list view when has not grid column by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3593
32
- - fix(select):Fix default multi-select tags color by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3591
33
- - fix(calendar-view):fix calendar view height setting does not take effect by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3592
34
- - fix: hot and new icon fill cannot transparent transmission by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3599
35
- - fix(modal): [modal] modify the messageClosable in Vue2 version to not display the close button by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3600
36
- - fix: internationalization-related modifications, temporarily hide the entry point by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3597
37
- - fix(tabs): Optimize multi terminal caching logic, add add add delete operations to trigger sub component destruction and reconstruction logic by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3601
38
- - fix(grid): Modify the spacing between the sorting buttons in saas mode. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3603
39
- - fix(grid): grid promise validate return value back to undefined by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3616
40
- - fix(grid,pager,cascader):Fixed the icon reference issue in the SaaS mode table. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3618
41
- - fix(grid): optimize render count by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3613
42
- - fix(dropdown): modify the responsive adaptation of the drop-down arrow in the mobile first template by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3614
43
- - fix(chart): fix chart bug, resolve memory leakage issues by @Davont in https://github.com/opentiny/tiny-vue/pull/3610
44
- - fix(input):fix textarea height in saas model by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3608
45
- - fix(site): add MCP tools for query examples and jump examples by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3623
46
- - fix(PropType): fix import of PropType by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3620
47
- - fix(input): add pre=true for tiny-tooltip by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3625
48
- - fix(input):fix textarea height in Multiple line placeholders by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3624
49
- - fix(grid): fix index not update at drag row by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3622
50
- - fix(dropdown):Modifying the Default font size by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3629
51
- - fix(button):fix button padding in saas model by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3630
52
- - fix(lang): fix to be compatible with aui by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3628
53
- - fix(pager): fix pager init current page error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3640
54
- - fix(user): an error event is triggered if the user does not exist by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3641
55
- - fix(grid): grid can not validate on active by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3643
56
- - fix(grid): fix scroll bar error after load data by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3644
57
- - fix(file-upload):Unified button text document by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3647
58
- - fix(tag): restores the default color of the tag to blue by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3646
59
- - fix(popover): increase the priority of arrow class names by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3645
60
- - fix(grid): fix target error in shadow dom by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3651
61
- - fix(tabs): Fix the problem sheet and ensure that the dividing line is fully supported by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3663
62
- - fix(grid): fix operation buttons render error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3660
63
- - fix(tabs): Fix component font size to adapt to new specifications by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3662
64
- - fix(file-upload): Fix the issue of accept failure when using EDM by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3661
65
- - fix(popeditor): fix issue #2652 by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3656
66
- - fix(fluent-editor): Fix click issues with rich text components in Edge browser by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3655
67
- - fix(grid): fix user passed scrollY value is null by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3658
68
- - fix(modal): fix issue #3450 by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3650
69
- - fix(tabs): Fix the issue where multiple clicks on mobile-first tabs do not take effect by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3669
70
- - fix(pop-upload): Fix uploadTip slot error issue by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3668
71
- - fix(select): Add tooltip prompts by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3671
72
- - fix(grid): fix use title function text can not overflow ellipsis by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3670
73
- - fix(loading): Fix e2e error issue by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3674
74
- - fix(grid): fix rowspan border can not visible by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3673
75
- - fix(amount): Fix the issue of inconsistent currency input and display in the table by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3672
76
- - fix(grid): fix has footer last row border duplicate by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3678
77
- - fix(select): Fix the issue with the option two-layer prompts by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3680
78
- - fix(popeditor): fix popeditor's e2e by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3683
79
- - fix(vue): batch update version to 3.26 by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3684
80
- - fix(e2e): fix amount's e2e test by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3685
81
- - fix(build): fix themeSaas build errors, add LESS compilation and error handling, update gulp tasks to enhance readability and debug information by @zzcr in https://github.com/opentiny/tiny-vue/pull/3687
82
-
83
- ### Other Changes
84
-
85
- - refactor(site): use next-sdk and next-remoter to intelligentize the official website. by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3657
38
+ * fix(tag): Fix the issue where the tag on the mobile-first can be selected but does not take effect by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3688>
39
+ * fix(site): fix the package version number for tiny-remoter by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3692>
40
+ * fix(notify): Fix the vertical offset issue of the notify component by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3689>
41
+ * fix(tabs): Fix the issue of using both overflow-title and with-close simultaneously by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3709>
42
+ * fix(grid): fix filterStore.searchValue is not reactive by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3700>
43
+ * fix(select): repairing searchable, when frequent setSelected interrupts the search by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3699>
44
+ * fix(tabs): Optimize the rendering logic of multi terminal tabs by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3707>
45
+ * fix(slider): Fix the issue of horizontal and vertical mode conversion by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3696>
46
+ * fix(calendar-view): Multiple tasks display abnormally in the same time period by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3697>
47
+ * fix(form-item): The mobile disabled status is not obvious in saas mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3698>
48
+ * fix: fix the issue of missing the tiny prefix in CSS after packaging by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3695>
49
+ * fix: resolve the issue of button size not expanding with text by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3717>
50
+ * fix(tabs): Supplement SaaS modifications by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3726>
51
+ * fix: resolve the issue of token style in the example by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3730>
52
+ * fix(grid): fix grid loading-component error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3734>
53
+ * fix(auto-tip): determine boundingValue.content whether it is incoming and the priority of incoming is higher by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3740>
54
+ * fix(input): add debounce for api.resizeTextarea method by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3744>
55
+ * fix(grid): fix body height error after change pager size by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3753>
56
+ * fix(user): fix user for lost autoSelect prop define by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3741>
57
+ * fix: [infinite-scroll] resolve the issue of two InfiniteScroll components reporting errors on the same page by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3742>
58
+ * fix: [tree-menu] fix the issue of icons not being referenced by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3754>
59
+ * fix(vue-popup): fix v-modal animation is not working by @gausszhou in <https://github.com/opentiny/tiny-vue/pull/3701>
60
+ * fix(exception): Add the less file in SaaS mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3760>
61
+ * fix(user): fix padding change lead to shake on hover by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3764>
62
+ * fix(select): only when in the mf template, check the screen's breakpoint by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3766>
63
+ * fix: the error issue where the service cannot obtain information by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3780>
64
+ * fix(picker): add popperOptions props for Picker by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3769>
65
+ * fix(button): in theme-saas package, remove the button's max-width by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3765>
66
+ * fix(grid): gird simple custom config remove tooltip by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3770>
67
+ * fix(file-upload): fix file upload size limit and the vue2 date-panel example by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3777>
68
+ * fix(radio): modify the demo by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3774>
69
+ * fix(dialog-box): add before-close prop and event's doc by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3775>
70
+ * fix(divider): modify the SAAS theme style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3772>
71
+ * fix(radio): change font size by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3781>
72
+ * fix(select): remove displayOnlyContent in slot-reference by @KevinAndrewDong in <https://github.com/opentiny/tiny-vue/pull/3779>
73
+ * fix(drawer): Fixed the problem that the table component in the drawer component cannot be displayed normally in full screen by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3782>
74
+ * fix(badge): modify the saas theme style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3776>
75
+ * fix(dropdown):Manually controlled explicit and implicit compatibility problem by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3785>
76
+ * fix(switch): modify the saas theme style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3773>
77
+ * fix(query-builder): update TinyButton import in RuleGroup component by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3794>
78
+ * fix(dialog-select): [dialog-select] modify e2e test by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3793>
79
+ * fix(input,notify):fix e2e by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3795>
80
+ * fix(drawer): modify the saas style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3792>
81
+ * fix(crop): modify the saas theme style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3791>
82
+ * fix: Fixed an error issue during the release of gitActionsalpha. by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3799>
83
+ * fix(numeric): numeric modelValue type should not include underfined by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3800>
84
+ * fix(load-list): add space after title in load-list.en.md to fix jekyl… by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3804>
86
85
 
87
86
  ## New Contributors
88
87
 
89
- - @liangguanhui0117 made their first contribution in https://github.com/opentiny/tiny-vue/pull/3638
90
-
91
- **Full Changelog**: https://github.com/opentiny/tiny-vue/compare/v3.25.0...v3.26.0
88
+ * @gausszhou made their first contribution in <https://github.com/opentiny/tiny-vue/pull/3701>
89
+ * @ynnnny made their first contribution in <https://github.com/opentiny/tiny-vue/pull/3653>
92
90
 
93
- ## v3.25.0/v2.25.0
91
+ ## v3.26.0/v2.26.0
94
92
 
95
- `2025/07/15`
93
+ `2025/09/15`
96
94
 
97
95
  ## What's Changed
98
96
 
99
97
  ### Exciting New Features 🎉
100
98
 
101
- - feat: add svgs by @kagol in https://github.com/opentiny/tiny-vue/pull/3522
102
- - feat(grid): edit-config add blurOutside by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3521
103
- - feat(calendar-view): [calendar-view]add attributes by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3525
104
- - feat(grid): add expand trigger slot by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3518
105
- - feat(common): use the hotspot function provided by the ArkWeb JS engine to optimize the execution of defineProperties function in the common adaptation layer by @zzcr in https://github.com/opentiny/tiny-vue/pull/3530
106
- - feat(button): [button] add custom-style attribute by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3535
107
- - feat: add new hot svg by @kagol in https://github.com/opentiny/tiny-vue/pull/3562
108
- - feat(grid): add filter root attrs by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3565
109
- - feat(grid): add tree-node button bubbling setting by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3570
99
+ * feat(steps): Add wizard style step bar itemStyle differentiated configuration by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3594>
100
+ * feat(color-picker): refactoring the ColorPicker component style by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3595>
101
+ * feat: modify the resource file loading mode and add postcss plugin configuration. by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3615>
102
+ * feat(site): connect next-sdk and ai dialog box to realize dynamic switching routing function of large models by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3619>
103
+ * feat(grid): saas theme add filter select style by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3626>
104
+ * feat(grid): add cascader full width grid by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3627>
105
+ * feat(button): add a list of theme tokens to the component documentation by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3631>
106
+ * feat(silder-button): add displayed attribute by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3639>
107
+ * feat: Add table configuration slot example usage by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3649>
108
+ * feat(cascader): Add the tooltip function for cascading panels by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3665>
109
+ * feat(search): Add mini search box expansion and retraction hook callback API by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3664>
110
+ * feat(tabs): add header-only by @liangguanhui0117 in <https://github.com/opentiny/tiny-vue/pull/3638>
110
111
 
111
112
  ### Bug Fixes 🐛
112
113
 
113
- - fix(input):Fix the saas theme by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3499
114
- - fix(date-picker):fix timezone format by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3503
115
- - fix(tag): tag remove inline-block by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3506
116
- - fix(modal): add icon status style by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3504
117
- - fix(loading): fix loading occur error when change frequently by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3513
118
- - fix(grid): Limit the size attribute value of the paging component to 'mini' or an empty string to prevent warnings by @zzcr in https://github.com/opentiny/tiny-vue/pull/3516
119
- - fix(anchor): fix anchor roll back issue by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3519
120
- - fix(theme-saas): refresh theme-saas tailwind token by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3523
121
- - fix(grid): fix custom setting style error at mobile-first by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3524
122
- - fix(grid): Fix the table css in saas mode. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3520
123
- - fix(grid): fix bug after refactor by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3527
124
- - fix(file-upload): Fix the issue of uploading components with an empty accept error by @chenxi-20 in https://github.com/opentiny/tiny-vue/pull/3529
125
- - fix(grid): fix grid scroll to bottom error when only set max-height by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3531
126
- - fix(grid): Fix the table css in saas mode by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3532
127
- - fix(grid): fix resize bar cover by header by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3536
128
- - fix(cascader): fix When using slots in cascader-panel, the mf template will error by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3537
129
- - fix(grid): fix drag error when tbody not render by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3538
130
- - fix(grid): fix scroll to bottom header not visible by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3539
131
- - fix(tag): resolve the issue of style deviation when tag components have null values under the SaaS theme by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/3540
132
- - fix(grid): fix data undefined in mobile-first by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3541
133
- - fix(grid): fix tree table children edit revert error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3542
134
- - fix: adapt to tree children use splice to add row by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3543
135
- - fix(examples/sites/demos/apis): 修复 issue #3030 中提到的图表配置项拼写错误 by @Lingchen111 in https://github.com/opentiny/tiny-vue/pull/3547
136
- - fix(carousel): hide touch screen slideshow demo by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/3545
137
- - fix(grid): fix document does not have getAttribute error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3548
138
- - fix(input): fix the problem of one more redraw caused by the immediate parameter by @zzcr in https://github.com/opentiny/tiny-vue/pull/3544
139
- - fix(grid): fix cell click event error on edit mode by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3549
140
- - fix(grid): fix popper edit element blur when set edit-config blurOutside by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3550
141
- - fix(autocomplete,search,base-select,cascader,date-panel, date-range,date-picker,dropdown,input,select,tree): The component under the shadowRoot node event is invalid. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3546
142
- - fix(modal\notify): modifying the Color of the Information Icon in the SaaS File by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3552
143
- - fix(vue-common): [icon]resolves the loading icon after multiple calls to render function nesting levels by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3554
144
- - fix(autocomplete): add title native attributes by @James-9696 in https://github.com/opentiny/tiny-vue/pull/3555
145
- - fix(grid): fix grid header divider error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3558
146
- - fix(tree-menu): adjusting the input box of the tree menu component can clear the symbol position by @wuyiping0628 in https://github.com/opentiny/tiny-vue/pull/3561
147
- - fix(grid): fix dirty flag not clear after refreshData by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3560
148
- - fix: fix login typo by @kagol in https://github.com/opentiny/tiny-vue/pull/3564
149
- - fix(grid): clear input value after click custom extend item by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3563
150
- - fix(pager): fix init pager-size error when not match page-sizes by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3566
151
- - fix(grid): fix right position error when resize multi header grid by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3569
152
- - fix(milestone):fix the milestone color matching logic is in saas mode. by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3568
153
- - fix(auto-tip): fixed the bug that a message is displayed on the page when the element displayed in the tooltip needs to be removed and uninstalled. by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3574
154
- - fix(tag): When the tag is a space, the tag is misplaced in the form scenario by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3572
155
- - fix(grid):fix filter icon size in saas mode by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3576
156
- - fix(input):fix the textarea height in single row by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3573
157
- - fix(theme): fix dark theme in shadow dom by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3579
158
- - fix(grid): add grid radio class name by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3578
159
- - fix(select): update select's e2e test for grid update by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3577
160
- - fix(input):fix single row textarea in saas mode by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3580
161
- - fix(base-select): fix e2e test case error by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/3581
162
- - fix(color-select-panel): 颜色类型选择下拉框样式异常 by @vaebe in https://github.com/opentiny/tiny-vue/pull/3575
163
- - fix(date-picker):date-range should return an empty array when click clear button by @discreted66 in https://github.com/opentiny/tiny-vue/pull/3582
164
- - fix(select): fix select's e2e by @shenjunjian in https://github.com/opentiny/tiny-vue/pull/3584
114
+ * fix(dropdown):Fix the drop-down component menu spacing. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3586>
115
+ * fix: adapt mf list view when has not grid column by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3593>
116
+ * fix(select):Fix default multi-select tags color by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3591>
117
+ * fix(calendar-view):fix calendar view height setting does not take effect by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3592>
118
+ * fix: hot and new icon fill cannot transparent transmission by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3599>
119
+ * fix(modal): [modal] modify the messageClosable in Vue2 version to not display the close button by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3600>
120
+ * fix: internationalization-related modifications, temporarily hide the entry point by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3597>
121
+ * fix(tabs): Optimize multi terminal caching logic, add add add delete operations to trigger sub component destruction and reconstruction logic by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3601>
122
+ * fix(grid): Modify the spacing between the sorting buttons in saas mode. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3603>
123
+ * fix(grid): grid promise validate return value back to undefined by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3616>
124
+ * fix(grid,pager,cascader):Fixed the icon reference issue in the SaaS mode table. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3618>
125
+ * fix(grid): optimize render count by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3613>
126
+ * fix(dropdown): modify the responsive adaptation of the drop-down arrow in the mobile first template by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3614>
127
+ * fix(chart): fix chart bug, resolve memory leakage issues by @Davont in <https://github.com/opentiny/tiny-vue/pull/3610>
128
+ * fix(input):fix textarea height in saas model by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3608>
129
+ * fix(site): add MCP tools for query examples and jump examples by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3623>
130
+ * fix(PropType): fix import of PropType by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3620>
131
+ * fix(input): add pre=true for tiny-tooltip by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3625>
132
+ * fix(input):fix textarea height in Multiple line placeholders by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3624>
133
+ * fix(grid): fix index not update at drag row by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3622>
134
+ * fix(dropdown):Modifying the Default font size by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3629>
135
+ * fix(button):fix button padding in saas model by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3630>
136
+ * fix(lang): fix to be compatible with aui by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3628>
137
+ * fix(pager): fix pager init current page error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3640>
138
+ * fix(user): an error event is triggered if the user does not exist by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3641>
139
+ * fix(grid): grid can not validate on active by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3643>
140
+ * fix(grid): fix scroll bar error after load data by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3644>
141
+ * fix(file-upload):Unified button text document by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3647>
142
+ * fix(tag): restores the default color of the tag to blue by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3646>
143
+ * fix(popover): increase the priority of arrow class names by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3645>
144
+ * fix(grid): fix target error in shadow dom by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3651>
145
+ * fix(tabs): Fix the problem sheet and ensure that the dividing line is fully supported by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3663>
146
+ * fix(grid): fix operation buttons render error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3660>
147
+ * fix(tabs): Fix component font size to adapt to new specifications by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3662>
148
+ * fix(file-upload): Fix the issue of accept failure when using EDM by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3661>
149
+ * fix(popeditor): fix issue #2652 by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3656>
150
+ * fix(fluent-editor): Fix click issues with rich text components in Edge browser by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3655>
151
+ * fix(grid): fix user passed scrollY value is null by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3658>
152
+ * fix(modal): fix issue #3450 by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3650>
153
+ * fix(tabs): Fix the issue where multiple clicks on mobile-first tabs do not take effect by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3669>
154
+ * fix(pop-upload): Fix uploadTip slot error issue by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3668>
155
+ * fix(select): Add tooltip prompts by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3671>
156
+ * fix(grid): fix use title function text can not overflow ellipsis by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3670>
157
+ * fix(loading): Fix e2e error issue by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3674>
158
+ * fix(grid): fix rowspan border can not visible by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3673>
159
+ * fix(amount): Fix the issue of inconsistent currency input and display in the table by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3672>
160
+ * fix(grid): fix has footer last row border duplicate by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3678>
161
+ * fix(select): Fix the issue with the option two-layer prompts by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3680>
162
+ * fix(popeditor): fix popeditor's e2e by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3683>
163
+ * fix(vue): batch update version to 3.26 by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3684>
164
+ * fix(e2e): fix amount's e2e test by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3685>
165
+ * fix(build): fix themeSaas build errors, add LESS compilation and error handling, update gulp tasks to enhance readability and debug information by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3687>
165
166
 
166
167
  ### Other Changes
167
168
 
168
- - refactor: optimize table performance and refactor the table by @zzcr in https://github.com/opentiny/tiny-vue/pull/3514
169
+ * refactor(site): use next-sdk and next-remoter to intelligentize the official website. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3657>
169
170
 
170
171
  ## New Contributors
171
172
 
172
- - @Lingchen111 made their first contribution in https://github.com/opentiny/tiny-vue/pull/3547
173
+ * @liangguanhui0117 made their first contribution in <https://github.com/opentiny/tiny-vue/pull/3638>
173
174
 
174
- ## v3.24.0/v2.24.0
175
+ **Full Changelog**: <https://github.com/opentiny/tiny-vue/compare/v3.25.0...v3.26.0>
176
+
177
+ ## v3.25.0/v2.25.0
175
178
 
176
- `2025/06/12`
179
+ `2025/07/15`
177
180
 
178
181
  ## What's Changed
179
182
 
180
183
  ### Exciting New Features 🎉
181
184
 
182
- - feat(pager): reconstruct the multi-terminal template of the pager component from the vue template by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3422>
183
- - feat(steps): Add style functionality for multi terminal custom step blocks by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3435>
184
- - feat(dialog-select): add support for clear and delete events, update related documents and sample codes by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3437>
185
- - feat(qr-code): Add the necessary attributes to the responsive by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3456>
186
- - feat(common): add support for MCP configuration in component setup by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3469>
187
- - feat(site): add the tiny-robot drawer to the official website. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3467>
188
- - feat(dialog-select): [dialog-select] add attribute lock-scroll by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3489>
189
- - feat(popeditor): [popeditor] add attribute lock-scroll by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3490>
190
- - feat(grid): optimize mcp configuration usage and sample code by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3494>
185
+ * feat: add svgs by @kagol in <https://github.com/opentiny/tiny-vue/pull/3522>
186
+ * feat(grid): edit-config add blurOutside by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3521>
187
+ * feat(calendar-view): [calendar-view]add attributes by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3525>
188
+ * feat(grid): add expand trigger slot by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3518>
189
+ * feat(common): use the hotspot function provided by the ArkWeb JS engine to optimize the execution of defineProperties function in the common adaptation layer by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3530>
190
+ * feat(button): [button] add custom-style attribute by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3535>
191
+ * feat: add new hot svg by @kagol in <https://github.com/opentiny/tiny-vue/pull/3562>
192
+ * feat(grid): add filter root attrs by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3565>
193
+ * feat(grid): add tree-node button bubbling setting by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3570>
191
194
 
192
195
  ### Bug Fixes 🐛
193
196
 
194
- - fix(file-upload): Fix bug in file-upload component where multiple selections are merge-service and uploaded by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3424>
195
- - fix(steps): Modify the multi terminal rendering logic and style of steps by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3441>
196
- - fix(drowdown): add tiny-\* className to drowdown-menu's wrapper dom by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3445>
197
- - fix(select): fix can not set grid rowId in select by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3448>
198
- - fix(tree-menu): change the color of the dark mode icon by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3457>
199
- - fix(tiny-split):The panel split animation is not displayed properly by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3452>
200
- - fix(search): Fix the margin issue of multi terminal mode dropdown type by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3453>
201
- - fix(icon):Fixed the icon color issue in dark mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3460>
202
- - fix(autocomplete): autocomplete component defaults to 100% of the width by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3462>
203
- - fix(tag): theme saas warning token value refresh, tag component style specification refresh by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3463>
204
- - fix(form): fix the textarea style issue under the form by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3468>
205
- - fix(select): fix the malfunction of the select component when automatically pulling down focus by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3464>
206
- - fix(robot): add the role message markdown and upgrade the tiny-robot version by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3471>
207
- - fix(basic-usage): update SSE URL to use HTTPS for secure connection by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3472>
208
- - fix(date-picker):fix the init panel width and month name by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3466>
209
- - fix: the issue of modifying line breaks for display by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3470>
210
- - fix(grid): increase the length of drag and drop lines in the grid and remove empty values when filtering by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3475>
211
- - fix(robot): add examples of Perfecting AI Agents by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3476>
212
- - fix(dialog):fix dialog title line-height by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3477>
213
- - fix(icon):delete the iconPushPinSolid default color by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3479>
214
- - fix(calendar-view):fix the E2E test by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3483>
215
- - fix(robot): optimized the example and added sessions and UI adjustment. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3484>
216
- - fix(robot): add the API tab of the MCP and adjust the display control of the robot. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3485>
217
- - fix(package): update @opentiny/tiny-vue-mcp version to 0.0.1-alpha.1 by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3487>
218
- - fix(robot): message processing of the robot is optimized. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3491>
219
- - fix(select): modify the DOM structure of all options in the select to be consistent with that of the regular options to solve the text alignment issue by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3488>
220
- - fix(grid): add a border to the last row of the grid under the saas theme by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3492>
197
+ * fix(input):Fix the saas theme by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3499>
198
+ * fix(date-picker):fix timezone format by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3503>
199
+ * fix(tag): tag remove inline-block by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3506>
200
+ * fix(modal): add icon status style by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3504>
201
+ * fix(loading): fix loading occur error when change frequently by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3513>
202
+ * fix(grid): Limit the size attribute value of the paging component to 'mini' or an empty string to prevent warnings by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3516>
203
+ * fix(anchor): fix anchor roll back issue by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3519>
204
+ * fix(theme-saas): refresh theme-saas tailwind token by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3523>
205
+ * fix(grid): fix custom setting style error at mobile-first by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3524>
206
+ * fix(grid): Fix the table css in saas mode. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3520>
207
+ * fix(grid): fix bug after refactor by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3527>
208
+ * fix(file-upload): Fix the issue of uploading components with an empty accept error by @chenxi-20 in <https://github.com/opentiny/tiny-vue/pull/3529>
209
+ * fix(grid): fix grid scroll to bottom error when only set max-height by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3531>
210
+ * fix(grid): Fix the table css in saas mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3532>
211
+ * fix(grid): fix resize bar cover by header by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3536>
212
+ * fix(cascader): fix When using slots in cascader-panel, the mf template will error by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3537>
213
+ * fix(grid): fix drag error when tbody not render by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3538>
214
+ * fix(grid): fix scroll to bottom header not visible by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3539>
215
+ * fix(tag): resolve the issue of style deviation when tag components have null values under the SaaS theme by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3540>
216
+ * fix(grid): fix data undefined in mobile-first by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3541>
217
+ * fix(grid): fix tree table children edit revert error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3542>
218
+ * fix: adapt to tree children use splice to add row by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3543>
219
+ * fix(examples/sites/demos/apis): 修复 issue #3030 中提到的图表配置项拼写错误 by @Lingchen111 in <https://github.com/opentiny/tiny-vue/pull/3547>
220
+ * fix(carousel): hide touch screen slideshow demo by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3545>
221
+ * fix(grid): fix document does not have getAttribute error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3548>
222
+ * fix(input): fix the problem of one more redraw caused by the immediate parameter by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3544>
223
+ * fix(grid): fix cell click event error on edit mode by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3549>
224
+ * fix(grid): fix popper edit element blur when set edit-config blurOutside by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3550>
225
+ * fix(autocomplete,search,base-select,cascader,date-panel, date-range,date-picker,dropdown,input,select,tree): The component under the shadowRoot node event is invalid. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3546>
226
+ * fix(modal\notify): modifying the Color of the Information Icon in the SaaS File by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3552>
227
+ * fix(vue-common): [icon]resolves the loading icon after multiple calls to render function nesting levels by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3554>
228
+ * fix(autocomplete): add title native attributes by @James-9696 in <https://github.com/opentiny/tiny-vue/pull/3555>
229
+ * fix(grid): fix grid header divider error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3558>
230
+ * fix(tree-menu): adjusting the input box of the tree menu component can clear the symbol position by @wuyiping0628 in <https://github.com/opentiny/tiny-vue/pull/3561>
231
+ * fix(grid): fix dirty flag not clear after refreshData by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3560>
232
+ * fix: fix login typo by @kagol in <https://github.com/opentiny/tiny-vue/pull/3564>
233
+ * fix(grid): clear input value after click custom extend item by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3563>
234
+ * fix(pager): fix init pager-size error when not match page-sizes by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3566>
235
+ * fix(grid): fix right position error when resize multi header grid by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3569>
236
+ * fix(milestone):fix the milestone color matching logic is in saas mode. by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3568>
237
+ * fix(auto-tip): fixed the bug that a message is displayed on the page when the element displayed in the tooltip needs to be removed and uninstalled. by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3574>
238
+ * fix(tag): When the tag is a space, the tag is misplaced in the form scenario by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3572>
239
+ * fix(grid):fix filter icon size in saas mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3576>
240
+ * fix(input):fix the textarea height in single row by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3573>
241
+ * fix(theme): fix dark theme in shadow dom by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3579>
242
+ * fix(grid): add grid radio class name by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3578>
243
+ * fix(select): update select's e2e test for grid update by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3577>
244
+ * fix(input):fix single row textarea in saas mode by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3580>
245
+ * fix(base-select): fix e2e test case error by @gimmyhehe in <https://github.com/opentiny/tiny-vue/pull/3581>
246
+ * fix(color-select-panel): 颜色类型选择下拉框样式异常 by @vaebe in <https://github.com/opentiny/tiny-vue/pull/3575>
247
+ * fix(date-picker):date-range should return an empty array when click clear button by @discreted66 in <https://github.com/opentiny/tiny-vue/pull/3582>
248
+ * fix(select): fix select's e2e by @shenjunjian in <https://github.com/opentiny/tiny-vue/pull/3584>
249
+
250
+ ### Other Changes
251
+
252
+ * refactor: optimize table performance and refactor the table by @zzcr in <https://github.com/opentiny/tiny-vue/pull/3514>
221
253
 
222
254
  ## New Contributors
223
255
 
224
- - @afkdsghk211331 made their first contribution in <https://github.com/opentiny/tiny-vue/pull/3447>
256
+ * @Lingchen111 made their first contribution in <https://github.com/opentiny/tiny-vue/pull/3547>
package/env/.env.saas CHANGED
@@ -1,6 +1,6 @@
1
1
  # 1、声明一个变量
2
2
  VITE_CONTEXT=/tiny-vue-saas/
3
- VITE_BUILD_TARGET='open'
3
+ VITE_BUILD_TARGET='inner'
4
4
  VITE_TINY_THEME='saas'
5
5
  # 官网应用类型:pc / mobile / mobile-first
6
6
  VITE_APP_MODE='pc'