@omnia/fx-models 8.0.293-dev → 8.0.295-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 +2 -2
- package/Contexts.d.ts +2 -1
- package/Enums.d.ts +4 -0
- package/Enums.js +4 -0
- package/Enums.tooling.d.ts +1 -1
- package/Enums.tooling.js +2 -0
- package/Exposes.d.ts +1 -0
- package/Exposes.js +1 -0
- package/Tenant.d.ts +2 -2
- package/apps/App.d.ts +2 -2
- package/internal-do-not-import-from-here/shared/factory/DefineFactory.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/Blueprints.d.ts +10 -6
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +3 -1
- package/internal-do-not-import-from-here/shared/models/theming/ThemingBase.d.ts +14 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemingBase.js +12 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemingDefinitionV3.d.ts +44 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemingDefinitionV3.js +6 -0
- package/internal-do-not-import-from-here/shared/models/theming/Typography.d.ts +28 -2
- package/internal-do-not-import-from-here/shared/models/theming/Typography.js +6 -1
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/theming/index.js +2 -0
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +34 -2
- package/internal-do-not-import-from-here/velcron/core/models/VelcronTypes.d.ts +7 -0
- package/oxide/OxideTypeDefinitions.d.ts +4 -0
- package/oxide/OxideTypeDefinitions.js +5 -2
- package/package.json +1 -1
- package/redirect/Redirect.d.ts +16 -0
- package/redirect/Redirect.js +8 -0
- package/redirect/index.d.ts +1 -0
- package/redirect/index.js +4 -0
package/BusinessProfile.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid,
|
1
|
+
import { guid, ThemeSelection } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
import { types } from "typestyle";
|
3
3
|
import { LanguageSettings, VersionedLayoutId } from ".";
|
4
4
|
import { ThemeType } from "./Enums";
|
@@ -48,7 +48,7 @@ export declare class BusinessProfileTheme extends BusinessProfileProperty implem
|
|
48
48
|
}
|
49
49
|
export declare class BusinessProfileThemingManager extends BusinessProfileProperty {
|
50
50
|
constructor();
|
51
|
-
|
51
|
+
selected: ThemeSelection;
|
52
52
|
}
|
53
53
|
export interface CentralImageLocation {
|
54
54
|
webUrl?: string;
|
package/Contexts.d.ts
CHANGED
@@ -3,11 +3,12 @@ import { AxiosResponse } from "axios";
|
|
3
3
|
import { BusinessProfileWithProperties } from "./BusinessProfile";
|
4
4
|
import { AppRoutePropertyBagModel, AppRouteWithProperties, ITokenBasedUrlPath, IAppRoute } from "./Routing";
|
5
5
|
import { BundleTargetTypes, OmniaBackendRuntimes, OmniaClientRuntimes } from "./Enums";
|
6
|
+
import { ThemingBoot } from "../ux";
|
6
7
|
export interface OmniaBootstrapData extends OmniaSharedBootstrapData {
|
7
8
|
manifests: OmniaServiceManifests;
|
8
9
|
enviroment: OmniaEnvironmentContext;
|
9
10
|
user: UserWithProperties;
|
10
|
-
theming:
|
11
|
+
theming: ThemingBoot;
|
11
12
|
businessProfile: BusinessProfileWithProperties;
|
12
13
|
tenant: TenantWithProperties;
|
13
14
|
appRoute: AppRouteWithProperties;
|
package/Enums.d.ts
CHANGED
@@ -404,6 +404,10 @@ export declare enum QueueMessageStatus {
|
|
404
404
|
}
|
405
405
|
export declare enum HttpStatusCode {
|
406
406
|
OK = 200,
|
407
|
+
MovedPermanentLy = 301,
|
408
|
+
Redirect = 302,
|
409
|
+
TemporaryRedirect = 307,
|
410
|
+
PermanentRedirect = 308,
|
407
411
|
NotFound = 404,
|
408
412
|
Unauthorized = 401,
|
409
413
|
Forbidden = 403
|
package/Enums.js
CHANGED
@@ -447,6 +447,10 @@ var QueueMessageStatus;
|
|
447
447
|
var HttpStatusCode;
|
448
448
|
(function (HttpStatusCode) {
|
449
449
|
HttpStatusCode[HttpStatusCode["OK"] = 200] = "OK";
|
450
|
+
HttpStatusCode[HttpStatusCode["MovedPermanentLy"] = 301] = "MovedPermanentLy";
|
451
|
+
HttpStatusCode[HttpStatusCode["Redirect"] = 302] = "Redirect";
|
452
|
+
HttpStatusCode[HttpStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect";
|
453
|
+
HttpStatusCode[HttpStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect";
|
450
454
|
HttpStatusCode[HttpStatusCode["NotFound"] = 404] = "NotFound";
|
451
455
|
HttpStatusCode[HttpStatusCode["Unauthorized"] = 401] = "Unauthorized";
|
452
456
|
HttpStatusCode[HttpStatusCode["Forbidden"] = 403] = "Forbidden";
|
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" | "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" | "filters" | "user" | "src" | "settings" | "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" | "z" | "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<"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<"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" | "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,8 @@ 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
|
+
VelcronCore: (0, fx_models_1.guid)("ffcda183-3f3a-4b21-a7fb-7f8243db28b1"),
|
724
|
+
VelcronSetup: (0, fx_models_1.guid)("80b53b9e-0a44-4f43-a01b-b29169b3bdda"),
|
723
725
|
FxServiceWorker: (0, fx_models_1.guid)("155109f7-fc9a-4cfa-8ed6-d36a7d29852e"),
|
724
726
|
SplitPaneLib: (0, fx_models_1.guid)("6db9b7b1-bb33-40dd-b88c-f71057793666"),
|
725
727
|
ProsemirrorPackage: (0, fx_models_1.guid)("3fa51aee-4528-4427-8ad5-376c94724d01"),
|
package/Exposes.d.ts
CHANGED
@@ -145,6 +145,7 @@ export * from "./versionedlayout";
|
|
145
145
|
export * from "./ScopedPermissionRegistraion";
|
146
146
|
export * from "./action-btn";
|
147
147
|
export * from "./typography";
|
148
|
+
export * from "./redirect";
|
148
149
|
export * from "./FileIdentifier";
|
149
150
|
export * from "./FilePicker";
|
150
151
|
export * from "./LoginLogFilter";
|
package/Exposes.js
CHANGED
@@ -157,6 +157,7 @@ tslib_1.__exportStar(require("./versionedlayout"), exports);
|
|
157
157
|
tslib_1.__exportStar(require("./ScopedPermissionRegistraion"), exports);
|
158
158
|
tslib_1.__exportStar(require("./action-btn"), exports);
|
159
159
|
tslib_1.__exportStar(require("./typography"), exports);
|
160
|
+
tslib_1.__exportStar(require("./redirect"), exports);
|
160
161
|
//************************************************************************************ */
|
161
162
|
// End of folder exports
|
162
163
|
//************************************************************************************ */
|
package/Tenant.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OmniaNamedModel, IOmniaPropertyBag } from "./NamedProperty";
|
2
|
-
import { TenantIdentifier,
|
2
|
+
import { TenantIdentifier, ThemeSelection, 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";
|
@@ -24,7 +24,7 @@ export declare class TenantLanguageSettings extends TenantProperty {
|
|
24
24
|
}
|
25
25
|
export declare class TenantThemingManager extends TenantProperty {
|
26
26
|
constructor();
|
27
|
-
|
27
|
+
selected: ThemeSelection;
|
28
28
|
}
|
29
29
|
export declare class TenantCSOMClientContextFallbackUrl extends TenantProperty {
|
30
30
|
fallbackUrl: string;
|
package/apps/App.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid,
|
1
|
+
import { guid, ThemeSelection } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
import { TargetingFilterProperty } from "../../sp/models";
|
3
3
|
import { ProvisioningTemplateEnterpriseProperty } from "../enterprise-properties/EnterpriseProperty";
|
4
4
|
import { AppCategories, AppInstanceScopedQueryTypes, AppInstanceStatus, AppTemplatePermissionLevel } from "../Enums";
|
@@ -270,5 +270,5 @@ export interface AppInstanceActionProgressResult {
|
|
270
270
|
}
|
271
271
|
export declare class AppThemingManager extends AppRoutePropertyBagModel {
|
272
272
|
constructor();
|
273
|
-
|
273
|
+
selected: ThemeSelection;
|
274
274
|
}
|
@@ -3,6 +3,7 @@ import { SubscriptionHandler } from "../messaging";
|
|
3
3
|
export interface SetupFactoryContext {
|
4
4
|
onDeactivated(fn: () => void): any;
|
5
5
|
subscriptions: SubscriptionHandler;
|
6
|
+
overrideDispose(onDispose: (fn: () => void) => void): any;
|
6
7
|
}
|
7
8
|
export declare function defineFactory<InferReturnSetup>(setup: (ctx: SetupFactoryContext, ...args: any) => InferReturnSetup, lifetime: InstanceLifetimes, typeIdentifier?: guid): () => InferReturnSetup & {
|
8
9
|
dispose?: () => void;
|
@@ -1,10 +1,12 @@
|
|
1
1
|
import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, FillDefinitionValue } from "./ThemeDefinitionV2";
|
2
2
|
import { SpacingDefinition, Spacing } from "./Spacing";
|
3
3
|
import { TypographyFontDefinition, TypographyValue } from "./Typography";
|
4
|
+
import { TypographyBlueprint } from "./Typography";
|
5
|
+
import { ThemingBase } from "./ThemingBase";
|
6
|
+
import { VelcronAppDefinition, VelcronRendererResolverReference } from "../velcron";
|
7
|
+
import { guid } from "../Guid";
|
4
8
|
export interface BoxDimensions extends Spacing {
|
5
9
|
}
|
6
|
-
import { TypographyBlueprint } from "./Typography";
|
7
|
-
import { guid, VelcronAppDefinition, VelcronRendererResolverReference } from "@omnia/fx-models";
|
8
10
|
export interface Blueprints {
|
9
11
|
name?: string;
|
10
12
|
}
|
@@ -26,13 +28,13 @@ export interface ContainerBlueprint extends Blueprints, BlueprintsReference {
|
|
26
28
|
name?: string;
|
27
29
|
background?: BackgroundDefinition;
|
28
30
|
}
|
29
|
-
export interface TypographyBlueprints extends
|
31
|
+
export interface TypographyBlueprints extends ThemingBase {
|
30
32
|
primary: TypographyBlueprint;
|
31
33
|
}
|
32
34
|
export interface IFontBlueprints extends Blueprints, BlueprintsReference {
|
33
35
|
fonts: Array<TypographyFontDefinition>;
|
34
36
|
}
|
35
|
-
export interface SpacingBlueprints extends
|
37
|
+
export interface SpacingBlueprints extends ThemingBase {
|
36
38
|
primary: SpacingBlueprint;
|
37
39
|
}
|
38
40
|
export interface ChromeBlueprint {
|
@@ -47,7 +49,7 @@ export interface ChromeBlueprint {
|
|
47
49
|
spacing?: Spacing;
|
48
50
|
};
|
49
51
|
}
|
50
|
-
export interface ComponentBlueprints extends
|
52
|
+
export interface ComponentBlueprints extends ThemingBase {
|
51
53
|
buttons?: ButtonBlueprints;
|
52
54
|
tabs?: TabsBlueprints;
|
53
55
|
blocks?: ChromeBlueprints;
|
@@ -81,7 +83,7 @@ export interface IconBlueprints extends Blueprints {
|
|
81
83
|
l?: IconBlueprint;
|
82
84
|
xl?: IconBlueprint;
|
83
85
|
}
|
84
|
-
export type ButtonTypes = "primary" | "basic" | "accent1" | "warn" | "link" | "variant1" | "variant2" | "variant3" | "variant4";
|
86
|
+
export type ButtonTypes = "primary" | "basic" | "accent1" | "warn" | "link" | "close" | "variant1" | "variant2" | "variant3" | "variant4";
|
85
87
|
export type ButtonBlueprintType = "text" | "icon";
|
86
88
|
export interface ButtonBlueprintVariant {
|
87
89
|
type: ButtonTypes;
|
@@ -102,6 +104,7 @@ export interface ButtonBlueprints extends Blueprints {
|
|
102
104
|
accent1?: ButtonBlueprint;
|
103
105
|
warn?: ButtonBlueprint;
|
104
106
|
link?: ButtonBlueprint;
|
107
|
+
close?: ButtonBlueprint;
|
105
108
|
variant1?: ButtonBlueprint;
|
106
109
|
variant2?: ButtonBlueprint;
|
107
110
|
variant3?: ButtonBlueprint;
|
@@ -113,6 +116,7 @@ export interface ButtonBlueprints extends Blueprints {
|
|
113
116
|
accent1?: ButtonBlueprint;
|
114
117
|
warn?: ButtonBlueprint;
|
115
118
|
link?: ButtonBlueprint;
|
119
|
+
close?: ButtonBlueprint;
|
116
120
|
variant1?: ButtonBlueprint;
|
117
121
|
variant2?: ButtonBlueprint;
|
118
122
|
variant3?: ButtonBlueprint;
|
@@ -70,12 +70,14 @@ export interface ThemeDefinitionReference {
|
|
70
70
|
components: BlueprintsReference;
|
71
71
|
}
|
72
72
|
export interface ThemeDefinitionV2 extends ThemeDefinitionReference {
|
73
|
+
id: guid;
|
74
|
+
name?: string;
|
73
75
|
colors: ColorSchemas;
|
74
76
|
typography: TypographyBlueprints;
|
75
77
|
spacing: SpacingBlueprints;
|
76
78
|
components: ComponentBlueprints;
|
77
79
|
}
|
78
|
-
export interface
|
80
|
+
export interface ThemeSelection {
|
79
81
|
adminThemeId?: guid;
|
80
82
|
defaultThemeId?: guid;
|
81
83
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { guid } from "../Guid";
|
2
|
+
export interface ThemingBase {
|
3
|
+
id: guid;
|
4
|
+
type?: ThemingTypes;
|
5
|
+
name?: string;
|
6
|
+
}
|
7
|
+
export declare enum ThemingTypes {
|
8
|
+
Theme = 0,
|
9
|
+
ColorSchema = 1,
|
10
|
+
Typography = 2,
|
11
|
+
Spacing = 3,
|
12
|
+
Blueprints = 4,
|
13
|
+
Fonts = 5
|
14
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.ThemingTypes = void 0;
|
4
|
+
var ThemingTypes;
|
5
|
+
(function (ThemingTypes) {
|
6
|
+
ThemingTypes[ThemingTypes["Theme"] = 0] = "Theme";
|
7
|
+
ThemingTypes[ThemingTypes["ColorSchema"] = 1] = "ColorSchema";
|
8
|
+
ThemingTypes[ThemingTypes["Typography"] = 2] = "Typography";
|
9
|
+
ThemingTypes[ThemingTypes["Spacing"] = 3] = "Spacing";
|
10
|
+
ThemingTypes[ThemingTypes["Blueprints"] = 4] = "Blueprints";
|
11
|
+
ThemingTypes[ThemingTypes["Fonts"] = 5] = "Fonts";
|
12
|
+
})(ThemingTypes || (exports.ThemingTypes = ThemingTypes = {}));
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { guid } from "../Guid";
|
2
|
+
import { Id } from "../Id";
|
3
|
+
import { ComponentBlueprints, SpacingBlueprints, TypographyBlueprints } from "./Blueprints";
|
4
|
+
import { ColorDefinition, ColorSchemas } from "./ThemeDefinitionV2";
|
5
|
+
import { ThemingBase } from "./ThemingBase";
|
6
|
+
export type ColorSchemaId = Id<guid, "ColorSchemaId">;
|
7
|
+
export declare function ColorSchemaId(id: guid): ColorSchemaId;
|
8
|
+
export type ThemeDefinitionId = Id<guid, "ThemeDefinitionId">;
|
9
|
+
export declare function ThemeDefinitionId(id: guid): ThemeDefinitionId;
|
10
|
+
export interface ColorSchemasReferenceV2 {
|
11
|
+
primaryId: ColorSchemaId;
|
12
|
+
secondaryId: ColorSchemaId;
|
13
|
+
accent1Id: ColorSchemaId;
|
14
|
+
accent2Id: ColorSchemaId;
|
15
|
+
accent3Id: ColorSchemaId;
|
16
|
+
accent4Id: ColorSchemaId;
|
17
|
+
accent5Id: ColorSchemaId;
|
18
|
+
neutralId: ColorSchemaId;
|
19
|
+
backgroundId: ColorSchemaId;
|
20
|
+
errorId: ColorSchemaId;
|
21
|
+
infoId: ColorSchemaId;
|
22
|
+
warningId: ColorSchemaId;
|
23
|
+
successId: ColorSchemaId;
|
24
|
+
notificationId: ColorSchemaId;
|
25
|
+
}
|
26
|
+
export interface ThemeDefinitionV3 extends ThemingBase {
|
27
|
+
name?: string;
|
28
|
+
colors?: ColorSchemasReferenceV2;
|
29
|
+
typographyId?: ThemeDefinitionId;
|
30
|
+
spacingId?: ThemeDefinitionId;
|
31
|
+
componentsId?: ThemeDefinitionId;
|
32
|
+
}
|
33
|
+
export interface ColorSchemaV3 extends ThemingBase {
|
34
|
+
base: ColorDefinition;
|
35
|
+
onBase: ColorDefinition;
|
36
|
+
container: ColorDefinition;
|
37
|
+
onContainer: ColorDefinition;
|
38
|
+
}
|
39
|
+
export interface ResolvedThemeDefinition extends ThemingBase {
|
40
|
+
colors?: ColorSchemas;
|
41
|
+
typography?: TypographyBlueprints;
|
42
|
+
spacing?: SpacingBlueprints;
|
43
|
+
components?: ComponentBlueprints;
|
44
|
+
}
|
@@ -1,5 +1,11 @@
|
|
1
1
|
import { guid } from "../Guid";
|
2
2
|
import { FillDefinition } from "./ThemeDefinitionV2";
|
3
|
+
import { ThemingBase } from "./ThemingBase";
|
4
|
+
export interface TypographyFontDefinitionV2 extends ThemingBase {
|
5
|
+
family: string;
|
6
|
+
cdn?: string;
|
7
|
+
manifestId?: guid;
|
8
|
+
}
|
3
9
|
export interface TypographyBlueprint {
|
4
10
|
name: string;
|
5
11
|
font?: TypographyFontRef;
|
@@ -17,6 +23,7 @@ export interface TypographyBlueprint {
|
|
17
23
|
font?: TypographyFontRef;
|
18
24
|
};
|
19
25
|
text: {
|
26
|
+
xl?: TypographyDefinition;
|
20
27
|
l: TypographyDefinition;
|
21
28
|
m: TypographyDefinition;
|
22
29
|
s: TypographyDefinition;
|
@@ -24,12 +31,26 @@ export interface TypographyBlueprint {
|
|
24
31
|
font?: TypographyFontRef;
|
25
32
|
};
|
26
33
|
navigation: {
|
34
|
+
xl?: TypographyDefinition;
|
27
35
|
l: TypographyDefinition;
|
28
36
|
m: TypographyDefinition;
|
37
|
+
s?: TypographyDefinition;
|
38
|
+
xs?: TypographyDefinition;
|
29
39
|
font?: TypographyFontRef;
|
30
40
|
};
|
31
41
|
link: {
|
42
|
+
xl?: TypographyDefinition;
|
43
|
+
l?: TypographyDefinition;
|
32
44
|
m: TypographyDefinition;
|
45
|
+
s?: TypographyDefinition;
|
46
|
+
xs?: TypographyDefinition;
|
47
|
+
font?: TypographyFontRef;
|
48
|
+
};
|
49
|
+
variants?: {
|
50
|
+
variant1?: TypographyDefinition;
|
51
|
+
variant2?: TypographyDefinition;
|
52
|
+
variant3?: TypographyDefinition;
|
53
|
+
variant4?: TypographyDefinition;
|
33
54
|
font?: TypographyFontRef;
|
34
55
|
};
|
35
56
|
}
|
@@ -61,7 +82,8 @@ export type TypographyType = keyof typeof TypographyTypes;
|
|
61
82
|
export declare enum TypographyTypes {
|
62
83
|
title = "title",
|
63
84
|
text = "text",
|
64
|
-
navigation = "navigation"
|
85
|
+
navigation = "navigation",
|
86
|
+
variants = "variants"
|
65
87
|
}
|
66
88
|
export interface ThemedTypographyValue {
|
67
89
|
type: TypographyType;
|
@@ -74,7 +96,11 @@ export declare enum TypographySizes {
|
|
74
96
|
l = "l",
|
75
97
|
m = "m",
|
76
98
|
s = "s",
|
77
|
-
xs = "xs"
|
99
|
+
xs = "xs",
|
100
|
+
variant1 = "variant1",
|
101
|
+
variant2 = "variant2",
|
102
|
+
variant3 = "variant3",
|
103
|
+
variant4 = "variant4"
|
78
104
|
}
|
79
105
|
/**this reflect TypographySizes for member check*/
|
80
106
|
export declare const AvailableTypographySizes: string[];
|
@@ -6,6 +6,7 @@ var TypographyTypes;
|
|
6
6
|
TypographyTypes["title"] = "title";
|
7
7
|
TypographyTypes["text"] = "text";
|
8
8
|
TypographyTypes["navigation"] = "navigation";
|
9
|
+
TypographyTypes["variants"] = "variants";
|
9
10
|
})(TypographyTypes || (exports.TypographyTypes = TypographyTypes = {}));
|
10
11
|
var TypographySizes;
|
11
12
|
(function (TypographySizes) {
|
@@ -14,6 +15,10 @@ var TypographySizes;
|
|
14
15
|
TypographySizes["m"] = "m";
|
15
16
|
TypographySizes["s"] = "s";
|
16
17
|
TypographySizes["xs"] = "xs";
|
18
|
+
TypographySizes["variant1"] = "variant1";
|
19
|
+
TypographySizes["variant2"] = "variant2";
|
20
|
+
TypographySizes["variant3"] = "variant3";
|
21
|
+
TypographySizes["variant4"] = "variant4";
|
17
22
|
})(TypographySizes || (exports.TypographySizes = TypographySizes = {}));
|
18
23
|
/**this reflect TypographySizes for member check*/
|
19
|
-
exports.AvailableTypographySizes = ["xl", "l", "m", "s", "xs"];
|
24
|
+
exports.AvailableTypographySizes = ["xl", "l", "m", "s", "xs", "variant1", "variant2", "variant3", "variant4"];
|
@@ -1,7 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./ThemingBase"), exports);
|
4
5
|
tslib_1.__exportStar(require("./ThemeDefinitionV2"), exports);
|
6
|
+
tslib_1.__exportStar(require("./ThemingDefinitionV3"), exports);
|
5
7
|
tslib_1.__exportStar(require("./Typography"), exports);
|
6
8
|
//export * from "./OmniaThemes";
|
7
9
|
tslib_1.__exportStar(require("./UseThemeMethods"), exports);
|
@@ -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 { Properties } from "csstype";
|
7
8
|
export interface ResolvedComponentRenderer {
|
8
9
|
component: unknown;
|
9
10
|
definition: VelcronDefinition;
|
@@ -33,8 +34,6 @@ export interface BuiltInComponentRenderers {
|
|
33
34
|
"checkbox": unknown;
|
34
35
|
"reference": unknown;
|
35
36
|
"radio": unknown;
|
36
|
-
"rive": unknown;
|
37
|
-
"lottie": unknown;
|
38
37
|
"slide-panel": unknown;
|
39
38
|
"editor": unknown;
|
40
39
|
"link": unknown;
|
@@ -50,10 +49,32 @@ export interface OnItemRenderedHookResult {
|
|
50
49
|
export interface VelcronDisplay {
|
51
50
|
size: VelcronDisplaySizes;
|
52
51
|
}
|
52
|
+
export type VelcronDisplaySizeOptions = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
|
53
53
|
export interface VelcronDisplaySizes {
|
54
|
+
current: VelcronDisplaySizeOptions;
|
55
|
+
xs: boolean;
|
54
56
|
sm: boolean;
|
55
57
|
md: boolean;
|
56
58
|
lg: boolean;
|
59
|
+
xl: boolean;
|
60
|
+
xxl: boolean;
|
61
|
+
smAndDown: boolean;
|
62
|
+
smAndUp: boolean;
|
63
|
+
mdAndDown: boolean;
|
64
|
+
mdAndUp: boolean;
|
65
|
+
lgAndDown: boolean;
|
66
|
+
lgAndUp: boolean;
|
67
|
+
xlAndDown: boolean;
|
68
|
+
xlAndUp: boolean;
|
69
|
+
breakpoints: {
|
70
|
+
xs: number;
|
71
|
+
sm: number;
|
72
|
+
md: number;
|
73
|
+
lg: number;
|
74
|
+
xl: number;
|
75
|
+
xxl: number;
|
76
|
+
};
|
77
|
+
setSize(sizeName: VelcronDisplaySizeOptions): any;
|
57
78
|
}
|
58
79
|
export interface VelcronRenderContext {
|
59
80
|
id?: string;
|
@@ -236,6 +257,7 @@ export interface VelcronTextDefinition extends VelcronDefinition, VelcronColorSt
|
|
236
257
|
lineClamp?: VelcronBindableProp<number>;
|
237
258
|
noWrap?: VelcronBindableProp<boolean>;
|
238
259
|
wordBreak?: VelcronBindableProp<"none">;
|
260
|
+
align?: VelcronHorizontalAlignments;
|
239
261
|
events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
|
240
262
|
blueprint?: VelcronBindableProp<TextBlueprint>;
|
241
263
|
}
|
@@ -327,6 +349,14 @@ export interface VelcronSlidePanelSlidesOptions {
|
|
327
349
|
foreach: string;
|
328
350
|
definition: VelcronDefinition;
|
329
351
|
}
|
352
|
+
export interface VelcronSlidePanelStyles {
|
353
|
+
container?: Properties;
|
354
|
+
wrapper?: Properties;
|
355
|
+
slides?: Properties;
|
356
|
+
previousSlide?: Properties;
|
357
|
+
nextSlide?: Properties;
|
358
|
+
activeSlide?: Properties;
|
359
|
+
}
|
330
360
|
export interface VelcronSlidePanelDefinition extends VelcronDefinition {
|
331
361
|
type: "slide-panel";
|
332
362
|
slidesPerView?: VelcronBindableProp<number>;
|
@@ -335,10 +365,12 @@ export interface VelcronSlidePanelDefinition extends VelcronDefinition {
|
|
335
365
|
navigation?: VelcronBindableProp<boolean>;
|
336
366
|
scrollbar?: VelcronBindableProp<boolean>;
|
337
367
|
autoplay?: VelcronBindableProp<boolean>;
|
368
|
+
centeredSlides?: VelcronBindableProp<boolean>;
|
338
369
|
loop?: VelcronBindableProp<boolean>;
|
339
370
|
style?: VelcronCardStyling;
|
340
371
|
events?: VelcronOnPressEvent;
|
341
372
|
slides?: VelcronSlidePanelSlidesOptions;
|
373
|
+
styles?: VelcronSlidePanelStyles;
|
342
374
|
}
|
343
375
|
export interface VelcronEditorRendererDefinition extends VelcronDefinition {
|
344
376
|
type: "editor";
|
@@ -3,3 +3,10 @@ export type VelcronPrimitiveType = string | number | boolean;
|
|
3
3
|
export type VelcronArrayType<T> = Array<T>;
|
4
4
|
export type VelcronObjectType<T extends Object> = T;
|
5
5
|
export type VelcronComponentArrayType = Array<VelcronDefinition>;
|
6
|
+
export type VelcronSwitchExpression = {
|
7
|
+
switch: string;
|
8
|
+
cases: {
|
9
|
+
[key: string]: string;
|
10
|
+
};
|
11
|
+
default?: string;
|
12
|
+
};
|
@@ -166,6 +166,10 @@ export type OScrollTypesCombination = `${OScrollTypes}` | `${OScrollTypes} ${OSc
|
|
166
166
|
export declare const OSelectTypeDefinitions: readonly ["default", "add", "picker", "combobox", "virtual-list"];
|
167
167
|
export type OSelectTypes = typeof OSelectTypeDefinitions[number];
|
168
168
|
export declare const OSelectTypesName = "OSelectTypes";
|
169
|
+
/** text */
|
170
|
+
export declare const OTextAlignmentDefinitions: readonly ["left", "center", "right"];
|
171
|
+
export type OTextAlignmentTypes = typeof OTextAlignmentDefinitions[number];
|
172
|
+
export declare const OTextAlignmentTypesName = "OTextAlignmentTypes";
|
169
173
|
/**Skeleton loader */
|
170
174
|
export declare const OSkeletonLoaderTypeDefinitions: readonly ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
|
171
175
|
export type OSkeletonLoaderTypes = typeof OSkeletonLoaderTypeDefinitions[number];
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.OIconVariantDefinitions = exports.OIconAnimationsName = exports.OIconAnimationsDefinition = exports.OIconSizesName = exports.OIconSizeDefinitions = exports.OIconPresetsName = exports.OIconPresetDefinitions = exports.OPanelTypesName = exports.OPanelTypeDefinitions = exports.OPageDividerTypesName = exports.OPageDividerTypeDefinitions = exports.ODialogSizeDefinitions = exports.ODialogTypesName = exports.ODialogTypeDefinitions = exports.OTextareTypesName = exports.OTextAreaTypeDefinitions = exports.OTextFieldName = exports.OTextFieldTypeDefinitions = exports.OChartVariantsName = exports.OChartVariationDefinitions = exports.OColumnVariantsName = exports.OColumnVariantDefinitions = exports.OAlignmentTypesName = exports.OAlignmentTypeDefinitions = exports.OColValuesName = exports.OColValueDefinitions = exports.OButtonGroupTypesName = exports.OButtonGroupTypeDefinitions = exports.OButtonVariantsName = exports.OButtonVariantDefinitions = exports.OButtonPresetsName = exports.OButtonPresetDefinitions = exports.OAlertTypesName = exports.OAlertTypeDefinitions = exports.OAppBarTypesName = exports.OAppBarTypeDefinitions = exports.OProgressSizeTypesName = exports.OProgressSizeTypeDefinitions = exports.OProgressVariantsName = exports.OProgressVariantDefinitions = exports.OProgressTypesName = exports.OProgressTypeDefinitions = exports.OSliderVariantsName = exports.OSliderVariantDefinitions = exports.ODirectionTypesName = exports.ODirectionDefinitions = exports.ONotificationSizeTypeDefinitions = exports.OContentHeightDefinitions = exports.OSizeTypesName = exports.OSizeTypeDefinitions = void 0;
|
4
|
-
exports.
|
5
|
-
exports.OStepperVariantName = exports.OStepperVariantDefinitions = exports.OMultiTextInputModesName = exports.OMultiTextInputModesDefinitions = exports.OSplitpanesVariationTypesName = exports.OSplitpanesVariationDefinitions = exports.ORatingLengthName = exports.ORatingLengthDefinition = exports.ORatingDensityTypesName = exports.ORatingDensityDefinitions = exports.OLazyVariationDefinitions = void 0;
|
4
|
+
exports.ODraggableVariationDefinitions = exports.OToolbarVariantsName = exports.OToolbarVariationDefinitions = exports.OTextBoxTypesName = exports.OTextBoxTypeDefinitions = exports.OTextBoxVariantTypesName = exports.OTextBoxVariantTypeDefinitions = exports.OTabVariantsName = exports.OTabVariantDefinitions = exports.OScrollOffsetTypesName = exports.OScrollOffsetTypeDefinitions = exports.OSkeletonLoaderName = exports.OSkeletonLoaderTypeDefinitions = exports.OTextAlignmentTypesName = exports.OTextAlignmentDefinitions = exports.OSelectTypesName = exports.OSelectTypeDefinitions = exports.OScrollTypesName = exports.OScrollTypeDefinitions = exports.OFlexVariantsName = exports.OFlexVariantDefinitions = exports.OVerticalAlignmentsName = exports.OVerticalAlignmentDefinitions = exports.OTabAlignmentsName = exports.OTabAlignmentDefinitions = exports.OHorizontalAlignmentsName = exports.OHorizontalAlignmentDefinitions = exports.OPanelVariantsName = exports.OPanelVariantDefinitions = exports.ORowDirectionsName = exports.ORowDirectionDefinitions = exports.OPaddingTypesName = exports.OPaddingTypeDefinitions = exports.ODividerTypesName = exports.ODividerTypeDefinitions = exports.ONavigationDrawerVariantsName = exports.ONavigationDrawerVariantDefinitions = exports.ONavigationDrawerLocationsName = exports.ONavigationDrawerLocationDefinitions = exports.OMenuLocationsName = exports.OMenuLocationDefinitions = exports.OListLineTypesName = exports.OListLineTypeDefinitions = exports.OListTypesName = exports.OListTypeDefinitions = exports.OListItemVariantsName = exports.OListItemVariantDefinitions = exports.ORatioTypesName = exports.ORatioTypeDefinitions = exports.OIconVariantsName = void 0;
|
5
|
+
exports.OStepperVariantName = exports.OStepperVariantDefinitions = exports.OMultiTextInputModesName = exports.OMultiTextInputModesDefinitions = exports.OSplitpanesVariationTypesName = exports.OSplitpanesVariationDefinitions = exports.ORatingLengthName = exports.ORatingLengthDefinition = exports.ORatingDensityTypesName = exports.ORatingDensityDefinitions = exports.OLazyVariationDefinitions = exports.OInfiniteScrollStatusDefinitions = exports.ODraggableVariantsName = void 0;
|
6
6
|
/**Shared */
|
7
7
|
const block = ["top", "bottom"];
|
8
8
|
const inline = ["start", "end", "left", "right"];
|
@@ -122,6 +122,9 @@ exports.OScrollTypesName = "OScrollTypes";
|
|
122
122
|
/** Select */
|
123
123
|
exports.OSelectTypeDefinitions = ["default", "add", "picker", "combobox", "virtual-list"];
|
124
124
|
exports.OSelectTypesName = "OSelectTypes";
|
125
|
+
/** text */
|
126
|
+
exports.OTextAlignmentDefinitions = ["left", "center", "right"];
|
127
|
+
exports.OTextAlignmentTypesName = "OTextAlignmentTypes";
|
125
128
|
/**Skeleton loader */
|
126
129
|
exports.OSkeletonLoaderTypeDefinitions = ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
|
127
130
|
exports.OSkeletonLoaderName = "OSkeletonLoaderTypes";
|
package/package.json
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
export interface Redirect {
|
2
|
+
id?: number;
|
3
|
+
value: IBaseRedirectRule;
|
4
|
+
}
|
5
|
+
export interface IBaseRedirectRule {
|
6
|
+
sourcePath: string;
|
7
|
+
type: RedirectType;
|
8
|
+
targetPath: string;
|
9
|
+
}
|
10
|
+
export declare enum RedirectType {
|
11
|
+
Unknown = 0,
|
12
|
+
StatusRedirectRule = 1
|
13
|
+
}
|
14
|
+
export interface StatusRedirectRule extends IBaseRedirectRule {
|
15
|
+
redirectStatusCode: number;
|
16
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.RedirectType = void 0;
|
4
|
+
var RedirectType;
|
5
|
+
(function (RedirectType) {
|
6
|
+
RedirectType[RedirectType["Unknown"] = 0] = "Unknown";
|
7
|
+
RedirectType[RedirectType["StatusRedirectRule"] = 1] = "StatusRedirectRule";
|
8
|
+
})(RedirectType || (exports.RedirectType = RedirectType = {}));
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Redirect";
|