@omnia/fx-models 8.0.297-dev → 8.0.299-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/BusinessProfile.d.ts +4 -4
- package/Constants.d.ts +4 -0
- package/Constants.js +4 -0
- package/Contexts.d.ts +2 -2
- package/Enums.d.ts +1 -1
- package/Enums.js +12 -12
- package/Enums.tooling.d.ts +1 -1
- package/Enums.tooling.js +1 -0
- package/Theme.d.ts +3 -3
- package/package.json +1 -1
- package/properties/values/BirthdayPropertyValue.js +1 -1
- package/properties/values/DatePropertyValue.js +2 -2
- package/properties/values/DateTimePropertyValue.js +1 -1
package/BusinessProfile.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { guid, ThemeTargetMapping } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
import { types } from "typestyle";
|
3
|
-
import { LanguageSettings,
|
4
|
-
import {
|
3
|
+
import { LanguageSettings, LegacyTheming, ThemeSelection, VersionedLayoutId } from ".";
|
4
|
+
import { LegacyThemeType } from "./Enums";
|
5
5
|
import { MultilingualString } from "./MultilingualString";
|
6
6
|
import { IOmniaPropertyBag, OmniaNamedModel } from "./NamedProperty";
|
7
7
|
export interface BusinessProfileIdentity {
|
@@ -33,7 +33,7 @@ export declare abstract class BusinessProfileProperty extends OmniaNamedModel {
|
|
33
33
|
}
|
34
34
|
export declare abstract class BusinessProfilePathProperty extends OmniaNamedModel {
|
35
35
|
}
|
36
|
-
export declare class BusinessProfileTheme extends BusinessProfileProperty implements
|
36
|
+
export declare class BusinessProfileTheme extends BusinessProfileProperty implements LegacyTheming {
|
37
37
|
constructor();
|
38
38
|
primary: string;
|
39
39
|
secondary: string;
|
@@ -43,7 +43,7 @@ export declare class BusinessProfileTheme extends BusinessProfileProperty implem
|
|
43
43
|
info: string;
|
44
44
|
success: string;
|
45
45
|
warning: string;
|
46
|
-
type:
|
46
|
+
type: LegacyThemeType;
|
47
47
|
}
|
48
48
|
export declare class BusinessProfileThemeManager extends BusinessProfileProperty {
|
49
49
|
constructor();
|
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
@@ -153,6 +153,10 @@ exports.Constants = {
|
|
153
153
|
block: (0, models_1.guid)("607594d1-b25a-4abe-b672-baa0e9ee11ed"),
|
154
154
|
editorDialog: (0, models_1.guid)("553d18a1-116c-4875-bc9c-d9054aa1a82b"),
|
155
155
|
},
|
156
|
+
themes: {
|
157
|
+
defaultThemeId: (0, models_1.guid)("8cd919ae-200e-45d1-89de-1362cddd2794"),
|
158
|
+
adminThemeId: (0, models_1.guid)("134b0942-7c1a-4c34-8f02-c639b935bd05")
|
159
|
+
},
|
156
160
|
colorTypeReplacements: {
|
157
161
|
primary: "{{PrimaryColor}}",
|
158
162
|
secondary: "{{SecondaryColor}}",
|
package/Contexts.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid, OmniaSharedBootstrapData, OmniaToken, IUrlHash, IUrlQuerystring, IUrlPath, AppRoute,
|
1
|
+
import { guid, OmniaSharedBootstrapData, OmniaToken, IUrlHash, IUrlQuerystring, IUrlPath, AppRoute, LegacyTheming, IBusinessProfile, IMessageBusTopicSubscription, HttpHeaders, IOmniaPropertyBag, ITenant, OmniaServiceManifests, TenantWithProperties, UserWithProperties, RollupFilterComponentState, LoadableBundleManifest, UserWithPropertyBag, FilterEngineRouterState, ThemeBoot } from ".";
|
2
2
|
import { AxiosResponse } from "axios";
|
3
3
|
import { BusinessProfileWithProperties } from "./BusinessProfile";
|
4
4
|
import { AppRoutePropertyBagModel, AppRouteWithProperties, ITokenBasedUrlPath, IAppRoute } from "./Routing";
|
@@ -111,7 +111,7 @@ export interface IOmniaContext extends IMutableContext<IOmniaContext> {
|
|
111
111
|
businessProfile: IBusinessProfile;
|
112
112
|
appRoute: IAppRoute;
|
113
113
|
tenant: ITenant;
|
114
|
-
theming:
|
114
|
+
theming: LegacyTheming;
|
115
115
|
user: Promise<UserWithPropertyBag>;
|
116
116
|
tokens: OmniaTokenContext;
|
117
117
|
activatedFeatures: guid[];
|
package/Enums.d.ts
CHANGED
@@ -372,7 +372,7 @@ export declare enum FeatureInstanceStatus {
|
|
372
372
|
AdminConsentUpgrading = 6,
|
373
373
|
AdminConsentWaitingActivation = 7
|
374
374
|
}
|
375
|
-
export declare enum
|
375
|
+
export declare enum LegacyThemeType {
|
376
376
|
Light = "Light",
|
377
377
|
LightWithColorContrast = "LightWithColorContrast",
|
378
378
|
LightWithFullColorContrast = "LightWithFullColorContrast",
|
package/Enums.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.RichTextModes = exports.TimePeriodTypes = exports.TargetUser = exports.RedirectRuleType = exports.MultilingualScopes = exports.OmniaRoleTypes = exports.TargetResolverTypes = exports.PermissionRoles = exports.TimeFormats = exports.CompareBusinessProfilePathType = exports.StatusMessageOverlayType = exports.HttpStatusCode = exports.QueueMessageStatus = exports.StaticEndpoint = exports.
|
3
|
+
exports.RichTextModes = exports.TimePeriodTypes = exports.TargetUser = exports.RedirectRuleType = exports.MultilingualScopes = exports.OmniaRoleTypes = exports.TargetResolverTypes = exports.PermissionRoles = exports.TimeFormats = exports.CompareBusinessProfilePathType = exports.StatusMessageOverlayType = exports.HttpStatusCode = exports.QueueMessageStatus = exports.StaticEndpoint = exports.LegacyThemeType = exports.FeatureInstanceStatus = exports.RoleDefinitions = exports.Parameters = exports.ParamTypes = exports.PropertyIndexedType = exports.UserPickingType = exports.BoolFilter = exports.PrincipalTypes = exports.AppInstanceScopedQueryTypes = exports.AppInstanceStatus = exports.VideoRatio = exports.AdminNavigationBuiltInCategory = exports.AdminVisibility = exports.AuthenticationValidationStatuses = exports.IconSources = exports.IconTypes = exports.LanguageTags = exports.LocalizationTargetTypes = exports.BundleTargetTypes = exports.ServerManifestTypes = exports.ClientManifestTypes = exports.RuleLogicalOperator = exports.ResourceEvaluators = exports.ConsoleStateStorageMessageTypes = exports.ConsoleMessageTypes = exports.LogLevels = exports.ManifestLoadStatus = exports.LogSources = exports.AppTemplatePermissionLevel = exports.SecurityAccessType = exports.SecurityIdentities = exports.SecurityRoleScopes = exports.SecurityProviderTypes = exports.BuiltInAppInstanceInternalNames = exports.BuiltInEnterprisePropertyInternalNames = void 0;
|
4
4
|
exports.LayoutActionOpenType = exports.ReCaptChaSecretFormNames = exports.reCaptchaSecretKey = exports.WPServiceDefinition = exports.StatusFilter = exports.PersistentDiskTypes = exports.CookieKeys = exports.LocalServingMessageType = exports.DisplayBreakpoints = exports.DisplayBreakpointCodes = exports.IdentityUserIdTypeMatch = exports.OmniaClientRuntimes = exports.OmniaBackendRuntimes = exports.PropertyEditModeElementNameType = exports.DirectionRules = exports.MediaPickerEnums = exports.PropertyArchiveType = exports.ImageSources = exports.IconSizes = exports.BlockRenderingModes = exports.LayoutCanvasModes = exports.ChromeTypes = exports.LayoutItemActions = exports.LayoutEditorModes = exports.TabbedDisplayModes = exports.TabbedIconPositions = exports.Positions = exports.BorderPositions = exports.IconPositions = exports.TextAlignment = exports.LayoutItemTypes = exports.LayoutDrawerTabs = exports.VerticalAlignments = exports.HorizontalAlignments = exports.BladeSizes = exports.ImageResolution = exports.ServiceLocatorUrlType = exports.AppInstanceAction = exports.VDataGridHeaderType = exports.VDataGridHeaderAlign = exports.ButtonSizes = exports.ButtonModes = exports.ButtonIconPosition = exports.ButtonTooltipPosition = void 0;
|
5
5
|
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
6
6
|
var BuiltInEnterprisePropertyInternalNames;
|
@@ -410,17 +410,17 @@ var FeatureInstanceStatus;
|
|
410
410
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentUpgrading"] = 6] = "AdminConsentUpgrading";
|
411
411
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentWaitingActivation"] = 7] = "AdminConsentWaitingActivation";
|
412
412
|
})(FeatureInstanceStatus || (exports.FeatureInstanceStatus = FeatureInstanceStatus = {}));
|
413
|
-
var
|
414
|
-
(function (
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
})(
|
413
|
+
var LegacyThemeType;
|
414
|
+
(function (LegacyThemeType) {
|
415
|
+
LegacyThemeType["Light"] = "Light";
|
416
|
+
LegacyThemeType["LightWithColorContrast"] = "LightWithColorContrast";
|
417
|
+
LegacyThemeType["LightWithFullColorContrast"] = "LightWithFullColorContrast";
|
418
|
+
LegacyThemeType["ColorWithLightContrast"] = "ColorWithLightContrast";
|
419
|
+
LegacyThemeType["ColorWithContrast"] = "ColorWithContrast";
|
420
|
+
LegacyThemeType["ColorWithFullContrast"] = "ColorWithFullContrast";
|
421
|
+
LegacyThemeType["Dark"] = "Dark";
|
422
|
+
LegacyThemeType["DarkWithColorContrast"] = "DarkWithColorContrast";
|
423
|
+
})(LegacyThemeType || (exports.LegacyThemeType = LegacyThemeType = {}));
|
424
424
|
/**
|
425
425
|
* The endpoints can be used directly in href without any context value
|
426
426
|
* */
|
package/Enums.tooling.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { LanguageTags, OmniaMimeType, guid } from "@omnia/fx-models";
|
|
2
2
|
declare const mimeTypes: Record<"c" | "x" | "map" | "s" | "z" | "rgb" | "js" | "css" | "aa" | "html" | "class" | "i" | "ins" | "tr" | "jpeg" | "jpg" | "png" | "bmp" | "gif" | "svg" | "ico" | "pdf" | "dotx" | "docx" | "doc" | "dot" | "pptx" | "potx" | "ppt" | "pot" | "xlsx" | "xltx" | "xls" | "xlt" | "ms" | "dir" | "cd" | "cc" | "cab" | "cdf" | "def" | "user" | "filters" | "settings" | "src" | "one" | "ac3" | "323" | "caf" | "fdf" | "group" | "atom" | "rtf" | "3g2" | "3gp" | "3gp2" | "3gpp" | "7z" | "AAC" | "aaf" | "aax" | "aca" | "accda" | "accdb" | "accdc" | "accde" | "accdr" | "accdt" | "accdw" | "accft" | "acx" | "AddIn" | "ade" | "adobebridge" | "adp" | "ADT" | "ADTS" | "afm" | "ai" | "aif" | "aifc" | "aiff" | "air" | "amc" | "application" | "art" | "asa" | "asax" | "ascx" | "asd" | "asf" | "ashx" | "asi" | "asm" | "asmx" | "aspx" | "asr" | "asx" | "au" | "avi" | "axs" | "bas" | "bcpio" | "bin" | "calx" | "cat" | "cdda" | "cer" | "chm" | "clp" | "cmx" | "cnf" | "cod" | "config" | "contact" | "coverage" | "cpio" | "cpp" | "crd" | "crl" | "crt" | "cs" | "csdproj" | "csh" | "csproj" | "csv" | "cur" | "cxx" | "dat" | "datasource" | "dbproj" | "dcr" | "deploy" | "der" | "dgml" | "dib" | "dif" | "disco" | "dll" | "dll.config" | "dlm" | "docm" | "dotm" | "dsp" | "dsw" | "dtd" | "dtsConfig" | "dv" | "dvi" | "dwf" | "dwp" | "dxr" | "eml" | "emz" | "eot" | "eps" | "etl" | "etx" | "evy" | "exe" | "exe.config" | "fif" | "fla" | "flr" | "flv" | "fsscript" | "fsx" | "generictest" | "gsm" | "gtar" | "gz" | "h" | "hdf" | "hdml" | "hhc" | "hhk" | "hhp" | "hlp" | "hpp" | "hqx" | "hta" | "htc" | "htm" | "htt" | "hxa" | "hxc" | "hxd" | "hxe" | "hxf" | "hxh" | "hxi" | "hxk" | "hxq" | "hxr" | "hxs" | "hxt" | "hxv" | "hxw" | "hxx" | "ics" | "idl" | "ief" | "iii" | "inc" | "inf" | "inl" | "ipa" | "ipg" | "ipproj" | "ipsw" | "iqy" | "isp" | "ite" | "itlp" | "itms" | "itpc" | "IVF" | "jar" | "java" | "jck" | "jcz" | "jfif" | "jnlp" | "jpb" | "jpe" | "jsx" | "jsxbin" | "latex" | "library-ms" | "lit" | "loadtest" | "lpk" | "lsf" | "lst" | "lsx" | "lzh" | "m13" | "m14" | "m1v" | "m2t" | "m2ts" | "m2v" | "m3u" | "m3u8" | "m4a" | "m4b" | "m4p" | "m4r" | "m4v" | "mac" | "mak" | "man" | "manifest" | "master" | "mda" | "mdb" | "mde" | "mdp" | "me" | "mfp" | "mht" | "mhtml" | "mid" | "midi" | "mix" | "mk" | "mmf" | "mno" | "mny" | "mod" | "mov" | "movie" | "mp2" | "mp2v" | "mp3" | "mp4" | "mp4v" | "mpa" | "mpe" | "mpeg" | "mpf" | "mpg" | "mpp" | "mpv2" | "mqv" | "msi" | "mso" | "mts" | "mtx" | "mvb" | "mvc" | "mxp" | "nc" | "nsc" | "nws" | "ocx" | "oda" | "odc" | "odh" | "odl" | "odp" | "ods" | "odt" | "onea" | "onepkg" | "onetmp" | "onetoc" | "onetoc2" | "orderedtest" | "osdx" | "p10" | "p12" | "p7b" | "p7c" | "p7m" | "p7r" | "p7s" | "pbm" | "pcast" | "pct" | "pcx" | "pcz" | "pfb" | "pfm" | "pfx" | "pgm" | "pic" | "pict" | "pkgdef" | "pkgundef" | "pko" | "pls" | "pma" | "pmc" | "pml" | "pmr" | "pmw" | "pnm" | "pnt" | "pntg" | "pnz" | "potm" | "ppa" | "ppam" | "ppm" | "pps" | "ppsm" | "ppsx" | "pptm" | "prf" | "prm" | "prx" | "ps" | "psc1" | "psd" | "psess" | "psm" | "psp" | "pub" | "pwz" | "qht" | "qhtm" | "qt" | "qti" | "qtif" | "qtl" | "qxd" | "ra" | "ram" | "rar" | "ras" | "rat" | "rc" | "rc2" | "rct" | "rdlc" | "resx" | "rf" | "rgs" | "rm" | "rmi" | "rmp" | "roff" | "rpm" | "rqy" | "rtx" | "ruleset" | "safariextz" | "scd" | "sct" | "sd2" | "sdp" | "sea" | "searchConnector-ms" | "setpay" | "setreg" | "sgimb" | "sgml" | "sh" | "shar" | "shtml" | "sit" | "sitemap" | "skin" | "sldm" | "sldx" | "slk" | "sln" | "slupkg-ms" | "smd" | "smi" | "smx" | "smz" | "snd" | "snippet" | "snp" | "sol" | "sor" | "spc" | "spl" | "srf" | "SSISDeploymentManifest" | "ssm" | "sst" | "stl" | "sv4cpio" | "sv4crc" | "svc" | "swf" | "t" | "tar" | "tcl" | "testrunconfig" | "testsettings" | "tex" | "texi" | "texinfo" | "tgz" | "thmx" | "thn" | "tif" | "tiff" | "tlh" | "tli" | "toc" | "trm" | "trx" | "ts" | "tsv" | "ttf" | "tts" | "txt" | "u32" | "uls" | "ustar" | "vb" | "vbdproj" | "vbk" | "vbproj" | "vbs" | "vcf" | "vcproj" | "vcs" | "vcxproj" | "vddproj" | "vdp" | "vdproj" | "vdx" | "vml" | "vscontent" | "vsct" | "vsd" | "vsi" | "vsix" | "vsixlangpack" | "vsixmanifest" | "vsmdi" | "vspscc" | "vss" | "vsscc" | "vssettings" | "vssscc" | "vst" | "vstemplate" | "vsto" | "vsw" | "vsx" | "vtx" | "wav" | "wave" | "wax" | "wbk" | "wbmp" | "wcm" | "wdb" | "wdp" | "webarchive" | "webtest" | "wiq" | "wiz" | "wks" | "WLMP" | "wlpginstall" | "wlpginstall3" | "wm" | "wma" | "wmd" | "wmf" | "wml" | "wmlc" | "wmls" | "wmlsc" | "wmp" | "wmv" | "wmx" | "wmz" | "wpl" | "wps" | "wri" | "wrl" | "wrz" | "wsc" | "wsdl" | "wvx" | "xaf" | "xaml" | "xap" | "xbap" | "xbm" | "xdr" | "xht" | "xhtml" | "xla" | "xlam" | "xlc" | "xld" | "xlk" | "xll" | "xlm" | "xlsb" | "xlsm" | "xltm" | "xlw" | "xml" | "xmta" | "xof" | "XOML" | "xpm" | "xps" | "xrm-ms" | "xsc" | "xsd" | "xsf" | "xsl" | "xslt" | "xsn" | "xss" | "xtp" | "xwd" | "zip" | "woff" | "woff2", OmniaMimeType>;
|
3
3
|
declare const languageTags: Record<"ArSa" | "BgBg" | "CaEs" | "ZhTw" | "CsCz" | "DaDk" | "DeDe" | "ElGr" | "EnUs" | "FiFi" | "FrFr" | "HeIl" | "HuHu" | "IsIs" | "ItIt" | "JaJp" | "KoKr" | "NlNl" | "NbNo" | "PlPl" | "PtBr" | "RoRo" | "RuRu" | "HrHr" | "SkSk" | "SqAl" | "SvSe" | "ThTh" | "TrTr" | "UrPk" | "IdId" | "UkUa" | "BeBy" | "SlSi" | "EtEe" | "LvLv" | "LtLt" | "FaIr" | "ViVn" | "HyAm" | "EuEs" | "MkMk" | "AfZa" | "KaGe" | "FoFo" | "HiIn" | "MsMy" | "KkKz" | "KyKg" | "SwKe" | "TtRu" | "PaIn" | "GuIn" | "TaIn" | "TeIn" | "KnIn" | "MrIn" | "SaIn" | "MnMn" | "GlEs" | "DvMv" | "ArIq" | "ZhCn" | "DeCh" | "EnGb" | "EsMx" | "FrBe" | "ItCh" | "NlBe" | "NnNo" | "PtPt" | "SvFi" | "MsBn" | "ArEg" | "ZhHk" | "DeAt" | "EnAu" | "EnEs" | "FrCa" | "ArLy" | "ZhSg" | "DeLu" | "EnCa" | "EsGt" | "FrCh" | "ArDz" | "ZhMo" | "DeLi" | "EnNz" | "EsCr" | "FrLu" | "ArMa" | "EnIe" | "EsPa" | "FrMc" | "ArTn" | "EnZa" | "EsDo" | "ArOm" | "EnJm" | "EsVe" | "ArYe" | "EsCo" | "ArSy" | "EnBz" | "EsPe" | "ArJo" | "EnTt" | "EsAr" | "ArLb" | "EnZw" | "EsEc" | "EsEs" | "ArKw" | "EnPh" | "EsCl" | "ArAe" | "EsUy" | "ArBh" | "EsPy" | "ArQa" | "EsBo" | "EsSv" | "EsHn" | "EsPr" | "ZuZa" | "XhZa" | "FyNl" | "TnZa" | "SeSe" | "SeFi" | "CyGb" | "HrBa" | "MiNz" | "GaIe" | "RmCh" | "LbLu" | "NsZa" | "SeNo" | "MtMt", LanguageTags>;
|
4
4
|
declare const omniaGroupManifests: Record<"Fx" | "FxConsole" | "FxUxCommonComponents" | "FxUxCommonOxides" | "FxUxRichTextEditor" | "Header" | "ChromeGroup" | "LayoutCanvasGroup", guid>;
|
5
|
-
declare const omniaResourceManifests: Record<"VelcronCore" | "VelcronSetup" | "FxServiceWorker" | "SplitPaneLib" | "ProsemirrorPackage" | "AuthSetupCore" | "LayoutCanvasShared" | "AwesomeProFont" | "FxUxVuetifyShared" | "DynamicPlaceholderApis" | "AppPlaceHolderApis" | "FxUxVuetifyCommon" | "FxUxMonacoEditor" | "FxUxAutocomplete" | "ClientBoot" | "FxUxVuetifyBottomnav" | "ConsoleCommands" | "FxUxVRating" | "FxUxVuetifyHover" | "FxUxVuetifyStepper" | "FxUxVuetifyColorPicker" | "FxUxVuetifyCombobox" | "FxUxVuetifySlider" | "FxUxVuetifyChip" | "FxUxVuetifyDatatable" | "FxUxVuetifyDatePicker" | "FxUxVuetifyTimePicker" | "FxUxVuetifySnackbar" | "FxUxVuetifyPagination" | "FxUxVuetifyTimeline" | "FxUxVuetifyFooter" | "FxUxVuetifyCalendar" | "FxUxVuetifyVirtualScroll" | "FxUxVuetifyAlert" | "FxContexts" | "FxCoreBoot" | "FxCore" | "FxShared" | "FxWorkersBootstrapper" | "OmniaHubWorker" | "FxWorkers" | "Fx" | "FxSpContexts" | "FxUxVuetifyTextinput" | "FxUxVuetifyNumberinput" | "FxUxVuetifySelect" | "FxUxVuetifyTextarea" | "LocalhostingCommands" | "FxUxVuetifyBreadcrumbs" | "FxUxVuetifySelection" | "FxSp" | "FxSpfx" | "SpfxCustomizer" | "SpfxWebpart" | "FxUxVuetifySwitch" | "FxUx" | "FxUxEditor" | "FxUxAdmin" | "FxUxAdminTokenRouter" | "FxUxLibs" | "FxUxVDialog" | "FxUxVuetifyAvatar" | "FxUxVTreeView" | "FxUxVSpeedial" | "FxUxVMenu" | "Vendor" | "PhoneNumberLib" | "FxTenantLanguage" | "FxUxAppProvisioningShared" | "FxUxRichTextEditorExtension" | "MicrosoftTeamsSDK" | "MicrosoftTeamsSDKLoader" | "TeamsSSOScript" | "MediaPickerProviderRegistration" | "FxUxRichTextEditorCore" | "ActionApi" | "ActionHandlerEvents" | "LikeTopicIdProviderRegistration" | "LinkHandlerRegistration" | "EnterpriseGlossaryRegistrationApi" | "AppProvisioningValidatorApi" | "SidePanelRegistrationApi" | "GraphClientRegistrationApi" | "SharepointClientRegistrationApi" | "FilterEngineRegistrationApi" | "TaxonomyFilterEngineRegistrationApi" | "EnterpriseKeywordsFilterEngineRegistrationApi" | "ExtendedTaxonomyFilterEngineRegistrationApi" | "PersonFilterEngineRegistrationApi" | "TagsFilterEngineRegistrationApi" | "BooleanFilterEngineRegistrationApi" | "TextFilterEngineRegistrationApi" | "NumberFilterEngineRegistrationApi" | "DateTimeFilterEngineRegistrationApi" | "ExtendedIdentityFilterEngineRegistrationApi" | "ExtendedBooleanFilterEngineRegistrationApi" | "ExtendedTextFilterEngineRegistrationApi" | "ExtendedIntegerFilterEngineRegistrationApi" | "ExtendedDateTimeFilterEngineRegistrationApi" | "ExtendedDateFilterEngineRegistrationApi" | "ExtendedEmailFilterEngineRegistrationApi" | "ExtendedHtmlFilterEngineRegistrationApi" | "ExtendedLinkFilterEngineRegistrationApi" | "ExtendedMultilineTextFilterEngineRegistrationApi" | "ExtendedMultilingualTextFilterEngineRegistrationApi" | "ExtendedPhoneNumberFilterEngineRegistrationApi" | "ExtendedBirthdayFilterEngineRegistrationApi" | "AppInstanceRollupViewRegistrationApi" | "AppInstanceRollupViewBase" | "UserProfileActionHandlerApi" | "AppInstanceTokenProvider" | "AppPropertiesProvider" | "FxUxEnterprisePropertiesDataSourceApi" | "FxUxPropertiesProviderApi" | "UserPropertiesProvider" | "UserPropertiesByMicrosoftGraphProvider" | "UserPropertiesBySharePointProvider" | "FxUxPropertyDataSourceApi" | "IdentityPropertyApi" | "BuiltinExtendedPropertiesRegistration" | "FxUxCommentDialog" | "FeaturesActivation" | "FxUxFilterEngineCore" | "FxUxBooleanFilterEngineCore" | "FxUxDateFilterEngineCore" | "FxUxNumberFilterEngineCore" | "FxUxPersonFilterEngineCore" | "FxUxTextFilterEngineCore" | "FxUxTaxonomyFilterEngineCore" | "IdentitySyncProviderApi" | "BuiltinSyncProvidersRegistration" | "SharePointIntegrationExternalMapping" | "TextCompletionTenantFeature" | "DallESecretComponent" | "DallESecretRegistrations" | "DallELocalization" | "DallETenantFeature" | "DallEMediaProviderFeature" | "DefaultNotFoundLayout" | "DefaultUnauthorizedLayout" | "StatusCodeLayoutRegistration" | "BuiltinPropertyBindingProviders" | "ExtendedEnterprisePropertyBindingProvider" | "BusinessProfilePropertyBindingProvider" | "UserPropertyBindingProvider" | "MagicLinkCore" | "AdminSystemCore" | "ScopedPermissionApi" | "SecretsCore" | "BusinessProfilesCore" | "BusinessProfileAdminLanguage" | "TenantAdminMediaPickerRegistrations" | "TenantGeneralSettingsRegistration" | "TenantRegionalRegistrations" | "TenantAdminSettingsCore" | "SystemLayoutRegistration" | "SystemLayoutResource" | "BusinessProfileApi" | "AppSettingsCore" | "UserManagementApi", guid>;
|
5
|
+
declare const omniaResourceManifests: Record<"AppCore" | "VelcronCore" | "VelcronSetup" | "FxServiceWorker" | "SplitPaneLib" | "ProsemirrorPackage" | "AuthSetupCore" | "LayoutCanvasShared" | "AwesomeProFont" | "FxUxVuetifyShared" | "DynamicPlaceholderApis" | "AppPlaceHolderApis" | "FxUxVuetifyCommon" | "FxUxMonacoEditor" | "FxUxAutocomplete" | "ClientBoot" | "FxUxVuetifyBottomnav" | "ConsoleCommands" | "FxUxVRating" | "FxUxVuetifyHover" | "FxUxVuetifyStepper" | "FxUxVuetifyColorPicker" | "FxUxVuetifyCombobox" | "FxUxVuetifySlider" | "FxUxVuetifyChip" | "FxUxVuetifyDatatable" | "FxUxVuetifyDatePicker" | "FxUxVuetifyTimePicker" | "FxUxVuetifySnackbar" | "FxUxVuetifyPagination" | "FxUxVuetifyTimeline" | "FxUxVuetifyFooter" | "FxUxVuetifyCalendar" | "FxUxVuetifyVirtualScroll" | "FxUxVuetifyAlert" | "FxContexts" | "FxCoreBoot" | "FxCore" | "FxShared" | "FxWorkersBootstrapper" | "OmniaHubWorker" | "FxWorkers" | "Fx" | "FxSpContexts" | "FxUxVuetifyTextinput" | "FxUxVuetifyNumberinput" | "FxUxVuetifySelect" | "FxUxVuetifyTextarea" | "LocalhostingCommands" | "FxUxVuetifyBreadcrumbs" | "FxUxVuetifySelection" | "FxSp" | "FxSpfx" | "SpfxCustomizer" | "SpfxWebpart" | "FxUxVuetifySwitch" | "FxUx" | "FxUxEditor" | "FxUxAdmin" | "FxUxAdminTokenRouter" | "FxUxLibs" | "FxUxVDialog" | "FxUxVuetifyAvatar" | "FxUxVTreeView" | "FxUxVSpeedial" | "FxUxVMenu" | "Vendor" | "PhoneNumberLib" | "FxTenantLanguage" | "FxUxAppProvisioningShared" | "FxUxRichTextEditorExtension" | "MicrosoftTeamsSDK" | "MicrosoftTeamsSDKLoader" | "TeamsSSOScript" | "MediaPickerProviderRegistration" | "FxUxRichTextEditorCore" | "ActionApi" | "ActionHandlerEvents" | "LikeTopicIdProviderRegistration" | "LinkHandlerRegistration" | "EnterpriseGlossaryRegistrationApi" | "AppProvisioningValidatorApi" | "SidePanelRegistrationApi" | "GraphClientRegistrationApi" | "SharepointClientRegistrationApi" | "FilterEngineRegistrationApi" | "TaxonomyFilterEngineRegistrationApi" | "EnterpriseKeywordsFilterEngineRegistrationApi" | "ExtendedTaxonomyFilterEngineRegistrationApi" | "PersonFilterEngineRegistrationApi" | "TagsFilterEngineRegistrationApi" | "BooleanFilterEngineRegistrationApi" | "TextFilterEngineRegistrationApi" | "NumberFilterEngineRegistrationApi" | "DateTimeFilterEngineRegistrationApi" | "ExtendedIdentityFilterEngineRegistrationApi" | "ExtendedBooleanFilterEngineRegistrationApi" | "ExtendedTextFilterEngineRegistrationApi" | "ExtendedIntegerFilterEngineRegistrationApi" | "ExtendedDateTimeFilterEngineRegistrationApi" | "ExtendedDateFilterEngineRegistrationApi" | "ExtendedEmailFilterEngineRegistrationApi" | "ExtendedHtmlFilterEngineRegistrationApi" | "ExtendedLinkFilterEngineRegistrationApi" | "ExtendedMultilineTextFilterEngineRegistrationApi" | "ExtendedMultilingualTextFilterEngineRegistrationApi" | "ExtendedPhoneNumberFilterEngineRegistrationApi" | "ExtendedBirthdayFilterEngineRegistrationApi" | "AppInstanceRollupViewRegistrationApi" | "AppInstanceRollupViewBase" | "UserProfileActionHandlerApi" | "AppInstanceTokenProvider" | "AppPropertiesProvider" | "FxUxEnterprisePropertiesDataSourceApi" | "FxUxPropertiesProviderApi" | "UserPropertiesProvider" | "UserPropertiesByMicrosoftGraphProvider" | "UserPropertiesBySharePointProvider" | "FxUxPropertyDataSourceApi" | "IdentityPropertyApi" | "BuiltinExtendedPropertiesRegistration" | "FxUxCommentDialog" | "FeaturesActivation" | "FxUxFilterEngineCore" | "FxUxBooleanFilterEngineCore" | "FxUxDateFilterEngineCore" | "FxUxNumberFilterEngineCore" | "FxUxPersonFilterEngineCore" | "FxUxTextFilterEngineCore" | "FxUxTaxonomyFilterEngineCore" | "IdentitySyncProviderApi" | "BuiltinSyncProvidersRegistration" | "SharePointIntegrationExternalMapping" | "TextCompletionTenantFeature" | "DallESecretComponent" | "DallESecretRegistrations" | "DallELocalization" | "DallETenantFeature" | "DallEMediaProviderFeature" | "DefaultNotFoundLayout" | "DefaultUnauthorizedLayout" | "StatusCodeLayoutRegistration" | "BuiltinPropertyBindingProviders" | "ExtendedEnterprisePropertyBindingProvider" | "BusinessProfilePropertyBindingProvider" | "UserPropertyBindingProvider" | "MagicLinkCore" | "AdminSystemCore" | "ScopedPermissionApi" | "SecretsCore" | "BusinessProfilesCore" | "BusinessProfileAdminLanguage" | "TenantAdminMediaPickerRegistrations" | "TenantGeneralSettingsRegistration" | "TenantRegionalRegistrations" | "TenantAdminSettingsCore" | "SystemLayoutRegistration" | "SystemLayoutResource" | "BusinessProfileApi" | "AppSettingsCore" | "UserManagementApi", guid>;
|
6
6
|
declare const omniaWebComponentManifests: Record<"Header" | "Chrome" | "JourneyBladeComponent" | "AuthSetup" | "AuthenticationBlock" | "AuthenticationCore" | "LoginOmniaView" | "LoginOmniaRenderer" | "LoginIdentityCreationRequestRenderer" | "Logout" | "MagicLinkLogin" | "MagicLinkSuccess" | "MagicLinkFailure" | "LayoutRendererCanvas" | "VersionedLayoutBladeBuilder" | "VersionedLayoutCreationBlade" | "VersionedLayoutListBladeBuilder" | "VersionedLayoutCheckedOutByOtherMessage" | "VersionedLayoutRenderer" | "VersionedLayoutEditor" | "VersionHistory" | "VersionHistoryPanel" | "UserTypeLayoutRenderer" | "VersionedLayoutController" | "VersionedLayoutEditorChrome" | "BladeHeader" | "OAppBar" | "OAlert" | "OSwiper" | "OSlide" | "OInfiniteScroll" | "OAvatar" | "OLazy" | "OBadge" | "OBtn" | "OBtnGroup" | "OCard" | "OChart" | "OCheckBox" | "OChip" | "ONotification" | "OColumn" | "OColumnGrid" | "ORow" | "ODataTable" | "ODataTableServer" | "ODialog" | "ODivider" | "ODraggable" | "ODatePicker" | "OExpansionpanels" | "OExpansionpanel" | "OForm" | "OHostProvider" | "OIcon" | "OImage" | "OLayout" | "OList" | "OListItem" | "OMain" | "OMenu" | "ONavigationDrawer" | "OPanel" | "OFlex" | "OScrollContainer" | "OStickyContainer" | "OProgress" | "ORadio" | "ORadioGroup" | "ORating" | "OSplitpane" | "OSplitpaneItem" | "OSelect" | "OSkeletonLoader" | "OSlider" | "ORangeSlider" | "OSnackbar" | "OSpacer" | "OStepper" | "OStepperStep" | "OSwitch" | "OTable" | "OTab" | "OTabs" | "OText" | "OLink" | "OTextArea" | "OTextField" | "OToolbar" | "OColorPicker" | "OTooltip" | "OTreeView" | "OValidation" | "OPagination" | "OMotion" | "Admin" | "AdminShortcut" | "Bladestest" | "Welcome" | "AuthenticationChecker" | "FxUxColorpicker" | "FxUxIframe" | "FxUxDateTimePicker" | "FxSizeContainer" | "Console" | "DevSocketMessage" | "FxUxDialog" | "FxUxConfirmDialog" | "FxUxDocumenticon" | "FxUxStatusMessageOverlay" | "FxUxHeading" | "FxUxSelection" | "FxUxInputToken" | "FxUxIconpicker" | "FxUxJourney" | "FxUxMenuBlade" | "FxUxWizard" | "FxUxPeoplePicker" | "FxUxIcon" | "FxUxButton" | "FxUxDatatable" | "FxUxShapeDivider" | "FxUxShapeDividerSettings" | "FxUxEnterprisePropertiesRichTextFieldDisplay" | "FxUxEnterprisePropertiesTextFieldDisplay" | "FxUxEnterprisePropertiesDateTimeFieldDisplay" | "FxUxEnterprisePropertiesUserFieldDisplay" | "FxUxEnterprisePropertiesBooleanFieldDisplay" | "FxUxEnterprisePropertiesNumberFieldDisplay" | "FxUxEnterprisePropertiesTaxonomyFieldDisplay" | "FxUxEnterprisePropertiesLanguageFieldDisplay" | "FxUxEnterprisePropertiesTagsPropertyDisplay" | "FxUxEnterprisePropertyPicker" | "FxUxEnterprisePropertySetPicker" | "FxUxEnterprisePropertyDataTypeProviderDisplay" | "FxUxSharePointTermItem" | "FxUxLimitedLabel" | "FxSpTermGlossaryMapping" | "FxSpfxWpSetting" | "FxSpfxWp" | "FxUxSettingspane" | "FxUxRollupEmpty" | "FxUxRollupFilter" | "FxUxRollupFilterPicker" | "Signout" | "FxUxTermpicker" | "FxUxTemplatePicker" | "FxUxMediapicker" | "FxUxMediapickerImage" | "FxUxMediapickerVideo" | "FxUxImageGrid" | "FxUxPexelProvider" | "FxUxUnsplashProvider" | "FxUxMediaflowProvider" | "FxUxMediaflowProviderVideoPlayer" | "FxUxMyComputerProvider" | "FxUxFileUploader" | "FxUxBingProvider" | "FxUxCentralImageLocationProvider" | "FxUxSharePointVideoSettings" | "FxUxMicrosoftStreamProvider" | "FxUxYoutubeProvider" | "FxUxVimeoProvider" | "FxUxDallEProvider" | "FxUxImageTransformer" | "FxUxThemeDefinitionEditor" | "FxUxImageEditor" | "FxUxImageTransformEditor" | "SharepointVideoComponent" | "FxUxFieldValidation" | "FxUxLetterAvatar" | "FxUxLanguagePicker" | "FxUxContextLanguagePicker" | "FxUxTimeZonePicker" | "FxUxSiteLogoIcon" | "FxUxTimePeriodPicker" | "FxUxDateTimeZonePicker" | "FxUxDateTimeZoneRenderer" | "FxUxDateTimeFilterQuery" | "FxUxAppProvisioningRenderer" | "FxUxAppProvisioningValidatorWrapper" | "FxUxAppRouteInput" | "FxUxAppTitleInput" | "FxUxAppDescriptionInput" | "FxUxAppShowInPublicListingsInput" | "FxUxAppImageInput" | "FxUxAppPropertiesInput" | "SpUxAppWithSharePointAliasInput" | "FxUxAppPropertyNamingPolicyInput" | "FxUxVersionedLayoutUrlInput" | "FxUxAppInstanceEditingJourney" | "FxUxAppInstancePermissionBlade" | "FxUxAppInstanceRoutePathBlade" | "FxUxAppInstanceDeleteBlade" | "FxUxAppProvisioningWizard" | "FxUxAppInstanceInformationStep" | "FxUxAppInstanceUsersStep" | "FxUxAppInstanceEnterpriseStep" | "FxUxAppInstanceProvisioningSummaryStep" | "FxUxAppInstanceProgressBlade" | "FxUxAppInstanceRollup" | "FxUxAppInstanceRollupSettings" | "FxUxAppInstanceRollupListView" | "FxUxAppInstanceRollupRenderer" | "FxUxAppInstanceRollupMetricDetail" | "FxUxAppInstanceRollupListViewSettings" | "FxUxAppInstanceRollupCardView" | "FxUxAppInstanceRollupCardViewSettings" | "FxUxQueryablePropertiesJourney" | "FxUxDateTimeFieldEdit" | "FxUxPersonFieldEdit" | "FxUxBooleanFieldEdit" | "FxUxTextFieldEdit" | "FxUxRichTextFieldEdit" | "FxUxRichTextEditorSettingsComponent" | "FxUxRichTextEditorComponent" | "FxUxRichTextEditorRendererCore" | "FxUxRichTextEditorRendererComponent" | "FxUxNumberFieldEdit" | "FxUxLanguageFieldEdit" | "FxUxTagsPropertyEdit" | "FxUxDataFieldEdit" | "FxUxPersonFieldValueDefinition" | "FxUxRichTextFieldValueDefinition" | "FxUxBooleanFieldValueDefinition" | "FxUxDataFieldValueDefinition" | "FxUxDateTimeFieldValueDefinition" | "FxUxMediaFieldValueDefinition" | "FxUxNumberFieldValueDefinition" | "FxUxTextFieldValueDefinition" | "FxUxLanguageFieldValueDefinition" | "FxUxTagsPropertyValueDefinition" | "FxUxTestFeaturesComponent" | "FxUxCommentComponent" | "FxUxPeopleTaggingComponent" | "FxUxCommentLikeTemplate" | "FxUxContentDialog" | "FxUxLikeComponent" | "FxUxReactionStyle" | "FxUxReactionsComponent" | "FxUxReactionsStyle" | "FxUxLikeListingTemplate" | "FxUxPostLikeListingTemplate" | "FxUxPermissionInput" | "FxUxTenantAdminPermissionInput" | "FxUxSecurityTrimmer" | "FxUxSpacingPicker" | "FxUxFilterPicker" | "FxUxPickerWrapper" | "FxUxFilterEngineSettings" | "FxUxFilterEngineDialogContent" | "FxUxFilterEnginePersonPropertySettings" | "FxUxFilterEngineTagsPropertySettings" | "FxUxFilterEnginePersonPropertyDefaultValueInput" | "FxUxFilterEngineTagsPropertyDefaultValueInput" | "FxUxFilterEngineBooleanPropertySettings" | "FxUxFilterEngineBooleanPropertyDefaultValueInput" | "FxUxFilterEngineTextPropertySettings" | "FxUxFilterEngineTextPropertyDefaultValueInput" | "FxUxFilterEngineDateTimePropertySettings" | "FxUxFilterEngineDateTimePropertyDefaultValueInput" | "FxUxFilterEngineTaxonomyPropertySettings" | "FxUxFilterEngineTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineExtendedTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineNumberPropertySettings" | "FxUxFilterEngineNumberPropertyDefaultValueInput" | "FxUxFilterEngineRenderer" | "FxUxTaxonomyFilterEngineRenderer" | "FxUxPersonFilterEngineRenderer" | "FxUxTagsFilterEngineRenderer" | "FxUxTextFilterEngineRenderer" | "FxUxBooleanFilterEngineRenderer" | "FxUxDateFilterEngineRenderer" | "FxUxDateFilterEnginePeriodSlider" | "FxUxNumberFilterEngineRenderer" | "FxUxFilterEngineSelectionsArea" | "FxUxFilterEngineSelectionsAreaTaxonomyProperty" | "FxUxFilterEngineSelectionsAreaPersonProperty" | "FxUxFilterEngineSelectionsAreaTagsProperty" | "FxUxFilterEngineSelectionsAreaBooleanProperty" | "FxUxFilterEngineSelectionsAreaTextProperty" | "FxUxFilterEngineSelectionsAreaDateTimeProperty" | "FxUxFilterEngineSelectionsAreaNumberProperty" | "FxUxFilterEnginePropertyDropdown" | "FxUxFilterEnginePropertyList" | "SpTermSetPicker" | "SpTermPicker" | "SpTermPickerTree" | "SpTermPickerSearch" | "SpTaxonomyFieldEdit" | "SpTaxonomyFieldSettings" | "SpTaxonomyFieldValueDefinition" | "SpEnterprisekeywordsFieldEdit" | "SpEnterpriseKeywordsFieldValueDefinition" | "SpEnterpriseKeywordsFieldSettings" | "SpEnterpriseKeywordsFieldDisplay" | "SpQueryFilterBuilder" | "TargetingFilter" | "FxUxCommentDialogComponent" | "FxUxMultilingualInput" | "FxUxMultiTextInput" | "FxUxTextTranslator" | "FxUxErrorMessage" | "FxUxInputLanguagePicker" | "FxUxDashboardNumericIndicator" | "FxUxDashboardBarChartIndicator" | "FeaturesJourney" | "FeaturesJourneyTenant" | "FeaturesJourneyAppInstance" | "FeaturesJourneyApp" | "MentionComponent" | "EmoticonComponent" | "UrlInputComponent" | "FxUxProfileCardRenderer" | "FxUxProfileCardComponent" | "FxUxProfileCardDialogComponent" | "FxUxProfileCardCore" | "FxUxProfileAboutUser" | "FxUxProfilePersona" | "FxUxReportees" | "FxUxOrganizationTree" | "FxUxEditorChrome" | "LikeActionHandler" | "LikeActionRegistration" | "LikeActionSettings" | "FxUxEnterpriseGlossaryPicker" | "FxUxEnterprisePropertiesDataSourcePicker" | "FxUxPropertyPicker" | "FxUxPropertyRenderer" | "FxUxPropertyDefintionRenderer" | "FxUxPropertyDefintionConfiguration" | "FxUxPropertyConfigurationBaseRenderer" | "FxUxLabelOptionsRenderer" | "FxUxPropertyLocking" | "UserPropertyConfigurationRenderer" | "FxUxPropertyDatasourceRenderer" | "FxUxPropertyInput" | "FxUxPostTemplate" | "FxUxPostComponent" | "AppManagement" | "TabsManagement" | "AppManagementInstanceTab" | "AppManagementTemplateTab" | "AppManagementLayoutTab" | "AppManagementNamingPolicyTab" | "TermPropertyDisplay" | "TermPropertyEditor" | "TermPropertyConfiguration" | "FxUxFileUploaderMyComputerProvider" | "LinkHandlerDeepLinkDialog" | "PreSetupWizard" | "LanguagePropertyDisplay" | "LanguagePropertyEditor" | "IdentityPropertyDisplay" | "IdentityPropertyEditor" | "SPFxUxLanguagePicker" | "FxUxUserPropertyEditorRenderer" | "FxUxGroupPropertyEditorRenderer" | "FxUxDynamicGroupPropertyEditorRenderer" | "HashTagList" | "BuiltinUserPropertyProviderDisplay" | "BuiltinUserPropertyProviderEditor" | "MSGraphUserPropertyProviderDisplay" | "MSGraphUserPropertyProviderEditor" | "SharePointUserPropertyProviderDisplay" | "SharePointUserPropertyProviderEditor" | "FxUxConnectedTenantPicker" | "FxUxSidePanel" | "FeaturesJourneyProperties" | "FxPhotoWallProvider" | "FxSliderDialogProvider" | "FxUxStatusCodeRenderer" | "DateTimePropertyDisplay" | "DateTimePropertyEditor" | "DateTimePropertyConfiguration" | "BirthdayPropertyConfiguration" | "AdminSystemJourney" | "CustomEmailJourney" | "AuthenticationScreenBlade" | "AuthenticationScreenChrome" | "TenantUserManagementJourney" | "BusinessProfileUserManagementJourney" | "UserManagementCore" | "UserManagementUserTypeListingBlade" | "UserManagementSyncProviderListingBlade" | "UserManagementUserJourney" | "UserManagementUserPropertiesJourney" | "UserManagementUserActiveJourney" | "UserManagementIdentityCreationRequestPendingApprovalListing" | "BusinessProfileAuthenticationBlade" | "UserManagementDeletedUserListing" | "UserManagementGroupListingBlade" | "UserManagementActiveGroupListing" | "UserManagementDeletedGroupListing" | "UserManagementUserTypeCreateDialog" | "UserManagementUserTypeDetailBlade" | "UserManagementActiveUserListing" | "UserManagementUserDetailBlade" | "UserManagementUserAuthenticationBlade" | "UserManagementGroupDetailBlade" | "UserManagementGroupMembershipListing" | "UserManagementAuthenticationSettingsBlade" | "UserManagementDynamicGroupListingBlade" | "UserManagementUserPropertyListingBlade" | "UserManagementUserPropertyDetailBlade" | "UserManagementUserDetailBladeAuthenticationTab" | "UserManagementUserDetailBladePropertiesTab" | "UserManagementBulkImportBlade" | "UserManagementLoginLogBlade" | "UserManagementSelfService" | "UserManagementIdentityCreationRequestUserTypeBlade" | "UserManagementIdentityCreationRequestUserTypePropertyBlade" | "TenantAdministratorPermissionJourney" | "BusinessProfileAdministratorPermissionJourney" | "TenantSecretsJourney" | "BusinessProfileSecretsJourney" | "SystemAccountForm" | "BusinessProfileJourney" | "BusinessProfileSettings" | "BusinessProfileLanguage" | "TenantMediaPickerCore" | "TenantMediaPicker" | "MediaPickerCropRatios" | "MediaPickerFileSizeLimitSettings" | "MediaPickerScalingSettingsListing" | "TenantGeneralSettings" | "TenantRegional" | "TenantAdminSetting" | "SystemLayoutJourney" | "OmniaSearchUserLogsBlade" | "AppSettingsEditAppInstanceBlade" | "AppSettingsEditAppInstanceBladeRegistration" | "AppSettingsSwitchingTemplateJourney" | "AppSettingsSwitchingTemplateJourneyRegistration" | "AppSettingsJourney" | "AppSettingsSwitchingTemplateBlade", guid>;
|
7
7
|
declare module "./Tooling" {
|
8
8
|
interface IEnums$ {
|
package/Enums.tooling.js
CHANGED
@@ -720,6 +720,7 @@ const omniaGroupManifests = enum$("omniaGroupManifests").value({
|
|
720
720
|
LayoutCanvasGroup: (0, fx_models_1.guid)("8c123548-9f79-4e56-8ce2-ec313778a7ba")
|
721
721
|
});
|
722
722
|
const omniaResourceManifests = enum$("omniaResourceManifests").value({
|
723
|
+
AppCore: (0, fx_models_1.guid)("749c622c-5268-4261-9264-92b827f2326c"),
|
723
724
|
VelcronCore: (0, fx_models_1.guid)("ffcda183-3f3a-4b21-a7fb-7f8243db28b1"),
|
724
725
|
VelcronSetup: (0, fx_models_1.guid)("80b53b9e-0a44-4f43-a01b-b29169b3bdda"),
|
725
726
|
FxServiceWorker: (0, fx_models_1.guid)("155109f7-fc9a-4cfa-8ed6-d36a7d29852e"),
|
package/Theme.d.ts
CHANGED
package/package.json
CHANGED
@@ -6,7 +6,7 @@ class BirthdayPropertyValue extends PropertyValue_1.PropertyValue {
|
|
6
6
|
constructor(birthday, timeZoneId) {
|
7
7
|
super();
|
8
8
|
this.timeZoneId = timeZoneId;
|
9
|
-
this.birthday = birthday.toJSON();
|
9
|
+
this.birthday = birthday ? birthday.toJSON() : undefined;
|
10
10
|
}
|
11
11
|
isEmpty() {
|
12
12
|
return !this.birthday;
|
@@ -5,8 +5,8 @@ const PropertyValue_1 = require("../PropertyValue");
|
|
5
5
|
class DatePropertyValue extends PropertyValue_1.PropertyValue {
|
6
6
|
constructor(date, timeZoneId) {
|
7
7
|
super();
|
8
|
-
this.date = date.toJSON();
|
9
|
-
this.timeZoneId = timeZoneId.toString();
|
8
|
+
this.date = date ? date.toJSON() : undefined;
|
9
|
+
this.timeZoneId = timeZoneId ? timeZoneId.toString() : undefined;
|
10
10
|
}
|
11
11
|
isEmpty() {
|
12
12
|
return this.date == null;
|
@@ -6,7 +6,7 @@ class DateTimePropertyValue extends PropertyValue_1.PropertyValue {
|
|
6
6
|
constructor(dateTime, timeZoneId) {
|
7
7
|
super();
|
8
8
|
this.timeZoneId = timeZoneId;
|
9
|
-
this.dateTime = dateTime.toJSON();
|
9
|
+
this.dateTime = dateTime ? dateTime.toJSON() : undefined;
|
10
10
|
}
|
11
11
|
isEmpty() {
|
12
12
|
return this.dateTime == null;
|