wacom 19.5.1 → 19.5.2

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.
@@ -2190,10 +2190,12 @@ class CrudService extends BaseService {
2190
2190
  __store = inject(StoreService);
2191
2191
  __alert = inject(AlertService);
2192
2192
  __core = inject(CoreService);
2193
+ loaded;
2193
2194
  constructor(_config) {
2194
2195
  super();
2195
2196
  this._config = _config;
2196
2197
  this._url += this._config.name;
2198
+ this.loaded = this.__core.onComplete(this._config.name + '_loaded');
2197
2199
  if (this._config.unauthorized) {
2198
2200
  this.restoreDocs();
2199
2201
  }