@seamapi/react 2.4.0 → 2.5.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 +1 -1
- package/dist/elements.js +3759 -3725
- package/dist/elements.js.map +1 -1
- package/dist/index.css +39 -11
- package/dist/index.css.map +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.min.css.map +1 -1
- package/lib/seam/components/AccessCodeTable/AccessCodeMainIcon.d.ts +6 -0
- package/lib/seam/components/AccessCodeTable/AccessCodeMainIcon.js +27 -0
- package/lib/seam/components/AccessCodeTable/AccessCodeMainIcon.js.map +1 -0
- package/lib/seam/components/AccessCodeTable/AccessCodeRow.js +2 -2
- package/lib/seam/components/AccessCodeTable/AccessCodeRow.js.map +1 -1
- package/lib/seam/components/AccessCodeTable/CodeDetails.js +1 -1
- package/lib/seam/components/AccessCodeTable/CodeDetails.js.map +1 -1
- package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js +24 -18
- package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js.map +1 -1
- package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.js +0 -5
- package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.js.map +1 -1
- package/lib/seam/thermostats/use-cool-thermostat.d.ts +6 -0
- package/lib/seam/thermostats/use-cool-thermostat.js +50 -0
- package/lib/seam/thermostats/use-cool-thermostat.js.map +1 -0
- package/lib/seam/thermostats/use-heat-cool-thermostat.d.ts +6 -0
- package/lib/seam/thermostats/use-heat-cool-thermostat.js +45 -0
- package/lib/seam/thermostats/use-heat-cool-thermostat.js.map +1 -0
- package/lib/seam/thermostats/use-heat-thermostat.d.ts +6 -0
- package/lib/seam/thermostats/use-heat-thermostat.js +50 -0
- package/lib/seam/thermostats/use-heat-thermostat.js.map +1 -0
- package/lib/seam/thermostats/use-set-thermostat-off.d.ts +6 -0
- package/lib/seam/thermostats/use-set-thermostat-off.js +48 -0
- package/lib/seam/thermostats/use-set-thermostat-off.js.map +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/src/lib/seam/components/AccessCodeTable/AccessCodeMainIcon.tsx +65 -0
- package/src/lib/seam/components/AccessCodeTable/AccessCodeRow.tsx +10 -6
- package/src/lib/seam/components/AccessCodeTable/CodeDetails.tsx +2 -1
- package/src/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.tsx +56 -44
- package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.tsx +0 -16
- package/src/lib/seam/thermostats/use-cool-thermostat.ts +90 -0
- package/src/lib/seam/thermostats/use-heat-cool-thermostat.ts +83 -0
- package/src/lib/seam/thermostats/use-heat-thermostat.ts +90 -0
- package/src/lib/seam/thermostats/use-set-thermostat-off.ts +83 -0
- package/src/lib/version.ts +1 -1
- package/src/styles/_main.scss +2 -0
- package/src/styles/_seam-table.scss +18 -3
- package/src/styles/_supported-device-table.scss +0 -12
- package/src/styles/_visibility.scss +25 -0
- package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.d.ts +0 -8
- package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.js +0 -10
- package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.js.map +0 -1
- package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.tsx +0 -47
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/2.
|
|
90
|
+
src="https://react.seam.co/v/2.5.1/dist/elements.js"
|
|
91
91
|
></script>
|
|
92
92
|
</body>
|
|
93
93
|
```
|