@seamapi/react 2.1.2 → 2.1.3
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 +12 -4
- package/dist/elements.js.map +1 -1
- package/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.js +2 -2
- package/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.js.map +1 -1
- package/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.js +5 -1
- package/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/src/lib/seam/components/SupportedDeviceTable/use-filtered-device-models.ts +2 -2
- package/src/lib/seam/components/SupportedDeviceTable/use-filtered-manufacturers.ts +8 -1
- 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/2.1.
|
|
90
|
+
src="https://react.seam.co/v/2.1.3/dist/elements.js"
|
|
91
91
|
></script>
|
|
92
92
|
</body>
|
|
93
93
|
```
|
package/dist/elements.js
CHANGED
|
@@ -8226,7 +8226,7 @@ function Id(t, e, n) {
|
|
|
8226
8226
|
}
|
|
8227
8227
|
return qO(r);
|
|
8228
8228
|
}
|
|
8229
|
-
const bS = "2.1.
|
|
8229
|
+
const bS = "2.1.3";
|
|
8230
8230
|
var Gn, vr, ds, Qn, cs, ps, qt, Ec, wS, Zn, on;
|
|
8231
8231
|
class SS {
|
|
8232
8232
|
constructor({
|
|
@@ -29532,9 +29532,17 @@ function iE(t) {
|
|
|
29532
29532
|
});
|
|
29533
29533
|
return { ...i, manufacturers: r };
|
|
29534
29534
|
}
|
|
29535
|
-
const sE = (t) =>
|
|
29536
|
-
|
|
29537
|
-
|
|
29535
|
+
const sE = (t) => {
|
|
29536
|
+
const { manufacturers: e, ...n } = iE({
|
|
29537
|
+
liqe_query: Lz(t)
|
|
29538
|
+
});
|
|
29539
|
+
return {
|
|
29540
|
+
...n,
|
|
29541
|
+
manufacturers: e == null ? void 0 : e.filter(
|
|
29542
|
+
(r) => r.device_model_count > 0
|
|
29543
|
+
)
|
|
29544
|
+
};
|
|
29545
|
+
}, Lz = ({
|
|
29538
29546
|
manufacturers: t,
|
|
29539
29547
|
excludedManufacturers: e
|
|
29540
29548
|
}) => {
|