@techui/scifi 0.0.4-alpha.1 → 0.0.5-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 CHANGED
@@ -6,11 +6,39 @@
6
6
 
7
7
  ## English
8
8
 
9
+ ### v0.0.5 (2025-11-12 23:00)
10
+
11
+ - Theme iteration updates
12
+ - Adjusted and streamlined color schemes in the theme
13
+ - Added new method `$tc - themeColor` to quickly retrieve definitions from the theme, such as `$tc('common.bg')`
14
+ - It accepts an optional second parameter `computed`, which defaults to `false`. If set to `true`, it returns a reactive object
15
+ - Example usage:
16
+ ```javascript
17
+ const primaryColor = $tc('primary.color', true)
18
+ // To use the reactive value:
19
+ console.log(primaryColor.value)
20
+ ```
21
+ - TuiEchartsMap and TuiEcharts components:
22
+ - Added `ready` parameter
23
+ - Removed `initDelay` parameter
24
+ - Removed `initHold` parameter
25
+ - Refactored internal loading logic to support both manual and automatic control of loading states
26
+ - Iterated ECharts theme
27
+ - All component `inject` calls now include a second fallback parameter set to `null` to prevent warnings
28
+ - Added new TuiIconLogo and TuiSystemLogo components
29
+ - Renamed libs directory, iterated components internally
30
+ - Removed fullbox from less mixin, replaced with native inset
31
+ - Upgraded icon library to version 1.0.2
32
+ - Added global transition state to startViewTransition, disabling all element transitions during animation switching
33
+ - Renamed routerGo to routerTransition, added query parameter
34
+ - 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
+ - Grid component: added custom cell className
36
+
9
37
  ### v0.0.4 (2025-10-21)
10
38
 
11
39
  - Theme and i18n refactored to support dynamic imports for on-demand loading
12
40
  - Added new TuiGrid component
13
- - Global methods mounted on globalProperties (e.g., $tPopover) are now also available via inject('$global')
41
+ - Global methods mounted on globalProperties (e.g., $tPopover) are now also available via inject('$global',null)
14
42
  - Various component iterations and maintenance updates
15
43
 
16
44
  ### v0.0.3 (2025-10-18)
@@ -32,11 +60,39 @@
32
60
 
33
61
  ## 中文
34
62
 
63
+ ### v0.0.5 (2025-11-12 23:00)
64
+
65
+ - 主题迭代
66
+ - 对主题中的配色进行调整和删减
67
+ - 新增`$tc - themeColor`方法,可以快速的从主题中获取定义,如`$tc('common.bg')`。
68
+ - 它可以传入第二个参数`computed`,默认为`flase`,如果为`true`的时候,返回一个响应式对象。
69
+ - 示例:
70
+ ```javascript
71
+ const primaryColor=$tc('primary.color',true)
72
+ // 使用时候
73
+ console.log(primaryColor.value)
74
+ ```
75
+ - TuiEchartsMap、TuiEcharts 组件:
76
+ - 添加 `ready` 参数
77
+ - 移除 `initDelay` 参数
78
+ - 移除 `initHold` 参数
79
+ - 修改内部 loading 的逻辑,确保可以通过手动和自动的方式开启和关闭 loading
80
+ - 迭代echarts主题
81
+ - 所有组件的 `inject` 统一添加第二参数备选参数为 `null`,防止告警
82
+ - 新增 TuiIconLogo, TuiSystemLogo 组件
83
+ - 修改libs目录名称,组件内进行迭代
84
+ - lessmixin移除fullbox,改为原生inset
85
+ - 图标库升级到1.0.2
86
+ - startViewTransition添加全局过渡状态,切换动画时禁止所有元素过渡动画
87
+ - routerGo改为routerTransition,添加query参数
88
+ - updateRouteQuery方法,replace默认改为push,可以进行路由回退,可以根据参数控制使用replace或者push,添加getRouteQuery方法
89
+ - grid组件,添加自定义单元格className
90
+
35
91
  ### v0.0.4 (2025-10-21)
36
92
 
37
93
  - 主题和多语言改为动态导入,支持按需加载
38
94
  - 新增 TuiGrid 组件
39
- - 挂载到 globalProperties 上的全局方法(如 $tPopover)现已添加到 inject('$global') 上
95
+ - 挂载到 globalProperties 上的全局方法(如 $tPopover)现已添加到 inject('$global',null) 上
40
96
  - 其他组件迭代维护
41
97
 
42
98
  ### v0.0.3 (2025-10-18)
@@ -52,4 +108,4 @@
52
108
 
53
109
  ### v0.0.1 (2025-10-02)
54
110
 
55
- - 首次发布
111
+ - 首次发布
package/core/core_bg.wasm CHANGED
Binary file