@seamapi/react 1.65.0 → 2.0.0

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.
Files changed (75) hide show
  1. package/README.md +1 -1
  2. package/dist/elements.js +6760 -6689
  3. package/dist/elements.js.map +1 -1
  4. package/dist/index.css +15 -15
  5. package/dist/index.min.css +1 -1
  6. package/dist/index.min.css.map +1 -1
  7. package/lib/seam/components/AccessCodeTable/AccessCodeTable.d.ts +1 -5
  8. package/lib/seam/components/AccessCodeTable/AccessCodeTable.js +2 -2
  9. package/lib/seam/components/AccessCodeTable/AccessCodeTable.js.map +1 -1
  10. package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js +2 -2
  11. package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js.map +1 -1
  12. package/lib/seam/components/DeviceTable/DeviceTable.d.ts +1 -5
  13. package/lib/seam/components/DeviceTable/DeviceTable.js +2 -2
  14. package/lib/seam/components/DeviceTable/DeviceTable.js.map +1 -1
  15. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.d.ts +3 -3
  16. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.js +11 -17
  17. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.js.map +1 -1
  18. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContentRows.d.ts +1 -1
  19. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContentRows.js +1 -7
  20. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceContentRows.js.map +1 -1
  21. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterArea.d.ts +3 -3
  22. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterArea.js +12 -31
  23. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterArea.js.map +1 -1
  24. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.d.ts +2 -2
  25. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.js +2 -4
  26. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.js.map +1 -1
  27. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceManufacturerSection.d.ts +8 -0
  28. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceManufacturerSection.js +35 -0
  29. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceManufacturerSection.js.map +1 -0
  30. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.d.ts +2 -1
  31. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.js +10 -6
  32. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.js.map +1 -1
  33. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceTable.d.ts +3 -7
  34. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceTable.js +4 -5
  35. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceTable.js.map +1 -1
  36. package/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.d.ts +5 -5
  37. package/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.js +16 -17
  38. package/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.js.map +1 -1
  39. package/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.d.ts +8 -0
  40. package/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.js +37 -0
  41. package/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.js.map +1 -0
  42. package/lib/version.d.ts +1 -1
  43. package/lib/version.js +1 -1
  44. package/lib/version.js.map +1 -1
  45. package/package.json +3 -3
  46. package/src/lib/seam/components/AccessCodeTable/AccessCodeTable.tsx +2 -8
  47. package/src/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.tsx +2 -2
  48. package/src/lib/seam/components/DeviceTable/DeviceTable.tsx +2 -8
  49. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceContent.tsx +23 -29
  50. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceContentRows.tsx +3 -9
  51. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterArea.tsx +22 -41
  52. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceFilterResultRow.tsx +8 -12
  53. package/src/lib/seam/components/SupportedDeviceTable/{SupportedDeviceBrandSection.tsx → SupportedDeviceManufacturerSection.tsx} +19 -26
  54. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.tsx +20 -11
  55. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceTable.element.ts +2 -3
  56. package/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceTable.tsx +10 -17
  57. package/src/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.ts +31 -20
  58. package/src/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.ts +54 -0
  59. package/src/lib/version.ts +1 -1
  60. package/src/styles/_supported-device-table.scss +4 -4
  61. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceBrandSection.d.ts +0 -8
  62. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceBrandSection.js +0 -42
  63. package/lib/seam/components/SupportedDeviceTable/SupportedDeviceBrandSection.js.map +0 -1
  64. package/lib/seam/components/SupportedDeviceTable/use-device-provider.d.ts +0 -2
  65. package/lib/seam/components/SupportedDeviceTable/use-device-provider.js +0 -13
  66. package/lib/seam/components/SupportedDeviceTable/use-device-provider.js.map +0 -1
  67. package/lib/seam/device-models/use-device-models.d.ts +0 -5
  68. package/lib/seam/device-models/use-device-models.js +0 -19
  69. package/lib/seam/device-models/use-device-models.js.map +0 -1
  70. package/lib/strings.d.ts +0 -1
  71. package/lib/strings.js +0 -4
  72. package/lib/strings.js.map +0 -1
  73. package/src/lib/seam/components/SupportedDeviceTable/use-device-provider.ts +0 -16
  74. package/src/lib/seam/device-models/use-device-models.ts +0 -39
  75. package/src/lib/strings.ts +0 -3
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/1.65.0/dist/elements.js"
90
+ src="https://react.seam.co/v/2.0.0/dist/elements.js"
91
91
  ></script>
92
92
  </body>
93
93
  ```