@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.
- package/dist/constants/constants.d.ts +4 -0
- package/dist/hooks/usePersistColumns/usePersistColumns.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +82 -81
- package/dist/index101.cjs +80 -1
- package/dist/index101.js +94 -35
- package/dist/index102.cjs +7 -1
- package/dist/index102.js +10 -42
- package/dist/index103.cjs +1 -7
- package/dist/index103.js +42 -10
- package/dist/index21.cjs +1 -1
- package/dist/index21.js +18 -16
- package/dist/index22.cjs +1 -1
- package/dist/index22.js +20 -18
- package/dist/index23.cjs +1 -1
- package/dist/index23.js +32 -30
- package/dist/index24.cjs +1 -1
- package/dist/index24.js +34 -32
- package/dist/index28.cjs +1 -1
- package/dist/index28.js +1 -1
- package/dist/index31.cjs +1 -1
- package/dist/index31.js +1 -1
- package/dist/index36.cjs +1 -1
- package/dist/index36.js +1 -1
- package/dist/index37.cjs +1 -1
- package/dist/index37.js +1 -1
- package/dist/index38.cjs +1 -1
- package/dist/index38.js +1 -1
- package/dist/index39.cjs +1 -1
- package/dist/index39.js +1 -1
- package/dist/index41.cjs +1 -1
- package/dist/index41.js +1 -1
- package/dist/index45.cjs +1 -1
- package/dist/index45.js +7 -2
- package/dist/index58.cjs +1 -1
- package/dist/index58.js +19 -17
- package/dist/index60.cjs +1 -1
- package/dist/index60.js +8 -7
- package/dist/index77.cjs +1 -1
- package/dist/index77.js +72 -92
- package/dist/index79.cjs +1 -80
- package/dist/index79.js +13 -95
- package/dist/index80.cjs +104 -1
- package/dist/index80.js +120 -13
- package/dist/index81.cjs +1 -104
- package/dist/index81.js +65 -117
- package/dist/index82.cjs +1 -1
- package/dist/index82.js +24 -53
- package/dist/index83.cjs +1 -1
- package/dist/index83.js +2 -29
- package/dist/index84.cjs +1 -1
- package/dist/index84.js +40 -2
- package/dist/index85.cjs +1 -1
- package/dist/index85.js +7 -33
- package/dist/index86.cjs +1 -1
- package/dist/index86.js +23 -7
- package/dist/index88.cjs +19 -1
- package/dist/index88.js +24 -22
- package/dist/index89.cjs +1 -19
- package/dist/index89.js +14 -23
- package/dist/index90.cjs +78 -10
- package/dist/index90.js +92 -13
- package/dist/index91.cjs +12 -1
- package/dist/index91.js +16 -15
- package/dist/index92.cjs +1 -1
- package/dist/index92.js +22 -24
- package/dist/index94.cjs +1 -1
- package/dist/index94.js +2 -2
- package/dist/index95.cjs +1 -1
- package/dist/index95.js +1 -1
- package/dist/index98.cjs +1 -1
- package/dist/index98.js +1 -1
- package/dist/index99.cjs +1 -80
- package/dist/index99.js +35 -94
- package/package.json +1 -1
package/dist/index99.js
CHANGED
|
@@ -1,97 +1,38 @@
|
|
|
1
|
-
import o from "
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
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
|
};
|