@dangl/ava-partial-updater 1.5.2-beta0078 → 1.5.2-beta0082

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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -157,6 +157,12 @@ You can also supply the following input parameters
157
157
  @Output() selectedElementsChanged = new EventEmitter<SelectedElement[]>();
158
158
  ```
159
159
 
160
+ The tree component has an additional public method that can be called when updates to elements should be rendered, such as text changes or the addition and deletion of elements. The method signature is:
161
+
162
+ ```typescript
163
+ public updateTree(elementIds: string[], hasAddedOrRemovedElements?: boolean): void
164
+ ```
165
+
160
166
  ## Invoice Module
161
167
 
162
168
  There is also an `InvoiceDisplayComponent` available that can be used to show invoice objects.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dangl/ava-partial-updater",
3
- "version": "1.5.2-beta0078",
3
+ "version": "1.5.2-beta0082",
4
4
  "description": "A package to apply partial updates to Ava Projects",
5
5
  "dependencies": {
6
6
  "fast-json-patch": "^3.1.1",