oolib 2.198.4 → 2.198.5
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.
|
@@ -42,7 +42,7 @@ var _BarChart = function (args) {
|
|
|
42
42
|
react_1.default.createElement(BarChart_1.BarChart, { overflowAfterHeight: 300, showPercent: args.showPercent, data: [
|
|
43
43
|
{
|
|
44
44
|
display: "Logged In Once",
|
|
45
|
-
stack1:
|
|
45
|
+
stack1: 0, stack2: 23, stack3: 67, stack4: 12, stack5: 89,
|
|
46
46
|
stack6: 34, stack7: 56, stack8: 78, stack9: 21, stack10: 43,
|
|
47
47
|
stack11: 65, stack12: 87, stack13: 32, stack14: 54, stack15: 76,
|
|
48
48
|
stack16: 19, stack17: 41, stack18: 63, stack19: 85, stack20: 28,
|
|
@@ -50,7 +50,7 @@ var _BarChart = function (args) {
|
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
display: "Registered Users",
|
|
53
|
-
stack1:
|
|
53
|
+
stack1: 0, stack3: 71, stack4: 25, stack5: 84,
|
|
54
54
|
stack6: 47, stack7: 69, stack8: 13, stack9: 56, stack10: 91,
|
|
55
55
|
stack11: 29, stack12: 73, stack13: 46, stack14: 82, stack15: 17,
|
|
56
56
|
stack16: 64, stack17: 39, stack18: 75, stack19: 22, stack20: 58
|
|
@@ -110,7 +110,7 @@ var _BarChart = function (args) {
|
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
display: "Wrote at least 3 stories With Over 2,000 Words Each and Received More Than 50 Positive Engagements from Other Community Members",
|
|
113
|
-
stack1:
|
|
113
|
+
stack1: 0
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
display: "Created Profile again After Deleting Their Previous One Due to Privacy Concerns or Desire to Start Fresh with New Information",
|
|
@@ -65,7 +65,7 @@ var useTrackMousePosition = function () {
|
|
|
65
65
|
// Create a throttled version of the mouse move handler
|
|
66
66
|
var throttledHandleMouseMove = (0, react_1.useCallback)(lodash_1.default.throttle(function (e) {
|
|
67
67
|
setMousePosition({ x: e.clientX, y: e.clientY });
|
|
68
|
-
},
|
|
68
|
+
}, 16), // ~60fps (1000ms / 60 = 16.67ms)
|
|
69
69
|
[]);
|
|
70
70
|
(0, react_1.useEffect)(function () {
|
|
71
71
|
window.addEventListener("mousemove", throttledHandleMouseMove);
|