@servicetitan/marketing-ui 1.18.0 → 3.0.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.
Files changed (70) hide show
  1. package/dist/components/charts/funnel-chart/components/funnel-chart.js +1 -1
  2. package/dist/components/charts/funnel-chart/components/funnel-chart.js.map +1 -1
  3. package/dist/components/charts/funnel-chart/components/funnel-chart.module.less +1 -1
  4. package/dist/components/charts/funnel-chart/components/funnel-svg.js +1 -1
  5. package/dist/components/charts/funnel-chart/components/funnel-svg.js.map +1 -1
  6. package/dist/components/charts/line-chart/components/body.d.ts.map +1 -1
  7. package/dist/components/charts/line-chart/components/body.js +3 -2
  8. package/dist/components/charts/line-chart/components/body.js.map +1 -1
  9. package/dist/components/charts/line-chart/components/body.module.less +1 -1
  10. package/dist/components/charts/line-chart/components/hover-popover.module.less +1 -1
  11. package/dist/components/charts/line-chart/components/sidebar.module.less +1 -1
  12. package/dist/components/charts/line-chart/components/stuff.module.less +1 -1
  13. package/dist/components/charts/line-chart/components/svg-bars.d.ts +1 -0
  14. package/dist/components/charts/line-chart/components/svg-bars.d.ts.map +1 -1
  15. package/dist/components/charts/line-chart/components/svg-bars.js +8 -1
  16. package/dist/components/charts/line-chart/components/svg-bars.js.map +1 -1
  17. package/dist/components/charts/line-chart/components/svg-body.d.ts.map +1 -1
  18. package/dist/components/charts/line-chart/components/svg-body.js +3 -2
  19. package/dist/components/charts/line-chart/components/svg-body.js.map +1 -1
  20. package/dist/components/charts/line-chart/components/svg.module.less +1 -1
  21. package/dist/components/charts/line-chart/line-chart.stories.d.ts +1 -0
  22. package/dist/components/charts/line-chart/line-chart.stories.d.ts.map +1 -1
  23. package/dist/components/charts/line-chart/line-chart.stories.js +26 -0
  24. package/dist/components/charts/line-chart/line-chart.stories.js.map +1 -1
  25. package/dist/components/charts/line-chart/stores/line-chart.store.js +1 -1
  26. package/dist/components/charts/line-chart/stores/line-chart.store.js.map +1 -1
  27. package/dist/components/charts/line-chart/stores/svg.store.d.ts.map +1 -1
  28. package/dist/components/charts/line-chart/stores/svg.store.js +1 -1
  29. package/dist/components/charts/line-chart/stores/svg.store.js.map +1 -1
  30. package/dist/components/charts/line-chart/utils/formatters.d.ts +1 -1
  31. package/dist/components/charts/line-chart/utils/formatters.d.ts.map +1 -1
  32. package/dist/components/charts/line-chart/utils/interfaces.d.ts +1 -1
  33. package/dist/components/charts/line-chart/utils/interfaces.d.ts.map +1 -1
  34. package/dist/components/charts/pie-chart/components/pie.js +1 -1
  35. package/dist/components/charts/pie-chart/components/pie.js.map +1 -1
  36. package/dist/components/stat/stat-card.module.less +1 -1
  37. package/dist/components/ui/action-button/action-button.module.less +1 -1
  38. package/dist/components/ui/date-range-picker/date-range-picker.module.less +1 -1
  39. package/dist/components/ui/label-with-hint/label-with-hint.js +1 -1
  40. package/dist/components/ui/label-with-hint/label-with-hint.js.map +1 -1
  41. package/dist/components/ui/line-text/line-text.module.less +1 -1
  42. package/dist/components/ui/title-popover/title-popover.module.less +1 -1
  43. package/dist/utils/date/date-range-picker-state.d.ts +1 -1
  44. package/dist/utils/date/date-range-picker-state.d.ts.map +1 -1
  45. package/dist/utils/formatters.d.ts +1 -1
  46. package/dist/utils/formatters.d.ts.map +1 -1
  47. package/package.json +6 -6
  48. package/src/components/charts/funnel-chart/components/funnel-chart.module.less +1 -1
  49. package/src/components/charts/funnel-chart/components/funnel-chart.tsx +1 -1
  50. package/src/components/charts/funnel-chart/components/funnel-svg.tsx +1 -1
  51. package/src/components/charts/line-chart/components/body.module.less +1 -1
  52. package/src/components/charts/line-chart/components/body.tsx +6 -2
  53. package/src/components/charts/line-chart/components/hover-popover.module.less +1 -1
  54. package/src/components/charts/line-chart/components/sidebar.module.less +1 -1
  55. package/src/components/charts/line-chart/components/stuff.module.less +1 -1
  56. package/src/components/charts/line-chart/components/svg-bars.tsx +62 -43
  57. package/src/components/charts/line-chart/components/svg-body.tsx +9 -1
  58. package/src/components/charts/line-chart/components/svg.module.less +1 -1
  59. package/src/components/charts/line-chart/line-chart.stories.tsx +36 -0
  60. package/src/components/charts/line-chart/stores/line-chart.store.ts +1 -1
  61. package/src/components/charts/line-chart/stores/svg.store.ts +3 -1
  62. package/src/components/charts/line-chart/utils/interfaces.ts +1 -1
  63. package/src/components/charts/pie-chart/components/pie.tsx +1 -1
  64. package/src/components/stat/stat-card.module.less +1 -1
  65. package/src/components/ui/action-button/action-button.module.less +1 -1
  66. package/src/components/ui/date-range-picker/date-range-picker.module.less +1 -1
  67. package/src/components/ui/label-with-hint/label-with-hint.tsx +1 -1
  68. package/src/components/ui/line-text/line-text.module.less +1 -1
  69. package/src/components/ui/title-popover/title-popover.module.less +1 -1
  70. package/CHANGELOG.md +0 -353
package/CHANGELOG.md DELETED
@@ -1,353 +0,0 @@
1
- # v1.18.0 (Mon Aug 15 2022)
2
-
3
- #### 🚀 Enhancement
4
-
5
- - feat(marketing-ui): add label-with-hint component ([@zefirka](https://github.com/zefirka))
6
- - feat(marketing-ui): add label-with-hint component [#145](https://github.com/servicetitan/anvil-uikit-contrib/pull/145) ([@zefirka](https://github.com/zefirka))
7
-
8
- #### Authors: 1
9
-
10
- - Trdat Mkrtchyan ([@zefirka](https://github.com/zefirka))
11
-
12
- ---
13
-
14
- # v1.17.0 (Tue Aug 09 2022)
15
-
16
- #### 🚀 Enhancement
17
-
18
- - MRK-6019: Export components [#144](https://github.com/servicetitan/anvil-uikit-contrib/pull/144) ([@withnorush](https://github.com/withnorush))
19
-
20
- #### Authors: 1
21
-
22
- - Andreev Pavel ([@withnorush](https://github.com/withnorush))
23
-
24
- ---
25
-
26
- # v1.16.0 (Mon Aug 08 2022)
27
-
28
- #### 🚀 Enhancement
29
-
30
- - MRK-6019: Move common components to marketing-ui [#141](https://github.com/servicetitan/anvil-uikit-contrib/pull/141) ([@withnorush](https://github.com/withnorush))
31
-
32
- #### Authors: 1
33
-
34
- - Andreev Pavel ([@withnorush](https://github.com/withnorush))
35
-
36
- ---
37
-
38
- # v1.15.0 (Thu May 19 2022)
39
-
40
- #### 🚀 Enhancement
41
-
42
- - update ran rate description, added description for callBookingRate, MAD-1314 [#101](https://github.com/servicetitan/anvil-uikit-contrib/pull/101) ([@venmelkonian](https://github.com/venmelkonian))
43
-
44
- #### Authors: 1
45
-
46
- - Venera Melkonyan ([@venmelkonian](https://github.com/venmelkonian))
47
-
48
- ---
49
-
50
- # v1.14.0 (Wed Mar 02 2022)
51
-
52
- #### 🚀 Enhancement
53
-
54
- - Round to the nearest integer for value formatting [#94](https://github.com/servicetitan/anvil-uikit-contrib/pull/94) ([@VenMelkonyan](https://github.com/VenMelkonyan))
55
-
56
- #### Authors: 1
57
-
58
- - Venera Melkonyan ([@VenMelkonyan](https://github.com/VenMelkonyan))
59
-
60
- ---
61
-
62
- # v1.13.0 (Thu Feb 24 2022)
63
-
64
- #### 🚀 Enhancement
65
-
66
- - MPA-290: useAsyncLazyDropdownState [marketing-ui] [#83](https://github.com/servicetitan/anvil-uikit-contrib/pull/83) ([@aschumahua](https://github.com/aschumahua))
67
-
68
- #### Authors: 1
69
-
70
- - Anzar Schumahua ([@aschumahua](https://github.com/aschumahua))
71
-
72
- ---
73
-
74
- # v1.12.0 (Sat Feb 19 2022)
75
-
76
- #### 🚀 Enhancement
77
-
78
- - MPA-290: findSubstrIndexes [marketing-ui] [#82](https://github.com/servicetitan/anvil-uikit-contrib/pull/82) ([@aschumahua](https://github.com/aschumahua))
79
- - MPA-290: formatBigNumber [marketing-ui] [#78](https://github.com/servicetitan/anvil-uikit-contrib/pull/78) ([@aschumahua](https://github.com/aschumahua))
80
-
81
- #### Authors: 1
82
-
83
- - Anzar Schumahua ([@aschumahua](https://github.com/aschumahua))
84
-
85
- ---
86
-
87
- # v1.11.0 (Wed Jan 26 2022)
88
-
89
- #### 🚀 Enhancement
90
-
91
- - all conversion definition [#73](https://github.com/servicetitan/anvil-uikit-contrib/pull/73) ([@VenMelkonyan](https://github.com/VenMelkonyan))
92
-
93
- #### Authors: 1
94
-
95
- - Venera Melkonyan ([@VenMelkonyan](https://github.com/VenMelkonyan))
96
-
97
- ---
98
-
99
- # v1.10.0 (Fri Jan 21 2022)
100
-
101
- #### 🚀 Enhancement
102
-
103
- - MAD-1189 [#72](https://github.com/servicetitan/anvil-uikit-contrib/pull/72) ([@VenMelkonyan](https://github.com/VenMelkonyan))
104
-
105
- #### Authors: 1
106
-
107
- - Venera Melkonyan ([@VenMelkonyan](https://github.com/VenMelkonyan))
108
-
109
- ---
110
-
111
- # v1.8.0 (Mon Dec 27 2021)
112
-
113
- #### 🚀 Enhancement
114
-
115
- - Update useFormatPhone [#69](https://github.com/servicetitan/anvil-uikit-contrib/pull/69) ([@aschumahua](https://github.com/aschumahua) [@fnkear](https://github.com/fnkear))
116
-
117
- #### Authors: 2
118
-
119
- - Anzar Schumahua ([@aschumahua](https://github.com/aschumahua))
120
- - Oleg Mikhalkov ([@fnkear](https://github.com/fnkear))
121
-
122
- ---
123
-
124
- # v1.7.0 (Fri Dec 24 2021)
125
-
126
- #### 🚀 Enhancement
127
-
128
- - updated styles - MAD-1131 [#68](https://github.com/servicetitan/anvil-uikit-contrib/pull/68) ([@VenMelkonyan](https://github.com/VenMelkonyan))
129
-
130
- #### Authors: 1
131
-
132
- - Venera Melkonyan ([@VenMelkonyan](https://github.com/VenMelkonyan))
133
-
134
- ---
135
-
136
- # v1.6.1 (Fri Dec 10 2021)
137
-
138
- #### 🐛 Bug Fix
139
-
140
- - Round to the nearest integer for percent formatting MAD-1117 [#64](https://github.com/servicetitan/anvil-uikit-contrib/pull/64) ([@VenMelkonyan](https://github.com/VenMelkonyan))
141
-
142
- #### Authors: 1
143
-
144
- - Venera Melkonyan ([@VenMelkonyan](https://github.com/VenMelkonyan))
145
-
146
- ---
147
-
148
- # v1.6.0 (Fri Nov 19 2021)
149
-
150
- #### 🚀 Enhancement
151
-
152
- - fix: considering metric values empty array case [#52](https://github.com/servicetitan/anvil-uikit-contrib/pull/52) ([@venmelkonyan](https://github.com/venmelkonyan))
153
-
154
- #### Authors: 1
155
-
156
- - Venera Melkonyan ([@venmelkonyan](https://github.com/venmelkonyan))
157
-
158
- ---
159
-
160
- # v1.5.0 (Thu Nov 18 2021)
161
-
162
- :tada: This release contains work from a new contributor! :tada:
163
-
164
- Thank you, Venera Melkonyan ([@venmelkonyan](https://github.com/venmelkonyan)), for all your work!
165
-
166
- #### 🚀 Enhancement
167
-
168
- - Master marketing UI mad 916 [#50](https://github.com/servicetitan/anvil-uikit-contrib/pull/50) ([@venmelkonyan](https://github.com/venmelkonyan))
169
-
170
- #### Authors: 1
171
-
172
- - Venera Melkonyan ([@venmelkonyan](https://github.com/venmelkonyan))
173
-
174
- ---
175
-
176
- # v1.4.0 (Wed Oct 13 2021)
177
-
178
- #### 🚀 Enhancement
179
-
180
- - [marketing-ui] fix line chart layering and labels positions [#38](https://github.com/servicetitan/anvil-uikit-contrib/pull/38) ([@karpoff-titan](https://github.com/karpoff-titan))
181
-
182
- #### Authors: 1
183
-
184
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
185
-
186
- ---
187
-
188
- # v1.3.0 (Wed Oct 06 2021)
189
-
190
- #### 🚀 Enhancement
191
-
192
- - [marketing-ui] add loading prop to funnel chart [#35](https://github.com/servicetitan/anvil-uikit-contrib/pull/35) ([@karpoff-titan](https://github.com/karpoff-titan))
193
-
194
- #### Authors: 1
195
-
196
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
197
-
198
- ---
199
-
200
- # v1.2.0 (Tue Oct 05 2021)
201
-
202
- #### 🚀 Enhancement
203
-
204
- - [marketing-ui] add funnel chart [#32](https://github.com/servicetitan/anvil-uikit-contrib/pull/32) ([@karpoff-titan](https://github.com/karpoff-titan))
205
-
206
- #### Authors: 1
207
-
208
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
209
-
210
- ---
211
-
212
- # v1.1.0 (Mon Oct 04 2021)
213
-
214
- #### 🚀 Enhancement
215
-
216
- - [marketing-ui] add new ads stats and stat card [#30](https://github.com/servicetitan/anvil-uikit-contrib/pull/30) ([@karpoff-titan](https://github.com/karpoff-titan))
217
-
218
- #### Authors: 1
219
-
220
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
221
-
222
- ---
223
-
224
- # v1.0.0 (Thu Sep 30 2021)
225
-
226
- #### 💥 Breaking Change
227
-
228
- - [marketing-ui] move hooks to react-hooks package [#28](https://github.com/servicetitan/anvil-uikit-contrib/pull/28) ([@karpoff-titan](https://github.com/karpoff-titan))
229
-
230
- #### Authors: 1
231
-
232
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
233
-
234
- ---
235
-
236
- # v0.8.0 (Mon Sep 27 2021)
237
-
238
- #### 🚀 Enhancement
239
-
240
- - [marketing-ui] history hooks - fix string enum parser [#24](https://github.com/servicetitan/anvil-uikit-contrib/pull/24) ([@karpoff-titan](https://github.com/karpoff-titan))
241
-
242
- #### Authors: 1
243
-
244
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
245
-
246
- ---
247
-
248
- # v0.7.0 (Fri Sep 17 2021)
249
-
250
- #### 🚀 Enhancement
251
-
252
- - [marketing-ui] extend history hooks - optional urlParams when all params are not required [#19](https://github.com/servicetitan/anvil-uikit-contrib/pull/19) ([@karpoff-titan](https://github.com/karpoff-titan))
253
-
254
- #### Authors: 1
255
-
256
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
257
-
258
- ---
259
-
260
- # v0.6.1 (Wed Sep 15 2021)
261
-
262
- #### 🐛 Bug Fix
263
-
264
- - [marketing-ui] fix history hooks [#17](https://github.com/servicetitan/anvil-uikit-contrib/pull/17) ([@karpoff-titan](https://github.com/karpoff-titan))
265
-
266
- #### Authors: 1
267
-
268
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
269
-
270
- ---
271
-
272
- # v0.6.0 (Mon Sep 13 2021)
273
-
274
- #### 🚀 Enhancement
275
-
276
- - Marketing UI: ImageCropper [#14](https://github.com/servicetitan/anvil-uikit-contrib/pull/14) ([@aschumahua](https://github.com/aschumahua) [@karpoff-titan](https://github.com/karpoff-titan))
277
- - [marketing-ui] add handlers for parsing url params [#15](https://github.com/servicetitan/anvil-uikit-contrib/pull/15) ([@karpoff-titan](https://github.com/karpoff-titan))
278
- - MAD-826: [marketing-ui] date-range picker and date helpers [#13](https://github.com/servicetitan/anvil-uikit-contrib/pull/13) ([@karpoff-titan](https://github.com/karpoff-titan))
279
-
280
- #### Authors: 2
281
-
282
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
283
- - Anzar Schumahua ([@aschumahua](https://github.com/aschumahua))
284
-
285
- ---
286
-
287
- # v0.5.0 (Thu Sep 09 2021)
288
-
289
- #### 🚀 Enhancement
290
-
291
- - [marketing-ui] add hook for typed parsing url parameters [#11](https://github.com/servicetitan/anvil-uikit-contrib/pull/11) ([@karpoff-titan](https://github.com/karpoff-titan))
292
-
293
- #### Authors: 1
294
-
295
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
296
-
297
- ---
298
-
299
- # v0.4.0 (Wed Sep 08 2021)
300
-
301
- #### 🚀 Enhancement
302
-
303
- - [marketing-ui] fix history helpers, add hook for query params [#10](https://github.com/servicetitan/anvil-uikit-contrib/pull/10) ([@karpoff-titan](https://github.com/karpoff-titan))
304
-
305
- #### Authors: 1
306
-
307
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
308
-
309
- ---
310
-
311
- # v0.3.0 (Tue Sep 07 2021)
312
-
313
- #### 🚀 Enhancement
314
-
315
- - [marketing-ui] add history helpers [#9](https://github.com/servicetitan/anvil-uikit-contrib/pull/9) ([@karpoff-titan](https://github.com/karpoff-titan))
316
-
317
- #### Authors: 1
318
-
319
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
320
-
321
- ---
322
-
323
- # v0.2.0 (Fri Aug 27 2021)
324
-
325
- #### 🚀 Enhancement
326
-
327
- - [marketing-ui] fix ads stat descriptions, add init effect hook [#8](https://github.com/servicetitan/anvil-uikit-contrib/pull/8) ([@karpoff-titan](https://github.com/karpoff-titan))
328
-
329
- #### Authors: 1
330
-
331
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
332
-
333
- ---
334
-
335
- # v0.1.0 (Fri Aug 20 2021)
336
-
337
- :tada: This release contains work from a new contributor! :tada:
338
-
339
- Thank you, Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan)), for all your work!
340
-
341
- #### 🚀 Enhancement
342
-
343
- - update marketing ads texts, add some default exports and components [#7](https://github.com/servicetitan/anvil-uikit-contrib/pull/7) ([@karpoff-titan](https://github.com/karpoff-titan))
344
-
345
- #### ⚠️ Pushed to `master`
346
-
347
- - Publish ([@xarety](https://github.com/xarety))
348
- - Convert package to public ([@xarety](https://github.com/xarety))
349
-
350
- #### Authors: 2
351
-
352
- - Anton Karpov ([@karpoff-titan](https://github.com/karpoff-titan))
353
- - Denis Gordeev ([@xarety](https://github.com/xarety))