bt-core-app 1.4.500 → 1.4.502
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/bt-core-app.js +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -180,6 +180,7 @@ declare interface BTBlade<T extends GetOptions<any, any>> {
|
|
|
180
180
|
|
|
181
181
|
export declare interface BTCosmetics {
|
|
182
182
|
state: Ref<CosmeticData>;
|
|
183
|
+
currentSet: ComputedRef<BaseCosmeticTheme>;
|
|
183
184
|
resetCosmetics: (toDefault: boolean) => void;
|
|
184
185
|
saveState: () => void;
|
|
185
186
|
setTemporaryColor: (color: string) => void;
|
|
@@ -1091,6 +1092,8 @@ export declare interface NavigationItem extends AuthItem {
|
|
|
1091
1092
|
path?: string;
|
|
1092
1093
|
/**permissions that are required for this navItem. All these permissions must be met. */
|
|
1093
1094
|
permissions?: string[];
|
|
1095
|
+
/**for PLU stores only - defining what prop to cal window */
|
|
1096
|
+
pluWindowProp?: string;
|
|
1094
1097
|
/**default to true. When false will allow universal access regardless of permission */
|
|
1095
1098
|
requiresAuth?: boolean;
|
|
1096
1099
|
/**the name of the route to access individual items */
|
package/package.json
CHANGED