@uxland/primary-shell 2.0.1-rc.2 → 2.2.0-rc.0
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/api/api.d.ts +2 -6
- package/dist/api/http-client/http-client.d.ts +6 -0
- package/dist/index.js +8570 -7251
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +343 -338
- package/dist/index.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -2
- package/src/UI/components/primaria-shell/template.ts +2 -0
- package/src/UI/fonts/fonts.css +48 -0
- package/src/UI/fonts/open-sans-v40-latin-300.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-500.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-600.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-700.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-800.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-regular.woff2 +0 -0
- package/src/UI/styles/index.css +18 -0
- package/src/api/api.ts +3 -13
- package/src/api/http-client/http-client.ts +14 -0
package/dist/api/api.d.ts
CHANGED
|
@@ -3,13 +3,10 @@ import { PrimariaRegionManager } from '../region-manager';
|
|
|
3
3
|
import { PrimariaInteractionManager } from './interaction-manager/interaction';
|
|
4
4
|
import { PrimariaGlobalStateManager } from './global-state/global-state';
|
|
5
5
|
import { PrimariaBroker } from './broker/primaria-broker';
|
|
6
|
+
import { HttpClient } from './http-client/http-client';
|
|
6
7
|
|
|
7
|
-
interface PrimariaHttpClient {
|
|
8
|
-
get(url: string): Promise<any>;
|
|
9
|
-
post(url: string, data: any): Promise<any>;
|
|
10
|
-
}
|
|
11
8
|
export interface PrimariaApi extends HarmonixApi {
|
|
12
|
-
httpClient:
|
|
9
|
+
httpClient: HttpClient;
|
|
13
10
|
interactionManager: PrimariaInteractionManager;
|
|
14
11
|
broker: PrimariaBroker;
|
|
15
12
|
regionManager: PrimariaRegionManager;
|
|
@@ -24,4 +21,3 @@ export declare const PrimariaRegionHost: any;
|
|
|
24
21
|
*/
|
|
25
22
|
export declare const primariaApiFactory: ApiFactory<PrimariaApi>;
|
|
26
23
|
export declare const shellApi: PrimariaApi;
|
|
27
|
-
export {};
|