@veeqo/transfigure 0.0.22 → 0.0.23

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 (82) hide show
  1. package/dist/components/Filters/ActiveFilters/Variants/common/ActiveFilterHeader/ActiveFilterHeader.d.ts +3 -1
  2. package/dist/components/Filters/Fields/NumberRangeFilter/MuiSlider.d.ts +1 -1
  3. package/dist/components/Views/OptionsDropdown/styled.d.ts +1 -1
  4. package/dist/components/Views/PillNotifications/variants/styled.d.ts +2 -2
  5. package/dist/index101.cjs +13 -1
  6. package/dist/index101.js +14 -33
  7. package/dist/index103.cjs +1 -13
  8. package/dist/index103.js +19 -17
  9. package/dist/index104.cjs +1 -1
  10. package/dist/index104.js +7 -18
  11. package/dist/index105.cjs +1 -1
  12. package/dist/index105.js +63 -7
  13. package/dist/index106.cjs +1 -1
  14. package/dist/index106.js +26 -60
  15. package/dist/index107.cjs +1 -1
  16. package/dist/index107.js +36 -30
  17. package/dist/index108.cjs +7 -1
  18. package/dist/index108.js +10 -63
  19. package/dist/index110.cjs +1 -7
  20. package/dist/index110.js +63 -10
  21. package/dist/index17.cjs +1 -1
  22. package/dist/index17.js +16 -16
  23. package/dist/index18.cjs +1 -1
  24. package/dist/index18.js +16 -16
  25. package/dist/index19.cjs +1 -1
  26. package/dist/index19.js +15 -15
  27. package/dist/index20.cjs +1 -1
  28. package/dist/index20.js +10 -10
  29. package/dist/index23.cjs +1 -1
  30. package/dist/index23.js +8 -9
  31. package/dist/index29.cjs +1 -1
  32. package/dist/index29.js +1 -1
  33. package/dist/index33.cjs +1 -1
  34. package/dist/index33.js +18 -19
  35. package/dist/index34.cjs +1 -1
  36. package/dist/index34.js +2 -2
  37. package/dist/index37.cjs +1 -1
  38. package/dist/index37.js +1 -1
  39. package/dist/index38.cjs +1 -1
  40. package/dist/index38.js +1 -1
  41. package/dist/index39.cjs +1 -1
  42. package/dist/index39.js +1 -1
  43. package/dist/index42.cjs +1 -1
  44. package/dist/index42.js +1 -1
  45. package/dist/index44.cjs +1 -1
  46. package/dist/index44.js +2 -2
  47. package/dist/index45.cjs +1 -1
  48. package/dist/index45.js +3 -3
  49. package/dist/index79.cjs +8 -1
  50. package/dist/index79.js +12 -143
  51. package/dist/index80.cjs +1 -1
  52. package/dist/index80.js +40 -18
  53. package/dist/index81.cjs +1 -8
  54. package/dist/index81.js +9 -12
  55. package/dist/index82.cjs +1 -1
  56. package/dist/index82.js +141 -39
  57. package/dist/index83.cjs +1 -1
  58. package/dist/index83.js +17 -7
  59. package/dist/index84.cjs +1 -1
  60. package/dist/index84.js +16 -29
  61. package/dist/index85.cjs +19 -1
  62. package/dist/index85.js +23 -28
  63. package/dist/index86.cjs +1 -1
  64. package/dist/index86.js +30 -14
  65. package/dist/index87.cjs +1 -19
  66. package/dist/index87.js +28 -23
  67. package/dist/index88.cjs +1 -1
  68. package/dist/index88.js +14 -20
  69. package/dist/index89.cjs +1 -12
  70. package/dist/index89.js +21 -16
  71. package/dist/index9.cjs +1 -1
  72. package/dist/index9.js +57 -43
  73. package/dist/index91.cjs +1 -1
  74. package/dist/index91.js +2 -2
  75. package/dist/index93.cjs +1 -1
  76. package/dist/index93.js +2 -2
  77. package/dist/index98.cjs +12 -1
  78. package/dist/index98.js +16 -18
  79. package/dist/index99.cjs +1 -1
  80. package/dist/index99.js +1 -1
  81. package/dist/types.d.ts +3 -0
  82. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -1,10 +1,12 @@
1
1
  import { FilterChoiceValue } from './constants/constants';
2
2
  import { NumberRangeFilterClass } from './mobx/NumberRangeFilter';
3
3
  import { RangeFilter } from './mobx/RangeFilter';
4
+ import { ReactElement } from 'react';
4
5
  export type FilterGroupType = {
5
6
  id: string;
6
7
  label: string;
7
8
  fields: Array<Filter>;
9
+ glyph: ReactElement;
8
10
  };
9
11
  export type Filter = {
10
12
  id: string;
@@ -14,6 +16,7 @@ export type Filter = {
14
16
  options?: Array<FilterOption>;
15
17
  range?: Range;
16
18
  fetchAsyncFilterOptions?: FetchAsyncFilterOptions;
19
+ glyph: ReactElement;
17
20
  };
18
21
  export type FetchAsyncFilterOptions = {
19
22
  URL: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veeqo/transfigure",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "dist/index.cjs",