ripple 0.2.170 → 0.2.172
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/package.json +2 -2
- package/src/compiler/phases/1-parse/index.js +10 -0
- package/src/compiler/phases/3-transform/client/index.js +47 -18
- package/src/runtime/index-client.js +4 -0
- package/src/runtime/internal/client/bindings.js +89 -0
- package/src/runtime/internal/client/events.js +30 -3
- package/src/runtime/internal/client/render.js +24 -22
- package/tests/client/events.test.ripple +562 -0
- package/tests/client/input-value.test.ripple +1272 -1
- package/types/index.d.ts +8 -0
package/types/index.d.ts
CHANGED
|
@@ -299,3 +299,11 @@ export declare function bindInnerText<V>(tracked: Tracked<V>): (node: HTMLElemen
|
|
|
299
299
|
export declare function bindTextContent<V>(tracked: Tracked<V>): (node: HTMLElement) => void;
|
|
300
300
|
|
|
301
301
|
export declare function bindNode<V>(tracked: Tracked<V>): (node: HTMLElement) => void;
|
|
302
|
+
|
|
303
|
+
export declare function bindGroup<V>(tracked: Tracked<V>): (node: HTMLInputElement) => void;
|
|
304
|
+
|
|
305
|
+
export declare function bindOffsetHeight<V>(tracked: Tracked<V>): (node: HTMLElement) => void;
|
|
306
|
+
|
|
307
|
+
export declare function bindOffsetWidth<V>(tracked: Tracked<V>): (node: HTMLElement) => void;
|
|
308
|
+
|
|
309
|
+
export declare function bindIndeterminate<V>(tracked: Tracked<V>): (node: HTMLInputElement) => void;
|