@arsedizioni/ars-utils 21.2.302 → 21.2.303

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.
@@ -2207,11 +2207,6 @@ class ClipperService {
2207
2207
  this.bagTotal = computed(() => this.bag().length, ...(ngDevMode ? [{ debugName: "bagTotal" }] : /* istanbul ignore next */ []));
2208
2208
  this.visible = signal(false, ...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
2209
2209
  this._teams = [];
2210
- this.currentTeamId = signal(SystemUtils.emptyUUID(), ...(ngDevMode ? [{ debugName: "currentTeamId" }] : /* istanbul ignore next */ []));
2211
- this.currentTeamName = signal("PERSONALE", ...(ngDevMode ? [{ debugName: "currentTeamName" }] : /* istanbul ignore next */ []));
2212
- this.currentTeamIsPrivate = computed(() => {
2213
- return this.currentTeamId() !== SystemUtils.emptyUUID();
2214
- }, ...(ngDevMode ? [{ debugName: "currentTeamIsPrivate" }] : /* istanbul ignore next */ []));
2215
2210
  this.availableChannels = signal([], ...(ngDevMode ? [{ debugName: "availableChannels" }] : /* istanbul ignore next */ []));
2216
2211
  this.activeChannels = computed(() => {
2217
2212
  return this.availableChannels()?.filter(x => !x.suspended && !x.disabled && x.active === true);