@omnia/fx-models 8.0.263-dev → 8.0.265-dev
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/Constants.d.ts +1 -1
- package/Constants.js +1 -1
- package/Exposes.d.ts +2 -1
- package/Exposes.js +2 -1
- package/Tenant.d.ts +5 -1
- package/Tenant.js +7 -1
- package/{markdown/MarkdownActionRegistration.d.ts → floweditor/FlowEditorActionRegistration.d.ts} +1 -1
- package/{markdown/MarkdownPluginRegistration.d.ts → floweditor/FlowEditorPluginRegistration.d.ts} +1 -1
- package/{markdown/MarkdownPluginSettings.d.ts → floweditor/FlowEditorPluginSettings.d.ts} +1 -1
- package/floweditor/index.d.ts +3 -0
- package/floweditor/index.js +6 -0
- package/internal-do-not-import-from-here/shared/models/theming/Blueprints.d.ts +4 -1
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/Typography.d.ts +18 -25
- package/internal-do-not-import-from-here/shared/models/theming/Typography.js +3 -1
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +5 -1
- package/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -1
- package/package.json +1 -1
- package/typography/Font.d.ts +5 -0
- package/typography/index.d.ts +1 -0
- package/typography/index.js +4 -0
- package/ux/FlowEditorApi.d.ts +24 -0
- package/ux/FlowEditorApi.js +2 -0
- package/ux/FontApi.d.ts +18 -0
- package/ux/FontApi.js +2 -0
- package/ux/index.d.ts +2 -1
- package/ux/index.js +2 -1
- package/markdown/index.d.ts +0 -3
- package/markdown/index.js +0 -6
- package/ux/MarkdownApi.d.ts +0 -24
- /package/{markdown/MarkdownActionRegistration.js → floweditor/FlowEditorActionRegistration.js} +0 -0
- /package/{markdown/MarkdownPluginRegistration.js → floweditor/FlowEditorPluginRegistration.js} +0 -0
- /package/{markdown/MarkdownPluginSettings.js → floweditor/FlowEditorPluginSettings.js} +0 -0
- /package/{ux/MarkdownApi.js → typography/Font.js} +0 -0
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
@@ -21,7 +21,7 @@ exports.Constants = {
|
|
21
21
|
like: ActionHandler_1.ActionHandlerRegistrationId.create((0, models_1.guid)("d838c061-1ef4-49cb-8d6d-cee8f67bd17f")),
|
22
22
|
},
|
23
23
|
components: {
|
24
|
-
|
24
|
+
flow: {
|
25
25
|
plugins: {
|
26
26
|
text: (0, models_1.guid)("a9edb1ed-9e97-4c1b-a3ec-9f66d1a97ff9"),
|
27
27
|
bold: (0, models_1.guid)("678ed68f-db27-444a-bc06-f86f8e6c86dc"),
|
package/Exposes.d.ts
CHANGED
@@ -138,10 +138,11 @@ export * from "./statuscodelayout";
|
|
138
138
|
export * from "./system-logs";
|
139
139
|
export * from "./ux";
|
140
140
|
export * from "./velcron";
|
141
|
-
export * from "./
|
141
|
+
export * from "./floweditor";
|
142
142
|
export * from "./versionedlayout";
|
143
143
|
export * from "./ScopedPermissionRegistraion";
|
144
144
|
export * from "./action-btn";
|
145
|
+
export * from "./typography";
|
145
146
|
export * from "./FileIdentifier";
|
146
147
|
export * from "./FilePicker";
|
147
148
|
export * from "./LoginLogFilter";
|
package/Exposes.js
CHANGED
@@ -150,10 +150,11 @@ tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
150
150
|
tslib_1.__exportStar(require("./system-logs"), exports);
|
151
151
|
tslib_1.__exportStar(require("./ux"), exports);
|
152
152
|
tslib_1.__exportStar(require("./velcron"), exports);
|
153
|
-
tslib_1.__exportStar(require("./
|
153
|
+
tslib_1.__exportStar(require("./floweditor"), exports);
|
154
154
|
tslib_1.__exportStar(require("./versionedlayout"), exports);
|
155
155
|
tslib_1.__exportStar(require("./ScopedPermissionRegistraion"), exports);
|
156
156
|
tslib_1.__exportStar(require("./action-btn"), exports);
|
157
|
+
tslib_1.__exportStar(require("./typography"), exports);
|
157
158
|
//************************************************************************************ */
|
158
159
|
// End of folder exports
|
159
160
|
//************************************************************************************ */
|
package/Tenant.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OmniaNamedModel, IOmniaPropertyBag } from "./NamedProperty";
|
2
|
-
import { TenantIdentifier } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
|
+
import { TenantIdentifier, TypographyFontDefinition } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
3
3
|
import { TimeFormats } from "./Enums";
|
4
4
|
import { LanguageSettings } from "./Language";
|
5
5
|
import { MultilingualString } from "./MultilingualString";
|
@@ -40,6 +40,10 @@ export declare class TenantAuthenticationSettings extends TenantProperty {
|
|
40
40
|
enableITPCompatibility: boolean;
|
41
41
|
constructor();
|
42
42
|
}
|
43
|
+
export declare class TenantTypographyFonts extends TenantProperty {
|
44
|
+
availableFonts: TypographyFontDefinition[];
|
45
|
+
constructor();
|
46
|
+
}
|
43
47
|
export declare class TenantPeopleInformation extends TenantProperty {
|
44
48
|
enablePeopleInformation: boolean;
|
45
49
|
showLinkToDelve: boolean;
|
package/Tenant.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.TenantPreSetup = exports.TenantFaviconSettings = exports.TenantEnterpriseGlossary = exports.AllEnterprisePropertyDataTypesContentHashSettings = exports.AllEnterprisePropertiesContentHashSettings = exports.TenantApiSettings = exports.TenantPeopleInformation = exports.TenantAuthenticationSettings = exports.TenantInfoSettings = exports.TenantErrorInformation = exports.TenantCSOMClientContextFallbackUrl = exports.TenantLanguageSettings = exports.TenantRegionalSettings = exports.TenantProperty = void 0;
|
3
|
+
exports.TenantPreSetup = exports.TenantFaviconSettings = exports.TenantEnterpriseGlossary = exports.AllEnterprisePropertyDataTypesContentHashSettings = exports.AllEnterprisePropertiesContentHashSettings = exports.TenantApiSettings = exports.TenantPeopleInformation = exports.TenantTypographyFonts = exports.TenantAuthenticationSettings = exports.TenantInfoSettings = exports.TenantErrorInformation = exports.TenantCSOMClientContextFallbackUrl = exports.TenantLanguageSettings = exports.TenantRegionalSettings = exports.TenantProperty = void 0;
|
4
4
|
const ManifestIds_1 = require("./ManifestIds");
|
5
5
|
const NamedProperty_1 = require("./NamedProperty");
|
6
6
|
class TenantProperty extends NamedProperty_1.OmniaNamedModel {
|
@@ -47,6 +47,12 @@ class TenantAuthenticationSettings extends TenantProperty {
|
|
47
47
|
}
|
48
48
|
}
|
49
49
|
exports.TenantAuthenticationSettings = TenantAuthenticationSettings;
|
50
|
+
class TenantTypographyFonts extends TenantProperty {
|
51
|
+
constructor() {
|
52
|
+
super(ManifestIds_1.OmniaService.Id, "tenanttypographyfonts");
|
53
|
+
}
|
54
|
+
}
|
55
|
+
exports.TenantTypographyFonts = TenantTypographyFonts;
|
50
56
|
class TenantPeopleInformation extends TenantProperty {
|
51
57
|
constructor() {
|
52
58
|
super(ManifestIds_1.OmniaService.Id, "peopleinformation");
|
package/{markdown/MarkdownActionRegistration.d.ts → floweditor/FlowEditorActionRegistration.d.ts}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { FontAwesomeIcon } from "@omnia/fx-models";
|
2
2
|
import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
3
|
-
export interface
|
3
|
+
export interface FlowEditorActionRegistration {
|
4
4
|
id: guid;
|
5
5
|
icon: FontAwesomeIcon;
|
6
6
|
altText?: string;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./FlowEditorActionRegistration"), exports);
|
5
|
+
tslib_1.__exportStar(require("./FlowEditorPluginRegistration"), exports);
|
6
|
+
tslib_1.__exportStar(require("./FlowEditorPluginSettings"), exports);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, FillDefinitionValue } from "./ThemeDefinitionV2";
|
2
2
|
import { SpacingDefinition, Spacing } from "./Spacing";
|
3
|
-
import { TypographyValue } from "./Typography";
|
3
|
+
import { TypographyFontDefinition, TypographyValue } from "./Typography";
|
4
4
|
export interface BoxDimensions extends Spacing {
|
5
5
|
}
|
6
6
|
import { TypographyBlueprint } from "./Typography";
|
@@ -29,6 +29,9 @@ export interface ContainerBlueprint extends Blueprints, BlueprintsReference {
|
|
29
29
|
export interface TypographyBlueprints extends Blueprints, BlueprintsReference {
|
30
30
|
primary: TypographyBlueprint;
|
31
31
|
}
|
32
|
+
export interface IFontBlueprints extends Blueprints, BlueprintsReference {
|
33
|
+
fonts: Array<TypographyFontDefinition>;
|
34
|
+
}
|
32
35
|
export interface SpacingBlueprints extends Blueprints, BlueprintsReference {
|
33
36
|
primary: SpacingBlueprint;
|
34
37
|
}
|
@@ -81,7 +81,7 @@ export interface ITemplateRegistration<TTemplateType = any> {
|
|
81
81
|
hidden?: boolean;
|
82
82
|
custom?: boolean;
|
83
83
|
}
|
84
|
-
export type TemplateRegistrationType = "button" | "fill" | "border" | "tabs" | "chrome" | "chromes" | "components" | "spacings" | "spacing" | "typography" | "icons" | "colorschema" | "theme";
|
84
|
+
export type TemplateRegistrationType = "button" | "fill" | "border" | "tabs" | "chrome" | "chromes" | "components" | "spacings" | "spacing" | "typography" | "icons" | "colorschema" | "theme" | "availablefonts";
|
85
85
|
export interface ITemplateRegistration<TTemplateType = any, TType = TemplateRegistrationType> {
|
86
86
|
type: TemplateRegistrationType;
|
87
87
|
id: guid;
|
@@ -2,11 +2,7 @@ import { guid } from "../Guid";
|
|
2
2
|
import { FillDefinition } from "./ThemeDefinitionV2";
|
3
3
|
export interface TypographyBlueprint {
|
4
4
|
name: string;
|
5
|
-
font?:
|
6
|
-
id: guid;
|
7
|
-
family: string;
|
8
|
-
cdn?: string;
|
9
|
-
};
|
5
|
+
font?: TypographyFontRef;
|
10
6
|
fills?: {
|
11
7
|
variant1?: FillDefinition;
|
12
8
|
variant2?: FillDefinition;
|
@@ -18,39 +14,23 @@ export interface TypographyBlueprint {
|
|
18
14
|
m: TypographyDefinition;
|
19
15
|
s: TypographyDefinition;
|
20
16
|
xs: TypographyDefinition;
|
21
|
-
font?:
|
22
|
-
id: guid;
|
23
|
-
family: string;
|
24
|
-
cdn?: string;
|
25
|
-
};
|
17
|
+
font?: TypographyFontRef;
|
26
18
|
};
|
27
19
|
text: {
|
28
20
|
l: TypographyDefinition;
|
29
21
|
m: TypographyDefinition;
|
30
22
|
s: TypographyDefinition;
|
31
23
|
xs: TypographyDefinition;
|
32
|
-
font?:
|
33
|
-
id: guid;
|
34
|
-
family: string;
|
35
|
-
cdn?: string;
|
36
|
-
};
|
24
|
+
font?: TypographyFontRef;
|
37
25
|
};
|
38
26
|
navigation: {
|
39
27
|
l: TypographyDefinition;
|
40
28
|
m: TypographyDefinition;
|
41
|
-
font?:
|
42
|
-
id: guid;
|
43
|
-
family: string;
|
44
|
-
cdn?: string;
|
45
|
-
};
|
29
|
+
font?: TypographyFontRef;
|
46
30
|
};
|
47
31
|
link: {
|
48
32
|
m: TypographyDefinition;
|
49
|
-
font?:
|
50
|
-
id: guid;
|
51
|
-
family: string;
|
52
|
-
cdn?: string;
|
53
|
-
};
|
33
|
+
font?: TypographyFontRef;
|
54
34
|
};
|
55
35
|
}
|
56
36
|
export interface TypographyDefinition {
|
@@ -58,12 +38,23 @@ export interface TypographyDefinition {
|
|
58
38
|
lg: TypographyTypeBreakPoint;
|
59
39
|
md?: TypographyTypeBreakPoint;
|
60
40
|
sm?: TypographyTypeBreakPoint;
|
41
|
+
font?: TypographyFontRef;
|
61
42
|
}
|
62
43
|
export interface TypographyTypeBreakPoint {
|
63
44
|
weight: number;
|
64
45
|
size: number;
|
65
46
|
lineHeight: number;
|
66
47
|
}
|
48
|
+
export interface TypographyFontDefinition {
|
49
|
+
id?: guid;
|
50
|
+
name?: string;
|
51
|
+
family: string;
|
52
|
+
cdn?: string;
|
53
|
+
manifestId?: guid;
|
54
|
+
}
|
55
|
+
export interface TypographyFontRef {
|
56
|
+
family: string;
|
57
|
+
}
|
67
58
|
export type TypographyType = keyof typeof TypographyTypes;
|
68
59
|
export declare enum TypographyTypes {
|
69
60
|
title = "title",
|
@@ -83,3 +74,5 @@ export declare enum TypographySizes {
|
|
83
74
|
s = "s",
|
84
75
|
xs = "xs"
|
85
76
|
}
|
77
|
+
/**this reflect TypographySizes for member check*/
|
78
|
+
export declare const AvailableTypographySizes: string[];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.TypographySizes = exports.TypographyTypes = void 0;
|
3
|
+
exports.AvailableTypographySizes = exports.TypographySizes = exports.TypographyTypes = void 0;
|
4
4
|
var TypographyTypes;
|
5
5
|
(function (TypographyTypes) {
|
6
6
|
TypographyTypes["title"] = "title";
|
@@ -15,3 +15,5 @@ var TypographySizes;
|
|
15
15
|
TypographySizes["s"] = "s";
|
16
16
|
TypographySizes["xs"] = "xs";
|
17
17
|
})(TypographySizes || (exports.TypographySizes = TypographySizes = {}));
|
18
|
+
/**this reflect TypographySizes for member check*/
|
19
|
+
exports.AvailableTypographySizes = ["xl", "l", "m", "s", "xs"];
|
@@ -60,7 +60,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
|
|
60
60
|
icon?: any;
|
61
61
|
}
|
62
62
|
export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
|
63
|
-
export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference" | "select";
|
63
|
+
export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference" | "select" | "property-resolver";
|
64
64
|
export type EditorLocation = "inline " | "pane" | "toolbar";
|
65
65
|
export interface VelcronEditor<TSettings = any> {
|
66
66
|
name?: string;
|
@@ -4,6 +4,7 @@ import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, Velcron
|
|
4
4
|
import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
|
5
5
|
import { guid, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
|
6
6
|
import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
|
7
|
+
import { IDataSourcePropertySelection } from "internal/fx/ux/properties/models/PropertyPicker";
|
7
8
|
export interface ResolvedComponentRenderer {
|
8
9
|
component: unknown;
|
9
10
|
definition: VelcronDefinition;
|
@@ -223,7 +224,6 @@ export declare enum VelcronImageRatios {
|
|
223
224
|
}
|
224
225
|
export interface VelcronImageDefinition extends VelcronDefinitionWithEditMode {
|
225
226
|
type: "image";
|
226
|
-
url?: VelcronBindableProp<string>;
|
227
227
|
value?: VelcronBindableProp<string>;
|
228
228
|
ratio?: VelcronImageRatios | string;
|
229
229
|
width?: number | string;
|
@@ -371,6 +371,10 @@ export interface VelcronPropertyDefinitionValue {
|
|
371
371
|
value: PropertyValue;
|
372
372
|
configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
|
373
373
|
}
|
374
|
+
export interface VelcronPropertyDefinitionValueResolver {
|
375
|
+
name: string;
|
376
|
+
source: IDataSourcePropertySelection;
|
377
|
+
}
|
374
378
|
export type VelcronRenderProps<TDefinition> = {
|
375
379
|
definition: TDefinition;
|
376
380
|
renderContext: VelcronRenderContext;
|
package/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BuiltInPropertyEditorType, TypographyType, VelcronEditor } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
1
|
+
import { BuiltInPropertyEditorType, guid, TypographyType, VelcronEditor } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
export interface ResolvedPropertyEditor {
|
3
3
|
editor: VelcronEditor;
|
4
4
|
}
|
@@ -36,6 +36,12 @@ export interface VelcronNumberEditorSettings {
|
|
36
36
|
max: number;
|
37
37
|
step: number;
|
38
38
|
}
|
39
|
+
export interface VelcronPropertyResolverEditorSettings {
|
40
|
+
properties: Array<{
|
41
|
+
name: string;
|
42
|
+
definitionId: guid;
|
43
|
+
}>;
|
44
|
+
}
|
39
45
|
export interface VelcronBlueprintEditorSettings {
|
40
46
|
type: "container" | "icon";
|
41
47
|
}
|
@@ -96,3 +102,6 @@ export interface VelcronGridEditor extends VelcronEditor<any> {
|
|
96
102
|
export interface VelcronSelectEditor extends VelcronEditor<VelcronSelectEditorSettings> {
|
97
103
|
type: "select";
|
98
104
|
}
|
105
|
+
export interface VelcronPropertyResolverEditor extends VelcronEditor<VelcronPropertyResolverEditorSettings> {
|
106
|
+
type: "property-resolver";
|
107
|
+
}
|
package/package.json
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Font";
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { FlowEditorPluginRegistration } from "@omnia/fx-models";
|
2
|
+
import { ApiPath } from "../Extends";
|
3
|
+
export interface IFlowEditorPluginRegistrationHandler {
|
4
|
+
getAll: () => Array<FlowEditorPluginRegistration>;
|
5
|
+
register: (plugins: FlowEditorPluginRegistration | FlowEditorPluginRegistration[]) => void;
|
6
|
+
}
|
7
|
+
export interface IFlowEditorPluginRegistration {
|
8
|
+
registration: Promise<IFlowEditorPluginRegistrationHandler>;
|
9
|
+
}
|
10
|
+
export interface IFlowEditorRegistrationApi {
|
11
|
+
plugins: IFlowEditorPluginRegistration;
|
12
|
+
}
|
13
|
+
declare module "./UxApi" {
|
14
|
+
interface IOmniaUxApi {
|
15
|
+
flow: IFlowEditorRegistrationApi;
|
16
|
+
}
|
17
|
+
interface IOmniaUxExtendApiManifest {
|
18
|
+
flow: {
|
19
|
+
plugins: {
|
20
|
+
registration: ApiPath;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
}
|
24
|
+
}
|
package/ux/FontApi.d.ts
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
import { FontDefinition } from "@omnia/fx-models";
|
2
|
+
import { ApiPath } from "../Extends";
|
3
|
+
export interface IFontRegistrationApi {
|
4
|
+
registerFont: (font: FontDefinition) => void;
|
5
|
+
getAllFonts: () => FontDefinition[];
|
6
|
+
}
|
7
|
+
declare module "./UxApi" {
|
8
|
+
interface IOmniaUxApi {
|
9
|
+
typography: {
|
10
|
+
registration: Promise<IFontRegistrationApi>;
|
11
|
+
};
|
12
|
+
}
|
13
|
+
interface IOmniaUxExtendApiManifest {
|
14
|
+
typography: {
|
15
|
+
registration: ApiPath;
|
16
|
+
};
|
17
|
+
}
|
18
|
+
}
|
package/ux/FontApi.js
ADDED
package/ux/index.d.ts
CHANGED
@@ -22,5 +22,6 @@ export * from "./MediaGalleryApi";
|
|
22
22
|
export * from "./DynamicPlaceholderApi";
|
23
23
|
export * from "./RouterApi";
|
24
24
|
export * from "./ScopedPermissionApi";
|
25
|
-
export * from "./
|
25
|
+
export * from "./FlowEditorApi";
|
26
|
+
export * from "./FontApi";
|
26
27
|
export { type Directives, type DirectiveDefinition, type IInternalDirectiveRegistration } from "./Directive";
|
package/ux/index.js
CHANGED
@@ -25,4 +25,5 @@ tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
|
|
25
25
|
tslib_1.__exportStar(require("./DynamicPlaceholderApi"), exports);
|
26
26
|
tslib_1.__exportStar(require("./RouterApi"), exports);
|
27
27
|
tslib_1.__exportStar(require("./ScopedPermissionApi"), exports);
|
28
|
-
tslib_1.__exportStar(require("./
|
28
|
+
tslib_1.__exportStar(require("./FlowEditorApi"), exports);
|
29
|
+
tslib_1.__exportStar(require("./FontApi"), exports);
|
package/markdown/index.d.ts
DELETED
package/markdown/index.js
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
const tslib_1 = require("tslib");
|
4
|
-
tslib_1.__exportStar(require("./MarkdownActionRegistration"), exports);
|
5
|
-
tslib_1.__exportStar(require("./MarkdownPluginRegistration"), exports);
|
6
|
-
tslib_1.__exportStar(require("./MarkdownPluginSettings"), exports);
|
package/ux/MarkdownApi.d.ts
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
import { MarkdownPluginRegistration } from "@omnia/fx-models";
|
2
|
-
import { ApiPath } from "../Extends";
|
3
|
-
export interface IMarkdownPluginRegistrationHandler {
|
4
|
-
getAll: () => Array<MarkdownPluginRegistration>;
|
5
|
-
register: (plugins: MarkdownPluginRegistration | MarkdownPluginRegistration[]) => void;
|
6
|
-
}
|
7
|
-
export interface IMarkdownPluginRegistration {
|
8
|
-
registration: Promise<IMarkdownPluginRegistrationHandler>;
|
9
|
-
}
|
10
|
-
export interface IMarkdownRegistrationApi {
|
11
|
-
plugins: IMarkdownPluginRegistration;
|
12
|
-
}
|
13
|
-
declare module "./UxApi" {
|
14
|
-
interface IOmniaUxApi {
|
15
|
-
markdown: IMarkdownRegistrationApi;
|
16
|
-
}
|
17
|
-
interface IOmniaUxExtendApiManifest {
|
18
|
-
markdown: {
|
19
|
-
plugins: {
|
20
|
-
registration: ApiPath;
|
21
|
-
};
|
22
|
-
};
|
23
|
-
}
|
24
|
-
}
|
/package/{markdown/MarkdownActionRegistration.js → floweditor/FlowEditorActionRegistration.js}
RENAMED
File without changes
|
/package/{markdown/MarkdownPluginRegistration.js → floweditor/FlowEditorPluginRegistration.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|