@pie-element/math-templated 2.11.2-next.7000

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.
Files changed (48) hide show
  1. package/CHANGELOG.json +1 -0
  2. package/CHANGELOG.md +528 -0
  3. package/LICENSE.md +5 -0
  4. package/README.md +0 -0
  5. package/configure/CHANGELOG.json +1 -0
  6. package/configure/CHANGELOG.md +486 -0
  7. package/configure/lib/defaults.js +158 -0
  8. package/configure/lib/defaults.js.map +1 -0
  9. package/configure/lib/design.js +597 -0
  10. package/configure/lib/design.js.map +1 -0
  11. package/configure/lib/index.js +227 -0
  12. package/configure/lib/index.js.map +1 -0
  13. package/configure/lib/markupUtils.js +51 -0
  14. package/configure/lib/markupUtils.js.map +1 -0
  15. package/configure/lib/response.js +442 -0
  16. package/configure/lib/response.js.map +1 -0
  17. package/configure/package.json +20 -0
  18. package/controller/CHANGELOG.json +1 -0
  19. package/controller/CHANGELOG.md +391 -0
  20. package/controller/lib/defaults.js +21 -0
  21. package/controller/lib/defaults.js.map +1 -0
  22. package/controller/lib/index.js +302 -0
  23. package/controller/lib/index.js.map +1 -0
  24. package/controller/package.json +19 -0
  25. package/docs/config-schema.json +104 -0
  26. package/docs/config-schema.json.md +85 -0
  27. package/docs/demo/config.js +8 -0
  28. package/docs/demo/generate.js +42 -0
  29. package/docs/demo/index.html +1 -0
  30. package/docs/demo/session.js +14 -0
  31. package/docs/pie-schema.json +51 -0
  32. package/docs/pie-schema.json.md +37 -0
  33. package/lib/index.js +121 -0
  34. package/lib/index.js.map +1 -0
  35. package/lib/main.js +843 -0
  36. package/lib/main.js.map +1 -0
  37. package/lib/print.js +130 -0
  38. package/lib/print.js.map +1 -0
  39. package/module/configure.js +106458 -0
  40. package/module/controller.js +23132 -0
  41. package/module/demo.js +67 -0
  42. package/module/element.js +127550 -0
  43. package/module/index.html +21 -0
  44. package/module/manifest.json +14 -0
  45. package/module/print-demo.js +105 -0
  46. package/module/print.html +18 -0
  47. package/module/print.js +127498 -0
  48. package/package.json +29 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1 @@
1
+ []
package/CHANGELOG.md ADDED
@@ -0,0 +1,528 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [2.11.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.11.0...@pie-element/boilerplate-item-type@2.11.1) (2024-04-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update pie-lib/pie-toolbox PD-3683, PD-3644 ([73734c5](https://github.com/pie-framework/pie-elements/commit/73734c50a1e4fcda6be4f67c725816d75aea222f))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.11.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.10.1...@pie-element/boilerplate-item-type@2.11.0) (2024-04-22)
18
+
19
+
20
+ ### Features
21
+
22
+ * update pie-lib/pie-toolbox PD-2449 ([2a0b40a](https://github.com/pie-framework/pie-elements/commit/2a0b40a826f0338b5eda2e8301f79870be3d0073))
23
+
24
+
25
+
26
+
27
+
28
+ ## [2.10.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.10.0...@pie-element/boilerplate-item-type@2.10.1) (2024-04-22)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * update pie-lib/pie-toolbox PD-3644, PD-3673 ([5e28ce0](https://github.com/pie-framework/pie-elements/commit/5e28ce0dab4a7ecd93ef7bba45ddb20f768b450b))
34
+
35
+
36
+
37
+
38
+
39
+ # [2.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.9.3...@pie-element/boilerplate-item-type@2.10.0) (2024-04-18)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * revert experiments for PD-3664 ([9d28f6e](https://github.com/pie-framework/pie-elements/commit/9d28f6ee635166c519f9902b7abb2bec67ac6fd0))
45
+
46
+
47
+ ### Features
48
+
49
+ * update pie-lib/pie-toolbox SC-30530, SC-30682, PD-3607, PD-3655 ([f08bccf](https://github.com/pie-framework/pie-elements/commit/f08bccf86fcb430e75e410116b000b3affc252c0))
50
+
51
+
52
+
53
+
54
+
55
+ ## [2.9.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.9.2...@pie-element/boilerplate-item-type@2.9.3) (2024-04-16)
56
+
57
+
58
+ ### Bug Fixes
59
+
60
+ * revert previous experiments and add another one PD-3664 ([954d576](https://github.com/pie-framework/pie-elements/commit/954d576cdc0632c00fef10c75fb3008ed6fec487))
61
+
62
+
63
+
64
+
65
+
66
+ ## [2.9.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.9.1...@pie-element/boilerplate-item-type@2.9.2) (2024-04-15)
67
+
68
+ **Note:** Version bump only for package @pie-element/boilerplate-item-type
69
+
70
+
71
+
72
+
73
+
74
+ ## [2.9.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.9.0...@pie-element/boilerplate-item-type@2.9.1) (2024-04-01)
75
+
76
+ **Note:** Version bump only for package @pie-element/boilerplate-item-type
77
+
78
+
79
+
80
+
81
+
82
+ # [2.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.8.0...@pie-element/boilerplate-item-type@2.9.0) (2024-04-01)
83
+
84
+
85
+ ### Features
86
+
87
+ * **inline-dropdown:** upgrade pie-toolbox PD-2465 ([828d1c1](https://github.com/pie-framework/pie-elements/commit/828d1c1bc9e9221c1e141baaa8f89a4929ad0eb9))
88
+
89
+
90
+
91
+
92
+
93
+ # [2.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.7.1...@pie-element/boilerplate-item-type@2.8.0) (2024-04-01)
94
+
95
+
96
+ ### Features
97
+
98
+ * update pie-lib/pie-toolbox PD-3567, PD-3426 ([2a706d7](https://github.com/pie-framework/pie-elements/commit/2a706d799bb000c60b7a77a790de9dc66345ebf5))
99
+
100
+
101
+
102
+
103
+
104
+ ## [2.7.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.7.0...@pie-element/boilerplate-item-type@2.7.1) (2024-03-28)
105
+
106
+
107
+ ### Bug Fixes
108
+
109
+ * update pie-lib/pie-toolbox PD-3603 ([8fc82ab](https://github.com/pie-framework/pie-elements/commit/8fc82ab19baf45aecb40e4b364a7c307a9840130))
110
+
111
+
112
+
113
+
114
+
115
+ # [2.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.6.0...@pie-element/boilerplate-item-type@2.7.0) (2024-03-26)
116
+
117
+
118
+ ### Features
119
+
120
+ * Replace math-rendering package with math-rendering-accessible-package for accessibility PD-1870 ([a416664](https://github.com/pie-framework/pie-elements/commit/a41666452b86426a35e8501ab2a4ac95f327ad53))
121
+
122
+
123
+
124
+
125
+
126
+ # [2.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.5.0...@pie-element/boilerplate-item-type@2.6.0) (2024-03-20)
127
+
128
+
129
+ ### Bug Fixes
130
+
131
+ * updated pie-lib/pie-toolbox SC-28500 ([a8e4e6a](https://github.com/pie-framework/pie-elements/commit/a8e4e6ab27584435ce7ac3e964ccac2747402777))
132
+
133
+
134
+ ### Features
135
+
136
+ * Replace math-rendering package with math-rendering-accessible-package for accessibility PD-1870 ([b6cdee8](https://github.com/pie-framework/pie-elements/commit/b6cdee8915b06e4c11b002b10437db07ce966501))
137
+ * updated pie-lib/pie-toolbox SC-27890 and reverted once again math-rendering-accessible ([fd312e1](https://github.com/pie-framework/pie-elements/commit/fd312e1336999893025231946649496d290883e4))
138
+ * use math-rendering-accessible everywhere PD-1870 ([d52e660](https://github.com/pie-framework/pie-elements/commit/d52e6607ad8847d704bd9cb9b7e3107c130f0500))
139
+
140
+
141
+
142
+
143
+
144
+ # [2.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.4.2...@pie-element/boilerplate-item-type@2.5.0) (2024-03-15)
145
+
146
+
147
+ ### Features
148
+
149
+ * update pie-lib/pie-toolbox SC-27890,PD-2461 ([13d94fa](https://github.com/pie-framework/pie-elements/commit/13d94faaf0cf9cf923bbc64587cdd4202154ea33))
150
+
151
+
152
+
153
+
154
+
155
+ ## [2.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.4.1...@pie-element/boilerplate-item-type@2.4.2) (2024-03-13)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * update pie-lib/pie-toolbox PD-3549 ([b5d7d13](https://github.com/pie-framework/pie-elements/commit/b5d7d1352169cc67eaedcd56898a5806b0a8812a))
161
+
162
+
163
+
164
+
165
+
166
+ ## [2.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.4.0...@pie-element/boilerplate-item-type@2.4.1) (2024-03-12)
167
+
168
+
169
+ ### Bug Fixes
170
+
171
+ * update pie-lib/pie-toolbox PD-3509, PD-3465 ([b1745aa](https://github.com/pie-framework/pie-elements/commit/b1745aa981722b5561aab1f4495ac81ac7bc4155))
172
+
173
+
174
+
175
+
176
+
177
+ # [2.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.3.2...@pie-element/boilerplate-item-type@2.4.0) (2024-03-04)
178
+
179
+
180
+ ### Features
181
+
182
+ * update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
183
+
184
+
185
+
186
+
187
+
188
+ ## [2.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.3.1...@pie-element/boilerplate-item-type@2.3.2) (2024-02-20)
189
+
190
+
191
+ ### Bug Fixes
192
+
193
+ * update pie-lib/pie-toolbox PD-3372, PD-3385, PD-3439 ([a79d800](https://github.com/pie-framework/pie-elements/commit/a79d800bb69af0d175793bc737282100168c4c60))
194
+ * update pie-lib/pie-toolbox PD-3455 ([4ff9971](https://github.com/pie-framework/pie-elements/commit/4ff9971e65b680aea180c94f9e85cab7249af2fb))
195
+
196
+
197
+
198
+
199
+
200
+ ## [2.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.3.0...@pie-element/boilerplate-item-type@2.3.1) (2024-02-14)
201
+
202
+
203
+ ### Bug Fixes
204
+
205
+ * pie-lib/pie-toolbox with slate updates ([a8f8707](https://github.com/pie-framework/pie-elements/commit/a8f8707b2c197c2b40fb6632cee0ba4c27aa9aa4))
206
+ * update pie-lib/pie-toolbox ([cec328c](https://github.com/pie-framework/pie-elements/commit/cec328caf5b69d9fee00473c502aed62d6e27462))
207
+
208
+
209
+
210
+
211
+
212
+ # [2.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.7...@pie-element/boilerplate-item-type@2.3.0) (2024-02-09)
213
+
214
+
215
+ ### Features
216
+
217
+ * update pie-toolbox version SC-28868 ([5745f50](https://github.com/pie-framework/pie-elements/commit/5745f502c89d730e72d4cdb83e96c9465a81ae19))
218
+
219
+
220
+
221
+
222
+
223
+ ## [2.2.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.6...@pie-element/boilerplate-item-type@2.2.7) (2024-02-07)
224
+
225
+
226
+ ### Bug Fixes
227
+
228
+ * update pie-toolbox version PD-3423 ([053ad69](https://github.com/pie-framework/pie-elements/commit/053ad690619980bce68b1b44e51975fcf91054ec))
229
+
230
+
231
+
232
+
233
+
234
+ ## [2.2.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.4...@pie-element/boilerplate-item-type@2.2.6) (2024-02-07)
235
+
236
+ **Note:** Version bump only for package @pie-element/boilerplate-item-type
237
+
238
+
239
+
240
+
241
+
242
+ ## [2.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.3...@pie-element/boilerplate-item-type@2.2.4) (2024-01-24)
243
+
244
+
245
+ ### Bug Fixes
246
+
247
+ * update to pie-lib/pie-toolbox 1.5.7 PD-3404 ([eae668d](https://github.com/pie-framework/pie-elements/commit/eae668d980ef4731af5eceb3e70329b7621a232b))
248
+
249
+
250
+
251
+
252
+
253
+ ## [2.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.2...@pie-element/boilerplate-item-type@2.2.3) (2024-01-24)
254
+
255
+
256
+ ### Bug Fixes
257
+
258
+ * update to pie-lib/pie-toolbox 1.5.6 to fix issue introduced by fix for PD-3392 ([8d0a33f](https://github.com/pie-framework/pie-elements/commit/8d0a33f51a5ebe442eb824749cb419bf23c44d28))
259
+
260
+
261
+
262
+
263
+
264
+ ## [2.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.1...@pie-element/boilerplate-item-type@2.2.2) (2024-01-23)
265
+
266
+
267
+ ### Bug Fixes
268
+
269
+ * update to pie-lib/pie-toolbox 1.5.4 for PD-3387, PD-3384, PD-3383, PD-3392 ([2278f9a](https://github.com/pie-framework/pie-elements/commit/2278f9a3fdf1bc89ab590f240d926a857339179e))
270
+ * update to pie-lib/pie-toolbox 1.5.5 for PD-3392 ([d4286e0](https://github.com/pie-framework/pie-elements/commit/d4286e08a060a73e6de098f87173baaaa88cc997))
271
+
272
+
273
+
274
+
275
+
276
+ ## [2.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.2.0...@pie-element/boilerplate-item-type@2.2.1) (2024-01-15)
277
+
278
+
279
+ ### Bug Fixes
280
+
281
+ * update pie-lib/pie-toolbox PD-3366, PD-3367, PD-3381 ([8c9d35f](https://github.com/pie-framework/pie-elements/commit/8c9d35ff6f0dad1a161d6a2dba203a169169e562))
282
+
283
+
284
+
285
+
286
+
287
+ # [2.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.1.2...@pie-element/boilerplate-item-type@2.2.0) (2024-01-08)
288
+
289
+
290
+ ### Bug Fixes
291
+
292
+ * refactor for pie-lib/pie-toolbox update ([2a5b0d5](https://github.com/pie-framework/pie-elements/commit/2a5b0d5f046924d5974910e3f0dfb2c9d3327a03))
293
+ * update pie-lib/pie-toolbox PD-2068, PD-2060 ([b63f783](https://github.com/pie-framework/pie-elements/commit/b63f78371452e265f31f721dcfa5f8ba9789089c))
294
+ * update pie-lib/pie-toolbox PD-3352 ([c40c326](https://github.com/pie-framework/pie-elements/commit/c40c326209315b57ce8da802b8e00616256e3bd6))
295
+ * update pie-lib/pie-toolbox SC-27396, SC-27398 ([658a553](https://github.com/pie-framework/pie-elements/commit/658a55358181271b508f7d550467eefadcd71544))
296
+
297
+
298
+ ### Features
299
+
300
+ * refactor for pie-lib/pie-toolbox and add print module for boilerplate-item-type ([8230d26](https://github.com/pie-framework/pie-elements/commit/8230d264069672c4a3242ff5ed60a6842bf5147f))
301
+
302
+
303
+
304
+
305
+
306
+ ## [2.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.1.1...@pie-element/boilerplate-item-type@2.1.2) (2024-01-08)
307
+
308
+
309
+ ### Bug Fixes
310
+
311
+ * update pie-lib/pie-toolbox PD-3352,PD-3348, PD-3296 ([48b1952](https://github.com/pie-framework/pie-elements/commit/48b1952831835ead598b692abb3d492ec9adb564))
312
+
313
+
314
+
315
+
316
+
317
+ ## [2.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.1.0...@pie-element/boilerplate-item-type@2.1.1) (2024-01-04)
318
+
319
+
320
+ ### Bug Fixes
321
+
322
+ * update pie-lib/pie-toolbox PD-2068, PD-2060 ([e918850](https://github.com/pie-framework/pie-elements/commit/e9188502ffeaefe41bf0f23895d4bb2daf839364))
323
+ * update pie-lib/pie-toolbox PD-3037 ([b2f689a](https://github.com/pie-framework/pie-elements/commit/b2f689a416c2c39d7ed423a22db02dd32415ba82))
324
+
325
+
326
+
327
+
328
+
329
+ # [2.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.0.3...@pie-element/boilerplate-item-type@2.1.0) (2023-12-19)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * update pie-lib/pie-toolbox PD-2068 ([34eccd5](https://github.com/pie-framework/pie-elements/commit/34eccd52c44259eddf3e2b816b00b82f83bc2bf8))
335
+ * work with postpublish ([ce2a205](https://github.com/pie-framework/pie-elements/commit/ce2a205b5834e9baab9477ab4cba21913fe4708c))
336
+
337
+
338
+ ### Features
339
+
340
+ * update pie-lib/pie-toolbox PD-2555 ([86d4fd9](https://github.com/pie-framework/pie-elements/commit/86d4fd909180dd1fcbc446bd8b29c23af21a1c69))
341
+ * update pie-lib/pie-toolbox PD-3307, PD-2067, PD-3271, PD-3041, PD-2068 ([2eabcbd](https://github.com/pie-framework/pie-elements/commit/2eabcbd036e318bb24552f4140ca7384ad865951))
342
+
343
+
344
+
345
+
346
+
347
+ ## [2.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.0.2...@pie-element/boilerplate-item-type@2.0.3) (2023-11-27)
348
+
349
+
350
+ ### Bug Fixes
351
+
352
+ * update pie-lib ([74283d7](https://github.com/pie-framework/pie-elements/commit/74283d71b12ab9c82875ce995368e5e39f4face6))
353
+
354
+
355
+
356
+
357
+
358
+ ## [2.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.0.1...@pie-element/boilerplate-item-type@2.0.2) (2023-11-27)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * update pie-lib/pie-toolbox PD-597 ([1ec84aa](https://github.com/pie-framework/pie-elements/commit/1ec84aadae515088ef65b99f780a5e5dca516f99))
364
+ * update pie-libs PD-2996 ([cd092c6](https://github.com/pie-framework/pie-elements/commit/cd092c6b5c4db91645394cd23febc1f9a07f46f9))
365
+
366
+
367
+
368
+
369
+
370
+ ## [2.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@2.0.0...@pie-element/boilerplate-item-type@2.0.1) (2023-11-09)
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * update pie-lib/pie-toolbox PD-3221, PD-3249, PD-2765 ([9de1563](https://github.com/pie-framework/pie-elements/commit/9de1563d636983c3ddceee0279c0709d396d4f96))
376
+
377
+
378
+
379
+
380
+
381
+ # [2.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.3.1...@pie-element/boilerplate-item-type@2.0.0) (2023-11-07)
382
+
383
+
384
+ ### Bug Fixes
385
+
386
+ * update pie-lib version to fix imports for pie-lib/pie-toolbox/editable-html ([a90cbf6](https://github.com/pie-framework/pie-elements/commit/a90cbf6be81824e7266df23c2dc49b259337c1b6))
387
+ * update pie-lib/pie-toolbox version ([212cbfa](https://github.com/pie-framework/pie-elements/commit/212cbfad27b29f0b1b2a3706ba82f6fb59147001))
388
+ * update pie-lib/pie-toolbox version ([b791e10](https://github.com/pie-framework/pie-elements/commit/b791e10857928766e2d73c6aa80b3fb50fd1afac))
389
+ * update pie-lib/pie-toolbox version ([7f64f9f](https://github.com/pie-framework/pie-elements/commit/7f64f9f2b874fd08bd8f6f05c1c4292c34ac6338))
390
+
391
+
392
+ ### Code Refactoring
393
+
394
+ * replaced all pie-lib packages with the new pie-toolbox package that contains all of them. ([073d7e5](https://github.com/pie-framework/pie-elements/commit/073d7e5175f7a73069f09d2ceda799682acce494))
395
+
396
+
397
+ ### BREAKING CHANGES
398
+
399
+ * using pie-lib/pie-toolbox now, instead of any other pie-lib package.
400
+
401
+
402
+
403
+
404
+
405
+ ## [1.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.3.0...@pie-element/boilerplate-item-type@1.3.1) (2023-10-26)
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * update pie-lib PD-3221 ([f04d59f](https://github.com/pie-framework/pie-elements/commit/f04d59f204852e430dc3e8fe2c442bb9a1634761))
411
+
412
+
413
+
414
+
415
+
416
+ # [1.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.5...@pie-element/boilerplate-item-type@1.3.0) (2023-10-16)
417
+
418
+
419
+ ### Features
420
+
421
+ * updated pie-libs PD-2950 ([acffe41](https://github.com/pie-framework/pie-elements/commit/acffe41120fbe288e375321cbd58cfbd48f98595))
422
+
423
+
424
+
425
+
426
+
427
+ ## [1.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.4...@pie-element/boilerplate-item-type@1.2.5) (2023-10-16)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * updated pie-libs PD-3223, PD-3121, PD-3018, PD-2765, PD-3105 ([666e660](https://github.com/pie-framework/pie-elements/commit/666e6604c40b9bde8b88af5ce1b02ba65f11e957))
433
+
434
+
435
+
436
+
437
+
438
+ ## [1.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.3...@pie-element/boilerplate-item-type@1.2.4) (2023-10-03)
439
+
440
+
441
+ ### Bug Fixes
442
+
443
+ * update with latest pie-libs, forcing pie-lib/math-rendering to v2.5.18 ([7ff936a](https://github.com/pie-framework/pie-elements/commit/7ff936ab9fc85c264032181755ce5e2149825406))
444
+
445
+
446
+
447
+
448
+
449
+ ## [1.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.2...@pie-element/boilerplate-item-type@1.2.3) (2023-09-28)
450
+
451
+ **Note:** Version bump only for package @pie-element/boilerplate-item-type
452
+
453
+
454
+
455
+
456
+
457
+ ## [1.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.1...@pie-element/boilerplate-item-type@1.2.2) (2023-09-26)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * update pie-libs ([702f4c6](https://github.com/pie-framework/pie-elements/commit/702f4c657f3413274b3a4443c1950e2cdf8e5588))
463
+
464
+
465
+
466
+
467
+
468
+ ## [1.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.2.0...@pie-element/boilerplate-item-type@1.2.1) (2023-09-25)
469
+
470
+ **Note:** Version bump only for package @pie-element/boilerplate-item-type
471
+
472
+
473
+
474
+
475
+
476
+ # [1.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.1.2...@pie-element/boilerplate-item-type@1.2.0) (2023-09-25)
477
+
478
+
479
+ ### Bug Fixes
480
+
481
+ * update pie-libs PD-3167 ([1b109bb](https://github.com/pie-framework/pie-elements/commit/1b109bb3b74dcea72ee2f241996a5e6a71893b4e))
482
+ * update pie-libs PD-3167 ([b21d0c3](https://github.com/pie-framework/pie-elements/commit/b21d0c332623667257a5de1363b9f4fc6ee2bb51))
483
+ * update pie-libs PD-3167 ([1a76806](https://github.com/pie-framework/pie-elements/commit/1a7680657ebe0a73969f3100e60f0a090ffc7ada))
484
+ * update pie-libs PD-3167, PD-3105, PD-3162, PD-2765 ([26199b2](https://github.com/pie-framework/pie-elements/commit/26199b255ddbcb9255f2769091c7ba58f8b1dae0))
485
+
486
+
487
+ ### Features
488
+
489
+ * update pie-libs PD-3011 ([0fd32b3](https://github.com/pie-framework/pie-elements/commit/0fd32b3fd1333bb25de584b98c8ef0471de2d5e8))
490
+
491
+
492
+
493
+
494
+
495
+ ## [1.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.1.1...@pie-element/boilerplate-item-type@1.1.2) (2023-09-05)
496
+
497
+
498
+ ### Bug Fixes
499
+
500
+ * update pie-libs PD-2765 ([f03972d](https://github.com/pie-framework/pie-elements/commit/f03972dda33ff5d4c0343f094fd33acadad30cb4))
501
+
502
+
503
+
504
+
505
+
506
+ ## [1.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/boilerplate-item-type@1.1.0...@pie-element/boilerplate-item-type@1.1.1) (2023-09-04)
507
+
508
+
509
+ ### Bug Fixes
510
+
511
+ * update pie-libs PD-3051 ([1e1a7a3](https://github.com/pie-framework/pie-elements/commit/1e1a7a38732eff5585ad789aea5a08c5e94720ae))
512
+ * updated pie-libs PD-2765, PD-3051 ([e6f5b17](https://github.com/pie-framework/pie-elements/commit/e6f5b17c95faf426898f897651863089a54ff3ff))
513
+
514
+
515
+
516
+
517
+
518
+ # 1.1.0 (2023-08-29)
519
+
520
+
521
+ ### Bug Fixes
522
+
523
+ * remove comma ([10cff7d](https://github.com/pie-framework/pie-elements/commit/10cff7d34b937f4a052deec7f01998a99b395462))
524
+
525
+
526
+ ### Features
527
+
528
+ * create a boilerplate item type ([2cae8df](https://github.com/pie-framework/pie-elements/commit/2cae8df90b913f13875fb24fb09d61c60b7292f9))
package/LICENSE.md ADDED
@@ -0,0 +1,5 @@
1
+ Copyright 2019 CoreSpring Inc
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package/README.md ADDED
File without changes
@@ -0,0 +1 @@
1
+ []