adminforth 1.15.0-next.16 → 1.15.0-next.17

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.
@@ -386,7 +386,7 @@ export interface IAdminForth {
386
386
  * Example:
387
387
  *
388
388
  * ```ts
389
- * const i18nPlugin = adminforth.getPluginByClassName<I18nPlugin>('I18nPlugin');
389
+ * const i18nPlugin = adminforth.getPluginByClassName\<I18nPlugin\>('I18nPlugin');
390
390
  * ```
391
391
  *
392
392
  */
@@ -331,7 +331,7 @@ async function init() {
331
331
  await coreStore.fetchResourceFull({
332
332
  resourceId: route.params.resourceId
333
333
  });
334
-
334
+ isPageLoaded.value = true;
335
335
  // !!! clear filters should be in same tick with sort assignment so that watch can catch it as one change
336
336
 
337
337
  // try to init filters from query params
@@ -446,8 +446,4 @@ watch([sort], async () => {
446
446
  setQuery({ sort: SortQuerySerializer.serialize(sort.value) });
447
447
  });
448
448
 
449
- watch(() => coreStore.resource, () => {
450
- isPageLoaded.value = true;
451
- });
452
-
453
449
  </script>
@@ -367,7 +367,7 @@ export interface IAdminForth {
367
367
  * Example:
368
368
  *
369
369
  * ```ts
370
- * const i18nPlugin = adminforth.getPluginByClassName<I18nPlugin>('I18nPlugin');
370
+ * const i18nPlugin = adminforth.getPluginByClassName\<I18nPlugin\>('I18nPlugin');
371
371
  * ```
372
372
  *
373
373
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.15.0-next.16",
3
+ "version": "1.15.0-next.17",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",