@camstack/addon-export-hap 0.1.2 → 0.1.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/export-hap.addon.js +140 -47
- package/dist/export-hap.addon.js.map +1 -1
- package/dist/export-hap.addon.mjs +140 -47
- package/dist/export-hap.addon.mjs.map +1 -1
- package/package.json +3 -29
- package/dist/@mf-types/compiled-types/page/HomeKitOverviewPage.d.ts +0 -24
- package/dist/@mf-types/compiled-types/page/HomeKitOverviewPage.d.ts.map +0 -1
- package/dist/@mf-types/compiled-types/page/page.d.ts +0 -12
- package/dist/@mf-types/compiled-types/page/page.d.ts.map +0 -1
- package/dist/@mf-types/page.d.ts +0 -2
- package/dist/@mf-types.d.ts +0 -3
- package/dist/@mf-types.zip +0 -0
- package/dist/__mfe_internal__addon_export_hap_page__loadShare___mf_0_camstack_mf_1_sdk__loadShare__.mjs-B7qZNHZC.mjs +0 -12
- package/dist/__mfe_internal__addon_export_hap_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs-B3wGuKgV.mjs +0 -12
- package/dist/__mfe_internal__addon_export_hap_page__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.mjs-D4zYQtXk.mjs +0 -73
- package/dist/__mfe_internal__addon_export_hap_page__loadShare___mf_0_trpc_mf_1_client__loadShare__.mjs-DrrRnQpW.mjs +0 -42
- package/dist/__mfe_internal__addon_export_hap_page__loadShare___mf_0_trpc_mf_1_react_mf_2_query__loadShare__.mjs-BEeMNLCX.mjs +0 -46
- package/dist/__mfe_internal__addon_export_hap_page__loadShare__react__loadShare__.mjs-BPYrKf_3.mjs +0 -56
- package/dist/__mfe_internal__addon_export_hap_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.mjs-x684zh94.mjs +0 -18
- package/dist/__mfe_internal__addon_export_hap_page__loadShare__react_mf_2_dom__loadShare__.mjs-CHMNar3q.mjs +0 -28
- package/dist/__mfe_internal__addon_export_hap_page__loadShare__react_mf_2_dom_mf_1_client__loadShare__.mjs-CM8j15CX.mjs +0 -18
- package/dist/_stub.js +0 -3223
- package/dist/_virtual_mf-localSharedImportMap___mfe_internal__addon_export_hap_page-DtbdD5CL.mjs +0 -156
- package/dist/addon-export-hap.css +0 -3
- package/dist/browser-i_dCVxwk.mjs +0 -1227
- package/dist/client-COVrSAyU.mjs +0 -7592
- package/dist/dist-B4EgL9KT.mjs +0 -12922
- package/dist/dist-BLWGlNFD.mjs +0 -2483
- package/dist/dist-DOK7aZoj.mjs +0 -662
- package/dist/dist-DvB1ylHP.mjs +0 -1275
- package/dist/dist-RCwIG6iQ.mjs +0 -2229
- package/dist/dist-v8qx0EEt.mjs +0 -17192
- package/dist/getErrorShape-BPSzUA7W-m6tLWUI0.mjs +0 -189
- package/dist/hostInit-CWjIaYbZ.mjs +0 -144
- package/dist/jsx-runtime-C-bO5vlp.mjs +0 -22
- package/dist/modern-DN59UY0v.mjs +0 -2184
- package/dist/react-Bl6eCS2o.mjs +0 -293
- package/dist/react-dom-lYY58-MR.mjs +0 -131
- package/dist/remoteEntry.js +0 -83
- package/dist/rolldown-runtime-DC4cgjXG.mjs +0 -20
- package/dist/schemas-DswVYZsq.mjs +0 -3483
- package/dist/virtualExposes-Biq8M5a-.mjs +0 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-hap",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "HomeKit (HAP) bridge exporter for CamStack devices. Publishes a bridged accessory per exposed device — MotionSensor in this MVP; Camera/Doorbell/Switch/Light follow.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -37,19 +37,6 @@
|
|
|
37
37
|
"capabilities": [
|
|
38
38
|
{
|
|
39
39
|
"name": "device-export"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"name": "addon-pages-source"
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"pages": [
|
|
46
|
-
{
|
|
47
|
-
"id": "export-hap",
|
|
48
|
-
"label": "HomeKit Export",
|
|
49
|
-
"icon": "home",
|
|
50
|
-
"path": "/addon/export-hap",
|
|
51
|
-
"remoteName": "addon_export_hap_page",
|
|
52
|
-
"bundle": "remoteEntry.js"
|
|
53
40
|
}
|
|
54
41
|
],
|
|
55
42
|
"icon": "assets/icon.svg",
|
|
@@ -62,16 +49,12 @@
|
|
|
62
49
|
"assets"
|
|
63
50
|
],
|
|
64
51
|
"scripts": {
|
|
65
|
-
"build": "vite build
|
|
52
|
+
"build": "vite build",
|
|
66
53
|
"build:lib": "vite build",
|
|
67
|
-
"build:page": "vite build -c vite.page.config.ts",
|
|
68
|
-
"dev:page": "vite",
|
|
69
54
|
"typecheck": "tsc --noEmit"
|
|
70
55
|
},
|
|
71
56
|
"peerDependencies": {
|
|
72
|
-
"@camstack/types": "^0.1.0"
|
|
73
|
-
"react": ">=18",
|
|
74
|
-
"react-dom": ">=18"
|
|
57
|
+
"@camstack/types": "^0.1.0"
|
|
75
58
|
},
|
|
76
59
|
"dependencies": {
|
|
77
60
|
"@homebridge/hap-nodejs": "^2.1.6",
|
|
@@ -80,15 +63,6 @@
|
|
|
80
63
|
"devDependencies": {
|
|
81
64
|
"@camstack/sdk": "*",
|
|
82
65
|
"@camstack/types": "*",
|
|
83
|
-
"@camstack/ui-library": "*",
|
|
84
|
-
"@module-federation/vite": "^1.15.2",
|
|
85
|
-
"@tailwindcss/vite": "^4.2.0",
|
|
86
|
-
"@trpc/client": "^11.16.0",
|
|
87
|
-
"@vitejs/plugin-react": "^4.0.0",
|
|
88
|
-
"lucide-react": "^0.576",
|
|
89
|
-
"react": "^19.0.0",
|
|
90
|
-
"react-dom": "^19.0.0",
|
|
91
|
-
"tailwindcss": "^4.2.0",
|
|
92
66
|
"typescript": "~5.9.0",
|
|
93
67
|
"vite": "^8.0.11",
|
|
94
68
|
"vite-plugin-dts": "^5.0.0"
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* HomeKit (HAP) export — addon overview page.
|
|
3
|
-
*
|
|
4
|
-
* Top section: bridge name, PIN code (copy), QR code (rendered from the
|
|
5
|
-
* setupURI surfaced by the bridge `getStatus`), pairing status badge,
|
|
6
|
-
* bridge port (advanced).
|
|
7
|
-
*
|
|
8
|
-
* Body section: exposed-devices table with status badge, stream
|
|
9
|
-
* preference, per-row "Open device-details" + "Unexpose" actions.
|
|
10
|
-
*
|
|
11
|
-
* Wired against the codegen'd `device-export` cap router. The page
|
|
12
|
-
* targets the hub node (`nodeId: 'hub'`) — the HAP addon is `hub-only`,
|
|
13
|
-
* so the collection resolver returns the single hub-resident provider.
|
|
14
|
-
*
|
|
15
|
-
* NOTE: This file lives under `packages/addon-export-hap/src/page/` and
|
|
16
|
-
* is NOT bundled by the addon's server-side `vite build`. A separate
|
|
17
|
-
* Module Federation page-bundle build (mirroring `addon-benchmark`'s
|
|
18
|
-
* `vite.config.ts`) is required before the admin-ui's `<AddonPageLoader>`
|
|
19
|
-
* can mount this component. See the addon README / handover notes.
|
|
20
|
-
*/
|
|
21
|
-
import { type ReactElement } from 'react';
|
|
22
|
-
import { type AddonPageProps } from '@camstack/ui-library';
|
|
23
|
-
export default function HomeKitOverviewPage({ trpc, navigate }: AddonPageProps): ReactElement;
|
|
24
|
-
//# sourceMappingURL=HomeKitOverviewPage.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HomeKitOverviewPage.d.ts","sourceRoot":"","sources":["../../../../src/page/HomeKitOverviewPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,OAAO,EAA6C,KAAK,YAAY,EAAE,MAAM,OAAO,CAAA;AACpF,OAAO,EAOL,KAAK,cAAc,EACpB,MAAM,sBAAsB,CAAA;AAiC7B,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,cAAc,GAAG,YAAY,CAgP5F"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Module Federation entry — wires the CSS bundle and re-exports the
|
|
3
|
-
* overview page as the default export the host loader expects.
|
|
4
|
-
*
|
|
5
|
-
* Kept as a thin wrapper around `HomeKitOverviewPage` so the underlying
|
|
6
|
-
* page module stays a pure React component (no CSS side-effects, no
|
|
7
|
-
* dev-mount logic), making it reusable in tests / Storybook.
|
|
8
|
-
*/
|
|
9
|
-
import './index.css';
|
|
10
|
-
import HomeKitOverviewPage from './HomeKitOverviewPage';
|
|
11
|
-
export default HomeKitOverviewPage;
|
|
12
|
-
//# sourceMappingURL=page.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"page.d.ts","sourceRoot":"","sources":["../../../../src/page/page.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,OAAO,aAAa,CAAA;AACpB,OAAO,mBAAmB,MAAM,uBAAuB,CAAA;AAEvD,eAAe,mBAAmB,CAAA"}
|
package/dist/@mf-types/page.d.ts
DELETED
package/dist/@mf-types.d.ts
DELETED
package/dist/@mf-types.zip
DELETED
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare___mf_0_camstack_mf_1_sdk__loadShare__.mjs
|
|
2
|
-
var e = "__mf_module_cache__";
|
|
3
|
-
globalThis[e] ||= {
|
|
4
|
-
share: {},
|
|
5
|
-
remote: {}
|
|
6
|
-
}, globalThis[e].share ||= {}, globalThis[e].remote ||= {};
|
|
7
|
-
var t = globalThis[e].share["@camstack/sdk"];
|
|
8
|
-
if (t === void 0) throw Error("[Module Federation] Shared module @camstack/sdk was imported before federation bootstrap finished.");
|
|
9
|
-
t.__esModule, t.default;
|
|
10
|
-
var { DEFAULT_ENABLED_CLASSES: n, DetectionClass: r, ELIGIBLE_HA_DOMAINS: i, ELIGIBLE_HA_DOMAINS_SET: a, ELIGIBLE_SCRYPTED_DEVICE_TYPES: o, ELIGIBLE_SCRYPTED_DEVICE_TYPES_SET: s, FEATURE_MATRIX: c, HA_DOMAIN_TYPE_MAP: l, RAW_TO_CANONICAL: u, SCRYPTED_TYPE_TO_CANONICAL: d, System: f, TIMELINE_PRESET_ALL: p, TIMELINE_PRESET_CRITICAL: m, TIMELINE_PRESET_IMPORTANT: h, animalClasses: g, audioClasses: _, audioLabelClasses: v, createSystem: y, defaultDetectionClasses: b, detectionClassesDefaultMap: x, doorbellClasses: S, faceClasses: C, getBackendRequiredFeatures: w, getCanonicalDeviceType: T, getClassesForTimelinePreset: E, getNextEvalInterval: D, getParentClass: O, getParentDetectionClass: k, getSourceFeatures: A, isAnimalClassname: j, isAudioClassname: M, isDoorbellClassname: N, isFaceClassname: P, isFeatureAvailable: F, isLabelDetection: I, isMotionClassname: L, isPackageClassname: R, isPersonClassname: z, isPlateClassname: B, isSensorLabelClassname: V, isVehicleClassname: H, licensePlateClasses: U, motionClasses: W, packageClasses: G, personClasses: K, raceFastestEndpoint: q, selectOptimalStream: J, sensorLabelClasses: Y, vehicleClasses: X } = t;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { y as t };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs
|
|
2
|
-
var e = "__mf_module_cache__";
|
|
3
|
-
globalThis[e] ||= {
|
|
4
|
-
share: {},
|
|
5
|
-
remote: {}
|
|
6
|
-
}, globalThis[e].share ||= {}, globalThis[e].remote ||= {};
|
|
7
|
-
var t = globalThis[e].share["@camstack/types"];
|
|
8
|
-
if (t === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
|
|
9
|
-
t.__esModule, t.default;
|
|
10
|
-
var { ACCESSORY_LABEL: ee, APPLE_SA_TO_MACRO: te, AUDIO_BACKEND_CHOICES: ne, AUDIO_MACRO_LABELS: re, AccessoriesStatusSchema: ie, AccessoryKind: ae, AddBrokerInputSchema: oe, AddonAutoUpdateSchema: se, AddonListItemSchema: ce, AddonPageDeclarationSchema: le, AddonPageInfoSchema: n, AgentLoadSummarySchema: r, AlertSchema: i, AlertSeveritySchema: a, AlertSourceSchema: o, AlertStatusSchema: s, ApiKeyRecordSchema: c, ApiKeySummarySchema: l, ArchiveEntrySchema: u, ArchiveManifestSchema: d, AudioAnalysisResultSchema: f, AudioAnalysisSettingsSchema: p, AudioChunkInputSchema: m, AudioClassSummarySchema: h, AudioClassificationLabelSchema: g, AudioClassificationResultSchema: _, AudioCodecInfoSchema: v, AudioDecodeSessionConfigSchema: y, AudioEncodeSessionConfigSchema: b, AudioEncodedChunkSchema: x, AudioEventSchema: S, AudioLevelSchema: C, AudioMetricsHistoryPointSchema: w, AudioMetricsHistorySchema: T, AudioMetricsSnapshotSchema: E, AudioPcmChunkSchema: D, AuthProviderInfoSchema: O, AuthResultSchema: k, AutoUpdateSettingsSchema: A, AvailableIntegrationTypeSchema: j, BATTERY_DEVICE_PROFILE: M, BackupDestinationInfoSchema: N, BackupEntrySchema: P, BatteryStatusSchema: F, BoundingBoxSchema: I, BrightnessStatusSchema: L, BrokerAudioClientSchema: R, BrokerClientsSchema: z, BrokerConnectionDetailsSchema: B, BrokerDecodedClientSchema: V, BrokerInfoSchema: H, BrokerRtspClientSchema: U, BrokerStatsSchema: W, BrokerStatusSchema: ue, CAM_PROFILE_ORDER: de, CamProfileSchema: fe, CamStreamKindSchema: pe, CamStreamResolutionSchema: me, CameraCredentialsSchema: he, CameraCredentialsStatusSchema: ge, CameraMetricsSchema: _e, CameraMetricsWithDeviceIdSchema: ve, CameraStreamSchema: ye, CapScopeSchema: be, CapabilityBindingsSchema: xe, ChargingStatus: Se, ClientNetworkStatsSchema: Ce, ClusterAddonNodeDeploymentSchema: we, ClusterAddonStatusEntrySchema: Te, CollectionColumnSchema: Ee, CollectionIndexSchema: De, ConfigEntrySchema: Oe, ConfigSectionWithValuesSchema: ke, ConfigTabDeclarationSchema: Ae, CreateApiKeyInputSchema: je, CreateApiKeyResultSchema: Me, CreateIntegrationInputSchema: Ne, CreateScopedTokenInputSchema: Pe, CreateScopedTokenResultSchema: Fe, CreateUserInputSchema: Ie, CustomActionInputSchema: Le, DEFAULT_AUDIO_ANALYZER_CONFIG: Re, DEFAULT_DECODER_HWACCEL_CONFIG: ze, DEVICE_PROFILES: Be, DEVICE_SETTINGS_CONTRIBUTION_METHODS: Ve, DEVICE_STATUS_METHOD: He, DecodedFrameSchema: Ue, DecoderAssignmentSchema: We, DecoderSessionConfigSchema: Ge, DecoderStatsSchema: Ke, DeleteIntegrationResultSchema: qe, DetectorOutputSchema: Je, DeviceDiscoveryStatusSchema: Ye, DeviceExportExposeInputSchema: Xe, DeviceExportStatusSchema: G, DeviceExportUnexposeInputSchema: Ze, DeviceFeature: Qe, DeviceInfoSchema: $e, DeviceNetworkStatsSchema: et, DeviceRole: tt, DeviceStatusSchema: nt, DeviceType: rt, DiscoveredChildDeviceSchema: it, DiscoveredChildStatusSchema: at, DiscoveredDeviceSchema: ot, DoorbellPressEventSchema: st, DoorbellStatusSchema: ct, EmbeddingInfoSchema: lt, EmbeddingResultSchema: ut, EncodedPacketSchema: dt, EnrichedWidgetMetadataSchema: ft, EventItemSchema: pt, EventKindSchema: mt, ExposedDeviceSchema: K, ExposedResourceSchema: ht, FeatureManifestSchema: gt, FeatureProbeStatusSchema: _t, FrameInputSchema: vt, GetStreamWithCodecInputSchema: yt, GlobalMetricsSchema: bt, HWACCEL_OPTIONS: xt, HealthStatusSchema: St, HistoryPointSchema: Ct, HistoryResolutionEnum: wt, InstalledPackageSchema: Tt, IntegrationLiteSchema: Et, IntegrationWithStateSchema: Dt, IntercomAbilitySchema: Ot, IntercomStatusSchema: kt, LocationStatSchema: At, LogEntrySchema: jt, LogLevelSchema: Mt, LogStreamEntrySchema: Nt, MODEL_FORMATS: Pt, MediaFileSchema: Ft, MethodAccessSchema: It, MotionAnalysisResultSchema: Lt, MotionEventSchema: Rt, MotionOnMotionChangedDataSchema: zt, MotionRegionSchema: Bt, MotionSourceEnum: Vt, MotionSourcesSchema: Ht, MotionStatusSchema: Ut, MotionTriggerRuntimeStateSchema: Wt, MotionTriggerStatusSchema: Gt, MqttBrokerStatusSchema: Kt, NativeDetectionSchema: qt, NativeObjectClassEnum: Jt, NativeObjectDetectionStatusSchema: Yt, NetworkAccessStatusSchema: Xt, NetworkAddressSchema: Zt, NetworkEndpointSchema: Qt, NotificationHistoryEntrySchema: $t, NotificationRuleSchema: en, NotificationSchema: tn, ObjectEventSchema: nn, OrchestratorMetricsSchema: rn, OsdOverlayKindEnum: an, OsdOverlayPatchSchema: on, OsdOverlaySchema: sn, OsdPositionEnum: cn, OsdStatusSchema: ln, PIPELINE_FLOW_CAPABILITY_NAMES: un, PIPELINE_OWNER_CAPABILITY_NAMES: dn, PackageUpdateSchema: fn, PackageVersionInfoSchema: pn, PasskeySummarySchema: mn, PcmSampleFormatSchema: hn, PerScopeBreakdownSchema: gn, PipelineAssignmentSchema: _n, PipelineDefaultStepSchema: vn, PipelineEngineChoiceSchema: yn, PipelineRunResultBridge: bn, PipelineStepInputSchema: xn, PlaceholderReasonSchema: Sn, PolygonPointSchema: Cn, ProfileSlotSchema: wn, ProfileSlotStatusSchema: Tn, ProviderStatusSchema: En, PtzAutotrackRuntimeStateSchema: Dn, PtzAutotrackSettingsSchema: On, PtzAutotrackStatusSchema: kn, PtzAutotrackTargetOptionSchema: An, PtzMoveCommandSchema: jn, PtzPositionSchema: Mn, PtzPresetSchema: Nn, QueryFilterSchema: Pn, RegisteredStreamSchema: Fn, RemoteAccessEndpointSchema: In, RemoteAccessProviderInfoSchema: Ln, ReportMotionInputSchema: Rn, RtpSourceSchema: zn, RtspRestreamEntrySchema: Bn, RunnerCameraConfigSchema: Vn, RunnerCameraDeviceUIFields: Hn, RunnerLocalLoadSchema: Un, RunnerLocalMetricsSchema: Wn, STORAGE_LOCATION_CARDINALITY: Gn, ScopedTokenSchema: Kn, ScopedTokenSummarySchema: qn, SearchResultSchema: Jn, SegmentSchema: Yn, SendEmailInputSchema: Xn, SendEmailResultSchema: Zn, SettingsPatchSchema: Qn, SettingsRecordSchema: $n, SettingsSchemaWithValuesSchema: er, SettingsUpdateResultSchema: tr, SmtpStatusSchema: nr, SnapshotImageSchema: rr, SpatialDetectionSchema: ir, SsoBridgeClaimsSchema: ar, StartEmbeddedInputSchema: or, StorageAbortUploadInputSchema: sr, StorageBeginDownloadInputSchema: cr, StorageBeginDownloadResultSchema: lr, StorageBeginUploadInputSchema: ur, StorageBeginUploadResultSchema: dr, StorageEndDownloadInputSchema: fr, StorageFinalizeUploadInputSchema: pr, StorageLocationRefSchema: mr, StorageLocationSchema: hr, StorageLocationTypeSchema: gr, StorageProviderInfoSchema: _r, StorageReadChunkInputSchema: vr, StorageTestLocationResultSchema: yr, StorageWriteChunkInputSchema: br, StreamFormatSchema: xr, StreamInfoSchema: Sr, StreamNetworkStatsSchema: Cr, StreamSourceEntrySchema: wr, StreamSourceSchema: Tr, SwitchStatusSchema: Er, SystemMetricsSchema: Dr, TestConnectionResultSchema: Or, ToastSchema: kr, TokenScopeSchema: Ar, TopologyNodeSchema: jr, TopologyProcessSchema: Mr, TopologyServiceSchema: Nr, TrackSchema: Pr, TrackStateSchema: Fr, TrackedDetectionSchema: Ir, TurnProviderInfoSchema: Lr, TurnServerSchema: Rr, UpdateIntegrationInputSchema: zr, UpdateUserInputSchema: Br, UserRecordSchema: Vr, UserSummarySchema: Hr, WELL_KNOWN_TABS: Ur, WELL_KNOWN_TAB_MAP: Wr, WebrtcStreamChoiceSchema: Gr, WebrtcStreamTargetSchema: Kr, WidgetHostEnum: qr, WidgetMetadataSchema: q, WidgetSizeEnum: Jr, YAMNET_TO_MACRO: Yr, ZoneKindEnum: Xr, ZoneRuleModeEnum: Zr, ZoneRuleSchema: Qr, ZoneRuleStageEnum: $r, ZoneRulesArraySchema: ei, ZoneSchema: ti, ZoneScopeBreakdownSchema: ni, accessoriesCapability: ri, accessoryStableId: ii, addonPagesCapability: ai, addonPagesSourceCapability: oi, addonRoutesCapability: si, addonSettingsCapability: ci, addonWidgetsCapability: li, addonWidgetsSourceCapability: ui, addonsCapability: di, adminUiCapability: fi, advancedNotifierCapability: pi, alertsCapability: mi, audioAnalysisCapability: hi, audioAnalyzerCapability: gi, audioCodecCapability: _i, audioMetricsCapability: vi, authProviderCapability: yi, authenticationCapability: bi, backupCapability: xi, batteryCapability: Si, brightnessCapability: Ci, cameraCredentialsCapability: wi, cameraStreamsCapability: Ti, decoderCapability: Ei, detectionPipelineCapability: Di, deviceDiscoveryCapability: Oi, deviceExportCapability: ki, deviceManagerCapability: Ai, deviceMatchesProfile: ji, deviceOpsCapability: Mi, deviceProviderCapability: Ni, deviceStateCapability: Pi, deviceStatusCapability: Fi, doorbellCapability: Ii, embeddingEncoderCapability: Li, errMsg: Ri, event: zi, eventsCapability: Bi, expandCapMethods: Vi, featureProbeCapability: Hi, getAudioMacroClassIds: Ui, hydrateSchema: Wi, integrationsCapability: Gi, intercomCapability: Ki, localNetworkCapability: qi, logDestinationCapability: Ji, mapAudioLabelToMacro: Yi, meshNetworkCapability: Xi, meshOrchestratorCapability: Zi, method: Qi, metricsProviderCapability: $i, motionCapability: ea, motionDetectionCapability: ta, motionTriggerCapability: na, mqttBrokerCapability: ra, nativeObjectDetectionCapability: ia, networkAccessCapability: aa, networkQualityCapability: oa, nodesCapability: sa, notificationOutputCapability: ca, osdCapability: la, pipelineAnalyticsCapability: ua, pipelineExecutorCapability: da, pipelineOrchestratorCapability: fa, pipelineRunnerCapability: pa, platformProbeCapability: ma, ptzAutotrackCapability: ha, ptzCapability: ga, rebootCapability: _a, recordingCapability: va, recordingEngineCapability: ya, remoteAccessCapability: ba, resolveDeviceProfile: xa, restreamerCapability: Sa, settingsStoreCapability: Ca, smtpProviderCapability: wa, snapshotCapability: Ta, snapshotProviderCapability: Ea, ssoBridgeCapability: Da, storageCapability: Oa, storageProviderCapability: ka, streamBrokerCapability: Aa, streamingEngineCapability: ja, switchCapability: Ma, systemCapability: Na, toastCapability: Pa, turnOrchestratorCapability: Fa, turnProviderCapability: Ia, userManagementCapability: La, userPasskeysCapability: Ra, webrtcCapability: za, webrtcClientHintsSchema: Ba, webrtcSessionCapability: Va, zoneAnalyticsCapability: Ha, zoneRulesCapability: Ua, zonesCapability: Wa, ALL_CAPABILITY_DEFINITIONS: J, BACKEND_TO_FORMAT: Ga, BaseAddon: Ka, BaseDevice: qa, BaseDeviceProvider: Ja, CAPABILITY_NAMES: Ya, CAPABILITY_ROUTER_KEYS: Xa, CAP_NAMES_WITH_STATUS: Za, CAP_PROVIDER_KIND_MAP: Qa, COCO_80_LABELS: $a, COCO_TO_MACRO: eo, DEFAULT_ADDON_GROUP: to, DEFAULT_ADDON_PLACEMENT: no, DEFAULT_FEATURES: ro, DEFAULT_LOCATION_SUBDIRS: io, DEFAULT_RETENTION: ao, DEVICE_CAP_NAMES: oo, DEVICE_TYPE_INFO: so, DeviceConfig: co, DeviceRuntimeState: lo, DisposerChain: uo, ElementConfigStore: fo, EventCategory: Y, EventSourceType: po, HF_BASE_URL: mo, HF_REPO: ho, KNOWN_CAP_NAMES: X, MACRO_LABELS: go, METHOD_ACCESS_MAP: _o, PROVIDER_KIND_CAP_NAMES: vo, PYTHON_SCRIPT: yo, RECOGNITION_TYPES: bo, RUNTIME_DEFAULTS: xo, RUNTIME_TO_FORMAT: So, ReadinessRegistry: Co, ReadinessTimeoutError: wo, RingBuffer: To, SCOPE_PRESETS: Eo, STORAGE_LOCATION_TYPES: Do, STREAM_QUALITY_LABELS: Oo, SUB_DETECTION_TYPES: ko, SYSTEM_CAP_NAMES: Ao, SystemMirror: Z, asBoolean: jo, asJsonArray: Mo, asJsonObject: No, asNumber: Po, asString: Fo, autoAssignProfiles: Io, bindAddonActions: Lo, buildAddonRouteProvider: Ro, classifyStream: zo, classifyStreams: Bo, cosineSimilarity: Vo, createDeviceProxy: Q, createEvent: Ho, createLazyTrpcSource: Uo, createMirrorSource: Wo, createRuntimeStateBridge: Go, createSliceHandle: Ko, createSystemProxy: $, customAction: qo, defineCustomActions: Jo, emitDownForOwnedCaps: Yo, emitReadiness: Xo, evaluateZoneRules: Zo, formatForBackend: Qo, formatForRuntime: $o, getCapsByProviderKind: es, hfModelUrl: ts, isAgentOnlyPlacement: ns, isDeployableToAgent: rs, isEvent: is, maskUrlCredentials: as, normalizeAddonInitResult: os, parseCameraStreamConfig: ss, parseJsonArray: cs, parseJsonObject: ls, parseJsonUnknown: us, pythonScriptForBackend: ds, readinessKey: fs, requiresPython: ps, resolveAddonExecution: ms, resolveAddonGroup: hs, resolveAddonPlacement: gs, resolveAddonRuntime: _s, resolveDetectionRuntime: vs, resolveModelFormat: ys, runInferenceStep: bs, scopeKey: xs, streamPixels: Ss, streamQualityLabel: Cs, toDeviceSummary: ws, toStreamSourceEntry: Ts, zodEntriesToConfigUI: Es } = t;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { Z as a, G as c, X as i, J as n, Q as o, Y as r, $ as s, K as t };
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { r as e } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.mjs
|
|
3
|
-
var t = /* @__PURE__ */ e({
|
|
4
|
-
CancelledError: () => O,
|
|
5
|
-
HydrationBoundary: () => o,
|
|
6
|
-
InfiniteQueryObserver: () => k,
|
|
7
|
-
IsRestoringProvider: () => s,
|
|
8
|
-
Mutation: () => A,
|
|
9
|
-
MutationCache: () => j,
|
|
10
|
-
MutationObserver: () => M,
|
|
11
|
-
QueriesObserver: () => N,
|
|
12
|
-
Query: () => P,
|
|
13
|
-
QueryCache: () => F,
|
|
14
|
-
QueryClient: () => I,
|
|
15
|
-
QueryClientContext: () => c,
|
|
16
|
-
QueryClientProvider: () => l,
|
|
17
|
-
QueryErrorResetBoundary: () => u,
|
|
18
|
-
QueryObserver: () => L,
|
|
19
|
-
__moduleExports: () => i,
|
|
20
|
-
dataTagErrorSymbol: () => se,
|
|
21
|
-
dataTagSymbol: () => ce,
|
|
22
|
-
default: () => a,
|
|
23
|
-
defaultScheduler: () => te,
|
|
24
|
-
defaultShouldDehydrateMutation: () => R,
|
|
25
|
-
defaultShouldDehydrateQuery: () => z,
|
|
26
|
-
dehydrate: () => B,
|
|
27
|
-
environmentManager: () => V,
|
|
28
|
-
experimental_streamedQuery: () => H,
|
|
29
|
-
focusManager: () => U,
|
|
30
|
-
hashKey: () => W,
|
|
31
|
-
hydrate: () => G,
|
|
32
|
-
infiniteQueryOptions: () => d,
|
|
33
|
-
isCancelledError: () => K,
|
|
34
|
-
isServer: () => q,
|
|
35
|
-
keepPreviousData: () => J,
|
|
36
|
-
matchMutation: () => Y,
|
|
37
|
-
matchQuery: () => X,
|
|
38
|
-
mutationOptions: () => f,
|
|
39
|
-
noop: () => Z,
|
|
40
|
-
notifyManager: () => Q,
|
|
41
|
-
onlineManager: () => ne,
|
|
42
|
-
partialMatchKey: () => re,
|
|
43
|
-
queryOptions: () => p,
|
|
44
|
-
replaceEqualDeep: () => ie,
|
|
45
|
-
shouldThrowError: () => ae,
|
|
46
|
-
skipToken: () => $,
|
|
47
|
-
timeoutManager: () => oe,
|
|
48
|
-
unsetMarker: () => le,
|
|
49
|
-
useInfiniteQuery: () => m,
|
|
50
|
-
useIsFetching: () => h,
|
|
51
|
-
useIsMutating: () => g,
|
|
52
|
-
useIsRestoring: () => _,
|
|
53
|
-
useMutation: () => v,
|
|
54
|
-
useMutationState: () => ee,
|
|
55
|
-
usePrefetchInfiniteQuery: () => y,
|
|
56
|
-
usePrefetchQuery: () => b,
|
|
57
|
-
useQueries: () => x,
|
|
58
|
-
useQuery: () => S,
|
|
59
|
-
useQueryClient: () => C,
|
|
60
|
-
useQueryErrorResetBoundary: () => w,
|
|
61
|
-
useSuspenseInfiniteQuery: () => T,
|
|
62
|
-
useSuspenseQueries: () => E,
|
|
63
|
-
useSuspenseQuery: () => D
|
|
64
|
-
}), n = "__mf_module_cache__";
|
|
65
|
-
globalThis[n] ||= {
|
|
66
|
-
share: {},
|
|
67
|
-
remote: {}
|
|
68
|
-
}, globalThis[n].share ||= {}, globalThis[n].remote ||= {};
|
|
69
|
-
var r = globalThis[n].share["@tanstack/react-query"];
|
|
70
|
-
if (r === void 0) throw Error("[Module Federation] Shared module @tanstack/react-query was imported before federation bootstrap finished.");
|
|
71
|
-
var i = r, a = r.__esModule ? r.default : r.default ?? r, { HydrationBoundary: o, IsRestoringProvider: s, QueryClientContext: c, QueryClientProvider: l, QueryErrorResetBoundary: u, infiniteQueryOptions: d, mutationOptions: f, queryOptions: p, useInfiniteQuery: m, useIsFetching: h, useIsMutating: g, useIsRestoring: _, useMutation: v, useMutationState: ee, usePrefetchInfiniteQuery: y, usePrefetchQuery: b, useQueries: x, useQuery: S, useQueryClient: C, useQueryErrorResetBoundary: w, useSuspenseInfiniteQuery: T, useSuspenseQueries: E, useSuspenseQuery: D, CancelledError: O, InfiniteQueryObserver: k, Mutation: A, MutationCache: j, MutationObserver: M, QueriesObserver: N, Query: P, QueryCache: F, QueryClient: I, QueryObserver: L, defaultScheduler: te, defaultShouldDehydrateMutation: R, defaultShouldDehydrateQuery: z, dehydrate: B, environmentManager: V, experimental_streamedQuery: H, focusManager: U, hashKey: W, hydrate: G, isCancelledError: K, isServer: q, keepPreviousData: J, matchMutation: Y, matchQuery: X, noop: Z, notifyManager: Q, onlineManager: ne, partialMatchKey: re, replaceEqualDeep: ie, shouldThrowError: ae, skipToken: $, timeoutManager: oe, dataTagErrorSymbol: se, dataTagSymbol: ce, unsetMarker: le } = r;
|
|
72
|
-
//#endregion
|
|
73
|
-
export { t as _, S as a, E as c, I as d, W as f, m as g, p as h, x as i, D as l, $ as m, y as n, C as o, d as p, b as r, T as s, v as t, l as u };
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { r as e } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare___mf_0_trpc_mf_1_client__loadShare__.mjs
|
|
3
|
-
var t = /* @__PURE__ */ e({
|
|
4
|
-
TRPCClientError: () => o,
|
|
5
|
-
TRPCUntypedClient: () => s,
|
|
6
|
-
__moduleExports: () => i,
|
|
7
|
-
clientCallTypeToProcedureType: () => c,
|
|
8
|
-
createTRPCClient: () => l,
|
|
9
|
-
createTRPCClientProxy: () => u,
|
|
10
|
-
createTRPCProxyClient: () => d,
|
|
11
|
-
createTRPCUntypedClient: () => f,
|
|
12
|
-
createWSClient: () => p,
|
|
13
|
-
default: () => a,
|
|
14
|
-
experimental_localLink: () => m,
|
|
15
|
-
getFetch: () => h,
|
|
16
|
-
getUntypedClient: () => g,
|
|
17
|
-
httpBatchLink: () => _,
|
|
18
|
-
httpBatchStreamLink: () => v,
|
|
19
|
-
httpLink: () => y,
|
|
20
|
-
httpSubscriptionLink: () => b,
|
|
21
|
-
isFormData: () => x,
|
|
22
|
-
isNonJsonSerializable: () => S,
|
|
23
|
-
isOctetType: () => C,
|
|
24
|
-
isTRPCClientError: () => w,
|
|
25
|
-
jsonEncoder: () => T,
|
|
26
|
-
loggerLink: () => E,
|
|
27
|
-
retryLink: () => D,
|
|
28
|
-
splitLink: () => O,
|
|
29
|
-
unstable_httpBatchStreamLink: () => k,
|
|
30
|
-
unstable_httpSubscriptionLink: () => A,
|
|
31
|
-
unstable_localLink: () => j,
|
|
32
|
-
wsLink: () => M
|
|
33
|
-
}), n = "__mf_module_cache__";
|
|
34
|
-
globalThis[n] ||= {
|
|
35
|
-
share: {},
|
|
36
|
-
remote: {}
|
|
37
|
-
}, globalThis[n].share ||= {}, globalThis[n].remote ||= {};
|
|
38
|
-
var r = globalThis[n].share["@trpc/client"];
|
|
39
|
-
if (r === void 0) throw Error("[Module Federation] Shared module @trpc/client was imported before federation bootstrap finished.");
|
|
40
|
-
var i = r, a = r.__esModule ? r.default : r.default ?? r, { TRPCClientError: o, TRPCUntypedClient: s, clientCallTypeToProcedureType: c, createTRPCClient: l, createTRPCClientProxy: u, createTRPCProxyClient: d, createTRPCUntypedClient: f, createWSClient: p, experimental_localLink: m, getFetch: h, getUntypedClient: g, httpBatchLink: _, httpBatchStreamLink: v, httpLink: y, httpSubscriptionLink: b, isFormData: x, isNonJsonSerializable: S, isOctetType: C, isTRPCClientError: w, jsonEncoder: T, loggerLink: E, retryLink: D, splitLink: O, unstable_httpBatchStreamLink: k, unstable_httpSubscriptionLink: A, unstable_localLink: j, wsLink: M } = r;
|
|
41
|
-
//#endregion
|
|
42
|
-
export { d as C, h as D, m as E, t as O, u as S, p as T, k as _, v as a, M as b, x as c, w as d, T as f, O as g, D as h, _ as i, i as k, S as l, E as m, s as n, y as o, c as p, g as r, b as s, o as t, C as u, A as v, f as w, l as x, j as y };
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { r as e } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare___mf_0_trpc_mf_1_react_mf_2_query__loadShare__.mjs
|
|
3
|
-
var t = /* @__PURE__ */ e({
|
|
4
|
-
TRPCClientError: () => u,
|
|
5
|
-
TRPCUntypedClient: () => d,
|
|
6
|
-
__moduleExports: () => i,
|
|
7
|
-
clientCallTypeToProcedureType: () => f,
|
|
8
|
-
createTRPCClient: () => p,
|
|
9
|
-
createTRPCClientProxy: () => m,
|
|
10
|
-
createTRPCProxyClient: () => h,
|
|
11
|
-
createTRPCQueryUtils: () => o,
|
|
12
|
-
createTRPCReact: () => s,
|
|
13
|
-
createTRPCUntypedClient: () => g,
|
|
14
|
-
createWSClient: () => _,
|
|
15
|
-
default: () => a,
|
|
16
|
-
experimental_localLink: () => v,
|
|
17
|
-
getFetch: () => y,
|
|
18
|
-
getMutationKey: () => c,
|
|
19
|
-
getQueryKey: () => l,
|
|
20
|
-
getUntypedClient: () => b,
|
|
21
|
-
httpBatchLink: () => x,
|
|
22
|
-
httpBatchStreamLink: () => S,
|
|
23
|
-
httpLink: () => C,
|
|
24
|
-
httpSubscriptionLink: () => w,
|
|
25
|
-
isFormData: () => T,
|
|
26
|
-
isNonJsonSerializable: () => E,
|
|
27
|
-
isOctetType: () => D,
|
|
28
|
-
isTRPCClientError: () => O,
|
|
29
|
-
jsonEncoder: () => k,
|
|
30
|
-
loggerLink: () => A,
|
|
31
|
-
retryLink: () => j,
|
|
32
|
-
splitLink: () => M,
|
|
33
|
-
unstable_httpBatchStreamLink: () => N,
|
|
34
|
-
unstable_httpSubscriptionLink: () => P,
|
|
35
|
-
unstable_localLink: () => F,
|
|
36
|
-
wsLink: () => I
|
|
37
|
-
}), n = "__mf_module_cache__";
|
|
38
|
-
globalThis[n] ||= {
|
|
39
|
-
share: {},
|
|
40
|
-
remote: {}
|
|
41
|
-
}, globalThis[n].share ||= {}, globalThis[n].remote ||= {};
|
|
42
|
-
var r = globalThis[n].share["@trpc/react-query"];
|
|
43
|
-
if (r === void 0) throw Error("[Module Federation] Shared module @trpc/react-query was imported before federation bootstrap finished.");
|
|
44
|
-
var i = r, a = r.__esModule ? r.default : r.default ?? r, { createTRPCQueryUtils: o, createTRPCReact: s, getMutationKey: c, getQueryKey: l, TRPCClientError: u, TRPCUntypedClient: d, clientCallTypeToProcedureType: f, createTRPCClient: p, createTRPCClientProxy: m, createTRPCProxyClient: h, createTRPCUntypedClient: g, createWSClient: _, experimental_localLink: v, getFetch: y, getUntypedClient: b, httpBatchLink: x, httpBatchStreamLink: S, httpLink: C, httpSubscriptionLink: w, isFormData: T, isNonJsonSerializable: E, isOctetType: D, isTRPCClientError: O, jsonEncoder: k, loggerLink: A, retryLink: j, splitLink: M, unstable_httpBatchStreamLink: N, unstable_httpSubscriptionLink: P, unstable_localLink: F, wsLink: I } = r;
|
|
45
|
-
//#endregion
|
|
46
|
-
export { t as n, s as t };
|
package/dist/__mfe_internal__addon_export_hap_page__loadShare__react__loadShare__.mjs-BPYrKf_3.mjs
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { n as e, r as t } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare__react__loadShare__.mjs
|
|
3
|
-
var n = /* @__PURE__ */ t({
|
|
4
|
-
Activity: () => s,
|
|
5
|
-
Children: () => c,
|
|
6
|
-
Component: () => l,
|
|
7
|
-
Fragment: () => u,
|
|
8
|
-
Profiler: () => d,
|
|
9
|
-
PureComponent: () => f,
|
|
10
|
-
StrictMode: () => p,
|
|
11
|
-
Suspense: () => m,
|
|
12
|
-
__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE: () => h,
|
|
13
|
-
__COMPILER_RUNTIME: () => g,
|
|
14
|
-
__moduleExports: () => a,
|
|
15
|
-
cache: () => _,
|
|
16
|
-
cacheSignal: () => v,
|
|
17
|
-
cloneElement: () => y,
|
|
18
|
-
createContext: () => b,
|
|
19
|
-
createElement: () => x,
|
|
20
|
-
createRef: () => S,
|
|
21
|
-
default: () => o,
|
|
22
|
-
forwardRef: () => C,
|
|
23
|
-
isValidElement: () => w,
|
|
24
|
-
lazy: () => T,
|
|
25
|
-
memo: () => E,
|
|
26
|
-
startTransition: () => D,
|
|
27
|
-
unstable_useCacheRefresh: () => O,
|
|
28
|
-
use: () => k,
|
|
29
|
-
useActionState: () => A,
|
|
30
|
-
useCallback: () => j,
|
|
31
|
-
useContext: () => M,
|
|
32
|
-
useDebugValue: () => N,
|
|
33
|
-
useDeferredValue: () => P,
|
|
34
|
-
useEffect: () => F,
|
|
35
|
-
useEffectEvent: () => I,
|
|
36
|
-
useId: () => L,
|
|
37
|
-
useImperativeHandle: () => R,
|
|
38
|
-
useInsertionEffect: () => z,
|
|
39
|
-
useLayoutEffect: () => B,
|
|
40
|
-
useMemo: () => V,
|
|
41
|
-
useOptimistic: () => H,
|
|
42
|
-
useReducer: () => U,
|
|
43
|
-
useRef: () => W,
|
|
44
|
-
useState: () => G,
|
|
45
|
-
useSyncExternalStore: () => K,
|
|
46
|
-
useTransition: () => q,
|
|
47
|
-
version: () => J
|
|
48
|
-
}), r, i, a, o, s, c, l, u, d, f, p, m, h, g, _, v, y, b, x, S, C, w, T, E, D, O, k, A, j, M, N, P, F, I, L, R, z, B, V, H, U, W, G, K, q, J, Y = e((() => {
|
|
49
|
-
if (r = "__mf_module_cache__", globalThis[r] ||= {
|
|
50
|
-
share: {},
|
|
51
|
-
remote: {}
|
|
52
|
-
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {}, i = globalThis[r].share.react, i === void 0) throw Error("[Module Federation] Shared module react was imported before federation bootstrap finished.");
|
|
53
|
-
a = i, o = i.__esModule ? i.default : i.default ?? i, {Activity: s, Children: c, Component: l, Fragment: u, Profiler: d, PureComponent: f, StrictMode: p, Suspense: m, __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE: h, __COMPILER_RUNTIME: g, cache: _, cacheSignal: v, cloneElement: y, createContext: b, createElement: x, createRef: S, forwardRef: C, isValidElement: w, lazy: T, memo: E, startTransition: D, unstable_useCacheRefresh: O, use: k, useActionState: A, useCallback: j, useContext: M, useDebugValue: N, useDeferredValue: P, useEffect: F, useEffectEvent: I, useId: L, useImperativeHandle: R, useInsertionEffect: z, useLayoutEffect: B, useMemo: V, useOptimistic: H, useReducer: U, useRef: W, useState: G, useSyncExternalStore: K, useTransition: q, version: J} = i;
|
|
54
|
-
}));
|
|
55
|
-
//#endregion
|
|
56
|
-
export { M as a, B as c, G as d, K as f, Y as h, j as i, V as l, n as m, x as n, F as o, o as p, C as r, L as s, b as t, W as u };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { r as e } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.mjs
|
|
3
|
-
var t = /* @__PURE__ */ e({
|
|
4
|
-
Fragment: () => o,
|
|
5
|
-
__moduleExports: () => i,
|
|
6
|
-
default: () => a,
|
|
7
|
-
jsx: () => s,
|
|
8
|
-
jsxs: () => c
|
|
9
|
-
}), n = "__mf_module_cache__";
|
|
10
|
-
globalThis[n] ||= {
|
|
11
|
-
share: {},
|
|
12
|
-
remote: {}
|
|
13
|
-
}, globalThis[n].share ||= {}, globalThis[n].remote ||= {};
|
|
14
|
-
var r = globalThis[n].share["react/jsx-runtime"];
|
|
15
|
-
if (r === void 0) throw Error("[Module Federation] Shared module react/jsx-runtime was imported before federation bootstrap finished.");
|
|
16
|
-
var i = r, a = r.__esModule ? r.default : r.default ?? r, { Fragment: o, jsx: s, jsxs: c } = r;
|
|
17
|
-
//#endregion
|
|
18
|
-
export { t as i, s as n, c as r, o as t };
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { n as e, r as t } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare__react_mf_2_dom__loadShare__.mjs
|
|
3
|
-
var n = /* @__PURE__ */ t({
|
|
4
|
-
__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE: () => s,
|
|
5
|
-
__moduleExports: () => a,
|
|
6
|
-
createPortal: () => c,
|
|
7
|
-
default: () => o,
|
|
8
|
-
flushSync: () => l,
|
|
9
|
-
preconnect: () => u,
|
|
10
|
-
prefetchDNS: () => d,
|
|
11
|
-
preinit: () => f,
|
|
12
|
-
preinitModule: () => p,
|
|
13
|
-
preload: () => m,
|
|
14
|
-
preloadModule: () => h,
|
|
15
|
-
requestFormReset: () => g,
|
|
16
|
-
unstable_batchedUpdates: () => _,
|
|
17
|
-
useFormState: () => v,
|
|
18
|
-
useFormStatus: () => y,
|
|
19
|
-
version: () => b
|
|
20
|
-
}), r, i, a, o, s, c, l, u, d, f, p, m, h, g, _, v, y, b, x = e((() => {
|
|
21
|
-
if (r = "__mf_module_cache__", globalThis[r] ||= {
|
|
22
|
-
share: {},
|
|
23
|
-
remote: {}
|
|
24
|
-
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {}, i = globalThis[r].share["react-dom"], i === void 0) throw Error("[Module Federation] Shared module react-dom was imported before federation bootstrap finished.");
|
|
25
|
-
a = i, o = i.__esModule ? i.default : i.default ?? i, {__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE: s, createPortal: c, flushSync: l, preconnect: u, prefetchDNS: d, preinit: f, preinitModule: p, preload: m, preloadModule: h, requestFormReset: g, unstable_batchedUpdates: _, useFormState: v, useFormStatus: y, version: b} = i;
|
|
26
|
-
}));
|
|
27
|
-
//#endregion
|
|
28
|
-
export { n, x as r, c as t };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { r as e } from "./rolldown-runtime-DC4cgjXG.mjs";
|
|
2
|
-
//#region node_modules/__mf__virtual/__mfe_internal__addon_export_hap_page__loadShare__react_mf_2_dom_mf_1_client__loadShare__.mjs
|
|
3
|
-
var t = /* @__PURE__ */ e({
|
|
4
|
-
__moduleExports: () => i,
|
|
5
|
-
createRoot: () => o,
|
|
6
|
-
default: () => a,
|
|
7
|
-
hydrateRoot: () => s,
|
|
8
|
-
version: () => c
|
|
9
|
-
}), n = "__mf_module_cache__";
|
|
10
|
-
globalThis[n] ||= {
|
|
11
|
-
share: {},
|
|
12
|
-
remote: {}
|
|
13
|
-
}, globalThis[n].share ||= {}, globalThis[n].remote ||= {};
|
|
14
|
-
var r = globalThis[n].share["react-dom/client"];
|
|
15
|
-
if (r === void 0) throw Error("[Module Federation] Shared module react-dom/client was imported before federation bootstrap finished.");
|
|
16
|
-
var i = r, a = r.__esModule ? r.default : r.default ?? r, { createRoot: o, hydrateRoot: s, version: c } = r;
|
|
17
|
-
//#endregion
|
|
18
|
-
export { t as n, o as t };
|