@burdenoff/fe-libs 2026.720.1 → 2026.720.3
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/node_modules/ccount/index.js +10 -0
- package/dist/node_modules/hast-util-sanitize/lib/index.js +161 -0
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +74 -0
- package/dist/node_modules/longest-streak/index.js +9 -0
- package/dist/node_modules/markdown-table/index.js +59 -0
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +61 -0
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +7 -0
- package/dist/node_modules/mdast-util-gfm/lib/index.js +26 -0
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +129 -0
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +97 -0
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +49 -0
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +137 -0
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +58 -0
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +12 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +36 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +25 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +28 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +44 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +19 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +41 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +18 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +26 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +25 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +11 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +38 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +11 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +12 -0
- package/dist/node_modules/micromark-extension-gfm/index.js +18 -0
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +174 -0
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +193 -0
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +96 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +43 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +20 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +201 -0
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +34 -0
- package/dist/node_modules/rehype-sanitize/lib/index.js +9 -0
- package/dist/node_modules/remark-gfm/lib/index.js +10 -0
- package/dist/shared/components/Markdown.d.ts +22 -0
- package/dist/shared/components/Markdown.d.ts.map +1 -0
- package/dist/shared/components/Markdown.js +38 -0
- package/dist/shared/components/index.d.ts +2 -0
- package/dist/shared/components/index.d.ts.map +1 -1
- package/dist/shared/graphql/fetch.d.ts.map +1 -1
- package/dist/shared/pages/LegalPage.js +1 -1
- package/dist/shared/tours/routeCatalog.d.ts.map +1 -1
- package/dist/shared/tours/routeCatalog.js +88 -0
- package/dist/shared-components.js +2 -1
- package/dist/shared.js +59 -58
- package/package.json +7 -1
- package/dist/shared/components/LegalPage.d.ts +0 -19
- package/dist/shared/components/LegalPage.d.ts.map +0 -1
package/dist/shared.js
CHANGED
|
@@ -56,67 +56,68 @@ import { UPGRADE_PROMPT_EVENT as Mn, UpgradePromptModal as Nn, dispatchUpgradePr
|
|
|
56
56
|
import { UpgradeInlineBanner as Fn } from "./shared/components/UpgradeInlineBanner.js";
|
|
57
57
|
import { useVoiceInput as In } from "./shared/components/assistantWidget/useVoiceInput.js";
|
|
58
58
|
import { ASSISTANT_WIDGET_TOGGLE_EVENT as Ln, AssistantWidget as Rn } from "./shared/components/assistantWidget/AssistantWidget.js";
|
|
59
|
+
import { Markdown as zn } from "./shared/components/Markdown.js";
|
|
59
60
|
import "./shared-components.js";
|
|
60
|
-
import { DevtoolsSink as
|
|
61
|
-
import { BroadcastChannelSink as
|
|
62
|
-
import { BackendAuditSink as
|
|
63
|
-
import { RybbitSink as
|
|
64
|
-
import { OtelBrowserSink as
|
|
65
|
-
import { EventBusProvider as
|
|
66
|
-
import { useDebounce as
|
|
67
|
-
import { useThrottle as
|
|
68
|
-
import { BREAKPOINTS as
|
|
69
|
-
import { useOnClickOutside as
|
|
70
|
-
import { useKeyPress as
|
|
71
|
-
import { useExclusiveMenu as
|
|
72
|
-
import { useLocalStorage as
|
|
73
|
-
import { useSessionStorage as
|
|
74
|
-
import { usePrevious as
|
|
75
|
-
import { useConditionalToggle as
|
|
76
|
-
import { usePagination as
|
|
77
|
-
import { useAsync as
|
|
78
|
-
import { MODIFIER_KEYS as
|
|
79
|
-
import { useKeyboardShortcuts as
|
|
80
|
-
import { useHotkeys as
|
|
81
|
-
import { useShortcutHelp as
|
|
82
|
-
import { GLOBAL_SHORTCUT_CATEGORIES as
|
|
83
|
-
import { useLogger as
|
|
84
|
-
import { useHasAnimated as
|
|
85
|
-
import { useReferralAttribution as
|
|
86
|
-
import { useRecordProductVisit as
|
|
87
|
-
import { QUOTA_EXHAUSTED_EVENT as
|
|
88
|
-
import { PLAN_USAGE_SNAPSHOT_EVENT as
|
|
89
|
-
import { appendContextToPath as
|
|
90
|
-
import { MicrofrontendContext as
|
|
91
|
-
import { detectDeviceType as
|
|
92
|
-
import { useTourPlayer as
|
|
93
|
-
import { TourSpotlight as
|
|
94
|
-
import { TourTooltip as
|
|
95
|
-
import { TourPlayerProvider as
|
|
96
|
-
import { TourPlayer as
|
|
97
|
-
import { getTourContextRank as
|
|
98
|
-
import { withTourProgressStatus as
|
|
99
|
-
import { ToursProvider as
|
|
100
|
-
import { TourInitializer as
|
|
101
|
-
import { AppShellProvider as
|
|
102
|
-
import { MicrofrontendProvider as
|
|
103
|
-
import { TourTrigger as
|
|
61
|
+
import { DevtoolsSink as Bn } from "./shared/events/sinks/DevtoolsSink.js";
|
|
62
|
+
import { BroadcastChannelSink as Vn } from "./shared/events/sinks/BroadcastChannelSink.js";
|
|
63
|
+
import { BackendAuditSink as Hn } from "./shared/events/sinks/BackendAuditSink.js";
|
|
64
|
+
import { RybbitSink as Un } from "./shared/events/sinks/RybbitSink.js";
|
|
65
|
+
import { OtelBrowserSink as Wn } from "./shared/events/sinks/OtelBrowserSink.js";
|
|
66
|
+
import { EventBusProvider as Gn, createEventBus as Kn, useEvent as qn, useEventBus as Jn, useEventEmitter as Yn } from "./shared-events.js";
|
|
67
|
+
import { useDebounce as Xn } from "./shared/hooks/useDebounce.js";
|
|
68
|
+
import { useThrottle as Zn } from "./shared/hooks/useThrottle.js";
|
|
69
|
+
import { BREAKPOINTS as Qn, useBreakpoint as $n, useMobileBreakpoint as er } from "./shared/hooks/useBreakpoint.js";
|
|
70
|
+
import { useOnClickOutside as tr, useOnClickOutsideWithRef as nr } from "./shared/hooks/useOnClickOutside.js";
|
|
71
|
+
import { useKeyPress as rr, useKeyboardShortcut as ir } from "./shared/hooks/useKeyPress.js";
|
|
72
|
+
import { useExclusiveMenu as ar } from "./shared/hooks/useExclusiveMenu.js";
|
|
73
|
+
import { useLocalStorage as or } from "./shared/hooks/useLocalStorage.js";
|
|
74
|
+
import { useSessionStorage as sr } from "./shared/hooks/useSessionStorage.js";
|
|
75
|
+
import { usePrevious as cr, usePreviousDistinct as lr, usePreviousHistory as ur } from "./shared/hooks/usePrevious.js";
|
|
76
|
+
import { useConditionalToggle as dr, useToggle as fr, useToggleObject as pr } from "./shared/hooks/useToggle.js";
|
|
77
|
+
import { usePagination as mr } from "./shared/hooks/usePagination.js";
|
|
78
|
+
import { useAsync as hr, useAsyncImmediate as gr } from "./shared/hooks/useAsync.js";
|
|
79
|
+
import { MODIFIER_KEYS as _r, PLATFORM_TYPES as vr } from "./shared/keyboard/types.js";
|
|
80
|
+
import { useKeyboardShortcuts as yr } from "./shared/keyboard/useKeyboardShortcuts.js";
|
|
81
|
+
import { useHotkeys as br } from "./shared/keyboard/useHotkeys.js";
|
|
82
|
+
import { useShortcutHelp as xr } from "./shared/keyboard/useShortcutHelp.js";
|
|
83
|
+
import { GLOBAL_SHORTCUT_CATEGORIES as Sr, createGlobalShortcuts as Cr, getGlobalShortcutsByCategory as wr, mergeShortcuts as Tr } from "./shared/keyboard/globalShortcuts.js";
|
|
84
|
+
import { useLogger as Er } from "./shared/logger/useLogger.js";
|
|
85
|
+
import { useHasAnimated as Dr } from "./shared/hooks/useHasAnimated.js";
|
|
86
|
+
import { useReferralAttribution as Or } from "./shared/hooks/useReferralAttribution.js";
|
|
87
|
+
import { useRecordProductVisit as kr } from "./shared/hooks/useRecordProductVisit.js";
|
|
88
|
+
import { QUOTA_EXHAUSTED_EVENT as Ar, dispatchQuotaExhausted as jr, useQuotaErrorToast as Mr } from "./shared/hooks/useQuotaErrorToast.js";
|
|
89
|
+
import { PLAN_USAGE_SNAPSHOT_EVENT as Nr, publishPlanUsageSnapshot as Pr, useUpgradePrompt as Fr } from "./shared/hooks/useUpgradePrompt.js";
|
|
90
|
+
import { appendContextToPath as Ir, useCurrentContextSearchParams as Lr } from "./shared/hooks/useCurrentContextSearchParams.js";
|
|
91
|
+
import { MicrofrontendContext as Rr, useMicrofrontendContext as zr } from "./shared-hooks.js";
|
|
92
|
+
import { detectDeviceType as Br, getResponsiveSelector as Vr } from "./shared/tours/types.js";
|
|
93
|
+
import { useTourPlayer as Hr } from "./shared/tours/useTourPlayer.js";
|
|
94
|
+
import { TourSpotlight as Ur } from "./shared/tours/TourSpotlight.js";
|
|
95
|
+
import { TourTooltip as Wr } from "./shared/tours/TourTooltip.js";
|
|
96
|
+
import { TourPlayerProvider as Gr, useIsTourPlaying as Kr, useStartTour as qr, useStopTour as Jr, useTourPlayerContext as Yr } from "./shared/tours/TourPlayerProvider.js";
|
|
97
|
+
import { TourPlayer as Xr, TourTriggerButton as Zr, usePlayTour as Qr } from "./shared/tours/TourPlayer.js";
|
|
98
|
+
import { getTourContextRank as $r, getTourRouteCatalog as ei, getTourRouteModules as ti, getTourRoutePages as ni, isTourVisibleForContext as ri, normalizeTourPath as ii, registerTourRouteCatalog as ai, resolveTourTargetPath as oi } from "./shared/tours/routeCatalog.js";
|
|
99
|
+
import { withTourProgressStatus as si } from "./shared/tours/progress.js";
|
|
100
|
+
import { ToursProvider as ci, useAutoStartTour as li, useSafeToursContext as ui, useTours as di, useToursContext as fi } from "./shared/tours/ToursContext.js";
|
|
101
|
+
import { TourInitializer as pi } from "./shared/tours/TourInitializer.js";
|
|
102
|
+
import { AppShellProvider as mi, resolveAppShellObservabilityConfig as hi } from "./shared/providers/AppShellProvider.js";
|
|
103
|
+
import { MicrofrontendProvider as gi } from "./shared-providers.js";
|
|
104
|
+
import { TourTrigger as _i } from "./shared/tours/TourTrigger.js";
|
|
104
105
|
import "./shared-tours.js";
|
|
105
|
-
import { getNativeBridge as
|
|
106
|
-
import { getPlatform as
|
|
107
|
-
import { nativeConfirm as
|
|
108
|
-
import { SafeAreaView as
|
|
109
|
-
import { useNativePlatform as
|
|
110
|
-
import { useSafeArea as
|
|
111
|
-
import { useNativeKeyboard as
|
|
112
|
-
import { useAppState as
|
|
113
|
-
import { useDeviceInfo as
|
|
114
|
-
import { useHaptics as
|
|
115
|
-
import { useStatusBar as
|
|
116
|
-
import { acknowledgeNativePurchase as
|
|
106
|
+
import { getNativeBridge as vi } from "./shared/native/bridge.js";
|
|
107
|
+
import { getPlatform as yi, isAndroid as bi, isElectron as xi, isIOS as Si, isInstalledApp as Ci, isNative as wi, isStandalonePWA as Ti, isWeb as Ei, isWebBrowser as Di } from "./shared/native/platform.js";
|
|
108
|
+
import { nativeConfirm as Oi, nativeCopyText as ki, nativeImpact as Ai, nativeNotify as ji, nativeOpenUrl as Mi, nativeShare as Ni, nativeToast as Pi } from "./shared/native/consumers.js";
|
|
109
|
+
import { SafeAreaView as Fi } from "./shared/native/SafeAreaView.js";
|
|
110
|
+
import { useNativePlatform as Ii } from "./shared/native/hooks/useNativePlatform.js";
|
|
111
|
+
import { useSafeArea as Li } from "./shared/native/hooks/useSafeArea.js";
|
|
112
|
+
import { useNativeKeyboard as Ri } from "./shared/native/hooks/useNativeKeyboard.js";
|
|
113
|
+
import { useAppState as zi } from "./shared/native/hooks/useAppState.js";
|
|
114
|
+
import { useDeviceInfo as Bi } from "./shared/native/hooks/useDeviceInfo.js";
|
|
115
|
+
import { useHaptics as Vi } from "./shared/native/hooks/useHaptics.js";
|
|
116
|
+
import { useStatusBar as Hi } from "./shared/native/hooks/useStatusBar.js";
|
|
117
|
+
import { acknowledgeNativePurchase as Ui, getNativeProducts as Wi, getNativePurchases as Gi, installNativeIAP as Ki, isNativeIAPAvailable as qi, purchaseNativeProduct as Ji, restoreNativePurchases as Yi } from "./shared/native/purchases.js";
|
|
117
118
|
import "./shared-native.js";
|
|
118
119
|
import "./shared/actors/index.js";
|
|
119
120
|
//#region src/shared/index.ts
|
|
120
|
-
var
|
|
121
|
+
var Xi = "1.0.0";
|
|
121
122
|
//#endregion
|
|
122
|
-
export { Ln as ASSISTANT_WIDGET_TOGGLE_EVENT, Qt as AccessDenied, Ut as ActorIdentity, Pe as ApolloClient, Fe as ApolloProvider, ln as AppErrorBoundary, bt as AppInitializer,
|
|
123
|
+
export { Ln as ASSISTANT_WIDGET_TOGGLE_EVENT, Qt as AccessDenied, Ut as ActorIdentity, Pe as ApolloClient, Fe as ApolloProvider, ln as AppErrorBoundary, bt as AppInitializer, mi as AppShellProvider, Rn as AssistantWidget, ie as BACKEND_ERROR_EVENT, Qn as BREAKPOINTS, Hn as BackendAuditSink, Vn as BroadcastChannelSink, G as COMMON_SHELL_LESS_ROUTES, ae as CONNECTION_STATUS_EVENT, on as ConditionalShell, Dt as ConsoleTransport, gn as ContextConversationWidget, Z as DEFAULT_PAGE_SIZE, K as DEFAULT_SHELL_CONFIG, Bn as DevtoolsSink, Kt as ErrorBoundary, en as ErrorFallback, Gn as EventBusProvider, Xi as FE_SHARED_VERSION, un as FeatureFlagProvider, hn as FeatureGate, Q as GATEWAYS, Sr as GLOBAL_SHORTCUT_CATEGORIES, Oe as GatewayProvider, Ie as InMemoryCache, An as KeyboardHelpDialogWrapper, tn as LoadingFallback, Ct as LogLevel, Tt as LogManager, wt as Logger, _r as MODIFIER_KEYS, zn as Markdown, Rr as MicrofrontendContext, an as MicrofrontendErrorBoundary, gi as MicrofrontendProvider, Wn as OtelBrowserSink, Nr as PLAN_USAGE_SNAPSHOT_EVENT, vr as PLATFORM_TYPES, V as PRODUCTS, H as PRODUCT_URLS, cn as PWAInstallBanner, nn as PageLoadingFallback, Yt as PermissionButton, $t as PermissionDenied, Xt as PermissionGate, Zt as PermissionLink, Nt as QUOTA_EXHAUSTED_CODE, Ar as QUOTA_EXHAUSTED_EVENT, jn as QuotaMeter, Pt as RESOURCE_CAP_EXCEEDED_CODE, qt as RequireAuth, Jt as RequireGuest, Un as RybbitSink, Se as SSELink, rt as SSORedirectSpinner, ct as SSO_DEPOSITED_PARAM, Ft as STORAGE_QUOTA_EXCEEDED_CODE, Fi as SafeAreaView, rn as SectionLoadingFallback, pi as TourInitializer, Xr as TourPlayer, Gr as TourPlayerProvider, Ur as TourSpotlight, Wr as TourTooltip, _i as TourTrigger, Zr as TourTriggerButton, ci as ToursProvider, It as UPGRADE_ERROR_CODES, Mn as UPGRADE_PROMPT_EVENT, Fn as UpgradeInlineBanner, Nn as UpgradePromptModal, Ne as WsLink, Ui as acknowledgeNativePurchase, r as alertTokens, Ir as appendContextToPath, Ue as attemptTokenRefresh, lt as beginSsoNavigation, Wt as buildActorFallback, Lt as buildQuotaExhaustedMessage, ut as buildSsoDepositUrl, m as capitalizeFirst, h as capitalizeWords, i as categoryTokens, it as checkRemoteSLO, at as checkSLO, We as clearAuthSessionStorage, pe as clearGraphqlFetchResponseCache, ot as clearLocalAuthState, Ye as clearSSoCookie, Xe as clearShellSsoCookies, dt as clearSsoDepositState, ft as clearSsoNavigation, Ot as clearUserContext, Ht as cn, pt as consumeSsoDepositMarker, n as createApolloClient, Kn as createEventBus, Cr as createGlobalShortcuts, Ce as createGraphQLClient, jt as createProfileScopedStorage, Br as detectDeviceType, _n as detectPlatform, oe as dispatchBackendErrorEvent, jr as dispatchQuotaExhausted, Pn as dispatchUpgradePrompt, se as extractBackendError, Rt as extractQuotaExhaustedExtensions, zt as extractUpgradeErrorExtensions, g as formatBytes, _ as formatCompactNumber, v as formatCurrency, y as formatCurrencyCompact, b as formatDate, x as formatDateTime, S as formatDuration, vn as formatKeyCombo, C as formatList, w as formatNumber, T as formatOrdinal, E as formatPercentage, D as formatRelativeTime, O as formatTime, a as getAlertTokens, o as getCategoryTokens, yn as getDisplayKeysForPlatform, $ as getGatewayConfig, ee as getGatewayUrl, we as getGlobalClient, wr as getGlobalShortcutsByCategory, te as getGraphQLEndpoint, vi as getNativeBridge, Wi as getNativeProducts, Gi as getNativePurchases, yi as getPlatform, U as getProductUrl, W as getProductsWithUrls, Mt as getProfileScopedKey, s as getProgressTokens, Vr as getResponsiveSelector, st as getSSORedirectUrl, Ze as getSSoCookie, q as getShellConfig, bn as getShortcutLabel, c as getStatusBadgeTokens, l as getStatusTokens, me as getStoredAuthToken, he as getStoredLocale, ge as getStoredOrganizationId, _e as getStoredProjectId, ve as getStoredWorkspaceId, ye as getStoredWorkspaceToken, $r as getTourContextRank, ei as getTourRouteCatalog, ti as getTourRouteModules, ni as getTourRoutePages, u as getTrendTokens, Te as getWorkspaceClient, ne as getWorkspaceTokenPayload, Le as gql, be as graphqlFetch, Ge as hasAuthGraphQLErrors, Ee as initializeAppClients, kt as initializeLogger, L as installGatewayFetchRewrite, Ki as installNativeIAP, ce as isAbortError, bi as isAndroid, Ke as isAuthGraphQLError, qe as isAuthNetworkError, le as isBackendErrorDisplay, P as isChunkLoadError, xi as isElectron, Si as isIOS, Ci as isInstalledApp, xn as isMac, Sn as isMobileDevice, wi as isNative, qi as isNativeIAPAvailable, Bt as isQuotaExhaustedError, Qe as isSharedSsoCookieDomain, J as isShellLessRoute, mt as isSsoNavigationPending, Ti as isStandalonePWA, Cn as isTabletDevice, ri as isTourVisibleForContext, ue as isTransportError, $e as isTrustedSsoOrigin, Vt as isUpgradeError, Ei as isWeb, Di as isWebBrowser, re as isWorkspaceTokenValidForContext, F as lazyWithRetry, Et as logManager, de as markConnectionHealthy, ht as markSsoDepositDone, gt as markSsoDepositPending, wn as matchesKeyCombo, Tr as mergeShortcuts, _t as mintSsoSessionTokens, Oi as nativeConfirm, ki as nativeCopyText, Ai as nativeImpact, ji as nativeNotify, Mi as nativeOpenUrl, Ni as nativeShare, Pi as nativeToast, Tn as normalizeKey, En as normalizePlatformCombo, ii as normalizeTourPath, Dn as parseKeyCombo, k as pluralize, d as progressTokens, Pr as publishPlanUsageSnapshot, Ji as purchaseNativeProduct, et as readShellSsoCookie, vt as readSsoDepositState, Je as redirectToLogin, ai as registerTourRouteCatalog, De as resetAppClients, hi as resolveAppShellObservabilityConfig, B as resolveAuthBridgeConfig, R as resolveGatewayBases, xe as resolveGatewayUrl, I as resolveGatewayUrls, oi as resolveTourTargetPath, Yi as restoreNativePurchases, tt as setSSoCookie, nt as setShellSsoCookies, At as setUserContext, yt as shouldAttemptSsoDeposit, On as shouldEnableKeyboardShortcuts, kn as shouldIgnoreShortcut, Y as shouldShowBreadcrumb, X as shouldShowSidebar, fe as shouldToastBackendError, A as slugify, f as statusTokens, z as suppressConsole, j as toCamelCase, M as toPascalCase, p as trendTokens, N as truncateText, Gt as useActorProfiles, Re as useApolloClient, zi as useAppState, hr as useAsync, gr as useAsyncImmediate, li as useAutoStartTour, $n as useBreakpoint, dr as useConditionalToggle, e as useCopyToClipboard, Lr as useCurrentContextSearchParams, Xn as useDebounce, Bi as useDeviceInfo, qn as useEvent, Jn as useEventBus, Yn as useEventEmitter, ar as useExclusiveMenu, fn as useFeatureFlag, pn as useFeatureFlagDetails, mn as useFeatureFlagValue, dn as useFeatureFlags, ke as useGateway, Ae as useGatewayClient, Vi as useHaptics, Dr as useHasAnimated, br as useHotkeys, Kr as useIsTourPlaying, rr as useKeyPress, ir as useKeyboardShortcut, yr as useKeyboardShortcuts, ze as useLazyQuery, or as useLocalStorage, Er as useLogger, t as useMediaQuery, zr as useMicrofrontendContext, er as useMobileBreakpoint, Be as useMutation, Ri as useNativeKeyboard, Ii as useNativePlatform, tr as useOnClickOutside, nr as useOnClickOutsideWithRef, sn as usePWA, mr as usePagination, Qr as usePlayTour, cr as usePrevious, lr as usePreviousDistinct, ur as usePreviousHistory, Ve as useQuery, Mr as useQuotaErrorToast, kr as useRecordProductVisit, Or as useReferralAttribution, xt as useRegistryHelpers, Li as useSafeArea, je as useSafeGateway, Me as useSafeGatewayClient, ui as useSafeToursContext, sr as useSessionStorage, St as useShellNavigate, xr as useShortcutHelp, qr as useStartTour, Hi as useStatusBar, Jr as useStopTour, He as useSubscription, Zn as useThrottle, fr as useToggle, pr as useToggleObject, Hr as useTourPlayer, Yr as useTourPlayerContext, di as useTours, fi as useToursContext, Fr as useUpgradePrompt, In as useVoiceInput, si as withTourProgressStatus };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@burdenoff/fe-libs",
|
|
3
|
-
"version": "2026.720.
|
|
3
|
+
"version": "2026.720.3",
|
|
4
4
|
"description": "Burdenoff frontend primitives and domain libraries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"imports": {
|
|
@@ -86,6 +86,10 @@
|
|
|
86
86
|
"types": "./dist/shared/components/index.d.ts",
|
|
87
87
|
"import": "./dist/shared-components.js"
|
|
88
88
|
},
|
|
89
|
+
"./shared/components/Markdown": {
|
|
90
|
+
"types": "./dist/shared/components/Markdown.d.ts",
|
|
91
|
+
"import": "./dist/shared/components/Markdown.js"
|
|
92
|
+
},
|
|
89
93
|
"./shared/config": {
|
|
90
94
|
"types": "./dist/shared/config/index.d.ts",
|
|
91
95
|
"import": "./dist/shared-config.js"
|
|
@@ -303,6 +307,8 @@
|
|
|
303
307
|
"react-error-boundary": "^6.1.1",
|
|
304
308
|
"react-hook-form": "^7.69.0",
|
|
305
309
|
"react-markdown": "^10.1.0",
|
|
310
|
+
"rehype-sanitize": "^6.0.0",
|
|
311
|
+
"remark-gfm": "^4.0.1",
|
|
306
312
|
"sonner": "^2.0.7",
|
|
307
313
|
"tailwind-merge": "^3.4.0",
|
|
308
314
|
"web-vitals": "^4.2.4",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* LegalPage Component
|
|
3
|
-
*
|
|
4
|
-
* Renders resolved content pages (privacy policy, terms of service, etc.)
|
|
5
|
-
* by fetching from the global gateway's resolvedContentPage query.
|
|
6
|
-
* Template variables are replaced server-side with product-specific values.
|
|
7
|
-
*/
|
|
8
|
-
export interface LegalPageProps {
|
|
9
|
-
/** Product ID for template variable resolution (e.g., "workspaces", "fluidgrids") */
|
|
10
|
-
productId: string;
|
|
11
|
-
/** Custom slug mapping (default: privacy→privacy-policy, terms→terms-of-service, etc.) */
|
|
12
|
-
slugMap?: Record<string, string>;
|
|
13
|
-
/** Home route path (default: "/") */
|
|
14
|
-
homeRoute?: string;
|
|
15
|
-
/** Home link label (default: "Back to Dashboard") */
|
|
16
|
-
homeLabel?: string;
|
|
17
|
-
}
|
|
18
|
-
export declare function LegalPage({ productId, slugMap, homeRoute, homeLabel, }: LegalPageProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
//# sourceMappingURL=LegalPage.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegalPage.d.ts","sourceRoot":"","sources":["../../../src/shared/components/LegalPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAmDH,MAAM,WAAW,cAAc;IAC7B,qFAAqF;IACrF,SAAS,EAAE,MAAM,CAAC;IAClB,0FAA0F;IAC1F,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,qCAAqC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qDAAqD;IACrD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,SAAS,CAAC,EACxB,SAAS,EACT,OAA0B,EAC1B,SAAe,EACf,SAA+B,GAChC,EAAE,cAAc,2CAyLhB"}
|