@uxland/primary-shell 7.13.1 → 7.13.2
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.
|
@@ -12,3 +12,8 @@ export * from '@uxland/harmonix-adapters';
|
|
|
12
12
|
export * from './api/interaction-service';
|
|
13
13
|
export type { IUserInfo } from './features/get-user-info/model';
|
|
14
14
|
export type { IActivityHistoryItem } from '../../../plugins/activity-history/src/activity-history-item/domain/model';
|
|
15
|
+
export type { InjectAsyncHistoryItemsPayload } from '../../../plugins/activity-history/src/activity-history-item/add/add-async-history-items/request';
|
|
16
|
+
export type { AddHistoryItemPayload } from '../../../plugins/activity-history/src/activity-history-item/add/add-history-item/request';
|
|
17
|
+
export type { AddHistoryItemsPayload } from '../../../plugins/activity-history/src/activity-history-item/add/add-history-items/request';
|
|
18
|
+
export type { ActivityHistoryFilterType } from '../../../plugins/activity-history/src/activity-history-item/filter/model';
|
|
19
|
+
export type { IActivityHistoryCustomFilterGroup, IActivityHistoryCustomFilter, } from '../../../plugins/activity-history/src/activity-history-item/filter/model';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -3,9 +3,9 @@ import fontsCSS from "./UI/fonts/fonts.css?inline";
|
|
|
3
3
|
import dssCSS from "@salut/design-system-salut/css/main.css?inline";
|
|
4
4
|
|
|
5
5
|
// Inject CSS automatically
|
|
6
|
-
if (typeof document !==
|
|
7
|
-
const style = document.createElement(
|
|
8
|
-
style.textContent = fontsCSS +
|
|
6
|
+
if (typeof document !== "undefined") {
|
|
7
|
+
const style = document.createElement("style");
|
|
8
|
+
style.textContent = fontsCSS + "\n" + dssCSS;
|
|
9
9
|
document.head.appendChild(style);
|
|
10
10
|
}
|
|
11
11
|
export * from "./bootstrapper";
|
|
@@ -25,3 +25,11 @@ export * from "@uxland/harmonix-adapters";
|
|
|
25
25
|
export * from "./api/interaction-service";
|
|
26
26
|
export type { IUserInfo } from "./features/get-user-info/model";
|
|
27
27
|
export type { IActivityHistoryItem } from "../../../plugins/activity-history/src/activity-history-item/domain/model";
|
|
28
|
+
export type { InjectAsyncHistoryItemsPayload } from "../../../plugins/activity-history/src/activity-history-item/add/add-async-history-items/request";
|
|
29
|
+
export type { AddHistoryItemPayload } from "../../../plugins/activity-history/src/activity-history-item/add/add-history-item/request";
|
|
30
|
+
export type { AddHistoryItemsPayload } from "../../../plugins/activity-history/src/activity-history-item/add/add-history-items/request";
|
|
31
|
+
export type { ActivityHistoryFilterType } from "../../../plugins/activity-history/src/activity-history-item/filter/model";
|
|
32
|
+
export type {
|
|
33
|
+
IActivityHistoryCustomFilterGroup,
|
|
34
|
+
IActivityHistoryCustomFilter,
|
|
35
|
+
} from "../../../plugins/activity-history/src/activity-history-item/filter/model";
|