@pie-lib/graphing 2.15.1-beta.0 → 2.17.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/CHANGELOG.json +1 -1017
- package/CHANGELOG.md +145 -1
- package/lib/axis/arrow.js +115 -0
- package/lib/axis/arrow.js.map +1 -0
- package/lib/axis/axes.js +415 -0
- package/lib/axis/axes.js.map +1 -0
- package/lib/axis/index.js +26 -0
- package/lib/axis/index.js.map +1 -0
- package/lib/bg.js +139 -0
- package/lib/bg.js.map +1 -0
- package/lib/container/actions.js +24 -0
- package/lib/container/actions.js.map +1 -0
- package/lib/container/index.js +163 -0
- package/lib/container/index.js.map +1 -0
- package/lib/container/marks.js +27 -0
- package/lib/container/marks.js.map +1 -0
- package/lib/container/middleware.js +25 -0
- package/lib/container/middleware.js.map +1 -0
- package/lib/container/reducer.js +25 -0
- package/lib/container/reducer.js.map +1 -0
- package/lib/coordinates-label.js +109 -0
- package/lib/coordinates-label.js.map +1 -0
- package/lib/graph-with-controls.js +359 -0
- package/lib/graph-with-controls.js.map +1 -0
- package/lib/graph.js +371 -0
- package/lib/graph.js.map +1 -0
- package/lib/grid-setup.js +462 -0
- package/lib/grid-setup.js.map +1 -0
- package/lib/grid.js +176 -0
- package/lib/grid.js.map +1 -0
- package/lib/index.js +59 -0
- package/lib/index.js.map +1 -0
- package/lib/key-legend.js +246 -0
- package/lib/key-legend.js.map +1 -0
- package/lib/label-svg-icon.js +56 -0
- package/lib/label-svg-icon.js.map +1 -0
- package/lib/labels.js +299 -0
- package/lib/labels.js.map +1 -0
- package/lib/mark-label.js +321 -0
- package/lib/mark-label.js.map +1 -0
- package/lib/shared/index.js +136 -0
- package/lib/toggle-bar.js +336 -0
- package/lib/toggle-bar.js.map +1 -0
- package/lib/tool-menu.js +112 -0
- package/lib/tool-menu.js.map +1 -0
- package/lib/tools/absolute/component.js +35 -0
- package/lib/tools/absolute/component.js.map +1 -0
- package/lib/tools/absolute/index.js +63 -0
- package/lib/tools/absolute/index.js.map +1 -0
- package/lib/tools/circle/bg-circle.js +173 -0
- package/lib/tools/circle/bg-circle.js.map +1 -0
- package/lib/tools/circle/component.js +406 -0
- package/lib/tools/circle/component.js.map +1 -0
- package/lib/tools/circle/index.js +51 -0
- package/lib/tools/circle/index.js.map +1 -0
- package/lib/tools/exponential/component.js +34 -0
- package/lib/tools/exponential/component.js.map +1 -0
- package/lib/tools/exponential/index.js +71 -0
- package/lib/tools/exponential/index.js.map +1 -0
- package/lib/tools/index.js +99 -0
- package/lib/tools/index.js.map +1 -0
- package/lib/tools/line/component.js +103 -0
- package/lib/tools/line/component.js.map +1 -0
- package/lib/tools/line/index.js +16 -0
- package/lib/tools/line/index.js.map +1 -0
- package/lib/tools/parabola/component.js +34 -0
- package/lib/tools/parabola/component.js.map +1 -0
- package/lib/tools/parabola/index.js +63 -0
- package/lib/tools/parabola/index.js.map +1 -0
- package/lib/tools/point/component.js +186 -0
- package/lib/tools/point/component.js.map +1 -0
- package/lib/tools/point/index.js +32 -0
- package/lib/tools/point/index.js.map +1 -0
- package/lib/tools/polygon/component.js +518 -0
- package/lib/tools/polygon/component.js.map +1 -0
- package/lib/tools/polygon/index.js +106 -0
- package/lib/tools/polygon/index.js.map +1 -0
- package/lib/tools/polygon/line.js +157 -0
- package/lib/tools/polygon/line.js.map +1 -0
- package/lib/tools/polygon/polygon.js +165 -0
- package/lib/tools/polygon/polygon.js.map +1 -0
- package/lib/tools/ray/component.js +102 -0
- package/lib/tools/ray/component.js.map +1 -0
- package/lib/tools/ray/index.js +16 -0
- package/lib/tools/ray/index.js.map +1 -0
- package/lib/tools/segment/component.js +75 -0
- package/lib/tools/segment/component.js.map +1 -0
- package/lib/tools/segment/index.js +16 -0
- package/lib/tools/segment/index.js.map +1 -0
- package/lib/tools/shared/arrow-head.js +70 -0
- package/lib/tools/shared/arrow-head.js.map +1 -0
- package/lib/tools/shared/icons/CorrectSVG.js +36 -0
- package/lib/tools/shared/icons/CorrectSVG.js.map +1 -0
- package/lib/tools/shared/icons/IncorrectSVG.js +36 -0
- package/lib/tools/shared/icons/IncorrectSVG.js.map +1 -0
- package/lib/tools/shared/icons/MissingSVG.js +35 -0
- package/lib/tools/shared/icons/MissingSVG.js.map +1 -0
- package/lib/tools/shared/line/index.js +599 -0
- package/lib/tools/shared/line/index.js.map +1 -0
- package/lib/tools/shared/line/line-path.js +151 -0
- package/lib/tools/shared/line/line-path.js.map +1 -0
- package/lib/tools/shared/line/with-root-edge.js +155 -0
- package/lib/tools/shared/line/with-root-edge.js.map +1 -0
- package/lib/tools/shared/point/arrow-point.js +113 -0
- package/lib/tools/shared/point/arrow-point.js.map +1 -0
- package/lib/tools/shared/point/arrow.js +96 -0
- package/lib/tools/shared/point/arrow.js.map +1 -0
- package/lib/tools/shared/point/base-point.js +175 -0
- package/lib/tools/shared/point/base-point.js.map +1 -0
- package/lib/tools/shared/point/index.js +97 -0
- package/lib/tools/shared/point/index.js.map +1 -0
- package/lib/tools/shared/styles.js +58 -0
- package/lib/tools/shared/styles.js.map +1 -0
- package/lib/tools/shared/types.js +23 -0
- package/lib/tools/shared/types.js.map +1 -0
- package/lib/tools/sine/component.js +51 -0
- package/lib/tools/sine/component.js.map +1 -0
- package/lib/tools/sine/index.js +63 -0
- package/lib/tools/sine/index.js.map +1 -0
- package/lib/tools/vector/component.js +88 -0
- package/lib/tools/vector/component.js.map +1 -0
- package/lib/tools/vector/index.js +16 -0
- package/lib/tools/vector/index.js.map +1 -0
- package/lib/undo-redo.js +123 -0
- package/lib/undo-redo.js.map +1 -0
- package/lib/use-debounce.js +32 -0
- package/lib/use-debounce.js.map +1 -0
- package/lib/utils.js +307 -0
- package/lib/utils.js.map +1 -0
- package/package.json +7 -10
- package/src/axis/axes.jsx +1 -1
- package/src/coordinates-label.jsx +1 -1
- package/src/graph-with-controls.jsx +1 -1
- package/src/grid-setup.jsx +1 -1
- package/src/key-legend.jsx +1 -1
- package/src/labels.jsx +1 -1
- package/src/mark-label.jsx +1 -1
- package/src/toggle-bar.jsx +1 -1
- package/src/tools/circle/bg-circle.jsx +1 -1
- package/src/tools/circle/component.jsx +1 -1
- package/src/tools/polygon/line.jsx +1 -1
- package/src/tools/polygon/polygon.jsx +1 -1
- package/src/tools/shared/line/index.jsx +1 -1
- package/src/tools/shared/line/line-path.jsx +1 -1
- package/src/tools/shared/point/index.jsx +1 -1
- package/src/tools/shared/styles.js +1 -1
- package/src/undo-redo.jsx +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -1,1017 +1 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"type": "fix",
|
|
4
|
-
"scope": null,
|
|
5
|
-
"subject": "rm child prepack in favour of root prepack",
|
|
6
|
-
"merge": null,
|
|
7
|
-
"header": "fix: rm child prepack in favour of root prepack",
|
|
8
|
-
"body": null,
|
|
9
|
-
"footer": null,
|
|
10
|
-
"notes": [],
|
|
11
|
-
"hash": "381d8d6485269b641d8d4655148966d2e70803be",
|
|
12
|
-
"gitTags": "",
|
|
13
|
-
"committerDate": "2019-03-15 09:51:11 +0000",
|
|
14
|
-
"isTagged": true,
|
|
15
|
-
"tag": "@pie-lib/graphing@0.1.12"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"type": "chore",
|
|
19
|
-
"scope": null,
|
|
20
|
-
"subject": "get packages to call changelog function on prepack",
|
|
21
|
-
"merge": null,
|
|
22
|
-
"header": "chore: get packages to call changelog function on prepack",
|
|
23
|
-
"body": null,
|
|
24
|
-
"footer": null,
|
|
25
|
-
"notes": [],
|
|
26
|
-
"hash": "8828f01f2d16d29404ba837c1de40d09e7230ec5",
|
|
27
|
-
"gitTags": "",
|
|
28
|
-
"committerDate": "2019-03-14 12:40:05 +0000",
|
|
29
|
-
"isTagged": true,
|
|
30
|
-
"tag": "@pie-lib/graphing@0.1.10"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"type": "chore",
|
|
34
|
-
"scope": null,
|
|
35
|
-
"subject": "call changelog on prepack",
|
|
36
|
-
"merge": null,
|
|
37
|
-
"header": "chore: call changelog on prepack",
|
|
38
|
-
"body": null,
|
|
39
|
-
"footer": null,
|
|
40
|
-
"notes": [],
|
|
41
|
-
"hash": "b672c012de096c55b765a765f758da3fc5df2f90",
|
|
42
|
-
"gitTags": "",
|
|
43
|
-
"committerDate": "2019-03-13 23:00:44 +0000",
|
|
44
|
-
"isTagged": true,
|
|
45
|
-
"tag": "@pie-lib/graphing@0.1.10"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"type": "chore",
|
|
49
|
-
"scope": null,
|
|
50
|
-
"subject": "generate changelog.json instead of markdown",
|
|
51
|
-
"merge": null,
|
|
52
|
-
"header": "chore: generate changelog.json instead of markdown",
|
|
53
|
-
"body": null,
|
|
54
|
-
"footer": null,
|
|
55
|
-
"notes": [],
|
|
56
|
-
"hash": "eaa5019a11f70c53425d55856bd3b940237f8c7d",
|
|
57
|
-
"gitTags": "",
|
|
58
|
-
"committerDate": "2019-03-13 17:24:09 +0000",
|
|
59
|
-
"isTagged": true,
|
|
60
|
-
"tag": "@pie-lib/graphing@0.1.10"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"type": "fix",
|
|
64
|
-
"scope": null,
|
|
65
|
-
"subject": "force version bump",
|
|
66
|
-
"merge": null,
|
|
67
|
-
"header": "fix: force version bump",
|
|
68
|
-
"body": null,
|
|
69
|
-
"footer": null,
|
|
70
|
-
"notes": [],
|
|
71
|
-
"hash": "dd057a52e90133dfb30660b1824760cb9f10a280",
|
|
72
|
-
"gitTags": "",
|
|
73
|
-
"committerDate": "2019-02-17 21:23:35 +0000",
|
|
74
|
-
"isTagged": true,
|
|
75
|
-
"tag": "@pie-lib/graphing@0.1.10"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"type": "fix",
|
|
79
|
-
"scope": null,
|
|
80
|
-
"subject": "fix tests",
|
|
81
|
-
"merge": null,
|
|
82
|
-
"header": "fix: fix tests",
|
|
83
|
-
"body": null,
|
|
84
|
-
"footer": null,
|
|
85
|
-
"notes": [],
|
|
86
|
-
"hash": "1363aa4540f970c8cdd05ef05c1325de973d22e2",
|
|
87
|
-
"gitTags": "",
|
|
88
|
-
"committerDate": "2019-02-16 23:47:25 +0000",
|
|
89
|
-
"isTagged": true,
|
|
90
|
-
"tag": "@pie-lib/graphing@0.1.10"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"type": "feat",
|
|
94
|
-
"scope": null,
|
|
95
|
-
"subject": "new graphing package",
|
|
96
|
-
"merge": null,
|
|
97
|
-
"header": "feat: new graphing package",
|
|
98
|
-
"body": null,
|
|
99
|
-
"footer": null,
|
|
100
|
-
"notes": [],
|
|
101
|
-
"hash": "8782bf89d20c493409282d7786325ca5ecdcdc0b",
|
|
102
|
-
"gitTags": "",
|
|
103
|
-
"committerDate": "2019-01-30 22:14:28 +0000",
|
|
104
|
-
"isTagged": true,
|
|
105
|
-
"tag": "@pie-lib/graphing@0.1.0"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"type": "fix",
|
|
109
|
-
"scope": null,
|
|
110
|
-
"subject": "fix bounded drag calculation",
|
|
111
|
-
"merge": null,
|
|
112
|
-
"header": "fix: fix bounded drag calculation",
|
|
113
|
-
"body": "To get the correct x/y coordinates the drag logic needs a reference to\nthe root <g> node that contains all the elements.",
|
|
114
|
-
"footer": null,
|
|
115
|
-
"notes": [],
|
|
116
|
-
"hash": "08097bd199de32b534ea788d12f528fb5fb7b9ff",
|
|
117
|
-
"gitTags": "",
|
|
118
|
-
"committerDate": "2019-06-12 13:23:25 +0100",
|
|
119
|
-
"isTagged": true,
|
|
120
|
-
"tag": "@pie-lib/graphing@0.2.0"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"type": "feat",
|
|
124
|
-
"scope": null,
|
|
125
|
-
"subject": "graphing updates",
|
|
126
|
-
"merge": null,
|
|
127
|
-
"header": "feat: graphing updates",
|
|
128
|
-
"body": "feat: add label to Point\nfeat: add click through\n\n* draggable refactor\n* line refactor\n* click support",
|
|
129
|
-
"footer": null,
|
|
130
|
-
"notes": [],
|
|
131
|
-
"hash": "f347e4c0449d797b1f108544add0833f7d47d733",
|
|
132
|
-
"gitTags": "",
|
|
133
|
-
"committerDate": "2019-06-10 15:24:14 +0100",
|
|
134
|
-
"isTagged": true,
|
|
135
|
-
"tag": "@pie-lib/graphing@0.2.0"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"type": "feat",
|
|
139
|
-
"scope": null,
|
|
140
|
-
"subject": "Added possibility to plot shapes that include defining points colocated with the defining points of other shapes for point as well.",
|
|
141
|
-
"merge": null,
|
|
142
|
-
"header": "feat: Added possibility to plot shapes that include defining points colocated with the defining points of other shapes for point as well.",
|
|
143
|
-
"body": null,
|
|
144
|
-
"footer": null,
|
|
145
|
-
"notes": [],
|
|
146
|
-
"hash": "32a1501c5964f32314331ff5dc6564bc36a8e215",
|
|
147
|
-
"gitTags": " (origin/fix/graphing-bugs)",
|
|
148
|
-
"committerDate": "2019-06-14 03:09:02 +0300",
|
|
149
|
-
"isTagged": true,
|
|
150
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"type": "feat",
|
|
154
|
-
"scope": null,
|
|
155
|
-
"subject": "Added possibility to plot shapes that include defining points colocated with the defining points of other shapes",
|
|
156
|
-
"merge": null,
|
|
157
|
-
"header": "feat: Added possibility to plot shapes that include defining points colocated with the defining points of other shapes",
|
|
158
|
-
"body": null,
|
|
159
|
-
"footer": null,
|
|
160
|
-
"notes": [],
|
|
161
|
-
"hash": "f616f34c5dd9875a42778ec43a8dbd9a938799aa",
|
|
162
|
-
"gitTags": " (origin/fix/graphing-bugs-2015)",
|
|
163
|
-
"committerDate": "2019-06-14 02:58:57 +0300",
|
|
164
|
-
"isTagged": true,
|
|
165
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"type": "feat",
|
|
169
|
-
"scope": null,
|
|
170
|
-
"subject": "added displayedTools property which determines which tools should appear in tool-menu. If it's not set, all tools from tools array will appear.",
|
|
171
|
-
"merge": null,
|
|
172
|
-
"header": "feat: added displayedTools property which determines which tools should appear in tool-menu. If it's not set, all tools from tools array will appear.",
|
|
173
|
-
"body": null,
|
|
174
|
-
"footer": null,
|
|
175
|
-
"notes": [],
|
|
176
|
-
"hash": "3eec9fbd104fd5a78afa1b24244499dff24a1394",
|
|
177
|
-
"gitTags": "",
|
|
178
|
-
"committerDate": "2019-06-14 01:45:14 +0300",
|
|
179
|
-
"isTagged": true,
|
|
180
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"type": "fix",
|
|
184
|
-
"scope": null,
|
|
185
|
-
"subject": "app was crashing when trying to edit graph labels",
|
|
186
|
-
"merge": null,
|
|
187
|
-
"header": "fix: app was crashing when trying to edit graph labels",
|
|
188
|
-
"body": null,
|
|
189
|
-
"footer": null,
|
|
190
|
-
"notes": [],
|
|
191
|
-
"hash": "9482ff9ec8c21ba15b601ac7d12a44480b76e3f9",
|
|
192
|
-
"gitTags": "",
|
|
193
|
-
"committerDate": "2019-06-14 01:34:16 +0300",
|
|
194
|
-
"isTagged": true,
|
|
195
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"type": "fix",
|
|
199
|
-
"scope": null,
|
|
200
|
-
"subject": "labels not vertically align as expected for numbers greater than 99",
|
|
201
|
-
"merge": null,
|
|
202
|
-
"header": "fix: labels not vertically align as expected for numbers greater than 99",
|
|
203
|
-
"body": null,
|
|
204
|
-
"footer": null,
|
|
205
|
-
"notes": [],
|
|
206
|
-
"hash": "fef214f4d8d58ef11a2305c5a9f47ee26d87e7d4",
|
|
207
|
-
"gitTags": "",
|
|
208
|
-
"committerDate": "2019-06-14 01:12:07 +0300",
|
|
209
|
-
"isTagged": true,
|
|
210
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"type": "fix",
|
|
214
|
-
"scope": null,
|
|
215
|
-
"subject": "backgroundMarks were not displaying anymore proper colors for disabled, correct and incorrect. Circle was crashing.",
|
|
216
|
-
"merge": null,
|
|
217
|
-
"header": "fix: backgroundMarks were not displaying anymore proper colors for disabled, correct and incorrect. Circle was crashing.",
|
|
218
|
-
"body": null,
|
|
219
|
-
"footer": null,
|
|
220
|
-
"notes": [],
|
|
221
|
-
"hash": "05511208637287b4b824e11599f9dab8aa43aeac",
|
|
222
|
-
"gitTags": "",
|
|
223
|
-
"committerDate": "2019-06-14 00:39:18 +0300",
|
|
224
|
-
"isTagged": true,
|
|
225
|
-
"tag": "@pie-lib/graphing@0.3.0"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"type": "feat",
|
|
229
|
-
"scope": null,
|
|
230
|
-
"subject": "update currentTool when tools in toolbar change",
|
|
231
|
-
"merge": null,
|
|
232
|
-
"header": "feat: update currentTool when tools in toolbar change",
|
|
233
|
-
"body": null,
|
|
234
|
-
"footer": null,
|
|
235
|
-
"notes": [],
|
|
236
|
-
"hash": "2e5e1c96756309de8d07f917d8fa4af5571f2659",
|
|
237
|
-
"gitTags": "",
|
|
238
|
-
"committerDate": "2019-06-28 08:54:15 -0400",
|
|
239
|
-
"isTagged": true,
|
|
240
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"type": "feat",
|
|
244
|
-
"scope": null,
|
|
245
|
-
"subject": "add `toolbar` flag to each tool",
|
|
246
|
-
"merge": null,
|
|
247
|
-
"header": "feat: add `toolbar` flag to each tool",
|
|
248
|
-
"body": null,
|
|
249
|
-
"footer": null,
|
|
250
|
-
"notes": [],
|
|
251
|
-
"hash": "c32ec2ccd0017a6ccb4b1e656ca4e9d0f1321aaf",
|
|
252
|
-
"gitTags": "",
|
|
253
|
-
"committerDate": "2019-06-28 11:03:29 +0100",
|
|
254
|
-
"isTagged": true,
|
|
255
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"type": "fix",
|
|
259
|
-
"scope": null,
|
|
260
|
-
"subject": "removed correctnessMarks and displayedTools",
|
|
261
|
-
"merge": null,
|
|
262
|
-
"header": "fix: removed correctnessMarks and displayedTools",
|
|
263
|
-
"body": null,
|
|
264
|
-
"footer": "BREAKING CHANGE: Graph 'tools' expected property has to be an array of objects having this form: { display: bool, Component: tool }",
|
|
265
|
-
"notes": [
|
|
266
|
-
{
|
|
267
|
-
"title": "BREAKING CHANGE",
|
|
268
|
-
"text": "Graph 'tools' expected property has to be an array of objects having this form: { display: bool, Component: tool }"
|
|
269
|
-
}
|
|
270
|
-
],
|
|
271
|
-
"hash": "6043e88322a316c6d1f3e0d4ba827a95337662aa",
|
|
272
|
-
"gitTags": "",
|
|
273
|
-
"committerDate": "2019-06-28 00:00:20 -0400",
|
|
274
|
-
"isTagged": true,
|
|
275
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"type": "feat",
|
|
279
|
-
"scope": null,
|
|
280
|
-
"subject": "Disabled drawing in evaluate mode.",
|
|
281
|
-
"merge": null,
|
|
282
|
-
"header": "feat: Disabled drawing in evaluate mode.",
|
|
283
|
-
"body": null,
|
|
284
|
-
"footer": null,
|
|
285
|
-
"notes": [],
|
|
286
|
-
"hash": "00dd6d7d8a93abb7c378beab58ff2fde15fe24ff",
|
|
287
|
-
"gitTags": "",
|
|
288
|
-
"committerDate": "2019-06-25 19:54:16 -0400",
|
|
289
|
-
"isTagged": true,
|
|
290
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"type": "feat",
|
|
294
|
-
"scope": null,
|
|
295
|
-
"subject": "Use props.currentTool only if props.displayedTools doesn't contain this.state.currentTool no more",
|
|
296
|
-
"merge": null,
|
|
297
|
-
"header": "feat: Use props.currentTool only if props.displayedTools doesn't contain this.state.currentTool no more",
|
|
298
|
-
"body": null,
|
|
299
|
-
"footer": null,
|
|
300
|
-
"notes": [],
|
|
301
|
-
"hash": "a4fd2dfb7fa603b3b7b3978beb50882eb7ae5ad9",
|
|
302
|
-
"gitTags": "",
|
|
303
|
-
"committerDate": "2019-06-25 08:12:00 -0400",
|
|
304
|
-
"isTagged": true,
|
|
305
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"type": "fix",
|
|
309
|
-
"scope": null,
|
|
310
|
-
"subject": "fixed polygon color when is correct",
|
|
311
|
-
"merge": null,
|
|
312
|
-
"header": "fix: fixed polygon color when is correct",
|
|
313
|
-
"body": null,
|
|
314
|
-
"footer": null,
|
|
315
|
-
"notes": [],
|
|
316
|
-
"hash": "d02d8b163e0580bc09c2a9b1cd81ae278f67fc0c",
|
|
317
|
-
"gitTags": "",
|
|
318
|
-
"committerDate": "2019-06-25 07:55:05 -0400",
|
|
319
|
-
"isTagged": true,
|
|
320
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"type": "feat",
|
|
324
|
-
"scope": null,
|
|
325
|
-
"subject": "Added possibility to change currentTool.",
|
|
326
|
-
"merge": null,
|
|
327
|
-
"header": "feat: Added possibility to change currentTool.",
|
|
328
|
-
"body": null,
|
|
329
|
-
"footer": null,
|
|
330
|
-
"notes": [],
|
|
331
|
-
"hash": "a705a29bbfab0ab05e6e286b5d5fb5c8a62e9049",
|
|
332
|
-
"gitTags": "",
|
|
333
|
-
"committerDate": "2019-06-25 07:35:06 -0400",
|
|
334
|
-
"isTagged": true,
|
|
335
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"type": "feat",
|
|
339
|
-
"scope": null,
|
|
340
|
-
"subject": "When in 'evaluate' mode, hide controls.",
|
|
341
|
-
"merge": null,
|
|
342
|
-
"header": "feat: When in 'evaluate' mode, hide controls.",
|
|
343
|
-
"body": null,
|
|
344
|
-
"footer": null,
|
|
345
|
-
"notes": [],
|
|
346
|
-
"hash": "a57da6528c631283472d8f00c88415b24b755be5",
|
|
347
|
-
"gitTags": "",
|
|
348
|
-
"committerDate": "2019-06-19 23:05:26 -0400",
|
|
349
|
-
"isTagged": true,
|
|
350
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"type": "feat",
|
|
354
|
-
"scope": null,
|
|
355
|
-
"subject": "If 'evaluate' mode, don't show control buttons.",
|
|
356
|
-
"merge": null,
|
|
357
|
-
"header": "feat: If 'evaluate' mode, don't show control buttons.",
|
|
358
|
-
"body": null,
|
|
359
|
-
"footer": null,
|
|
360
|
-
"notes": [],
|
|
361
|
-
"hash": "83455398859862fdc228e961d51d16418c555a9a",
|
|
362
|
-
"gitTags": "",
|
|
363
|
-
"committerDate": "2019-06-19 23:02:19 -0400",
|
|
364
|
-
"isTagged": true,
|
|
365
|
-
"tag": "@pie-lib/graphing@1.0.0"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"type": "fix",
|
|
369
|
-
"scope": null,
|
|
370
|
-
"subject": "rm selected from MiniButton",
|
|
371
|
-
"merge": null,
|
|
372
|
-
"header": "fix: rm selected from MiniButton",
|
|
373
|
-
"body": null,
|
|
374
|
-
"footer": null,
|
|
375
|
-
"notes": [],
|
|
376
|
-
"hash": "3079d35bd9240259119ac133b8927834dd7c4ebc",
|
|
377
|
-
"gitTags": " (develop)",
|
|
378
|
-
"committerDate": "2019-07-01 10:27:40 +0100",
|
|
379
|
-
"isTagged": true,
|
|
380
|
-
"tag": "@pie-lib/graphing@1.0.2"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"type": "fix",
|
|
384
|
-
"scope": null,
|
|
385
|
-
"subject": "avoid app crash when tools not defined.",
|
|
386
|
-
"merge": null,
|
|
387
|
-
"header": "fix: avoid app crash when tools not defined.",
|
|
388
|
-
"body": null,
|
|
389
|
-
"footer": null,
|
|
390
|
-
"notes": [],
|
|
391
|
-
"hash": "54915cc682d15415d35872f506b4bc2273672193",
|
|
392
|
-
"gitTags": "",
|
|
393
|
-
"committerDate": "2019-07-02 07:45:01 -0400",
|
|
394
|
-
"isTagged": true,
|
|
395
|
-
"tag": "@pie-lib/graphing@1.0.3"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"type": "chore",
|
|
399
|
-
"scope": "merge",
|
|
400
|
-
"subject": "merged master into this branch",
|
|
401
|
-
"merge": null,
|
|
402
|
-
"header": "chore(merge): merged master into this branch",
|
|
403
|
-
"body": null,
|
|
404
|
-
"footer": null,
|
|
405
|
-
"notes": [],
|
|
406
|
-
"hash": "e7758d577c82c0f39a5bf44556792517cd1ea6b0",
|
|
407
|
-
"gitTags": "",
|
|
408
|
-
"committerDate": "2019-07-02 11:29:52 -0400",
|
|
409
|
-
"isTagged": true,
|
|
410
|
-
"tag": "@pie-lib/graphing@1.0.4"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"type": "chore",
|
|
414
|
-
"scope": null,
|
|
415
|
-
"subject": "Updated pie-lib/graphing by adding pie-lib/graphing-utils as a dependency and remove duplicated utils file.",
|
|
416
|
-
"merge": null,
|
|
417
|
-
"header": "chore: Updated pie-lib/graphing by adding pie-lib/graphing-utils as a dependency and remove duplicated utils file.",
|
|
418
|
-
"body": null,
|
|
419
|
-
"footer": null,
|
|
420
|
-
"notes": [],
|
|
421
|
-
"hash": "b788cc7bdedfef7446cf00f3c43934b373ee4478",
|
|
422
|
-
"gitTags": " (origin/chore/use-graphing-utils-in-graphing)",
|
|
423
|
-
"committerDate": "2019-07-04 00:12:44 -0400",
|
|
424
|
-
"isTagged": true,
|
|
425
|
-
"tag": "@pie-lib/graphing@1.1.0"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"type": "feat",
|
|
429
|
-
"scope": null,
|
|
430
|
-
"subject": "Added hideLabel property in order to toggle the Label button from the toolbar.",
|
|
431
|
-
"merge": null,
|
|
432
|
-
"header": "feat: Added hideLabel property in order to toggle the Label button from the toolbar.",
|
|
433
|
-
"body": null,
|
|
434
|
-
"footer": null,
|
|
435
|
-
"notes": [],
|
|
436
|
-
"hash": "448c6d8b7444c302283ae478a483660a6c80dc54",
|
|
437
|
-
"gitTags": " (origin/fix/graphing-toggle-label)",
|
|
438
|
-
"committerDate": "2019-07-03 22:37:19 -0400",
|
|
439
|
-
"isTagged": true,
|
|
440
|
-
"tag": "@pie-lib/graphing@1.1.0"
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"type": "chore",
|
|
444
|
-
"scope": null,
|
|
445
|
-
"subject": "Updated pie-lib/graphing by adding pie-lib/graphing-utils as a dependency and remove duplicated utils file.",
|
|
446
|
-
"merge": null,
|
|
447
|
-
"header": "chore: Updated pie-lib/graphing by adding pie-lib/graphing-utils as a dependency and remove duplicated utils file.",
|
|
448
|
-
"body": null,
|
|
449
|
-
"footer": null,
|
|
450
|
-
"notes": [],
|
|
451
|
-
"hash": "b788cc7bdedfef7446cf00f3c43934b373ee4478",
|
|
452
|
-
"gitTags": "",
|
|
453
|
-
"committerDate": "2019-07-04 00:12:44 -0400",
|
|
454
|
-
"isTagged": true,
|
|
455
|
-
"tag": "@pie-lib/graphing@1.1.0"
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"type": "feat",
|
|
459
|
-
"scope": null,
|
|
460
|
-
"subject": "Added hideLabel property in order to toggle the Label button from the toolbar.",
|
|
461
|
-
"merge": null,
|
|
462
|
-
"header": "feat: Added hideLabel property in order to toggle the Label button from the toolbar.",
|
|
463
|
-
"body": null,
|
|
464
|
-
"footer": null,
|
|
465
|
-
"notes": [],
|
|
466
|
-
"hash": "448c6d8b7444c302283ae478a483660a6c80dc54",
|
|
467
|
-
"gitTags": "",
|
|
468
|
-
"committerDate": "2019-07-03 22:37:19 -0400",
|
|
469
|
-
"isTagged": true,
|
|
470
|
-
"tag": "@pie-lib/graphing@1.1.0"
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"type": "chore",
|
|
474
|
-
"scope": "merge",
|
|
475
|
-
"subject": "merged develop into master",
|
|
476
|
-
"merge": null,
|
|
477
|
-
"header": "chore(merge): merged develop into master",
|
|
478
|
-
"body": null,
|
|
479
|
-
"footer": null,
|
|
480
|
-
"notes": [],
|
|
481
|
-
"hash": "a508149b130a63b0d5b346431af2bda5fc4fc9b7",
|
|
482
|
-
"gitTags": "",
|
|
483
|
-
"committerDate": "2019-07-05 22:02:06 -0400",
|
|
484
|
-
"isTagged": true,
|
|
485
|
-
"tag": "@pie-lib/graphing@1.1.1"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"type": "feat",
|
|
489
|
-
"scope": null,
|
|
490
|
-
"subject": "Axis labels should render markup, so HTML tags should be shown. Make the toolbar to fit inside the graph box.",
|
|
491
|
-
"merge": null,
|
|
492
|
-
"header": "feat: Axis labels should render markup, so HTML tags should be shown. Make the toolbar to fit inside the graph box.",
|
|
493
|
-
"body": null,
|
|
494
|
-
"footer": null,
|
|
495
|
-
"notes": [],
|
|
496
|
-
"hash": "c187aa43f98cbaf23854961f62b8dac5cd3a03bf",
|
|
497
|
-
"gitTags": " (origin/andreea/ch2441/graphing-interaction-issues)",
|
|
498
|
-
"committerDate": "2019-07-08 23:32:10 +0300",
|
|
499
|
-
"isTagged": true,
|
|
500
|
-
"tag": "@pie-lib/graphing@1.2.0"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"type": "fix",
|
|
504
|
-
"scope": "graphing",
|
|
505
|
-
"subject": "Graphing: Origin should be labeled.",
|
|
506
|
-
"merge": null,
|
|
507
|
-
"header": "fix(graphing): Graphing: Origin should be labeled.",
|
|
508
|
-
"body": null,
|
|
509
|
-
"footer": null,
|
|
510
|
-
"notes": [],
|
|
511
|
-
"hash": "9045d3467e2a7d751112ef3593742275cd82483c",
|
|
512
|
-
"gitTags": "",
|
|
513
|
-
"committerDate": "2019-10-02 10:38:14 +0300",
|
|
514
|
-
"isTagged": true,
|
|
515
|
-
"tag": "@pie-lib/graphing@1.2.5"
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"type": "fix",
|
|
519
|
-
"scope": null,
|
|
520
|
-
"subject": "ch3738 - support html in axis label",
|
|
521
|
-
"merge": null,
|
|
522
|
-
"header": "fix: ch3738 - support html in axis label",
|
|
523
|
-
"body": null,
|
|
524
|
-
"footer": null,
|
|
525
|
-
"notes": [],
|
|
526
|
-
"hash": "82bfca132c3524b7f4732cb6f382729f650ac9c9",
|
|
527
|
-
"gitTags": "",
|
|
528
|
-
"committerDate": "2019-11-19 19:10:08 +0000",
|
|
529
|
-
"isTagged": true,
|
|
530
|
-
"tag": "@pie-lib/graphing@1.2.6"
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
"type": "fix",
|
|
534
|
-
"scope": null,
|
|
535
|
-
"subject": "5325: Graphing: Axis labels overlapping numeric labels",
|
|
536
|
-
"merge": null,
|
|
537
|
-
"header": "fix: 5325: Graphing: Axis labels overlapping numeric labels",
|
|
538
|
-
"body": null,
|
|
539
|
-
"footer": null,
|
|
540
|
-
"notes": [],
|
|
541
|
-
"hash": "678c61ada909fdd45074b7b5e70c33d798d2dda7",
|
|
542
|
-
"gitTags": "",
|
|
543
|
-
"committerDate": "2020-02-18 10:53:28 +0200",
|
|
544
|
-
"isTagged": true,
|
|
545
|
-
"tag": "@pie-lib/graphing@1.2.8"
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"type": "fix",
|
|
549
|
-
"scope": null,
|
|
550
|
-
"subject": "4044: A non-ASCII character in a Graphing domain label is represented by HTML-style markup.",
|
|
551
|
-
"merge": null,
|
|
552
|
-
"header": "fix: 4044: A non-ASCII character in a Graphing domain label is represented by HTML-style markup.",
|
|
553
|
-
"body": null,
|
|
554
|
-
"footer": null,
|
|
555
|
-
"notes": [],
|
|
556
|
-
"hash": "0493922c09b8b35423673c353b125962d499c270",
|
|
557
|
-
"gitTags": "",
|
|
558
|
-
"committerDate": "2020-02-18 09:46:15 +0200",
|
|
559
|
-
"isTagged": true,
|
|
560
|
-
"tag": "@pie-lib/graphing@1.2.8"
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"type": "fix",
|
|
564
|
-
"scope": null,
|
|
565
|
-
"subject": "ch5349, ch5736 & ch4155:",
|
|
566
|
-
"merge": null,
|
|
567
|
-
"header": "fix: ch5349, ch5736 & ch4155:",
|
|
568
|
-
"body": "- 5349: For Graphing items, move the origin label\n- 5736: In Graphing, the horizontal alignment of multi-digit numeric labels for the x-axis is off\n- 4155: Graphing item that wasn't supposed to have an x-axis or a y-axis still has them.",
|
|
569
|
-
"footer": null,
|
|
570
|
-
"notes": [],
|
|
571
|
-
"hash": "f0da1b7b38865f6e9b7ef040dba7375212509d7d",
|
|
572
|
-
"gitTags": " (origin/andreea/ch4155/graphing-item-that-wasn-t-supposed-to-have)",
|
|
573
|
-
"committerDate": "2020-02-19 15:31:01 +0200",
|
|
574
|
-
"isTagged": true,
|
|
575
|
-
"tag": "@pie-lib/graphing@1.2.9"
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"type": "fix",
|
|
579
|
-
"scope": null,
|
|
580
|
-
"subject": "4156: On Graphing items that provide the Label tool, it cannot be used to label points that are used to define other plot objects.",
|
|
581
|
-
"merge": null,
|
|
582
|
-
"header": "fix: 4156: On Graphing items that provide the Label tool, it cannot be used to label points that are used to define other plot objects.",
|
|
583
|
-
"body": null,
|
|
584
|
-
"footer": null,
|
|
585
|
-
"notes": [],
|
|
586
|
-
"hash": "dc19bdb94990bc5a63e07803b04ecd652301380c",
|
|
587
|
-
"gitTags": "",
|
|
588
|
-
"committerDate": "2020-03-13 17:18:51 +0200",
|
|
589
|
-
"isTagged": true,
|
|
590
|
-
"tag": "@pie-lib/graphing@1.2.11"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"type": "fix",
|
|
594
|
-
"scope": null,
|
|
595
|
-
"subject": "4136: Parabola graphing is amiss",
|
|
596
|
-
"merge": null,
|
|
597
|
-
"header": "fix: 4136: Parabola graphing is amiss",
|
|
598
|
-
"body": null,
|
|
599
|
-
"footer": null,
|
|
600
|
-
"notes": [],
|
|
601
|
-
"hash": "f915685ce9103b877928385f49318688c8a60d26",
|
|
602
|
-
"gitTags": " (origin/andreea/ch4136/parabola-graphing-is-amiss)",
|
|
603
|
-
"committerDate": "2020-03-09 12:16:32 +0200",
|
|
604
|
-
"isTagged": true,
|
|
605
|
-
"tag": "@pie-lib/graphing@1.2.11"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
"type": "fix",
|
|
609
|
-
"scope": null,
|
|
610
|
-
"subject": "bad imports accessing lib",
|
|
611
|
-
"merge": null,
|
|
612
|
-
"header": "fix: bad imports accessing lib",
|
|
613
|
-
"body": null,
|
|
614
|
-
"footer": null,
|
|
615
|
-
"notes": [],
|
|
616
|
-
"hash": "518decc471302feeb20e5fc6c6eb460596dc41d3",
|
|
617
|
-
"gitTags": "",
|
|
618
|
-
"committerDate": "2020-03-30 13:29:08 +0100",
|
|
619
|
-
"isTagged": true,
|
|
620
|
-
"tag": "@pie-lib/graphing@1.2.12"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"type": "fix",
|
|
624
|
-
"scope": null,
|
|
625
|
-
"subject": "correct bad import from a 'lib' dir",
|
|
626
|
-
"merge": null,
|
|
627
|
-
"header": "fix: correct bad import from a 'lib' dir",
|
|
628
|
-
"body": null,
|
|
629
|
-
"footer": null,
|
|
630
|
-
"notes": [],
|
|
631
|
-
"hash": "e0adbbe5b8dc630896c48aca7e412b84d7441c75",
|
|
632
|
-
"gitTags": "",
|
|
633
|
-
"committerDate": "2020-03-30 13:12:58 +0100",
|
|
634
|
-
"isTagged": true,
|
|
635
|
-
"tag": "@pie-lib/graphing@1.2.12"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"type": "fix",
|
|
639
|
-
"scope": null,
|
|
640
|
-
"subject": "add module prop to package.json",
|
|
641
|
-
"merge": null,
|
|
642
|
-
"header": "fix: add module prop to package.json",
|
|
643
|
-
"body": null,
|
|
644
|
-
"footer": null,
|
|
645
|
-
"notes": [],
|
|
646
|
-
"hash": "40fb30507037e2a8cd29798f4b873624a2923548",
|
|
647
|
-
"gitTags": "",
|
|
648
|
-
"committerDate": "2020-03-30 13:01:41 +0100",
|
|
649
|
-
"isTagged": true,
|
|
650
|
-
"tag": "@pie-lib/graphing@1.2.12"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"type": "fix",
|
|
654
|
-
"scope": null,
|
|
655
|
-
"subject": "correct export syntax",
|
|
656
|
-
"merge": null,
|
|
657
|
-
"header": "fix: correct export syntax",
|
|
658
|
-
"body": null,
|
|
659
|
-
"footer": null,
|
|
660
|
-
"notes": [],
|
|
661
|
-
"hash": "32d1fc228d92b7d312a7bba73d775e90c78b535a",
|
|
662
|
-
"gitTags": "",
|
|
663
|
-
"committerDate": "2020-03-30 22:07:47 +0100",
|
|
664
|
-
"isTagged": true,
|
|
665
|
-
"tag": "@pie-lib/graphing@1.2.13"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"type": "fix",
|
|
669
|
-
"scope": null,
|
|
670
|
-
"subject": "correct export syntax",
|
|
671
|
-
"merge": null,
|
|
672
|
-
"header": "fix: correct export syntax",
|
|
673
|
-
"body": null,
|
|
674
|
-
"footer": null,
|
|
675
|
-
"notes": [],
|
|
676
|
-
"hash": "db7fcc0fa1bddf9fc2d304978941db04001ec0ab",
|
|
677
|
-
"gitTags": "",
|
|
678
|
-
"committerDate": "2020-03-30 22:30:10 +0100",
|
|
679
|
-
"isTagged": true,
|
|
680
|
-
"tag": "@pie-lib/graphing@1.2.14"
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"type": "fix",
|
|
684
|
-
"scope": null,
|
|
685
|
-
"subject": "bad exports",
|
|
686
|
-
"merge": null,
|
|
687
|
-
"header": "fix: bad exports",
|
|
688
|
-
"body": null,
|
|
689
|
-
"footer": null,
|
|
690
|
-
"notes": [],
|
|
691
|
-
"hash": "b74730b386e48112391ad6cdcc2a9d69ae74fc61",
|
|
692
|
-
"gitTags": "",
|
|
693
|
-
"committerDate": "2020-03-30 23:48:11 +0100",
|
|
694
|
-
"isTagged": true,
|
|
695
|
-
"tag": "@pie-lib/graphing@1.2.17"
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"type": "fix",
|
|
699
|
-
"scope": null,
|
|
700
|
-
"subject": "Graphing issues and inconsistencies PD-123",
|
|
701
|
-
"merge": null,
|
|
702
|
-
"header": "fix: Graphing issues and inconsistencies PD-123",
|
|
703
|
-
"body": null,
|
|
704
|
-
"footer": "BREAKING CHANGE: tools, currentTool, defaultTool and hideLabel should not be used as params anymore, instead, send only toolbarTools, which is an array of strings, where each string should be a valid tool type. eg. ['point', 'line', 'label']",
|
|
705
|
-
"notes": [
|
|
706
|
-
{
|
|
707
|
-
"title": "BREAKING CHANGE",
|
|
708
|
-
"text": "tools, currentTool, defaultTool and hideLabel should not be used as params anymore, instead, send only toolbarTools, which is an array of strings, where each string should be a valid tool type. eg. ['point', 'line', 'label']"
|
|
709
|
-
}
|
|
710
|
-
],
|
|
711
|
-
"hash": "291b0539884eaeafbd48987e595ffd267869a142",
|
|
712
|
-
"gitTags": "",
|
|
713
|
-
"committerDate": "2020-05-12 13:38:27 +0300",
|
|
714
|
-
"isTagged": true,
|
|
715
|
-
"tag": "@pie-lib/graphing@2.0.0"
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"type": "feat",
|
|
719
|
-
"scope": "graphing",
|
|
720
|
-
"subject": "color theme support added",
|
|
721
|
-
"merge": null,
|
|
722
|
-
"header": "feat(graphing): color theme support added",
|
|
723
|
-
"body": null,
|
|
724
|
-
"footer": null,
|
|
725
|
-
"notes": [],
|
|
726
|
-
"hash": "489711a3bfb1704790290bd3097af4eac85d286e",
|
|
727
|
-
"gitTags": "",
|
|
728
|
-
"committerDate": "2020-09-30 16:17:28 +0300",
|
|
729
|
-
"isTagged": true,
|
|
730
|
-
"tag": "@pie-lib/graphing@2.1.0"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"type": "feat",
|
|
734
|
-
"scope": "graphing",
|
|
735
|
-
"subject": "finalize color theme support",
|
|
736
|
-
"merge": null,
|
|
737
|
-
"header": "feat(graphing): finalize color theme support",
|
|
738
|
-
"body": null,
|
|
739
|
-
"footer": null,
|
|
740
|
-
"notes": [],
|
|
741
|
-
"hash": "a9144e7558f99ceac1b32ae3e2be561616365ad8",
|
|
742
|
-
"gitTags": "",
|
|
743
|
-
"committerDate": "2020-10-12 16:08:20 +0300",
|
|
744
|
-
"isTagged": true,
|
|
745
|
-
"tag": "@pie-lib/graphing@2.2.0"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"type": "fix",
|
|
749
|
-
"scope": "graphing",
|
|
750
|
-
"subject": "reset markups on pushing reset",
|
|
751
|
-
"merge": null,
|
|
752
|
-
"header": "fix(graphing): reset markups on pushing reset",
|
|
753
|
-
"body": null,
|
|
754
|
-
"footer": null,
|
|
755
|
-
"notes": [],
|
|
756
|
-
"hash": "3a10924518947acdadd30e81abc3d9b57a5bf018",
|
|
757
|
-
"gitTags": " (origin/fix/PD-789-graphing-reset-button)",
|
|
758
|
-
"committerDate": "2021-02-12 12:50:27 +0200",
|
|
759
|
-
"isTagged": true,
|
|
760
|
-
"tag": "@pie-lib/graphing@2.2.13"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"type": "fix",
|
|
764
|
-
"scope": "graphing",
|
|
765
|
-
"subject": "in OT buttons and tool labels are too small, override fontSize of 0.8125rem and fontSize of 0.8125rem PD-24",
|
|
766
|
-
"merge": null,
|
|
767
|
-
"header": "fix(graphing): in OT buttons and tool labels are too small, override fontSize of 0.8125rem and fontSize of 0.8125rem PD-24",
|
|
768
|
-
"body": null,
|
|
769
|
-
"footer": null,
|
|
770
|
-
"notes": [],
|
|
771
|
-
"hash": "4f589521386006cd0bdba32dbfade16cc57be067",
|
|
772
|
-
"gitTags": " (origin/fix/PD-24)",
|
|
773
|
-
"committerDate": "2021-02-23 13:11:40 +0200",
|
|
774
|
-
"isTagged": true,
|
|
775
|
-
"tag": "@pie-lib/graphing@2.2.14"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"type": "fix",
|
|
779
|
-
"scope": "graphing",
|
|
780
|
-
"subject": "positioning of the numeric labels on the x- and y- axes for 0 and -1 PD-529",
|
|
781
|
-
"merge": null,
|
|
782
|
-
"header": "fix(graphing): positioning of the numeric labels on the x- and y- axes for 0 and -1 PD-529",
|
|
783
|
-
"body": null,
|
|
784
|
-
"footer": null,
|
|
785
|
-
"notes": [],
|
|
786
|
-
"hash": "c33c82b0dab09712d24e2802d9a0501a58a2ff32",
|
|
787
|
-
"gitTags": " (origin/fix/positioning-of-the-numeric-labels-on-x-and-y-axes-for-overlapping-elements)",
|
|
788
|
-
"committerDate": "2021-03-01 11:32:14 +0200",
|
|
789
|
-
"isTagged": true,
|
|
790
|
-
"tag": "@pie-lib/graphing@2.2.15"
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
"type": "fix",
|
|
794
|
-
"scope": "graphing",
|
|
795
|
-
"subject": "where '-n' [x] and '-n' [y] would overlap if positioned normally, only one '-n' label should be displayed and centered PD-529",
|
|
796
|
-
"merge": null,
|
|
797
|
-
"header": "fix(graphing): where '-n' [x] and '-n' [y] would overlap if positioned normally, only one '-n' label should be displayed and centered PD-529",
|
|
798
|
-
"body": null,
|
|
799
|
-
"footer": null,
|
|
800
|
-
"notes": [],
|
|
801
|
-
"hash": "946657f07fd0d22c9b06f9495ddec7b0a78f6976",
|
|
802
|
-
"gitTags": "",
|
|
803
|
-
"committerDate": "2021-02-24 15:13:51 +0200",
|
|
804
|
-
"isTagged": true,
|
|
805
|
-
"tag": "@pie-lib/graphing@2.2.15"
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
"type": "fix",
|
|
809
|
-
"scope": "graphing",
|
|
810
|
-
"subject": "increase width and height for labels, depending on labels length PD-988",
|
|
811
|
-
"merge": null,
|
|
812
|
-
"header": "fix(graphing): increase width and height for labels, depending on labels length PD-988",
|
|
813
|
-
"body": null,
|
|
814
|
-
"footer": null,
|
|
815
|
-
"notes": [],
|
|
816
|
-
"hash": "5f64c472eedaa64882961f0da0e8aad5edefce4e",
|
|
817
|
-
"gitTags": " (origin/fix/PD-988)",
|
|
818
|
-
"committerDate": "2021-03-11 16:32:44 +0200",
|
|
819
|
-
"isTagged": true,
|
|
820
|
-
"tag": "@pie-lib/graphing@2.2.16"
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"type": "fix",
|
|
824
|
-
"scope": "graphing",
|
|
825
|
-
"subject": "increase width for range axisLabel PD-988",
|
|
826
|
-
"merge": null,
|
|
827
|
-
"header": "fix(graphing): increase width for range axisLabel PD-988",
|
|
828
|
-
"body": null,
|
|
829
|
-
"footer": null,
|
|
830
|
-
"notes": [],
|
|
831
|
-
"hash": "e4e5b8f3b12931a8ad2b05590921d01d99924e9f",
|
|
832
|
-
"gitTags": "",
|
|
833
|
-
"committerDate": "2021-03-11 12:47:38 +0200",
|
|
834
|
-
"isTagged": true,
|
|
835
|
-
"tag": "@pie-lib/graphing@2.2.16"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"type": "fix",
|
|
839
|
-
"scope": "graphing",
|
|
840
|
-
"subject": "set height depending on number of words of axisLabel PD-988",
|
|
841
|
-
"merge": null,
|
|
842
|
-
"header": "fix(graphing): set height depending on number of words of axisLabel PD-988",
|
|
843
|
-
"body": null,
|
|
844
|
-
"footer": null,
|
|
845
|
-
"notes": [],
|
|
846
|
-
"hash": "210b3afe6259c0f38a45beebf131c97f13fe1099",
|
|
847
|
-
"gitTags": "",
|
|
848
|
-
"committerDate": "2021-03-11 11:59:54 +0200",
|
|
849
|
-
"isTagged": true,
|
|
850
|
-
"tag": "@pie-lib/graphing@2.2.16"
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"type": "fix",
|
|
854
|
-
"scope": "graphing",
|
|
855
|
-
"subject": "fix arrow positioning PD-495",
|
|
856
|
-
"merge": null,
|
|
857
|
-
"header": "fix(graphing): fix arrow positioning PD-495",
|
|
858
|
-
"body": null,
|
|
859
|
-
"footer": null,
|
|
860
|
-
"notes": [],
|
|
861
|
-
"hash": "36a87cfc04cd50b434a8f224eef65752c6943bf6",
|
|
862
|
-
"gitTags": " (origin/fix/PD-495-fix-vectors-arrow)",
|
|
863
|
-
"committerDate": "2021-03-16 12:10:35 +0000",
|
|
864
|
-
"isTagged": true,
|
|
865
|
-
"tag": "@pie-lib/graphing@2.2.17"
|
|
866
|
-
},
|
|
867
|
-
{
|
|
868
|
-
"type": "fix",
|
|
869
|
-
"scope": "graphing",
|
|
870
|
-
"subject": "ROLLBACK - fix arrow positioning PD-495",
|
|
871
|
-
"merge": null,
|
|
872
|
-
"header": "fix(graphing): ROLLBACK - fix arrow positioning PD-495",
|
|
873
|
-
"body": null,
|
|
874
|
-
"footer": null,
|
|
875
|
-
"notes": [],
|
|
876
|
-
"hash": "8af59e71fcc1784af2a8529d2282777929b704cd",
|
|
877
|
-
"gitTags": " (origin/fix/PD-495-fix-vectors-arrow)",
|
|
878
|
-
"committerDate": "2021-03-16 19:00:17 +0200",
|
|
879
|
-
"isTagged": true,
|
|
880
|
-
"tag": "@pie-lib/graphing@2.2.18"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"type": "fix",
|
|
884
|
-
"scope": "graphing",
|
|
885
|
-
"subject": "fix arrow positioning for any angle PD-495",
|
|
886
|
-
"merge": null,
|
|
887
|
-
"header": "fix(graphing): fix arrow positioning for any angle PD-495",
|
|
888
|
-
"body": null,
|
|
889
|
-
"footer": null,
|
|
890
|
-
"notes": [],
|
|
891
|
-
"hash": "33cc93609fcda08be1d0ec4a495569d1af68dd31",
|
|
892
|
-
"gitTags": " (origin/fix/PD-495-fix-vectors-arrow)",
|
|
893
|
-
"committerDate": "2021-03-17 16:44:17 +0200",
|
|
894
|
-
"isTagged": true,
|
|
895
|
-
"tag": "@pie-lib/graphing@2.2.19"
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"type": "fix",
|
|
899
|
-
"scope": "graphing",
|
|
900
|
-
"subject": "Modified labels size and bug fixes",
|
|
901
|
-
"merge": null,
|
|
902
|
-
"header": "fix(graphing): Modified labels size and bug fixes",
|
|
903
|
-
"body": null,
|
|
904
|
-
"footer": null,
|
|
905
|
-
"notes": [],
|
|
906
|
-
"hash": "e6dd79a235728d21bfdd2ecdf0b4aed610b1291d",
|
|
907
|
-
"gitTags": "",
|
|
908
|
-
"committerDate": "2021-03-26 12:18:14 +0200",
|
|
909
|
-
"isTagged": true,
|
|
910
|
-
"tag": "@pie-lib/graphing@2.2.20"
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
"type": "fix",
|
|
914
|
-
"scope": "graphing",
|
|
915
|
-
"subject": "denote labels as non-readable",
|
|
916
|
-
"merge": null,
|
|
917
|
-
"header": "fix(graphing): denote labels as non-readable",
|
|
918
|
-
"body": null,
|
|
919
|
-
"footer": null,
|
|
920
|
-
"notes": [],
|
|
921
|
-
"hash": "a59a9ba175644c9409cb5122fe9b76ef9276c34e",
|
|
922
|
-
"gitTags": " (origin/fix/PD-579-readable-treatment-additions)",
|
|
923
|
-
"committerDate": "2021-03-25 13:46:35 +0200",
|
|
924
|
-
"isTagged": true,
|
|
925
|
-
"tag": "@pie-lib/graphing@2.2.20"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"type": "fix",
|
|
929
|
-
"scope": "graphing",
|
|
930
|
-
"subject": "Removed non-functional buttons PD-545",
|
|
931
|
-
"merge": null,
|
|
932
|
-
"header": "fix(graphing): Removed non-functional buttons PD-545",
|
|
933
|
-
"body": null,
|
|
934
|
-
"footer": null,
|
|
935
|
-
"notes": [],
|
|
936
|
-
"hash": "1884b9da7631d3c4ee79e305c05703310efe2e95",
|
|
937
|
-
"gitTags": " (origin/fix/PD-545)",
|
|
938
|
-
"committerDate": "2021-06-18 17:00:45 +0300",
|
|
939
|
-
"isTagged": true,
|
|
940
|
-
"tag": "@pie-lib/graphing@2.3.0"
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
"type": "feat",
|
|
944
|
-
"scope": "graphing",
|
|
945
|
-
"subject": "Disallowed invalid point movements and placements PD-484",
|
|
946
|
-
"merge": null,
|
|
947
|
-
"header": "feat(graphing): Disallowed invalid point movements and placements PD-484",
|
|
948
|
-
"body": null,
|
|
949
|
-
"footer": null,
|
|
950
|
-
"notes": [],
|
|
951
|
-
"hash": "88ad2c4cbae17fdbae24fe0e5ec7af490eb4de75",
|
|
952
|
-
"gitTags": "",
|
|
953
|
-
"committerDate": "2021-06-17 15:31:52 +0300",
|
|
954
|
-
"isTagged": true,
|
|
955
|
-
"tag": "@pie-lib/graphing@2.3.0"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"type": "feat",
|
|
959
|
-
"scope": "graphing",
|
|
960
|
-
"subject": "Added the ability to label shapes other than point - PD-486",
|
|
961
|
-
"merge": null,
|
|
962
|
-
"header": "feat(graphing): Added the ability to label shapes other than point - PD-486",
|
|
963
|
-
"body": null,
|
|
964
|
-
"footer": null,
|
|
965
|
-
"notes": [],
|
|
966
|
-
"hash": "ad1ea5a0b3db601388af326a806db3f135aea584",
|
|
967
|
-
"gitTags": " (origin/feat/PD-486)",
|
|
968
|
-
"committerDate": "2021-06-11 11:42:01 +0300",
|
|
969
|
-
"isTagged": true,
|
|
970
|
-
"tag": "@pie-lib/graphing@2.3.0"
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
"type": "fix",
|
|
974
|
-
"scope": "graphing",
|
|
975
|
-
"subject": "correctly calculate tick values for when step has 3 decimals. Add sanity check for graph label PD-991",
|
|
976
|
-
"merge": null,
|
|
977
|
-
"header": "fix(graphing): correctly calculate tick values for when step has 3 decimals. Add sanity check for graph label PD-991",
|
|
978
|
-
"body": null,
|
|
979
|
-
"footer": null,
|
|
980
|
-
"notes": [],
|
|
981
|
-
"hash": "5b1d85be62b21f4cdf1fc40425ae7f2dcb70ed44",
|
|
982
|
-
"gitTags": "",
|
|
983
|
-
"committerDate": "2021-05-07 15:49:55 +0300",
|
|
984
|
-
"isTagged": true,
|
|
985
|
-
"tag": "@pie-lib/graphing@2.3.0"
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"type": "feat",
|
|
989
|
-
"scope": "graphing",
|
|
990
|
-
"subject": "Display point coordinates on hover PD-188",
|
|
991
|
-
"merge": null,
|
|
992
|
-
"header": "feat(graphing): Display point coordinates on hover PD-188",
|
|
993
|
-
"body": null,
|
|
994
|
-
"footer": null,
|
|
995
|
-
"notes": [],
|
|
996
|
-
"hash": "ed38feff2c3e4936a5811e551c2ccc40ad4585f7",
|
|
997
|
-
"gitTags": "",
|
|
998
|
-
"committerDate": "2021-07-16 13:27:27 +0300",
|
|
999
|
-
"isTagged": true,
|
|
1000
|
-
"tag": "@pie-lib/graphing@2.4.0"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"type": "feat",
|
|
1004
|
-
"scope": "graphing",
|
|
1005
|
-
"subject": "control over whether arrows are displayed PD-483",
|
|
1006
|
-
"merge": null,
|
|
1007
|
-
"header": "feat(graphing): control over whether arrows are displayed PD-483",
|
|
1008
|
-
"body": null,
|
|
1009
|
-
"footer": null,
|
|
1010
|
-
"notes": [],
|
|
1011
|
-
"hash": "dc9c8f8c5a3a6ed837bf7677e22ba7c137b2f391",
|
|
1012
|
-
"gitTags": " (origin/feat/PD-483/graphing-control-arrows)",
|
|
1013
|
-
"committerDate": "2021-06-08 13:00:24 +0300",
|
|
1014
|
-
"isTagged": true,
|
|
1015
|
-
"tag": "@pie-lib/graphing@2.4.0"
|
|
1016
|
-
}
|
|
1017
|
-
]
|
|
1
|
+
[]
|