@techui/scifi 0.0.5-alpha.1 → 0.0.6-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/UPDATE.md +42 -0
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/package.json +8 -8
package/UPDATE.md
CHANGED
|
@@ -6,6 +6,25 @@
|
|
|
6
6
|
|
|
7
7
|
## English
|
|
8
8
|
|
|
9
|
+
### Update Notes
|
|
10
|
+
|
|
11
|
+
- The English documentation was translated using translation software or AI alignment, so some terms may be inappropriate or expressions unclear.
|
|
12
|
+
- To date, every TechUI release has synchronously packaged and released all four component libraries. Consequently, the update log may list components no longer present in the current library—this is normal. The current Update documentation pertains to the entire TechUI project, not just the current component library.
|
|
13
|
+
|
|
14
|
+
### v0.0.6 (2025-11-23)
|
|
15
|
+
|
|
16
|
+
- Added a preview.html file to techui/colors for previewing, copying, and matching colors.
|
|
17
|
+
- Iterated on the appearance of the digitalFlip and digitalRolling components.
|
|
18
|
+
- Added a parameter to rollingTabs to differentiate the change trigger method, resolving incorrect transition animations caused by the 'Close All' and 'Close Other' tabs in the workbench.
|
|
19
|
+
- Upgraded techui/icons to 1.0.3, updated the preview.html file for the icon library, and simplified long names in the carbon icon library.
|
|
20
|
+
- Upgraded techui/colors to 1.0.2, added a preview.html file for quick start and viewing preview color schemes.
|
|
21
|
+
- teshui/lessminins upgraded to version 0.0.6, flexCenter changed to centerFlex, and all elements' calls to less mixins flexCenter were replaced with centerFlex.
|
|
22
|
+
- TuiAdaptive component: Due to multiple root containers, it was unable to bind class, style, and other attributes. This issue was fixed by using v-bind="$attrs", and the is-resizing state was corrected.
|
|
23
|
+
- TuiGrid component: The tui-cess-xx-xx class tag was added to tui-grid-item to distinguish the row and column markers of the current container. Custom class names can also be added to the current container for easier use.
|
|
24
|
+
- TuiRollingTable and TuiRollingProgress added the ability to highlight the top three indices with the parameter showRankings. TuiRollingProgress added the hasIndex parameter to disable the display of serial numbers.
|
|
25
|
+
- TuiRolling's indicator display was enhanced; previously, the transparency was too low and it was not very noticeable.
|
|
26
|
+
- Modified tStr.rdm for generating UIDs for all components to the genUid function.
|
|
27
|
+
|
|
9
28
|
### v0.0.5 (2025-11-12 23:00)
|
|
10
29
|
|
|
11
30
|
- Theme iteration updates
|
|
@@ -30,9 +49,11 @@
|
|
|
30
49
|
- Removed fullbox from less mixin, replaced with native inset
|
|
31
50
|
- Upgraded icon library to version 1.0.2
|
|
32
51
|
- Added global transition state to startViewTransition, disabling all element transitions during animation switching
|
|
52
|
+
- Added new digitalFlip component, deeply iterated digitalRolling component
|
|
33
53
|
- Renamed routerGo to routerTransition, added query parameter
|
|
34
54
|
- Modified updateRouteQuery method: default changed from replace to push for route back navigation, can be controlled via parameter to use replace or push, added getRouteQuery method
|
|
35
55
|
- Grid component: added custom cell className
|
|
56
|
+
- Fixed bug where poptip doesn't hide when triggered after sidebar navigation is collapsed
|
|
36
57
|
|
|
37
58
|
### v0.0.4 (2025-10-21)
|
|
38
59
|
|
|
@@ -60,6 +81,25 @@
|
|
|
60
81
|
|
|
61
82
|
## 中文
|
|
62
83
|
|
|
84
|
+
### 更新说明
|
|
85
|
+
|
|
86
|
+
- 英文部分的文档,采用了翻译软件或者AI对齐进行翻译,所以可能存在部分用词不当或者表达模糊的情况。
|
|
87
|
+
- 截止到目前为止,TechUI的每次发布,均会对当前四个组件库进行同步打包发布。并且更新记录中,可能会出现当前组件库中不存在的组件,属于正常现象。因为当前Update文档是针对整个TechUI工程,而非争对当前的组件库。
|
|
88
|
+
|
|
89
|
+
### v0.0.6 (2025-11-23)
|
|
90
|
+
|
|
91
|
+
- techui/colors 添加preview.html文件可以对颜色进行预览复制与匹配
|
|
92
|
+
- digitalFlip,digitalRolling组件进行外观方面的迭代
|
|
93
|
+
- rollingTabs,添加一个参数,区分change触发方式,解决工作台tabs标签'关闭全部'和'关闭其他'时导致的错误转场动画。
|
|
94
|
+
- techui/icons升级为1.0.3,图标库的preview.html更新,carbon图标库中的长名称进行精简。
|
|
95
|
+
- techui/colors升级为1.0.2,新增preview.html文件,用于快速入门和查看预览配色表。
|
|
96
|
+
- teshui/lessminins升级为0.0.6,flexCenter改为centerFlex,批量替换所有元素的调用的less mixins flexCenter为centerFlex;
|
|
97
|
+
- TuiAdaptive组件,因为内部有多个根容器,导致无法绑定class,style等属性,通过v-bind="$attrs"修复此问题,修正is-resizing状态。
|
|
98
|
+
- TuiGrid组件,在tui-grid-item上,添加tui-cess-xx-xx的class标记用于区分当前容器的行列标记,并且可以给当前容器添加自定义Class名,使之更易用。
|
|
99
|
+
- TuiRollingTable,TuiRollingProgress添加突出前三index的功能,参数为showRankings,TuiRollingProgress添加hasIndex参数,可以关闭序号显示
|
|
100
|
+
- TuiRolling的indicator强化显示,此前透明度太低,较为不明显。
|
|
101
|
+
- 修改所有组件生成uid的tStr.rdm为genUid函数。
|
|
102
|
+
|
|
63
103
|
### v0.0.5 (2025-11-12 23:00)
|
|
64
104
|
|
|
65
105
|
- 主题迭代
|
|
@@ -84,9 +124,11 @@
|
|
|
84
124
|
- lessmixin移除fullbox,改为原生inset
|
|
85
125
|
- 图标库升级到1.0.2
|
|
86
126
|
- startViewTransition添加全局过渡状态,切换动画时禁止所有元素过渡动画
|
|
127
|
+
- 新增digitalFlip组件,对digitalRolling组件进行深度迭代
|
|
87
128
|
- routerGo改为routerTransition,添加query参数
|
|
88
129
|
- updateRouteQuery方法,replace默认改为push,可以进行路由回退,可以根据参数控制使用replace或者push,添加getRouteQuery方法
|
|
89
130
|
- grid组件,添加自定义单元格className
|
|
131
|
+
- 修正侧边导航折叠的时候,触发poptip后不隐藏的bug
|
|
90
132
|
|
|
91
133
|
### v0.0.4 (2025-10-21)
|
|
92
134
|
|