taffy-js 0.2.9 → 0.2.11
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 +108 -12
- package/package.json +3 -2
- package/pkg/README.md +108 -12
- package/pkg/package.json +1 -1
- package/pkg/taffy_wasm.d.ts +308 -6
- package/pkg/taffy_wasm.js +543 -12
- package/pkg/taffy_wasm_bg.wasm +0 -0
- package/pkg/taffy_wasm_bg.wasm.d.ts +32 -0
package/pkg/taffy_wasm_bg.wasm
CHANGED
|
Binary file
|
|
@@ -39,8 +39,22 @@ export const style_flexGrow: (a: number) => number;
|
|
|
39
39
|
export const style_flexShrink: (a: number) => number;
|
|
40
40
|
export const style_flexWrap: (a: number) => number;
|
|
41
41
|
export const style_gap: (a: number) => any;
|
|
42
|
+
export const style_gridAutoColumns: (a: number) => any;
|
|
43
|
+
export const style_gridAutoFlow: (a: number) => number;
|
|
44
|
+
export const style_gridAutoRows: (a: number) => any;
|
|
45
|
+
export const style_gridColumn: (a: number) => any;
|
|
46
|
+
export const style_gridRow: (a: number) => any;
|
|
47
|
+
export const style_gridTemplateAreas: (a: number) => any;
|
|
48
|
+
export const style_gridTemplateColumnNames: (a: number) => any;
|
|
49
|
+
export const style_gridTemplateColumns: (a: number) => any;
|
|
50
|
+
export const style_gridTemplateRowNames: (a: number) => any;
|
|
51
|
+
export const style_gridTemplateRows: (a: number) => any;
|
|
42
52
|
export const style_inset: (a: number) => any;
|
|
53
|
+
export const style_itemIsReplaced: (a: number) => number;
|
|
54
|
+
export const style_itemIsTable: (a: number) => number;
|
|
43
55
|
export const style_justifyContent: (a: number) => number;
|
|
56
|
+
export const style_justifyItems: (a: number) => number;
|
|
57
|
+
export const style_justifySelf: (a: number) => number;
|
|
44
58
|
export const style_margin: (a: number) => any;
|
|
45
59
|
export const style_maxSize: (a: number) => any;
|
|
46
60
|
export const style_minSize: (a: number) => any;
|
|
@@ -48,6 +62,7 @@ export const style_new: () => number;
|
|
|
48
62
|
export const style_overflow: (a: number) => any;
|
|
49
63
|
export const style_padding: (a: number) => any;
|
|
50
64
|
export const style_position: (a: number) => number;
|
|
65
|
+
export const style_scrollbarWidth: (a: number) => number;
|
|
51
66
|
export const style_set_alignContent: (a: number, b: any) => void;
|
|
52
67
|
export const style_set_alignItems: (a: number, b: any) => void;
|
|
53
68
|
export const style_set_alignSelf: (a: number, b: any) => void;
|
|
@@ -61,16 +76,33 @@ export const style_set_flexGrow: (a: number, b: number) => void;
|
|
|
61
76
|
export const style_set_flexShrink: (a: number, b: number) => void;
|
|
62
77
|
export const style_set_flexWrap: (a: number, b: number) => void;
|
|
63
78
|
export const style_set_gap: (a: number, b: any) => void;
|
|
79
|
+
export const style_set_gridAutoColumns: (a: number, b: any) => void;
|
|
80
|
+
export const style_set_gridAutoFlow: (a: number, b: number) => void;
|
|
81
|
+
export const style_set_gridAutoRows: (a: number, b: any) => void;
|
|
82
|
+
export const style_set_gridColumn: (a: number, b: any) => void;
|
|
83
|
+
export const style_set_gridRow: (a: number, b: any) => void;
|
|
84
|
+
export const style_set_gridTemplateAreas: (a: number, b: any) => void;
|
|
85
|
+
export const style_set_gridTemplateColumnNames: (a: number, b: any) => void;
|
|
86
|
+
export const style_set_gridTemplateColumns: (a: number, b: any) => void;
|
|
87
|
+
export const style_set_gridTemplateRowNames: (a: number, b: any) => void;
|
|
88
|
+
export const style_set_gridTemplateRows: (a: number, b: any) => void;
|
|
64
89
|
export const style_set_inset: (a: number, b: any) => void;
|
|
90
|
+
export const style_set_itemIsReplaced: (a: number, b: number) => void;
|
|
91
|
+
export const style_set_itemIsTable: (a: number, b: number) => void;
|
|
65
92
|
export const style_set_justifyContent: (a: number, b: any) => void;
|
|
93
|
+
export const style_set_justifyItems: (a: number, b: any) => void;
|
|
94
|
+
export const style_set_justifySelf: (a: number, b: any) => void;
|
|
66
95
|
export const style_set_margin: (a: number, b: any) => void;
|
|
67
96
|
export const style_set_maxSize: (a: number, b: any) => void;
|
|
68
97
|
export const style_set_minSize: (a: number, b: any) => void;
|
|
69
98
|
export const style_set_overflow: (a: number, b: any) => void;
|
|
70
99
|
export const style_set_padding: (a: number, b: any) => void;
|
|
71
100
|
export const style_set_position: (a: number, b: number) => void;
|
|
101
|
+
export const style_set_scrollbarWidth: (a: number, b: number) => void;
|
|
72
102
|
export const style_set_size: (a: number, b: any) => void;
|
|
103
|
+
export const style_set_textAlign: (a: number, b: number) => void;
|
|
73
104
|
export const style_size: (a: number) => any;
|
|
105
|
+
export const style_textAlign: (a: number) => number;
|
|
74
106
|
export const taffyerror_message: (a: number) => [number, number];
|
|
75
107
|
export const taffytree_addChild: (a: number, b: bigint, c: bigint) => [number, number];
|
|
76
108
|
export const taffytree_childCount: (a: number, b: bigint) => number;
|