@player-ui/types 0.0.1-next.13 → 0.0.1-next.16
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/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -181,6 +181,8 @@ interface Template<ValueType = unknown, Key extends string = string> {
|
|
|
181
181
|
* Any reference to _index_ is replaced with the current iteration index.
|
|
182
182
|
*/
|
|
183
183
|
value: ValueType;
|
|
184
|
+
/** should the template be recomputed when data changes */
|
|
185
|
+
dynamic?: boolean;
|
|
184
186
|
/**
|
|
185
187
|
* A property on the parent object to store the new map under.
|
|
186
188
|
* If it already exists, values are appended to the end.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -246,6 +246,9 @@ export interface Template<ValueType = unknown, Key extends string = string> {
|
|
|
246
246
|
*/
|
|
247
247
|
value: ValueType;
|
|
248
248
|
|
|
249
|
+
/** should the template be recomputed when data changes */
|
|
250
|
+
dynamic?: boolean;
|
|
251
|
+
|
|
249
252
|
/**
|
|
250
253
|
* A property on the parent object to store the new map under.
|
|
251
254
|
* If it already exists, values are appended to the end.
|