@pie-lib/plot 2.27.3-next.2 → 2.27.4-next.0

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/esm/package.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "type": "module"
3
- }
@@ -1,185 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`gridDraggable snapshot render with decimals 1`] = `
4
- <mockConstructor
5
- axis="both"
6
- grid={
7
- Array [
8
- 1,
9
- 1,
10
- ]
11
- }
12
- onDrag={[Function]}
13
- onMouseDown={[Function]}
14
- onStart={[Function]}
15
- onStop={[Function]}
16
- >
17
- <Component
18
- domain={
19
- Object {
20
- "max": 1.6,
21
- "min": -1.5,
22
- "step": 0.3,
23
- }
24
- }
25
- graphProps={
26
- Object {
27
- "domain": Object {
28
- "max": 1,
29
- "min": 0,
30
- "step": 1,
31
- },
32
- "getRootNode": [Function],
33
- "range": Object {
34
- "max": 1,
35
- "min": 0,
36
- "step": 1,
37
- },
38
- "scale": Object {
39
- "x": [MockFunction] {
40
- "calls": Array [
41
- Array [
42
- 1,
43
- ],
44
- Array [
45
- 0,
46
- ],
47
- ],
48
- "results": Array [
49
- Object {
50
- "type": "return",
51
- "value": 1,
52
- },
53
- Object {
54
- "type": "return",
55
- "value": 0,
56
- },
57
- ],
58
- },
59
- "y": [MockFunction] {
60
- "calls": Array [
61
- Array [
62
- 1,
63
- ],
64
- Array [
65
- 0,
66
- ],
67
- ],
68
- "results": Array [
69
- Object {
70
- "type": "return",
71
- "value": 1,
72
- },
73
- Object {
74
- "type": "return",
75
- "value": 0,
76
- },
77
- ],
78
- },
79
- },
80
- "size": Object {
81
- "height": 500,
82
- "width": 500,
83
- },
84
- "snap": Object {
85
- "x": [MockFunction],
86
- "y": [MockFunction],
87
- },
88
- }
89
- }
90
- isDragging={false}
91
- range={
92
- Object {
93
- "max": 3,
94
- "min": -2,
95
- "step": 0.2,
96
- }
97
- }
98
- />
99
- </mockConstructor>
100
- `;
101
-
102
- exports[`gridDraggable snapshot reqular 1`] = `
103
- <mockConstructor
104
- axis="both"
105
- grid={
106
- Array [
107
- 1,
108
- 1,
109
- ]
110
- }
111
- onDrag={[Function]}
112
- onMouseDown={[Function]}
113
- onStart={[Function]}
114
- onStop={[Function]}
115
- >
116
- <Component
117
- graphProps={
118
- Object {
119
- "domain": Object {
120
- "max": 1,
121
- "min": 0,
122
- "step": 1,
123
- },
124
- "getRootNode": [Function],
125
- "range": Object {
126
- "max": 1,
127
- "min": 0,
128
- "step": 1,
129
- },
130
- "scale": Object {
131
- "x": [MockFunction] {
132
- "calls": Array [
133
- Array [
134
- 1,
135
- ],
136
- Array [
137
- 0,
138
- ],
139
- ],
140
- "results": Array [
141
- Object {
142
- "type": "return",
143
- "value": 1,
144
- },
145
- Object {
146
- "type": "return",
147
- "value": 0,
148
- },
149
- ],
150
- },
151
- "y": [MockFunction] {
152
- "calls": Array [
153
- Array [
154
- 1,
155
- ],
156
- Array [
157
- 0,
158
- ],
159
- ],
160
- "results": Array [
161
- Object {
162
- "type": "return",
163
- "value": 1,
164
- },
165
- Object {
166
- "type": "return",
167
- "value": 0,
168
- },
169
- ],
170
- },
171
- },
172
- "size": Object {
173
- "height": 500,
174
- "width": 500,
175
- },
176
- "snap": Object {
177
- "x": [MockFunction],
178
- "y": [MockFunction],
179
- },
180
- }
181
- }
182
- isDragging={false}
183
- />
184
- </mockConstructor>
185
- `;
@@ -1,18 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`root snapshot matches 1`] = `
4
- <div>
5
- <div>
6
- <svg
7
- height={480}
8
- width={540}
9
- >
10
- <g
11
- transform="translate(70, 40)"
12
- >
13
- hi
14
- </g>
15
- </svg>
16
- </div>
17
- </div>
18
- `;