bt-core-app 1.4.237 → 1.4.238
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/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ import { Ref } from 'vue';
|
|
|
14
14
|
import { RemovableRef } from '@vueuse/core';
|
|
15
15
|
import { RouteLocation } from 'vue-router';
|
|
16
16
|
import { RouteLocationNormalized } from 'vue-router';
|
|
17
|
-
import { RouteLocationRaw } from 'vue-router';
|
|
18
17
|
import { Router } from 'vue-router';
|
|
19
18
|
import { ShallowRef } from 'vue';
|
|
20
19
|
import { Store } from 'pinia';
|
|
@@ -582,7 +581,7 @@ export declare interface GroupedHeaderOption {
|
|
|
582
581
|
values: TableColumn[];
|
|
583
582
|
}
|
|
584
583
|
|
|
585
|
-
export declare function guardRoute(to: RouteLocationNormalized, from: RouteLocationNormalized,
|
|
584
|
+
export declare function guardRoute(to: RouteLocationNormalized, from: RouteLocationNormalized, restrictedName: string): string | undefined;
|
|
586
585
|
|
|
587
586
|
/**tests for whether string is contains in any of the given props of the given value */
|
|
588
587
|
export declare function hasSearch(value: any, str?: string, props?: string[]): boolean;
|
package/package.json
CHANGED