@buoy-gg/route-events 2.1.10 → 2.1.11
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/lib/commonjs/components/RouteEventDetailContent.js +9 -2
- package/lib/commonjs/components/RouteEventExpandedContent.js +3 -1
- package/lib/commonjs/components/RouteEventItemCompact.js +1 -1
- package/lib/commonjs/components/RouteEventsModalWithTabs.js +75 -73
- package/lib/module/components/RouteEventDetailContent.js +9 -2
- package/lib/module/components/RouteEventExpandedContent.js +3 -1
- package/lib/module/components/RouteEventItemCompact.js +2 -2
- package/lib/module/components/RouteEventsModalWithTabs.js +76 -74
- package/lib/typescript/components/RouteEventDetailContent.d.ts.map +1 -1
- package/lib/typescript/components/RouteEventExpandedContent.d.ts.map +1 -1
- package/lib/typescript/components/RouteEventsModalWithTabs.d.ts.map +1 -1
- package/package.json +14 -13
- package/LICENSE +0 -58
|
@@ -59,7 +59,7 @@ function RouteEventDetailContent({
|
|
|
59
59
|
children: label
|
|
60
60
|
})
|
|
61
61
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
62
|
-
style: styles.
|
|
62
|
+
style: styles.dataViewerContainer,
|
|
63
63
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_dataViewer.DataViewer, {
|
|
64
64
|
title: "",
|
|
65
65
|
data: {
|
|
@@ -68,7 +68,9 @@ function RouteEventDetailContent({
|
|
|
68
68
|
params: event.params,
|
|
69
69
|
timestamp: new Date(event.timestamp).toISOString()
|
|
70
70
|
},
|
|
71
|
-
showTypeFilter:
|
|
71
|
+
showTypeFilter: true,
|
|
72
|
+
rawMode: true,
|
|
73
|
+
initialExpanded: true
|
|
72
74
|
})
|
|
73
75
|
})]
|
|
74
76
|
});
|
|
@@ -488,5 +490,10 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
488
490
|
height: 1,
|
|
489
491
|
backgroundColor: _sharedUi.buoyColors.border,
|
|
490
492
|
marginVertical: 8
|
|
493
|
+
},
|
|
494
|
+
dataViewerContainer: {
|
|
495
|
+
marginTop: -12,
|
|
496
|
+
marginHorizontal: -12,
|
|
497
|
+
marginBottom: -12
|
|
491
498
|
}
|
|
492
499
|
});
|
|
@@ -125,7 +125,9 @@ function RouteEventExpandedContent({
|
|
|
125
125
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_dataViewer.DataViewer, {
|
|
126
126
|
data: event.params,
|
|
127
127
|
title: "",
|
|
128
|
-
showTypeFilter:
|
|
128
|
+
showTypeFilter: true,
|
|
129
|
+
rawMode: true,
|
|
130
|
+
initialExpanded: true
|
|
129
131
|
})]
|
|
130
132
|
}), visitNumber > 1 && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
131
133
|
style: styles.detailRow,
|
|
@@ -127,7 +127,7 @@ function RouteEventItemCompact({
|
|
|
127
127
|
const statusLabel = (0, _react.useMemo)(() => getStatusLabel(routeType), [routeType]);
|
|
128
128
|
const statusSublabel = (0, _react.useMemo)(() => getStatusSublabel(event), [event]);
|
|
129
129
|
const badgeText = (0, _react.useMemo)(() => getBadgeText(event), [event]);
|
|
130
|
-
const timeLabel = (0,
|
|
130
|
+
const timeLabel = (0, _sharedUi.useRelativeTime)(event.timestamp);
|
|
131
131
|
const expandedContent = (0, _react.useMemo)(() => {
|
|
132
132
|
if (!isExpanded) return undefined;
|
|
133
133
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_RouteEventExpandedContent.RouteEventExpandedContent, {
|
|
@@ -448,79 +448,81 @@ function RouteEventsModalWithTabs({
|
|
|
448
448
|
})]
|
|
449
449
|
});
|
|
450
450
|
};
|
|
451
|
-
return /*#__PURE__*/(0, _jsxRuntime.
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
children:
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
451
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.TickProvider, {
|
|
452
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_sharedUi.JsModal, {
|
|
453
|
+
visible: visible,
|
|
454
|
+
onClose: onClose,
|
|
455
|
+
onMinimize: onMinimize,
|
|
456
|
+
persistenceKey: persistenceKey,
|
|
457
|
+
header: {
|
|
458
|
+
showToggleButton: true,
|
|
459
|
+
customContent: showFilters ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_sharedUi.ModalHeader, {
|
|
460
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ModalHeader.Navigation, {
|
|
461
|
+
onBack: () => setShowFilters(false)
|
|
462
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ModalHeader.Content, {
|
|
463
|
+
title: "Filters"
|
|
464
|
+
})]
|
|
465
|
+
}) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_sharedUi.ModalHeader, {
|
|
466
|
+
children: [onBack && /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ModalHeader.Navigation, {
|
|
467
|
+
onBack: onBack
|
|
468
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ModalHeader.Content, {
|
|
469
|
+
title: "",
|
|
470
|
+
noMargin: true,
|
|
471
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.TabSelector, {
|
|
472
|
+
tabs: [{
|
|
473
|
+
key: "routes",
|
|
474
|
+
label: hasExpoRouter ? "Routes" : "Screens"
|
|
475
|
+
}, {
|
|
476
|
+
key: "events",
|
|
477
|
+
label: `Events${events.length > 0 && activeTab !== "events" ? ` (${events.length})` : ""}`
|
|
478
|
+
}, {
|
|
479
|
+
key: "stack",
|
|
480
|
+
label: "Stack"
|
|
481
|
+
}],
|
|
482
|
+
activeTab: activeTab,
|
|
483
|
+
onTabChange: tab => setActiveTab(tab)
|
|
484
|
+
})
|
|
485
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ModalHeader.Actions, {
|
|
486
|
+
children: activeTab === "events" && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
487
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ToolbarCopyButton, {
|
|
488
|
+
value: copyAllEventsData,
|
|
489
|
+
buttonStyle: styles.iconButton
|
|
490
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
491
|
+
onPress: handleToggleFilters,
|
|
492
|
+
style: [styles.iconButton, ignoredPatterns.size > 0 && styles.activeFilterButton],
|
|
493
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.Filter, {
|
|
494
|
+
size: 14,
|
|
495
|
+
color: ignoredPatterns.size > 0 ? _sharedUi.buoyColors.primary : _sharedUi.buoyColors.textSecondary
|
|
496
|
+
})
|
|
497
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.PowerToggleButton, {
|
|
498
|
+
isEnabled: isListening,
|
|
499
|
+
onToggle: handleToggleListening,
|
|
500
|
+
accessibilityLabel: "Toggle route event monitoring"
|
|
501
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
502
|
+
onPress: handleClearEvents,
|
|
503
|
+
style: styles.iconButton,
|
|
504
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.Trash2, {
|
|
505
|
+
size: 14,
|
|
506
|
+
color: _sharedUi.buoyColors.error
|
|
507
|
+
})
|
|
508
|
+
})]
|
|
509
|
+
})
|
|
510
|
+
})]
|
|
511
|
+
})
|
|
512
|
+
},
|
|
513
|
+
onModeChange: handleModeChange,
|
|
514
|
+
enablePersistence: true,
|
|
515
|
+
initialMode: "bottomSheet",
|
|
516
|
+
enableGlitchEffects: true,
|
|
517
|
+
styles: {},
|
|
518
|
+
footer: footerNode,
|
|
519
|
+
footerHeight: footerNode ? 68 : 0,
|
|
520
|
+
children: [renderContent(), /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.ProUpgradeModal, {
|
|
521
|
+
visible: showUpgradeModal,
|
|
522
|
+
onClose: () => setShowUpgradeModal(false),
|
|
523
|
+
featureName: "Route Event Management"
|
|
524
|
+
})]
|
|
525
|
+
})
|
|
524
526
|
});
|
|
525
527
|
}
|
|
526
528
|
const styles = _reactNative.StyleSheet.create({
|
|
@@ -54,7 +54,7 @@ export function RouteEventDetailContent({
|
|
|
54
54
|
children: label
|
|
55
55
|
})
|
|
56
56
|
}), /*#__PURE__*/_jsx(View, {
|
|
57
|
-
style: styles.
|
|
57
|
+
style: styles.dataViewerContainer,
|
|
58
58
|
children: /*#__PURE__*/_jsx(DataViewer, {
|
|
59
59
|
title: "",
|
|
60
60
|
data: {
|
|
@@ -63,7 +63,9 @@ export function RouteEventDetailContent({
|
|
|
63
63
|
params: event.params,
|
|
64
64
|
timestamp: new Date(event.timestamp).toISOString()
|
|
65
65
|
},
|
|
66
|
-
showTypeFilter:
|
|
66
|
+
showTypeFilter: true,
|
|
67
|
+
rawMode: true,
|
|
68
|
+
initialExpanded: true
|
|
67
69
|
})
|
|
68
70
|
})]
|
|
69
71
|
});
|
|
@@ -483,5 +485,10 @@ const styles = StyleSheet.create({
|
|
|
483
485
|
height: 1,
|
|
484
486
|
backgroundColor: buoyColors.border,
|
|
485
487
|
marginVertical: 8
|
|
488
|
+
},
|
|
489
|
+
dataViewerContainer: {
|
|
490
|
+
marginTop: -12,
|
|
491
|
+
marginHorizontal: -12,
|
|
492
|
+
marginBottom: -12
|
|
486
493
|
}
|
|
487
494
|
});
|
|
@@ -121,7 +121,9 @@ export function RouteEventExpandedContent({
|
|
|
121
121
|
}), /*#__PURE__*/_jsx(DataViewer, {
|
|
122
122
|
data: event.params,
|
|
123
123
|
title: "",
|
|
124
|
-
showTypeFilter:
|
|
124
|
+
showTypeFilter: true,
|
|
125
|
+
rawMode: true,
|
|
126
|
+
initialExpanded: true
|
|
125
127
|
})]
|
|
126
128
|
}), visitNumber > 1 && /*#__PURE__*/_jsxs(View, {
|
|
127
129
|
style: styles.detailRow,
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
import { useMemo } from "react";
|
|
10
10
|
import { View, Text, TouchableOpacity, StyleSheet } from "react-native";
|
|
11
|
-
import { CompactRow,
|
|
11
|
+
import { CompactRow, useRelativeTime, buoyColors } from "@buoy-gg/shared-ui";
|
|
12
12
|
import { RouteEventExpandedContent } from "./RouteEventExpandedContent";
|
|
13
13
|
|
|
14
14
|
// Route type for color coding
|
|
@@ -123,7 +123,7 @@ export function RouteEventItemCompact({
|
|
|
123
123
|
const statusLabel = useMemo(() => getStatusLabel(routeType), [routeType]);
|
|
124
124
|
const statusSublabel = useMemo(() => getStatusSublabel(event), [event]);
|
|
125
125
|
const badgeText = useMemo(() => getBadgeText(event), [event]);
|
|
126
|
-
const timeLabel =
|
|
126
|
+
const timeLabel = useRelativeTime(event.timestamp);
|
|
127
127
|
const expandedContent = useMemo(() => {
|
|
128
128
|
if (!isExpanded) return undefined;
|
|
129
129
|
return /*#__PURE__*/_jsx(RouteEventExpandedContent, {
|
|
@@ -5,7 +5,7 @@ import { Text, View, TouchableOpacity, StyleSheet, Alert } from "react-native";
|
|
|
5
5
|
import { CommonActions } from "@react-navigation/native";
|
|
6
6
|
import { NavigationContainerRefContext } from "@react-navigation/core";
|
|
7
7
|
import { useSafeRouter, isExpoRouterAvailable } from "@buoy-gg/shared-ui";
|
|
8
|
-
import { JsModal, ModalHeader, TabSelector, formatRelativeTime, devToolsStorageKeys, Navigation, Trash2, Filter, SearchBar, persistentStorage, ToolbarCopyButton, Lock, ProUpgradeModal, PowerToggleButton, buoyColors } from "@buoy-gg/shared-ui";
|
|
8
|
+
import { JsModal, ModalHeader, TabSelector, formatRelativeTime, devToolsStorageKeys, Navigation, Trash2, Filter, SearchBar, persistentStorage, ToolbarCopyButton, Lock, ProUpgradeModal, PowerToggleButton, buoyColors, TickProvider } from "@buoy-gg/shared-ui";
|
|
9
9
|
import { useIsPro } from "@buoy-gg/license";
|
|
10
10
|
|
|
11
11
|
// Free tier limit for route events
|
|
@@ -446,79 +446,81 @@ export function RouteEventsModalWithTabs({
|
|
|
446
446
|
})]
|
|
447
447
|
});
|
|
448
448
|
};
|
|
449
|
-
return /*#__PURE__*/
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
children:
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
449
|
+
return /*#__PURE__*/_jsx(TickProvider, {
|
|
450
|
+
children: /*#__PURE__*/_jsxs(JsModal, {
|
|
451
|
+
visible: visible,
|
|
452
|
+
onClose: onClose,
|
|
453
|
+
onMinimize: onMinimize,
|
|
454
|
+
persistenceKey: persistenceKey,
|
|
455
|
+
header: {
|
|
456
|
+
showToggleButton: true,
|
|
457
|
+
customContent: showFilters ? /*#__PURE__*/_jsxs(ModalHeader, {
|
|
458
|
+
children: [/*#__PURE__*/_jsx(ModalHeader.Navigation, {
|
|
459
|
+
onBack: () => setShowFilters(false)
|
|
460
|
+
}), /*#__PURE__*/_jsx(ModalHeader.Content, {
|
|
461
|
+
title: "Filters"
|
|
462
|
+
})]
|
|
463
|
+
}) : /*#__PURE__*/_jsxs(ModalHeader, {
|
|
464
|
+
children: [onBack && /*#__PURE__*/_jsx(ModalHeader.Navigation, {
|
|
465
|
+
onBack: onBack
|
|
466
|
+
}), /*#__PURE__*/_jsx(ModalHeader.Content, {
|
|
467
|
+
title: "",
|
|
468
|
+
noMargin: true,
|
|
469
|
+
children: /*#__PURE__*/_jsx(TabSelector, {
|
|
470
|
+
tabs: [{
|
|
471
|
+
key: "routes",
|
|
472
|
+
label: hasExpoRouter ? "Routes" : "Screens"
|
|
473
|
+
}, {
|
|
474
|
+
key: "events",
|
|
475
|
+
label: `Events${events.length > 0 && activeTab !== "events" ? ` (${events.length})` : ""}`
|
|
476
|
+
}, {
|
|
477
|
+
key: "stack",
|
|
478
|
+
label: "Stack"
|
|
479
|
+
}],
|
|
480
|
+
activeTab: activeTab,
|
|
481
|
+
onTabChange: tab => setActiveTab(tab)
|
|
482
|
+
})
|
|
483
|
+
}), /*#__PURE__*/_jsx(ModalHeader.Actions, {
|
|
484
|
+
children: activeTab === "events" && /*#__PURE__*/_jsxs(_Fragment, {
|
|
485
|
+
children: [/*#__PURE__*/_jsx(ToolbarCopyButton, {
|
|
486
|
+
value: copyAllEventsData,
|
|
487
|
+
buttonStyle: styles.iconButton
|
|
488
|
+
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
489
|
+
onPress: handleToggleFilters,
|
|
490
|
+
style: [styles.iconButton, ignoredPatterns.size > 0 && styles.activeFilterButton],
|
|
491
|
+
children: /*#__PURE__*/_jsx(Filter, {
|
|
492
|
+
size: 14,
|
|
493
|
+
color: ignoredPatterns.size > 0 ? buoyColors.primary : buoyColors.textSecondary
|
|
494
|
+
})
|
|
495
|
+
}), /*#__PURE__*/_jsx(PowerToggleButton, {
|
|
496
|
+
isEnabled: isListening,
|
|
497
|
+
onToggle: handleToggleListening,
|
|
498
|
+
accessibilityLabel: "Toggle route event monitoring"
|
|
499
|
+
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
500
|
+
onPress: handleClearEvents,
|
|
501
|
+
style: styles.iconButton,
|
|
502
|
+
children: /*#__PURE__*/_jsx(Trash2, {
|
|
503
|
+
size: 14,
|
|
504
|
+
color: buoyColors.error
|
|
505
|
+
})
|
|
506
|
+
})]
|
|
507
|
+
})
|
|
508
|
+
})]
|
|
509
|
+
})
|
|
510
|
+
},
|
|
511
|
+
onModeChange: handleModeChange,
|
|
512
|
+
enablePersistence: true,
|
|
513
|
+
initialMode: "bottomSheet",
|
|
514
|
+
enableGlitchEffects: true,
|
|
515
|
+
styles: {},
|
|
516
|
+
footer: footerNode,
|
|
517
|
+
footerHeight: footerNode ? 68 : 0,
|
|
518
|
+
children: [renderContent(), /*#__PURE__*/_jsx(ProUpgradeModal, {
|
|
519
|
+
visible: showUpgradeModal,
|
|
520
|
+
onClose: () => setShowUpgradeModal(false),
|
|
521
|
+
featureName: "Route Event Management"
|
|
522
|
+
})]
|
|
523
|
+
})
|
|
522
524
|
});
|
|
523
525
|
}
|
|
524
526
|
const styles = StyleSheet.create({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RouteEventDetailContent.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventDetailContent.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAczD,UAAU,iBAAiB;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,gBAAgB,CAAC;IAC5B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED,UAAU,4BAA4B;IACpC,YAAY,EAAE,iBAAiB,CAAC;IAChC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,wBAAgB,uBAAuB,CAAC,EACtC,YAAY,EACZ,kBAAsB,EACtB,kBAA6B,EAC7B,qBAA6B,GAC9B,EAAE,4BAA4B,+
|
|
1
|
+
{"version":3,"file":"RouteEventDetailContent.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventDetailContent.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAczD,UAAU,iBAAiB;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,gBAAgB,CAAC;IAC5B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED,UAAU,4BAA4B;IACpC,YAAY,EAAE,iBAAiB,CAAC;IAChC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,wBAAgB,uBAAuB,CAAC,EACtC,YAAY,EACZ,kBAAsB,EACtB,kBAA6B,EAC7B,qBAA6B,GAC9B,EAAE,4BAA4B,+BA0T9B;AAGD,wBAAgB,sBAAsB,CAAC,EACrC,YAAY,EACZ,kBAAsB,EACtB,kBAA6B,GAC9B,EAAE;IACD,YAAY,EAAE,iBAAiB,CAAC;IAChC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9C,sCA2EA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RouteEventExpandedContent.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventExpandedContent.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAKH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD,MAAM,WAAW,8BAA8B;IAC7C,KAAK,EAAE,gBAAgB,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAeD,wBAAgB,yBAAyB,CAAC,EACxC,KAAK,EACL,WAAW,EACX,aAAa,GACd,EAAE,8BAA8B,+
|
|
1
|
+
{"version":3,"file":"RouteEventExpandedContent.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventExpandedContent.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAKH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD,MAAM,WAAW,8BAA8B;IAC7C,KAAK,EAAE,gBAAgB,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAeD,wBAAgB,yBAAyB,CAAC,EACxC,KAAK,EACL,WAAW,EACX,aAAa,GACd,EAAE,8BAA8B,+BAiHhC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RouteEventsModalWithTabs.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventsModalWithTabs.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RouteEventsModalWithTabs.d.ts","sourceRoot":"","sources":["../../../src/components/RouteEventsModalWithTabs.tsx"],"names":[],"mappings":"AAqDA,MAAM,WAAW,6BAA6B;IAC5C,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,GAAG,KAAK,IAAI,CAAC;IACvC,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC;AA8CD,wBAAgB,wBAAwB,CAAC,EACvC,OAAO,EACP,OAAO,EACP,MAAM,EACN,UAAU,EACV,2BAAmC,GACpC,EAAE,6BAA6B,sCAgiB/B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buoy-gg/route-events",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.11",
|
|
4
4
|
"description": "route-events package",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -25,12 +25,19 @@
|
|
|
25
25
|
"lib"
|
|
26
26
|
],
|
|
27
27
|
"sideEffects": false,
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bob build",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "bob build",
|
|
32
|
+
"clean": "rimraf lib",
|
|
33
|
+
"test": "pnpm run typecheck"
|
|
34
|
+
},
|
|
28
35
|
"dependencies": {
|
|
29
|
-
"@buoy-gg/floating-tools-core": "
|
|
30
|
-
"@buoy-gg/shared-ui": "
|
|
36
|
+
"@buoy-gg/floating-tools-core": "workspace:*",
|
|
37
|
+
"@buoy-gg/shared-ui": "workspace:*"
|
|
31
38
|
},
|
|
32
39
|
"peerDependencies": {
|
|
33
|
-
"@buoy-gg/license": "2.1.
|
|
40
|
+
"@buoy-gg/license": "2.1.11",
|
|
34
41
|
"@react-native-async-storage/async-storage": "*",
|
|
35
42
|
"@react-navigation/native": "*",
|
|
36
43
|
"expo-router": "*",
|
|
@@ -43,13 +50,13 @@
|
|
|
43
50
|
}
|
|
44
51
|
},
|
|
45
52
|
"devDependencies": {
|
|
53
|
+
"@buoy-gg/license": "workspace:*",
|
|
46
54
|
"@react-native-async-storage/async-storage": "^2.1.0",
|
|
47
55
|
"@react-navigation/native": "^7.1.18",
|
|
48
56
|
"@types/react": "^19.1.0",
|
|
49
57
|
"@types/react-native": "^0.73.0",
|
|
50
58
|
"expo-router": "~5.0.7",
|
|
51
|
-
"typescript": "~5.8.3"
|
|
52
|
-
"@buoy-gg/license": "2.1.10"
|
|
59
|
+
"typescript": "~5.8.3"
|
|
53
60
|
},
|
|
54
61
|
"react-native-builder-bob": {
|
|
55
62
|
"source": "src",
|
|
@@ -82,11 +89,5 @@
|
|
|
82
89
|
"publishConfig": {
|
|
83
90
|
"access": "public",
|
|
84
91
|
"tag": "latest"
|
|
85
|
-
},
|
|
86
|
-
"scripts": {
|
|
87
|
-
"build": "bob build",
|
|
88
|
-
"typecheck": "tsc --noEmit",
|
|
89
|
-
"clean": "rimraf lib",
|
|
90
|
-
"test": "pnpm run typecheck"
|
|
91
92
|
}
|
|
92
|
-
}
|
|
93
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
PROPRIETARY SOFTWARE LICENSE
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024-present Buoy. All rights reserved.
|
|
4
|
-
|
|
5
|
-
This software and its source code are proprietary and confidential.
|
|
6
|
-
|
|
7
|
-
NOTICE: This is NOT open source software. This software is licensed,
|
|
8
|
-
not sold, and is protected by copyright laws and international treaties.
|
|
9
|
-
|
|
10
|
-
TERMS AND CONDITIONS:
|
|
11
|
-
|
|
12
|
-
1. LICENSE GRANT
|
|
13
|
-
Subject to the terms of this Agreement and payment of applicable fees,
|
|
14
|
-
Buoy grants you a limited, non-exclusive, non-transferable license
|
|
15
|
-
to use the compiled software packages in your applications.
|
|
16
|
-
|
|
17
|
-
2. RESTRICTIONS
|
|
18
|
-
You may NOT:
|
|
19
|
-
- Copy, modify, or distribute the source code
|
|
20
|
-
- Reverse engineer, decompile, or disassemble the software
|
|
21
|
-
- Remove or alter any proprietary notices or labels
|
|
22
|
-
- Sublicense, rent, lease, or lend the software
|
|
23
|
-
- Use the software to create competing products
|
|
24
|
-
- Share access credentials with unauthorized parties
|
|
25
|
-
|
|
26
|
-
3. OWNERSHIP
|
|
27
|
-
React Buoy retains all right, title, and interest in the software,
|
|
28
|
-
including all intellectual property rights. This license does not
|
|
29
|
-
grant you any rights to trademarks or service marks.
|
|
30
|
-
|
|
31
|
-
4. TERMINATION
|
|
32
|
-
This license is effective until terminated. Your rights under this
|
|
33
|
-
license will terminate automatically without notice if you fail to
|
|
34
|
-
comply with any of its terms. Upon termination, you must cease all
|
|
35
|
-
use and destroy all copies of the software.
|
|
36
|
-
|
|
37
|
-
5. DISCLAIMER OF WARRANTIES
|
|
38
|
-
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
39
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
40
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
41
|
-
|
|
42
|
-
6. LIMITATION OF LIABILITY
|
|
43
|
-
IN NO EVENT SHALL BUOY BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
44
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN
|
|
45
|
-
CONNECTION WITH THIS LICENSE OR THE USE OF THE SOFTWARE.
|
|
46
|
-
|
|
47
|
-
7. GOVERNING LAW
|
|
48
|
-
This Agreement shall be governed by and construed in accordance with
|
|
49
|
-
the laws of the United States, without regard to its conflict of
|
|
50
|
-
law provisions.
|
|
51
|
-
|
|
52
|
-
For licensing inquiries and subscription information:
|
|
53
|
-
- Website: https://buoy.gg
|
|
54
|
-
- Email: AustinLovesWorking@gmail.com
|
|
55
|
-
|
|
56
|
-
Unauthorized reproduction or distribution of this software, or any
|
|
57
|
-
portion of it, may result in severe civil and criminal penalties,
|
|
58
|
-
and will be prosecuted to the maximum extent possible under the law.
|