sprof 0.0.11 → 0.0.13

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.
@@ -11,7 +11,7 @@ export default class AuthStatus<UserT> {
11
11
  get IsAuth(): boolean;
12
12
  get User(): UserT | undefined;
13
13
  SetUserConstructor(c: Constructable<IWithId>): void;
14
- SetState(authInfo: AuthInfo<UserT>): void;
14
+ SetState(authInfo: AuthInfo): void;
15
15
  Logout(): void;
16
16
  Actualize(): void;
17
17
  }
@@ -214,7 +214,7 @@ declare const _default: {
214
214
  };
215
215
  };
216
216
  export default _default;
217
- export declare const Default: (args: any) => {
217
+ export declare const Default: (args: Record<string, unknown>) => {
218
218
  components: {
219
219
  PInput: {
220
220
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
@@ -392,7 +392,7 @@ export declare const Default: (args: any) => {
392
392
  });
393
393
  };
394
394
  setup(): {
395
- args: any;
395
+ args: Record<string, unknown>;
396
396
  };
397
397
  template: string;
398
398
  };
@@ -26,7 +26,7 @@ export default abstract class PHelp {
26
26
  readonly IsAuth: boolean;
27
27
  readonly User: unknown;
28
28
  SetUserConstructor: (c: import('./ClassHelper').Constructable<import('../interfaces/IWithId').default>) => void;
29
- SetState: (authInfo: any) => void;
29
+ SetState: (authInfo: import('../types/AuthInfo').AuthInfo) => void;
30
30
  Logout: () => void;
31
31
  Actualize: () => void;
32
32
  };
@@ -0,0 +1,21 @@
1
+ import { Ref } from 'vue';
2
+ import { default as SearchGroup } from '../classes/SearchGroup';
3
+ import { default as SearchModel } from '../classes/SearchModel';
4
+ declare class S {
5
+ private isSearchDrawerOpen;
6
+ private searchModel;
7
+ private searchGroups;
8
+ private count;
9
+ Search(searchModel: SearchModel): Promise<void>;
10
+ mainSearch(searchModel: SearchModel): Promise<void>;
11
+ Full(searchModel: SearchModel): Promise<void>;
12
+ ToggleDrawer(isOpen: boolean): void;
13
+ SetSearchModel(searchModel: void | SearchModel): void;
14
+ SetSearchGroups(): void;
15
+ IsSearchDrawerOpen(): Ref<boolean>;
16
+ SearchModel(): SearchModel;
17
+ SearchGroups(): SearchGroup[];
18
+ Count(): number;
19
+ }
20
+ declare const store: S;
21
+ export default store;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "sprof",
3
3
  "description": "components for the designer and uikit",
4
4
  "author": "Stanislav Lushnikov, Daniil Gaivoronskiy",
5
- "version": "0.0.11",
5
+ "version": "0.0.13",
6
6
  "private": false,
7
7
  "type": "module",
8
8
  "main": "./dist/sprof.umd.cjs",