@camstack/addon-model-studio 1.1.142 → 1.1.144

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 (18) hide show
  1. package/dist/{MotionZonesSettings-BCZidV1W.mjs → MotionZonesSettings-7U6cbWYn.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-U0a679pe.mjs → PrivacyMaskSettings-BI8DyksG.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-D7iweq7u.mjs → SceneMonitorEditor-B4NKqcuM.mjs} +13 -13
  4. package/dist/_stub.js +11 -13
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-Bf79sZ9M.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-BdjVeSwo.mjs} +4 -4
  6. package/dist/{_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CKEe1Nbx.mjs → _virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bd3Ve1C5.mjs} +1 -1
  7. package/dist/addon-model-studio.css +1 -1
  8. package/dist/{hostInit-S24nn8fs.mjs → hostInit-CK-C3HP-.mjs} +3 -3
  9. package/dist/model-studio.addon.js +64 -1
  10. package/dist/model-studio.addon.mjs +64 -1
  11. package/dist/{player-overlays-h4kwY-YM.mjs → player-overlays-C8zylCXU.mjs} +1 -1
  12. package/dist/remoteEntry.js +1 -1
  13. package/dist/{responsive-C6dBVCr7.mjs → responsive-zQ4M9Uor.mjs} +1 -1
  14. package/dist/{use-device-snapshot-ZB9yg5UG.mjs → scene-monitor-copy-B0bUIDcV.mjs} +46 -46
  15. package/dist/{square-DRNiF2hB.mjs → square-Di2vxcfU.mjs} +1 -1
  16. package/dist/{trash-2-DRNHM26U.mjs → trash-2-DXaCeX_9.mjs} +1 -1
  17. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CslGrZzw.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-DA5sy_EO.mjs} +1 -1
  18. package/package.json +1 -1
@@ -5884,7 +5884,7 @@ var ZodIssueCode = {
5884
5884
  var ZodFirstPartyTypeKind;
5885
5885
  ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5886
5886
  //#endregion
5887
- //#region ../types/dist/sleep-B1y0Fo1U.mjs
5887
+ //#region ../types/dist/sleep-Dk-BdnBf.mjs
5888
5888
  /**
5889
5889
  * The audio chunk plane's byte format, and the ONE expansion from a coded
5890
5890
  * window to float samples (D455).
@@ -29491,6 +29491,26 @@ var PtzHomePresetSchema = object({
29491
29491
  "none"
29492
29492
  ])
29493
29493
  });
29494
+ /**
29495
+ * The camera's own idle-return behaviour: whether it goes home by itself, and
29496
+ * after how long.
29497
+ *
29498
+ * ONE shape, not two scalars, because on the camera they are ONE fact —
29499
+ * Reolink's guard point carries `benable` and `timeout` in the same element,
29500
+ * written by the same command. Reading them apart means two round-trips that
29501
+ * can disagree.
29502
+ *
29503
+ * `enabled` and `seconds` are INDEPENDENT: a camera can hold a 68 s delay with
29504
+ * the behaviour switched off, which is exactly what the vendor app leaves when
29505
+ * you turn the guard point off without clearing it. The first version of this
29506
+ * cap reported only the delay, so that state was invisible — a camera could be
29507
+ * configured to return after 68 seconds with no way to say whether it should
29508
+ * return at all.
29509
+ */
29510
+ var PtzHomeReturnSchema = object({
29511
+ enabled: boolean(),
29512
+ seconds: number().int()
29513
+ });
29494
29514
  DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), array(PtzPresetSchema)), method(object({
29495
29515
  deviceId: number(),
29496
29516
  presetId: string()
@@ -29513,6 +29533,16 @@ DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _
29513
29533
  }), _void(), {
29514
29534
  kind: "mutation",
29515
29535
  auth: "admin"
29536
+ }), method(object({ deviceId: number() }), _void(), {
29537
+ kind: "mutation",
29538
+ auth: "admin"
29539
+ }), method(object({ deviceId: number() }), PtzHomeReturnSchema.nullable()), method(object({
29540
+ deviceId: number(),
29541
+ enabled: boolean(),
29542
+ seconds: number().int().min(0).max(3600)
29543
+ }), _void(), {
29544
+ kind: "mutation",
29545
+ auth: "admin"
29516
29546
  }), method(object({ deviceId: number() }), PtzPositionSchema), method(object({
29517
29547
  deviceId: number(),
29518
29548
  enabled: boolean()
@@ -36516,6 +36546,12 @@ Object.freeze({
36516
36546
  addonId: null,
36517
36547
  access: "create"
36518
36548
  },
36549
+ "ptz.captureHomeHere": {
36550
+ capName: "ptz",
36551
+ capScope: "device",
36552
+ addonId: null,
36553
+ access: "create"
36554
+ },
36519
36555
  "ptz.continuousMove": {
36520
36556
  capName: "ptz",
36521
36557
  capScope: "device",
@@ -36534,6 +36570,12 @@ Object.freeze({
36534
36570
  addonId: null,
36535
36571
  access: "view"
36536
36572
  },
36573
+ "ptz.getHomeReturn": {
36574
+ capName: "ptz",
36575
+ capScope: "device",
36576
+ addonId: null,
36577
+ access: "view"
36578
+ },
36537
36579
  "ptz.getOptions": {
36538
36580
  capName: "ptz",
36539
36581
  capScope: "device",
@@ -36588,6 +36630,12 @@ Object.freeze({
36588
36630
  addonId: null,
36589
36631
  access: "create"
36590
36632
  },
36633
+ "ptz.setHomeReturn": {
36634
+ capName: "ptz",
36635
+ capScope: "device",
36636
+ addonId: null,
36637
+ access: "create"
36638
+ },
36591
36639
  "ptz.stop": {
36592
36640
  capName: "ptz",
36593
36641
  capScope: "device",
@@ -39751,6 +39799,11 @@ Object.freeze({
39751
39799
  form: "single",
39752
39800
  optional: false
39753
39801
  }],
39802
+ "ptz.captureHomeHere": [{
39803
+ name: "deviceId",
39804
+ form: "single",
39805
+ optional: false
39806
+ }],
39754
39807
  "ptz.continuousMove": [{
39755
39808
  name: "deviceId",
39756
39809
  form: "single",
@@ -39766,6 +39819,11 @@ Object.freeze({
39766
39819
  form: "single",
39767
39820
  optional: false
39768
39821
  }],
39822
+ "ptz.getHomeReturn": [{
39823
+ name: "deviceId",
39824
+ form: "single",
39825
+ optional: false
39826
+ }],
39769
39827
  "ptz.getOptions": [{
39770
39828
  name: "deviceId",
39771
39829
  form: "single",
@@ -39811,6 +39869,11 @@ Object.freeze({
39811
39869
  form: "single",
39812
39870
  optional: false
39813
39871
  }],
39872
+ "ptz.setHomeReturn": [{
39873
+ name: "deviceId",
39874
+ form: "single",
39875
+ optional: false
39876
+ }],
39814
39877
  "ptz.stop": [{
39815
39878
  name: "deviceId",
39816
39879
  form: "single",
@@ -5863,7 +5863,7 @@ var ZodIssueCode = {
5863
5863
  var ZodFirstPartyTypeKind;
5864
5864
  ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5865
5865
  //#endregion
5866
- //#region ../types/dist/sleep-B1y0Fo1U.mjs
5866
+ //#region ../types/dist/sleep-Dk-BdnBf.mjs
5867
5867
  /**
5868
5868
  * The audio chunk plane's byte format, and the ONE expansion from a coded
5869
5869
  * window to float samples (D455).
@@ -29470,6 +29470,26 @@ var PtzHomePresetSchema = object({
29470
29470
  "none"
29471
29471
  ])
29472
29472
  });
29473
+ /**
29474
+ * The camera's own idle-return behaviour: whether it goes home by itself, and
29475
+ * after how long.
29476
+ *
29477
+ * ONE shape, not two scalars, because on the camera they are ONE fact —
29478
+ * Reolink's guard point carries `benable` and `timeout` in the same element,
29479
+ * written by the same command. Reading them apart means two round-trips that
29480
+ * can disagree.
29481
+ *
29482
+ * `enabled` and `seconds` are INDEPENDENT: a camera can hold a 68 s delay with
29483
+ * the behaviour switched off, which is exactly what the vendor app leaves when
29484
+ * you turn the guard point off without clearing it. The first version of this
29485
+ * cap reported only the delay, so that state was invisible — a camera could be
29486
+ * configured to return after 68 seconds with no way to say whether it should
29487
+ * return at all.
29488
+ */
29489
+ var PtzHomeReturnSchema = object({
29490
+ enabled: boolean(),
29491
+ seconds: number().int()
29492
+ });
29473
29493
  DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), array(PtzPresetSchema)), method(object({
29474
29494
  deviceId: number(),
29475
29495
  presetId: string()
@@ -29492,6 +29512,16 @@ DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _
29492
29512
  }), _void(), {
29493
29513
  kind: "mutation",
29494
29514
  auth: "admin"
29515
+ }), method(object({ deviceId: number() }), _void(), {
29516
+ kind: "mutation",
29517
+ auth: "admin"
29518
+ }), method(object({ deviceId: number() }), PtzHomeReturnSchema.nullable()), method(object({
29519
+ deviceId: number(),
29520
+ enabled: boolean(),
29521
+ seconds: number().int().min(0).max(3600)
29522
+ }), _void(), {
29523
+ kind: "mutation",
29524
+ auth: "admin"
29495
29525
  }), method(object({ deviceId: number() }), PtzPositionSchema), method(object({
29496
29526
  deviceId: number(),
29497
29527
  enabled: boolean()
@@ -36495,6 +36525,12 @@ Object.freeze({
36495
36525
  addonId: null,
36496
36526
  access: "create"
36497
36527
  },
36528
+ "ptz.captureHomeHere": {
36529
+ capName: "ptz",
36530
+ capScope: "device",
36531
+ addonId: null,
36532
+ access: "create"
36533
+ },
36498
36534
  "ptz.continuousMove": {
36499
36535
  capName: "ptz",
36500
36536
  capScope: "device",
@@ -36513,6 +36549,12 @@ Object.freeze({
36513
36549
  addonId: null,
36514
36550
  access: "view"
36515
36551
  },
36552
+ "ptz.getHomeReturn": {
36553
+ capName: "ptz",
36554
+ capScope: "device",
36555
+ addonId: null,
36556
+ access: "view"
36557
+ },
36516
36558
  "ptz.getOptions": {
36517
36559
  capName: "ptz",
36518
36560
  capScope: "device",
@@ -36567,6 +36609,12 @@ Object.freeze({
36567
36609
  addonId: null,
36568
36610
  access: "create"
36569
36611
  },
36612
+ "ptz.setHomeReturn": {
36613
+ capName: "ptz",
36614
+ capScope: "device",
36615
+ addonId: null,
36616
+ access: "create"
36617
+ },
36570
36618
  "ptz.stop": {
36571
36619
  capName: "ptz",
36572
36620
  capScope: "device",
@@ -39730,6 +39778,11 @@ Object.freeze({
39730
39778
  form: "single",
39731
39779
  optional: false
39732
39780
  }],
39781
+ "ptz.captureHomeHere": [{
39782
+ name: "deviceId",
39783
+ form: "single",
39784
+ optional: false
39785
+ }],
39733
39786
  "ptz.continuousMove": [{
39734
39787
  name: "deviceId",
39735
39788
  form: "single",
@@ -39745,6 +39798,11 @@ Object.freeze({
39745
39798
  form: "single",
39746
39799
  optional: false
39747
39800
  }],
39801
+ "ptz.getHomeReturn": [{
39802
+ name: "deviceId",
39803
+ form: "single",
39804
+ optional: false
39805
+ }],
39748
39806
  "ptz.getOptions": [{
39749
39807
  name: "deviceId",
39750
39808
  form: "single",
@@ -39790,6 +39848,11 @@ Object.freeze({
39790
39848
  form: "single",
39791
39849
  optional: false
39792
39850
  }],
39851
+ "ptz.setHomeReturn": [{
39852
+ name: "deviceId",
39853
+ form: "single",
39854
+ optional: false
39855
+ }],
39793
39856
  "ptz.stop": [{
39794
39857
  name: "deviceId",
39795
39858
  form: "single",
@@ -1,5 +1,5 @@
1
1
  import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { o as i, s as a } from "./responsive-C6dBVCr7.mjs";
2
+ import { o as i, s as a } from "./responsive-zQ4M9Uor.mjs";
3
3
  import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
4
4
  var l = a("chevron-down", [["path", {
5
5
  d: "m6 9 6 6 6-6",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CslGrZzw.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-DA5sy_EO.mjs";
2
2
  export { t as get, e as init };
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
2
  import "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
3
- import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CKEe1Nbx.mjs";
3
+ import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bd3Ve1C5.mjs";
4
4
  //#region ../../node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
5
5
  l();
6
6
  var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
@@ -1,5 +1,5 @@
1
1
  import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { s as i } from "./responsive-C6dBVCr7.mjs";
2
+ import { s as i } from "./responsive-zQ4M9Uor.mjs";
3
3
  var a = i("camera", [["path", {
4
4
  d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
5
5
  key: "18u6gg"
@@ -86,47 +86,71 @@ function g(e) {
86
86
  return t !== "/" && (e === m() || e.startsWith(t)) ? e : `${t}${n}`;
87
87
  }
88
88
  //#endregion
89
+ //#region ../ui-library/src/hooks/use-device-snapshot.ts
90
+ var _ = "/addon/snapshot/media";
91
+ function v(r, i = {}) {
92
+ let { width: a, baseUrl: o } = i, [s, c] = t(0);
93
+ return {
94
+ src: n(() => {
95
+ if (r === null || r <= 0) return null;
96
+ let e = o === void 0 ? m() : o.replace(/\/+$/, ""), t = new URLSearchParams();
97
+ a !== void 0 && Number.isInteger(a) && a > 0 && t.set("w", String(a)), s > 0 && (t.set("force", "1"), t.set("r", String(s)));
98
+ let n = t.toString();
99
+ return `${e}${_}/${String(r)}.jpg${n.length > 0 ? `?${n}` : ""}`;
100
+ }, [
101
+ r,
102
+ a,
103
+ o,
104
+ s
105
+ ]),
106
+ loading: !1,
107
+ refresh: e(() => {
108
+ c((e) => e + 1);
109
+ }, [])
110
+ };
111
+ }
112
+ //#endregion
89
113
  //#region ../ui-library/src/composites/cap-settings/scene-monitor-copy.ts
90
- var _ = ["day", "ir"], v = {
114
+ var y = ["day", "ir"], b = {
91
115
  day: "Daylight",
92
116
  ir: "Night (IR)",
93
117
  night: "Night",
94
118
  dawn: "Dawn",
95
119
  dusk: "Dusk"
96
120
  };
97
- function y(e) {
98
- return v[e] ?? e;
121
+ function x(e) {
122
+ return b[e] ?? e;
99
123
  }
100
- function b(e) {
101
- let t = new Set(e.coveredConditions), n = _.map((e) => `${y(e)} ${t.has(e) ? "✓" : "✗"}`), r = [...t].filter((e) => !_.some((t) => t === e));
102
- for (let e of r) n.push(`${y(e)} ✓`);
103
- let i = _.filter((e) => !t.has(e));
124
+ function S(e) {
125
+ let t = new Set(e.coveredConditions), n = y.map((e) => `${x(e)} ${t.has(e) ? "✓" : "✗"}`), r = [...t].filter((e) => !y.some((t) => t === e));
126
+ for (let e of r) n.push(`${x(e)} ✓`);
127
+ let i = y.filter((e) => !t.has(e));
104
128
  if (i.length === 0) return n.join(" · ");
105
129
  if (t.size === 0) return `${n.join(" · ")} — nothing captured yet, so this scene is not watching.`;
106
- let a = i.map((e) => y(e).toLowerCase()).join(" and ");
130
+ let a = i.map((e) => x(e).toLowerCase()).join(" and ");
107
131
  return e.onUncoveredCondition === "judge-anyway" ? `${n.join(" · ")} — ${a} judged against the references you do have.` : `${n.join(" · ")} — optional; checks in ${a} are skipped.`;
108
132
  }
109
- function x(e) {
133
+ function C(e) {
110
134
  if (e.suspendedCondition === null) return null;
111
- let t = y(e.suspendedCondition).toLowerCase();
135
+ let t = x(e.suspendedCondition).toLowerCase();
112
136
  return `Paused — nothing was captured in ${t}, so checks are on hold until the light changes back. Capture ${t} if you want it watched around the clock.`;
113
137
  }
114
- var S = {
138
+ var w = {
115
139
  "no-reference-for-condition": "can’t tell — nothing has been captured for this scene yet. Press “Capture daylight” to photograph what normal looks like.",
116
140
  "view-shifted": "can’t tell — the camera view has moved since the reference was captured. Re-capture it.",
117
141
  "no-vision-profile": "can’t tell — the vision model is unreachable, so the change is on hold.",
118
142
  "encoder-model-changed": "can’t tell — the embedding model changed, so the stored references are unreadable. Re-capture them.",
119
143
  "no-snapshot": "can’t tell — this camera did not return a frame."
120
144
  };
121
- function C(e, t) {
145
+ function T(e, t) {
122
146
  if (e.states.length === 0) return "Not armed yet — capture the initial state to start watching.";
123
- if (e.verdict === "unknown") return e.unavailable === null ? "can’t tell right now." : S[e.unavailable];
124
- let n = e.verdict === "diverged" ? e.divergedAt : e.armedAt, r = n === null ? "" : ` for ${D(Math.max(0, t - n))}`;
147
+ if (e.verdict === "unknown") return e.unavailable === null ? "can’t tell right now." : w[e.unavailable];
148
+ let n = e.verdict === "diverged" ? e.divergedAt : e.armedAt, r = n === null ? "" : ` for ${k(Math.max(0, t - n))}`;
125
149
  if (e.latched) return e.verdict === "diverged" ? `CHANGED${r} — press Reset when you have dealt with it.` : `Back to normal, but still flagged as changed${r}. Press Reset to clear it.`;
126
- let i = x(e);
150
+ let i = C(e);
127
151
  return i === null ? e.verdict === "diverged" ? `CHANGED${r}` : `Normal${r}` : i;
128
152
  }
129
- function w(e) {
153
+ function E(e) {
130
154
  return e.states.length === 0 ? {
131
155
  text: "Not armed",
132
156
  tone: "unknown"
@@ -147,11 +171,11 @@ function w(e) {
147
171
  tone: "unknown"
148
172
  };
149
173
  }
150
- var T = .4;
151
- function E(e) {
152
- return e.width * e.height > T;
174
+ var D = .4;
175
+ function O(e) {
176
+ return e.width * e.height > D;
153
177
  }
154
- function D(e) {
178
+ function k(e) {
155
179
  let t = Math.floor(e / 1e3);
156
180
  if (t < 60) return `${t}s`;
157
181
  let n = Math.floor(t / 60);
@@ -160,28 +184,4 @@ function D(e) {
160
184
  return r < 48 ? `${r}h` : `${Math.floor(r / 24)}d`;
161
185
  }
162
186
  //#endregion
163
- //#region ../ui-library/src/hooks/use-device-snapshot.ts
164
- var O = "/addon/snapshot/media";
165
- function k(r, i = {}) {
166
- let { width: a, baseUrl: o } = i, [s, c] = t(0);
167
- return {
168
- src: n(() => {
169
- if (r === null || r <= 0) return null;
170
- let e = o === void 0 ? m() : o.replace(/\/+$/, ""), t = new URLSearchParams();
171
- a !== void 0 && Number.isInteger(a) && a > 0 && t.set("w", String(a)), s > 0 && (t.set("force", "1"), t.set("r", String(s)));
172
- let n = t.toString();
173
- return `${e}${O}/${String(r)}.jpg${n.length > 0 ? `?${n}` : ""}`;
174
- }, [
175
- r,
176
- a,
177
- o,
178
- s
179
- ]),
180
- loading: !1,
181
- refresh: e(() => {
182
- c((e) => e + 1);
183
- }, [])
184
- };
185
- }
186
- //#endregion
187
- export { E as a, g as c, a as d, b as i, s as l, _ as n, C as o, w as r, y as s, k as t, o as u };
187
+ export { T as a, g as c, a as d, O as i, s as l, E as n, x as o, S as r, v as s, y as t, o as u };
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-C6dBVCr7.mjs";
1
+ import { s as e } from "./responsive-zQ4M9Uor.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-C6dBVCr7.mjs";
1
+ import { s as e } from "./responsive-zQ4M9Uor.mjs";
2
2
  var t = e("trash-2", [
3
3
  ["path", {
4
4
  d: "M10 11v6",
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-Bf79sZ9M.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-BdjVeSwo.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-model-studio",
3
- "version": "1.1.142",
3
+ "version": "1.1.144",
4
4
  "description": "Custom detection model registry, conversion & distribution for CamStack",
5
5
  "keywords": [
6
6
  "camstack",