@next-core/brick-utils 2.39.6 → 2.40.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.
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.40.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-utils@2.39.6...@next-core/brick-utils@2.40.0) (2022-09-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * support to use contract in widgets ([25b3337](https://github.com/easyops-cn/next-core/commit/25b333724f9c45131b209845a7caef3e8597888d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.39.6](https://github.com/easyops-cn/next-core/compare/@next-core/brick-utils@2.39.5...@next-core/brick-utils@2.39.6) (2022-09-06)
7
18
 
8
19
  **Note:** Version bump only for package @next-core/brick-utils
@@ -849,6 +849,7 @@
849
849
  var collection = [];
850
850
  collectionByTpl.set(tpl.name, collection);
851
851
  collectBricksInBrickConfs(tpl.bricks, collection);
852
+ collectBricksInContext(tpl.state, collection);
852
853
  });
853
854
  }
854
855
 
@@ -23088,6 +23089,7 @@
23088
23089
  exports.PrecookVisitor = PrecookVisitor;
23089
23090
  exports.asyncProcessBrick = asyncProcessBrick;
23090
23091
  exports.asyncProcessStoryboard = asyncProcessStoryboard;
23092
+ exports.collectBricksByCustomTemplates = collectBricksByCustomTemplates;
23091
23093
  exports.computeRealRoutePath = computeRealRoutePath;
23092
23094
  exports.convertValueByPrecision = convertValueByPrecision;
23093
23095
  exports.cook = cook;