@camstack/ui-library 0.1.51 → 0.1.53
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/composites/cap-settings/AutotrackSection.d.ts +5 -0
- package/dist/composites/cap-settings/MotionGridCanvas.d.ts +9 -0
- package/dist/composites/cap-settings/MotionZonesSettings.d.ts +2 -0
- package/dist/composites/cap-settings/PtzPanel.d.ts +2 -0
- package/dist/composites/cap-settings/index.d.ts +14 -0
- package/dist/composites/index.d.ts +2 -0
- package/dist/composites/state-values-stream.d.ts +14 -18
- package/dist/contexts/widget-registry.d.ts +67 -6
- package/dist/generated/system-hooks.d.ts +66 -30
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/use-device-autotrack.d.ts +10 -0
- package/dist/hooks/use-ptz.d.ts +29 -1
- package/dist/index.cjs +2140 -1162
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2099 -1148
- package/dist/index.js.map +1 -1
- package/dist/widgets/host-widgets.d.ts +9 -0
- package/package.json +9 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,8 @@ export * from './contexts/device-context';
|
|
|
8
8
|
export * from './contexts/player-overlays';
|
|
9
9
|
export * from './contexts/zone-editing';
|
|
10
10
|
export { SystemProvider, useSystem, useOptionalSystem, type SystemProviderProps, } from './contexts/system-context';
|
|
11
|
-
export { WidgetRegistryProvider, useWidgetRegistry, useOptionalWidgetRegistry, useWidget, useWidgetMetadata, useAllWidgets, type WidgetRegistry, type WidgetRegistryProviderProps, type WidgetProps, type WidgetMetadataEntry, } from './contexts/widget-registry';
|
|
11
|
+
export { WidgetRegistryProvider, useWidgetRegistry, useOptionalWidgetRegistry, useWidget, useWidgetMetadata, useAllWidgets, useRemoteComponent, loadRemoteBundle, type WidgetRegistry, type WidgetRegistryProviderProps, type WidgetProps, type WidgetMetadataEntry, type WidgetHost, type WidgetSize, } from './contexts/widget-registry';
|
|
12
|
+
export { HOST_WIDGETS, type HostWidgetProps } from './widgets/host-widgets';
|
|
12
13
|
export * from './hooks';
|
|
13
14
|
export * from './generated/system-hooks';
|
|
14
15
|
export { trpc } from './trpc-react';
|