@seamapi/react 4.7.0 → 4.8.1
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/README.md +2 -2
- package/dist/elements.js +4712 -4620
- package/dist/elements.js.map +1 -1
- package/lib/errors.d.ts +1 -0
- package/lib/errors.js +11 -0
- package/lib/errors.js.map +1 -0
- package/lib/seam/components/SupportedDeviceTable/FilterCategoryMenu.js +1 -1
- package/lib/seam/components/SupportedDeviceTable/FilterCategoryMenu.js.map +1 -1
- package/lib/seam/components/SupportedDeviceTable/ShowAllDevicesButton.js +1 -1
- package/lib/seam/components/SupportedDeviceTable/ShowAllDevicesButton.js.map +1 -1
- package/lib/seam/thermostats/thermostat-device.js +1 -1
- package/lib/seam/thermostats/thermostat-device.js.map +1 -1
- package/lib/seam/thermostats/use-update-thermostat-climate-preset.d.ts +1 -1
- package/lib/seam/thermostats/use-update-thermostat-climate-preset.js +1 -1
- package/lib/seam/thermostats/use-update-thermostat-climate-preset.js.map +1 -1
- package/lib/ui/Alert/Alert.js +1 -1
- package/lib/ui/Alert/Alert.js.map +1 -1
- package/lib/ui/IconButton.js +1 -1
- package/lib/ui/IconButton.js.map +1 -1
- package/lib/ui/Snackbar/Snackbar.js +1 -1
- package/lib/ui/Snackbar/Snackbar.js.map +1 -1
- package/lib/ui/TabSet.js +1 -1
- package/lib/ui/TabSet.js.map +1 -1
- package/lib/ui/TextButton.js +1 -1
- package/lib/ui/TextButton.js.map +1 -1
- package/lib/ui/TextField/TextField.js +1 -1
- package/lib/ui/TextField/TextField.js.map +1 -1
- package/lib/ui/Tooltip/Tooltip.js +1 -1
- package/lib/ui/Tooltip/Tooltip.js.map +1 -1
- package/lib/ui/device/EditableDeviceName.js +1 -1
- package/lib/ui/device/EditableDeviceName.js.map +1 -1
- package/lib/ui/layout/AccordionRow.js +1 -1
- package/lib/ui/layout/AccordionRow.js.map +1 -1
- package/lib/ui/thermostat/ClimateModeMenu.js +1 -1
- package/lib/ui/thermostat/ClimateModeMenu.js.map +1 -1
- package/lib/ui/thermostat/ClimatePreset.js +23 -17
- package/lib/ui/thermostat/ClimatePreset.js.map +1 -1
- package/lib/ui/thermostat/ClimatePresets.js +21 -17
- package/lib/ui/thermostat/ClimatePresets.js.map +1 -1
- package/lib/ui/thermostat/FanModeMenu.js +1 -1
- package/lib/ui/thermostat/FanModeMenu.js.map +1 -1
- package/lib/ui/thermostat/TemperatureControl.js +2 -2
- package/lib/ui/thermostat/TemperatureControl.js.map +1 -1
- package/lib/ui/thermostat/ThermostatCard.js +1 -1
- package/lib/ui/thermostat/ThermostatCard.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/lib/errors.ts +13 -0
- package/src/lib/seam/components/SupportedDeviceTable/FilterCategoryMenu.tsx +1 -1
- package/src/lib/seam/components/SupportedDeviceTable/ShowAllDevicesButton.tsx +1 -1
- package/src/lib/seam/thermostats/thermostat-device.ts +2 -1
- package/src/lib/seam/thermostats/use-update-thermostat-climate-preset.ts +3 -5
- package/src/lib/ui/Alert/Alert.tsx +1 -1
- package/src/lib/ui/IconButton.tsx +1 -0
- package/src/lib/ui/Snackbar/Snackbar.tsx +2 -0
- package/src/lib/ui/TabSet.tsx +1 -0
- package/src/lib/ui/TextButton.tsx +5 -1
- package/src/lib/ui/TextField/TextField.tsx +1 -0
- package/src/lib/ui/Tooltip/Tooltip.tsx +5 -1
- package/src/lib/ui/device/EditableDeviceName.tsx +1 -0
- package/src/lib/ui/layout/AccordionRow.tsx +5 -1
- package/src/lib/ui/thermostat/ClimateModeMenu.tsx +1 -0
- package/src/lib/ui/thermostat/ClimatePreset.tsx +57 -28
- package/src/lib/ui/thermostat/ClimatePresets.tsx +61 -45
- package/src/lib/ui/thermostat/FanModeMenu.tsx +1 -0
- package/src/lib/ui/thermostat/TemperatureControl.tsx +10 -2
- package/src/lib/ui/thermostat/ThermostatCard.tsx +1 -0
- package/src/lib/version.ts +1 -1
package/README.md
CHANGED
|
@@ -87,7 +87,7 @@ export function App() {
|
|
|
87
87
|
<seam-device-table publishable-key="your_publishable_key"></seam-device-table>
|
|
88
88
|
<script
|
|
89
89
|
type="module"
|
|
90
|
-
src="https://react.seam.co/v/4.
|
|
90
|
+
src="https://react.seam.co/v/4.8.1/dist/elements.js"
|
|
91
91
|
></script>
|
|
92
92
|
</body>
|
|
93
93
|
```
|
|
@@ -215,7 +215,7 @@ or place the following in the `<head>` tag:
|
|
|
215
215
|
```html
|
|
216
216
|
<link
|
|
217
217
|
rel="stylesheet"
|
|
218
|
-
href="https://react.seam.co/v/4.
|
|
218
|
+
href="https://react.seam.co/v/4.8.1/dist/index.min.css"
|
|
219
219
|
/>
|
|
220
220
|
```
|
|
221
221
|
|