@omnia/fx 8.0.7-vnext → 8.0.8-vnext
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/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/identities/DynamicGroupService.d.ts +6 -0
- package/internal-do-not-import-from-here/services/identities/GroupService.d.ts +7 -1
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +7 -1
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +0 -2
- package/internal-do-not-import-from-here/shared/models/theming/ThemeMethods.d.ts +11 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeMethods.js +143 -0
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +0 -1
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/index.js +1 -0
- package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/messaging/Topics.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/models/{ContentDialogStyles.d.ts → SidePanelStyles.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +9 -32
- package/internal-do-not-import-from-here/ux/theming-v2/styling/themeStyling.d.ts +47 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewerStyles.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Blueprints.d.ts +8 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Colors.d.ts +0 -80
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +9 -121
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +9 -5
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +0 -5
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/contentdialog/ContentDialog.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/contentdialog/ContentDialog.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/contentdialog/IContentDialog.d.ts +0 -13
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.8-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.8-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { IWebComponentInstance } from "@omnia/fx";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
3
|
-
import "./ContentDialog.css";
|
4
|
-
export default class ContentDialog extends VueComponentBase implements IWebComponentInstance {
|
5
|
-
private subscriptionHandler;
|
6
|
-
mounted(): void;
|
7
|
-
private position;
|
8
|
-
private width;
|
9
|
-
private content;
|
10
|
-
private model;
|
11
|
-
private contentDialogClasses;
|
12
|
-
created(): void;
|
13
|
-
beforeDestroy(): void;
|
14
|
-
getTop(): string;
|
15
|
-
getCurrentParentElementId(): any;
|
16
|
-
setOmniaBodyElementWidth(): void;
|
17
|
-
onClose(): void;
|
18
|
-
render(): JSX.Element;
|
19
|
-
}
|