@camstack/ui-library 1.1.11 → 1.1.12
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/device-controls/ac-panel.d.ts +3 -0
- package/dist/composites/device-controls/climate-panel.d.ts +2 -0
- package/dist/composites/device-controls/panel-controls.d.ts +2 -0
- package/dist/generated/system-hooks.d.ts +16 -0
- package/dist/index.cjs +1149 -160
- package/dist/index.js +1142 -161
- package/package.json +1 -1
|
@@ -13,4 +13,6 @@ export declare const MODE_COLOR: Record<HvacMode, string>;
|
|
|
13
13
|
* matches the borderless cover/lock inline visual language.
|
|
14
14
|
*/
|
|
15
15
|
export declare const MODE_TEXT_COLOR: Record<HvacMode, string>;
|
|
16
|
+
/** Active-mode button accent colour (applied to the pressed mode chip). */
|
|
17
|
+
export declare const MODE_CHIP_ACTIVE: Record<HvacMode, string>;
|
|
16
18
|
export declare function ClimatePanel({ trpc, deviceId, features: _features, layout, optimistic, }: ControlPanelProps): ReactNode;
|
|
@@ -12,6 +12,8 @@ export declare function LockInlineControl({ trpc, deviceId, features, optimistic
|
|
|
12
12
|
export declare function LightInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
13
13
|
export declare function FanInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
14
14
|
export declare function ThermostatInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
15
|
+
export declare function AcInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
16
|
+
export declare function AcHeroCard({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
15
17
|
export declare function MediaPlayerInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
16
18
|
export declare function ControlInlineControl({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
17
19
|
export declare function ControlHeroCard({ trpc, deviceId, features, optimistic, }: DeviceControlProps): ReactNode;
|
|
@@ -477,6 +477,8 @@ export declare const useDeviceManagerGetCreationSchema: typeof trpc.deviceManage
|
|
|
477
477
|
export declare const useDeviceManagerCreateDevice: typeof trpc.deviceManager.createDevice.useMutation;
|
|
478
478
|
/** Generated alias around `trpc.deviceManager.testCreationField.useMutation`. */
|
|
479
479
|
export declare const useDeviceManagerTestCreationField: typeof trpc.deviceManager.testCreationField.useMutation;
|
|
480
|
+
/** Generated alias around `trpc.deviceManager.adoptionListCandidateFilters.useQuery`. */
|
|
481
|
+
export declare const useDeviceManagerAdoptionListCandidateFilters: typeof trpc.deviceManager.adoptionListCandidateFilters.useQuery;
|
|
480
482
|
/** Generated alias around `trpc.deviceManager.adoptionListCandidates.useQuery`. */
|
|
481
483
|
export declare const useDeviceManagerAdoptionListCandidates: typeof trpc.deviceManager.adoptionListCandidates.useQuery;
|
|
482
484
|
/** Generated alias around `trpc.deviceManager.adoptionRefresh.useMutation`. */
|
|
@@ -487,6 +489,16 @@ export declare const useDeviceManagerAdoptionAdopt: typeof trpc.deviceManager.ad
|
|
|
487
489
|
export declare const useDeviceManagerAdoptionRelease: typeof trpc.deviceManager.adoptionRelease.useMutation;
|
|
488
490
|
/** Generated alias around `trpc.deviceManager.adoptionResync.useMutation`. */
|
|
489
491
|
export declare const useDeviceManagerAdoptionResync: typeof trpc.deviceManager.adoptionResync.useMutation;
|
|
492
|
+
/** Generated alias around `trpc.deviceManager.discoveryProviders.useQuery`. */
|
|
493
|
+
export declare const useDeviceManagerDiscoveryProviders: typeof trpc.deviceManager.discoveryProviders.useQuery;
|
|
494
|
+
/** Generated alias around `trpc.deviceManager.discoverAllProviders.useMutation`. */
|
|
495
|
+
export declare const useDeviceManagerDiscoverAllProviders: typeof trpc.deviceManager.discoverAllProviders.useMutation;
|
|
496
|
+
/** Generated alias around `trpc.deviceManager.discoverProvider.useMutation`. */
|
|
497
|
+
export declare const useDeviceManagerDiscoverProvider: typeof trpc.deviceManager.discoverProvider.useMutation;
|
|
498
|
+
/** Generated alias around `trpc.deviceManager.providerCreationType.useQuery`. */
|
|
499
|
+
export declare const useDeviceManagerProviderCreationType: typeof trpc.deviceManager.providerCreationType.useQuery;
|
|
500
|
+
/** Generated alias around `trpc.deviceManager.providerDiscoveryParamsSchema.useQuery`. */
|
|
501
|
+
export declare const useDeviceManagerProviderDiscoveryParamsSchema: typeof trpc.deviceManager.providerDiscoveryParamsSchema.useQuery;
|
|
490
502
|
/** Generated alias around `trpc.deviceManager.testField.useMutation`. */
|
|
491
503
|
export declare const useDeviceManagerTestField: typeof trpc.deviceManager.testField.useMutation;
|
|
492
504
|
/** Generated alias around `trpc.deviceManager.getDeviceStatusAggregate.useQuery`. */
|
|
@@ -517,6 +529,10 @@ export declare const useDeviceProviderGetDevices: typeof trpc.deviceProvider.get
|
|
|
517
529
|
export declare const useDeviceProviderSupportsDiscovery: typeof trpc.deviceProvider.supportsDiscovery.useQuery;
|
|
518
530
|
/** Generated alias around `trpc.deviceProvider.discoverDevices.useMutation`. */
|
|
519
531
|
export declare const useDeviceProviderDiscoverDevices: typeof trpc.deviceProvider.discoverDevices.useMutation;
|
|
532
|
+
/** Generated alias around `trpc.deviceProvider.getDiscoveryParamsSchema.useQuery`. */
|
|
533
|
+
export declare const useDeviceProviderGetDiscoveryParamsSchema: typeof trpc.deviceProvider.getDiscoveryParamsSchema.useQuery;
|
|
534
|
+
/** Generated alias around `trpc.deviceProvider.getManualCreationType.useQuery`. */
|
|
535
|
+
export declare const useDeviceProviderGetManualCreationType: typeof trpc.deviceProvider.getManualCreationType.useQuery;
|
|
520
536
|
/** Generated alias around `trpc.deviceProvider.adoptDiscoveredDevice.useMutation`. */
|
|
521
537
|
export declare const useDeviceProviderAdoptDiscoveredDevice: typeof trpc.deviceProvider.adoptDiscoveredDevice.useMutation;
|
|
522
538
|
/** Generated alias around `trpc.deviceProvider.supportsManualCreation.useQuery`. */
|