@dangl/ava-partial-updater 1.5.2-beta0079 → 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.
- package/README.md +6 -0
- 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.
|