@next-core/brick-kit 2.104.6 → 2.104.7

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.104.7](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.104.6...@next-core/brick-kit@2.104.7) (2022-02-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * mark lazy useBrick for tpl property merge ([5794719](https://github.com/easyops-cn/next-core/commit/579471913e569856772e24ccdf024519b6680aaa))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.104.6](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.104.5...@next-core/brick-kit@2.104.6) (2022-02-15)
7
18
 
8
19
  **Note:** Version bump only for package @next-core/brick-kit
@@ -10144,7 +10144,9 @@
10144
10144
  // Use an approach like template-literal's quasis:
10145
10145
  // `quasi0${0}quais1${1}quasi2...`
10146
10146
  // Every quasi can be merged with multiple items.
10147
- var computedBaseValue = Array.isArray(baseValue) ? computeRealValue(baseValue, context, true) : [];
10147
+ var computedBaseValue = Array.isArray(baseValue) ? computeRealValue(baseValue, context, true, {
10148
+ $$lazyForUseBrick: true
10149
+ }) : [];
10148
10150
  var quasis = [];
10149
10151
  var size = computedBaseValue.length + 1;
10150
10152