@veeqo/transfigure 0.0.6 → 0.0.7

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 (75) hide show
  1. package/dist/constants/constants.d.ts +4 -0
  2. package/dist/hooks/usePersistColumns/usePersistColumns.d.ts +1 -1
  3. package/dist/index.cjs +1 -1
  4. package/dist/index.js +82 -81
  5. package/dist/index101.cjs +80 -1
  6. package/dist/index101.js +94 -35
  7. package/dist/index102.cjs +7 -1
  8. package/dist/index102.js +10 -42
  9. package/dist/index103.cjs +1 -7
  10. package/dist/index103.js +42 -10
  11. package/dist/index21.cjs +1 -1
  12. package/dist/index21.js +18 -16
  13. package/dist/index22.cjs +1 -1
  14. package/dist/index22.js +20 -18
  15. package/dist/index23.cjs +1 -1
  16. package/dist/index23.js +32 -30
  17. package/dist/index24.cjs +1 -1
  18. package/dist/index24.js +34 -32
  19. package/dist/index28.cjs +1 -1
  20. package/dist/index28.js +1 -1
  21. package/dist/index31.cjs +1 -1
  22. package/dist/index31.js +1 -1
  23. package/dist/index36.cjs +1 -1
  24. package/dist/index36.js +1 -1
  25. package/dist/index37.cjs +1 -1
  26. package/dist/index37.js +1 -1
  27. package/dist/index38.cjs +1 -1
  28. package/dist/index38.js +1 -1
  29. package/dist/index39.cjs +1 -1
  30. package/dist/index39.js +1 -1
  31. package/dist/index41.cjs +1 -1
  32. package/dist/index41.js +1 -1
  33. package/dist/index45.cjs +1 -1
  34. package/dist/index45.js +7 -2
  35. package/dist/index58.cjs +1 -1
  36. package/dist/index58.js +19 -17
  37. package/dist/index60.cjs +1 -1
  38. package/dist/index60.js +8 -7
  39. package/dist/index77.cjs +1 -1
  40. package/dist/index77.js +72 -92
  41. package/dist/index79.cjs +1 -80
  42. package/dist/index79.js +13 -95
  43. package/dist/index80.cjs +104 -1
  44. package/dist/index80.js +120 -13
  45. package/dist/index81.cjs +1 -104
  46. package/dist/index81.js +65 -117
  47. package/dist/index82.cjs +1 -1
  48. package/dist/index82.js +24 -53
  49. package/dist/index83.cjs +1 -1
  50. package/dist/index83.js +2 -29
  51. package/dist/index84.cjs +1 -1
  52. package/dist/index84.js +40 -2
  53. package/dist/index85.cjs +1 -1
  54. package/dist/index85.js +7 -33
  55. package/dist/index86.cjs +1 -1
  56. package/dist/index86.js +23 -7
  57. package/dist/index88.cjs +19 -1
  58. package/dist/index88.js +24 -22
  59. package/dist/index89.cjs +1 -19
  60. package/dist/index89.js +14 -23
  61. package/dist/index90.cjs +78 -10
  62. package/dist/index90.js +92 -13
  63. package/dist/index91.cjs +12 -1
  64. package/dist/index91.js +16 -15
  65. package/dist/index92.cjs +1 -1
  66. package/dist/index92.js +22 -24
  67. package/dist/index94.cjs +1 -1
  68. package/dist/index94.js +2 -2
  69. package/dist/index95.cjs +1 -1
  70. package/dist/index95.js +1 -1
  71. package/dist/index98.cjs +1 -1
  72. package/dist/index98.js +1 -1
  73. package/dist/index99.cjs +1 -80
  74. package/dist/index99.js +35 -94
  75. package/package.json +1 -1
package/dist/index99.js CHANGED
@@ -1,97 +1,38 @@
1
- import o from "styled-components";
2
- import { BaseContainer as e, theme as n, Banner as a, Text as i, Button as l, AnimatedDropdown as s } from "@veeqo/ui";
3
- import { VeeqoCommon as c } from "@veeqo/components";
4
- const { Glyph: p } = c, m = o(e)`
5
- display: flex;
6
- position: fixed;
7
- width: 100vw;
8
- left: 0;
9
- bottom: 24px;
10
- z-index: 18;
11
-
12
- &.notification-enter {
13
- opacity: 0;
14
- transform: translateY(-16px);
1
+ import { theme as o } from "@veeqo/ui";
2
+ import { withStyles as r } from "@material-ui/core/styles";
3
+ import e from "@material-ui/core/Slider";
4
+ const l = r({
5
+ root: {
6
+ color: o.colors.secondary.blue.base,
7
+ height: 4
8
+ },
9
+ thumb: {
10
+ height: 20,
11
+ width: 20,
12
+ backgroundColor: "#fff",
13
+ border: "3px solid currentColor",
14
+ marginTop: -8,
15
+ marginLeft: -10,
16
+ "&:focus, &:hover, &$active": {
17
+ boxShadow: "inherit"
18
+ }
19
+ },
20
+ valueLabel: {
21
+ left: "calc(-50% - 1px)"
22
+ },
23
+ track: {
24
+ height: 4,
25
+ borderRadius: 4,
26
+ backgroundColor: o.colors.secondary.blue.light,
27
+ opacity: 1
28
+ },
29
+ rail: {
30
+ height: 4,
31
+ borderRadius: 4,
32
+ backgroundColor: o.colors.neutral.grey.dark,
33
+ opacity: 1
15
34
  }
16
-
17
- &.notification-enter-active {
18
- opacity: 1;
19
- transform: translateY(0);
20
- transition: 350ms ease;
21
- }
22
-
23
- &.notification-exit {
24
- opacity: 0;
25
- transform: translateY(16px);
26
- transition: 350ms ease;
27
- }
28
- pointer-events: none;
29
- `;
30
- o(e)`
31
- display: inline-flex;
32
- flex-direction: row;
33
- align-items: center;
34
- padding: 20px 24px 24px 24px;
35
- border-radius: 4px;
36
- margin: 0 auto;
37
- background-color: #fff;
38
- box-shadow: ${n.shadows.lg};
39
- pointer-events: all;
40
- `;
41
- const g = o(a)`
42
- display: inline-flex;
43
- flex-direction: row;
44
- align-items: center;
45
- margin: 0 auto;
46
- background-color: #fff;
47
- box-shadow: ${n.shadows.lg};
48
- pointer-events: all;
49
- `, h = o(l)`
50
- margin-right: 16px;
51
- `, w = o(i)`
52
- line-height: 20px;
53
- `, r = o(i)`
54
- margin: ${(t) => t.margin ? t.margin : ""};
55
- color: ${(t) => t.color};
56
- `, u = o(i)`
57
- margin-right: 8px;
58
- color: ${(t) => t.color};
59
- `, y = o(p)``, $ = o(e)`
60
- display: flex;
61
- flex-direction: row;
62
- align-items: flex-end;
63
- flex-grow: 2;
64
- margin-left: 24px;
65
- margin-right: 24px;
66
- `;
67
- o(s)``;
68
- o.button`
69
- display: flex;
70
- flex-direction: row;
71
- width: 100%;
72
- padding: 12px 16px;
73
- cursor: pointer;
74
-
75
- & > ${r} {
76
- white-space: nowrap;
77
- user-select: none;
78
- }
79
-
80
- &:hover {
81
- background-color: ${n.colors.neutral.grey.lightest};
82
- }
83
-
84
- &:hover > ${r} {
85
- color: ${n.colors.secondary.blue.base};
86
- }
87
- `;
35
+ })(e);
88
36
  export {
89
- u as Bold,
90
- h as Button,
91
- y as Glyph,
92
- w as Hint,
93
- m as Notification,
94
- g as Pill,
95
- r as Text,
96
- $ as Wrap
37
+ l as MUISlider
97
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veeqo/transfigure",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "dist/index.cjs",