@omnia/fx 8.0.179-dev → 8.0.181-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/internal-do-not-import-from-here/core/ObjectMerger.d.ts +7 -0
- package/internal-do-not-import-from-here/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +0 -12
- package/internal-do-not-import-from-here/index.d.ts +1 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyDropdownRenderer.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyListRenderer.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +152 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ObjectMergerTemp.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +60 -3
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +9 -5
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/oxide/fab/FloatingActionButton..d.ts +54 -0
- package/internal-do-not-import-from-here/ux/oxide/fab/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/fab/docs/SampleComponent.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/oxide/fab/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +70 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SpacingEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/wctypings.d.ts +11 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ObjectMerger.d.ts +0 -5
@@ -0,0 +1,7 @@
|
|
1
|
+
export declare class ObjectMerger {
|
2
|
+
static isEmptyObject(item: any): boolean;
|
3
|
+
static objectKeysWithFilter(object: any, includeFunctions: boolean): Array<string>;
|
4
|
+
static mergeObjects<T extends object = object>(target: T, nullOrUndefinedValueCustomHandler: (missingPropertyName: string, parent: object, defaultValue: object) => object, emptyStringValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, emptyArrayValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, ...sources: T[]): T;
|
5
|
+
static customNullCondition<T extends object = object>(target: T, condition: (target: T) => boolean): T;
|
6
|
+
static deleteNullProperties<T extends object = object>(target: T, disableTreatingEmptyStringAsNull?: boolean, disableTreatingFalseAsNull?: boolean, disableTreatingZeroAsNull?: boolean, disableTreatingEmptyArrayAsNull?: boolean): void;
|
7
|
+
}
|
@@ -2,6 +2,7 @@ export { ServiceContainer, ServiceContainerContext, defineFactory, defineInjecta
|
|
2
2
|
export { Extend, registerApi } from "./Extend";
|
3
3
|
export * from "./Provide";
|
4
4
|
export * from "./Factory";
|
5
|
+
export * from "./ObjectMerger";
|
5
6
|
export * from "./Cookies";
|
6
7
|
export * from "./LocalStorage";
|
7
8
|
export * from "./Encoder";
|
@@ -42,18 +42,6 @@ export declare namespace Utils {
|
|
42
42
|
*/
|
43
43
|
function generateGuid(): string;
|
44
44
|
function isNativeClass(value: any): boolean;
|
45
|
-
/**
|
46
|
-
* Validate guid value
|
47
|
-
*/
|
48
|
-
function isValidGuid(value: string): boolean;
|
49
|
-
/**
|
50
|
-
* Scheck a guid whether or not it is a empty guid
|
51
|
-
*/
|
52
|
-
function isEmptyGuid(guid: string): boolean;
|
53
|
-
/**@deprecated This will be removed in Omnia 7.0. Use @prop {OmniaEnvironmentContext.isBackendSharePointServer}*/
|
54
|
-
function isOnPrem(backendRuntime: string): boolean;
|
55
|
-
/**@deprecated This will be removed in Omnia 7.0. Use @prop {OmniaEnvironmentContext.isBackendM365} */
|
56
|
-
function isOnline(backendRuntime: string): boolean;
|
57
45
|
function groupBy<T>(collection: Array<T>, propName: string): Array<{
|
58
46
|
key: any;
|
59
47
|
items: Array<T>;
|
@@ -59,6 +59,7 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
59
59
|
Provide<T>(classType: any, constructorArgs?: T): any;
|
60
60
|
useProvide<TProvide, TConstructor>(provide: TProvide, constructorArgs?: TConstructor): TProvide extends new (...args: any) => infer P ? P : TProvide extends (...args: any) => infer P2 ? P2 : TProvide extends Object ? TProvide : never;
|
61
61
|
injectByTypeId(typeId: Models.GuidValue): any;
|
62
|
+
ObjectMerger: typeof Exposes.ObjectMerger;
|
62
63
|
Cookies: typeof Exposes.Cookies;
|
63
64
|
LocalStorage: typeof Exposes.LocalStorage;
|
64
65
|
Encoder: typeof Exposes.Encoder;
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronDataTypes","VelcronIconTypes","VelcronImageRatios","VelcronImagesStateBinding","VelcronStateBinding","VelcronStateMapping"]},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaPropertyBagBase","Provide","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineFactory","defineInjectable","defineService","injectByTypeId","isInjectable","mergeLocaliation","propertyPath","propertyPathValue","registerApi","registerInjectResolver","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronDataTypes","VelcronIconTypes","VelcronImageRatios","VelcronImagesStateBinding","VelcronStateBinding","VelcronStateMapping"]},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaPropertyBagBase","Provide","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineFactory","defineInjectable","defineService","injectByTypeId","isInjectable","mergeLocaliation","propertyPath","propertyPathValue","registerApi","registerInjectResolver","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/admin/BusinessProfileRouter.js":{"id":"./node_modules/@omnia/fx/ux/admin/businessprofilerouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/admin/chrome/AdminVisibiltyController.js":{"id":"./node_modules/@omnia/fx/ux/admin/chrome/adminvisibiltycontroller.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/admin/store/AdminStore.js":{"id":"./node_modules/@omnia/fx/ux/admin/store/adminstore.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminStore","useAdminStore"]},"./node_modules/@omnia/fx/ux/AnchorLink.js":{"id":"./node_modules/@omnia/fx/ux/anchorlink.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnchorLink"]},"./node_modules/@omnia/fx/ux/appprovisioning/Enums.js":{"id":"./node_modules/@omnia/fx/ux/appprovisioning/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AppInstanceProgressActions"]},"./node_modules/@omnia/fx/ux/BlockInstance.js":{"id":"./node_modules/@omnia/fx/ux/blockinstance.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockInstance"]},"./node_modules/@omnia/fx/ux/confirmdialog/IConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/iconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay"]},"./node_modules/@omnia/fx/ux/confirmdialog/index.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay","ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/confirmdialog/IVueConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/ivueconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/decorators/index.js":{"id":"./node_modules/@omnia/fx/ux/decorators/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Emit","Options","Prop","Ref","Vue","Watch"]},"./node_modules/@omnia/fx/ux/dialog/IDialog.js":{"id":"./node_modules/@omnia/fx/ux/dialog/idialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/dialog/index.js":{"id":"./node_modules/@omnia/fx/ux/dialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/documenticon/IDocumentIcon.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/idocumenticon.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/documenticon/index.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/heading/IHeading.js":{"id":"./node_modules/@omnia/fx/ux/heading/iheading.js","buildMeta":{"exportsType":"namespace"},"expo.js":["HeadingSizes"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InputLanguageStore"]},"./node_modules/@omnia/fx/ux/InternalRouter.js":{"id":"./node_modules/@omnia/fx/ux/internalrouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalRouter"]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BladeContexts","BladeSizeDefinitions","BladeSizeTypesName","BladeSizeWidths","BladeVariantDefinitions","BladeVariantTypesName","JourneyContext","useBlade","useJourneyMenuStore","useJourneyRouterStore","useJourneyStore"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockCatalogStore","BlockSettingsProvider","BlockSettingsReader","BlockSettingsWriter","BreakPointManager","CssBlockSettings","CssSectionSettings","DynamicStateStore","EditorLayoutItemFactory","GeneralSectionSettings","HeaderBlockSettings","HeaderSectionSettings","LayerIndex","LayoutBlockHeaderSettings","LayoutCanvasStore","LayoutDefinitionBuilder","LayoutEditorThemingManager","LayoutGlobalHeaderSettings","LayoutItemFactory","LayoutItemRules","LayoutLockExpansionItemDefinition","LayoutManager","LayoutSectionContainerHelper","LayoutStyleSettings","LayoutTemplateStore","ObjectRules","ReactiveLayoutItemsSettingsStore","SpacingBlockSettings","SpacingSectionSettings","StyleBlockSettings","StyleSectionSettings","TabBlockLayoutSettings","TabBlockSettings","TabSectionLayoutSettings","TabsLayoutSettings","TargetingBlockSettings","TargetingSectionSettings","ThemingRenditionManager","ThemingSectionSettings","customNullCondition","deleteNullProperties","isEmptyObject","mergeObjects","objectKeysWithFilter","useBlockSettingsReader","useBlockSettingsWriter"]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Topics"]},"./node_modules/@omnia/fx/ux/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/ux/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/ux/models/index.js":{"id":"./node_modules/@omnia/fx/ux/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AboutUserStyles","ActionToolbarStyles","AdminChromeStyles","AnimatedGifStyles","AppInstanceRollupBlockStyles","AppInstanceRollupCardViewSettingsStyles","AppInstanceRollupCardViewStyles","AppInstanceRollupListViewSettingsStyles","AppInstanceRollupListViewStyles","AppInstanceRollupStyles","AppInstanceRollupViewBaseStyles","BarChartIndicatorStyles","ButtonWrapperStyles","ChipStyles","ChipStylesConst","CommentStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","RowVariant","SharePointVideoSettingsStyles","SidePanelStyles","SpecialUserConfiguration","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","ValidationOnDefinitions","WizardStyles","appLayoutPlaceHolderRegistration","userPresenceStyles"]},"./node_modules/@omnia/fx/ux/MultilingualContext.js":{"id":"./node_modules/@omnia/fx/ux/multilingualcontext.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MultilingualContext"]},"./node_modules/@omnia/fx/ux/OmniaTheming.js":{"id":"./node_modules/@omnia/fx/ux/omniatheming.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaTheming"]},"./node_modules/@omnia/fx/ux/post/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/post/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PostLocalization"]},"./node_modules/@omnia/fx/ux/social/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/social/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["CommentLocalization"]},"./node_modules/@omnia/fx/ux/StyleFlow.js":{"id":"./node_modules/@omnia/fx/ux/styleflow.js","buildMeta":{"exportsType":"namespace"},"expo.js":["StyleFlow"]},"./node_modules/@omnia/fx/ux/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCssRaw.css":{"id":"./node_modules/@omnia/fx/ux/uxcssraw.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxDefaultRichtextStyle.js":{"id":"./node_modules/@omnia/fx/ux/uxdefaultrichtextstyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DefaultRichtextStyles"]},"./node_modules/@omnia/fx/ux/UxFlags.css":{"id":"./node_modules/@omnia/fx/ux/uxflags.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxFonts.css":{"id":"./node_modules/@omnia/fx/ux/uxfonts.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxModels.js":{"id":"./node_modules/@omnia/fx/ux/uxmodels.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInLocalizationKeys","OmniaUxLocalizationNamespace"]},"./node_modules/@omnia/fx/ux/UxStyles.js":{"id":"./node_modules/@omnia/fx/ux/uxstyles.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Styles"]},"./node_modules/@omnia/fx/ux/validation/IComponentValidationEnabled.js":{"id":"./node_modules/@omnia/fx/ux/validation/icomponentvalidationenabled.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/validation/index.js":{"id":"./node_modules/@omnia/fx/ux/validation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LegacyFieldValueValidation"]},"./node_modules/@omnia/fx/ux/validation/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/validation/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FieldValidationLocalization"]},"./node_modules/@omnia/fx/ux/versionedlayout/index.js":{"id":"./node_modules/@omnia/fx/ux/versionedlayout/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LayoutEditorTabRendererInstance","VersionedLayoutBladeIds","VersionedLayoutDefinitionEditorItem","VersionedLayoutDefinitionEditorItemFactory","VersionedLayoutDefinitionEditorItemPrivateImutableState","VersionedLayoutDefinitionEditorItemState","VersionedLayoutEditorStore"]},"./node_modules/@omnia/fx/ux/admin/index.js":{"id":"0111486e-5dc8-4705-8247-d91fb2aba33d","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminChromeInstance","AdminRouter","AdminStore","BusinessProfileRouter","useAdminStore"]},"./node_modules/@omnia/fx/ux/app/index.js":{"id":"14a0ce2f-3699-49b2-92d3-428caac194a4","buildMeta":{"exportsType":"namespace"},"expo.js":["AppContextProvider","AppInstanceToken","AppPropertiesProvider","Router"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/vuetify/index.js":{"id":"c02f415e-2efe-4333-9b1e-8d7abaa2c967","buildMeta":{"exportsType":"namespace"},"expo.js":["VAlert","VApp","VAvatar","VBadge","VBreadcrumbs","VBreadcrumbsItem","VBtn","VBtnToggle","VCard","VCardActions","VCardMedia","VCardText","VCardTitle","VCarousel","VCarouselItem","VCheckbox","VCombobox","VContainer","VContent","VDataTable","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileSubTitle","VListTileTitle","VMenu","VNavigationDrawer","VProgressCircular","VProgressLinear","VRadio","VRadioGroup","VRangeSlider","VResponsive","VSlider","VSnackbar","VSpacer","VSpeedDial","VStepper","VStepperContent","VStepperHeader","VStepperStep","VSubheader","VTab","VTabItem","VTabs","VTabsItems","VTabsSlider","VTextField","VTextarea","VToolbar","VToolbarItems","VToolbarSideIcon","VToolbarTitle","VTooltip"]},"./node_modules/@omnia/fx/ux/index.js":{"id":"d7327742-5647-4075-b7ab-4f9ca852addb","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCore.js":{"id":"fe6d45fc-8977-4e32-bff4-e93cc636390e","buildMeta":{"exportsType":"namespace"},"expo.js":[]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/admin/BusinessProfileRouter.js":{"id":"./node_modules/@omnia/fx/ux/admin/businessprofilerouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/admin/chrome/AdminVisibiltyController.js":{"id":"./node_modules/@omnia/fx/ux/admin/chrome/adminvisibiltycontroller.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/admin/store/AdminStore.js":{"id":"./node_modules/@omnia/fx/ux/admin/store/adminstore.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminStore","useAdminStore"]},"./node_modules/@omnia/fx/ux/AnchorLink.js":{"id":"./node_modules/@omnia/fx/ux/anchorlink.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnchorLink"]},"./node_modules/@omnia/fx/ux/appprovisioning/Enums.js":{"id":"./node_modules/@omnia/fx/ux/appprovisioning/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AppInstanceProgressActions"]},"./node_modules/@omnia/fx/ux/BlockInstance.js":{"id":"./node_modules/@omnia/fx/ux/blockinstance.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockInstance"]},"./node_modules/@omnia/fx/ux/confirmdialog/IConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/iconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay"]},"./node_modules/@omnia/fx/ux/confirmdialog/index.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay","ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/confirmdialog/IVueConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/ivueconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/decorators/index.js":{"id":"./node_modules/@omnia/fx/ux/decorators/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Emit","Options","Prop","Ref","Vue","Watch"]},"./node_modules/@omnia/fx/ux/dialog/IDialog.js":{"id":"./node_modules/@omnia/fx/ux/dialog/idialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/dialog/index.js":{"id":"./node_modules/@omnia/fx/ux/dialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/documenticon/IDocumentIcon.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/idocumenticon.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/documenticon/index.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/heading/IHeading.js":{"id":"./node_modules/@omnia/fx/ux/heading/iheading.js","buildMeta":{"exportsType":"namespace"},"expo.js":["HeadingSizes"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InputLanguageStore"]},"./node_modules/@omnia/fx/ux/InternalRouter.js":{"id":"./node_modules/@omnia/fx/ux/internalrouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalRouter"]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BladeContexts","BladeSizeDefinitions","BladeSizeTypesName","BladeSizeWidths","BladeVariantDefinitions","BladeVariantTypesName","JourneyContext","useBlade","useJourneyMenuStore","useJourneyRouterStore","useJourneyStore"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockCatalogStore","BlockSettingsProvider","BlockSettingsReader","BlockSettingsWriter","BreakPointManager","CssBlockSettings","CssSectionSettings","DynamicStateStore","EditorLayoutItemFactory","GeneralSectionSettings","HeaderBlockSettings","HeaderSectionSettings","LayerIndex","LayoutBlockHeaderSettings","LayoutCanvasStore","LayoutDefinitionBuilder","LayoutEditorThemingManager","LayoutGlobalHeaderSettings","LayoutItemFactory","LayoutItemRules","LayoutLockExpansionItemDefinition","LayoutManager","LayoutSectionContainerHelper","LayoutStyleSettings","LayoutTemplateStore","ObjectRules","ReactiveLayoutItemsSettingsStore","SpacingBlockSettings","SpacingSectionSettings","StyleBlockSettings","StyleSectionSettings","TabBlockLayoutSettings","TabBlockSettings","TabSectionLayoutSettings","TabsLayoutSettings","TargetingBlockSettings","TargetingSectionSettings","ThemingRenditionManager","ThemingSectionSettings","mergeObjects","useBlockSettingsReader","useBlockSettingsWriter"]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Topics"]},"./node_modules/@omnia/fx/ux/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/ux/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/ux/models/index.js":{"id":"./node_modules/@omnia/fx/ux/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AboutUserStyles","ActionToolbarStyles","AdminChromeStyles","AnimatedGifStyles","AppInstanceRollupBlockStyles","AppInstanceRollupCardViewSettingsStyles","AppInstanceRollupCardViewStyles","AppInstanceRollupListViewSettingsStyles","AppInstanceRollupListViewStyles","AppInstanceRollupStyles","AppInstanceRollupViewBaseStyles","BarChartIndicatorStyles","ButtonWrapperStyles","ChipStyles","ChipStylesConst","CommentStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","RowVariant","SharePointVideoSettingsStyles","SidePanelStyles","SpecialUserConfiguration","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","ValidationOnDefinitions","WizardStyles","appLayoutPlaceHolderRegistration","userPresenceStyles"]},"./node_modules/@omnia/fx/ux/MultilingualContext.js":{"id":"./node_modules/@omnia/fx/ux/multilingualcontext.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MultilingualContext"]},"./node_modules/@omnia/fx/ux/OmniaTheming.js":{"id":"./node_modules/@omnia/fx/ux/omniatheming.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaTheming"]},"./node_modules/@omnia/fx/ux/post/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/post/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PostLocalization"]},"./node_modules/@omnia/fx/ux/social/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/social/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["CommentLocalization"]},"./node_modules/@omnia/fx/ux/StyleFlow.js":{"id":"./node_modules/@omnia/fx/ux/styleflow.js","buildMeta":{"exportsType":"namespace"},"expo.js":["StyleFlow"]},"./node_modules/@omnia/fx/ux/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCssRaw.css":{"id":"./node_modules/@omnia/fx/ux/uxcssraw.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxDefaultRichtextStyle.js":{"id":"./node_modules/@omnia/fx/ux/uxdefaultrichtextstyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DefaultRichtextStyles"]},"./node_modules/@omnia/fx/ux/UxFlags.css":{"id":"./node_modules/@omnia/fx/ux/uxflags.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxFonts.css":{"id":"./node_modules/@omnia/fx/ux/uxfonts.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxModels.js":{"id":"./node_modules/@omnia/fx/ux/uxmodels.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInLocalizationKeys","OmniaUxLocalizationNamespace"]},"./node_modules/@omnia/fx/ux/UxStyles.js":{"id":"./node_modules/@omnia/fx/ux/uxstyles.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Styles"]},"./node_modules/@omnia/fx/ux/validation/IComponentValidationEnabled.js":{"id":"./node_modules/@omnia/fx/ux/validation/icomponentvalidationenabled.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/validation/index.js":{"id":"./node_modules/@omnia/fx/ux/validation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LegacyFieldValueValidation"]},"./node_modules/@omnia/fx/ux/validation/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/validation/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FieldValidationLocalization"]},"./node_modules/@omnia/fx/ux/versionedlayout/index.js":{"id":"./node_modules/@omnia/fx/ux/versionedlayout/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LayoutEditorTabRendererInstance","VersionedLayoutBladeIds","VersionedLayoutDefinitionEditorItem","VersionedLayoutDefinitionEditorItemFactory","VersionedLayoutDefinitionEditorItemPrivateImutableState","VersionedLayoutDefinitionEditorItemState","VersionedLayoutEditorStore"]},"./node_modules/@omnia/fx/ux/admin/index.js":{"id":"0111486e-5dc8-4705-8247-d91fb2aba33d","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminChromeInstance","AdminRouter","AdminStore","BusinessProfileRouter","useAdminStore"]},"./node_modules/@omnia/fx/ux/app/index.js":{"id":"14a0ce2f-3699-49b2-92d3-428caac194a4","buildMeta":{"exportsType":"namespace"},"expo.js":["AppContextProvider","AppInstanceToken","AppPropertiesProvider","Router"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/vuetify/index.js":{"id":"c02f415e-2efe-4333-9b1e-8d7abaa2c967","buildMeta":{"exportsType":"namespace"},"expo.js":["VAlert","VApp","VAvatar","VBadge","VBreadcrumbs","VBreadcrumbsItem","VBtn","VBtnToggle","VCard","VCardActions","VCardMedia","VCardText","VCardTitle","VCarousel","VCarouselItem","VCheckbox","VCombobox","VContainer","VContent","VDataTable","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileSubTitle","VListTileTitle","VMenu","VNavigationDrawer","VProgressCircular","VProgressLinear","VRadio","VRadioGroup","VRangeSlider","VResponsive","VSlider","VSnackbar","VSpacer","VSpeedDial","VStepper","VStepperContent","VStepperHeader","VStepperStep","VSubheader","VTab","VTabItem","VTabs","VTabsItems","VTabsSlider","VTextField","VTextarea","VToolbar","VToolbarItems","VToolbarSideIcon","VToolbarTitle","VTooltip"]},"./node_modules/@omnia/fx/ux/index.js":{"id":"d7327742-5647-4075-b7ab-4f9ca852addb","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCore.js":{"id":"fe6d45fc-8977-4e32-bff4-e93cc636390e","buildMeta":{"exportsType":"namespace"},"expo.js":[]}}}
|
package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts
CHANGED
@@ -5,7 +5,7 @@ export declare const SpacingPickerStyles: {
|
|
5
5
|
columnWrapper: string;
|
6
6
|
spacingValueWrapper: string;
|
7
7
|
groupWrapper: string;
|
8
|
-
textInput: (onBase: ColorDefinition) => string;
|
8
|
+
textInput: (base: ColorDefinition, onBase: ColorDefinition) => string;
|
9
9
|
spacingItem: (base: ColorDefinition, onBase: ColorDefinition, selected: boolean) => string;
|
10
10
|
sliderMenuWrapper: (color: ColorDefinition) => string;
|
11
11
|
spacingSlider: string;
|
@@ -3,11 +3,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
3
3
|
typedHandler: ITypedFilterEngineHandler;
|
4
4
|
} & {
|
5
5
|
renderContent?: (isOpening?: boolean) => JSX.Element;
|
6
|
-
}
|
6
|
+
} & {
|
7
|
+
rendererManifestId?: string;
|
8
|
+
}> & Omit<{}, "typedHandler" | "renderContent" | "rendererManifestId"> & {
|
7
9
|
"v-slots"?: {
|
8
10
|
default?: import("vue").Slot;
|
9
11
|
} & {};
|
10
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">) => {
|
12
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent" | "rendererManifestId">) => {
|
11
13
|
$: import("vue").ComponentInternalInstance;
|
12
14
|
$data: {};
|
13
15
|
$props: {};
|
@@ -49,11 +51,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
49
51
|
typedHandler: ITypedFilterEngineHandler;
|
50
52
|
} & {
|
51
53
|
renderContent?: (isOpening?: boolean) => JSX.Element;
|
54
|
+
} & {
|
55
|
+
rendererManifestId?: string;
|
52
56
|
}> & {
|
53
57
|
"v-slots"?: {
|
54
58
|
default?: import("vue").Slot;
|
55
59
|
} & {};
|
56
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">;
|
60
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent" | "rendererManifestId">;
|
57
61
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
62
|
[key: string]: any;
|
59
63
|
}>;
|
@@ -3,11 +3,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
3
3
|
typedHandler: ITypedFilterEngineHandler;
|
4
4
|
} & {
|
5
5
|
renderContent?: () => JSX.Element;
|
6
|
-
}
|
6
|
+
} & {
|
7
|
+
rendererManifestId?: string;
|
8
|
+
}> & Omit<{}, "typedHandler" | "renderContent" | "rendererManifestId"> & {
|
7
9
|
"v-slots"?: {
|
8
10
|
default?: import("vue").Slot;
|
9
11
|
} & {};
|
10
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">) => {
|
12
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent" | "rendererManifestId">) => {
|
11
13
|
$: import("vue").ComponentInternalInstance;
|
12
14
|
$data: {};
|
13
15
|
$props: {};
|
@@ -49,11 +51,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
49
51
|
typedHandler: ITypedFilterEngineHandler;
|
50
52
|
} & {
|
51
53
|
renderContent?: () => JSX.Element;
|
54
|
+
} & {
|
55
|
+
rendererManifestId?: string;
|
52
56
|
}> & {
|
53
57
|
"v-slots"?: {
|
54
58
|
default?: import("vue").Slot;
|
55
59
|
} & {};
|
56
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">;
|
60
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent" | "rendererManifestId">;
|
57
61
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
62
|
[key: string]: any;
|
59
63
|
}>;
|
@@ -92,6 +92,11 @@ declare const JourneyBladeComponent: {
|
|
92
92
|
} & {
|
93
93
|
type: import("vue").PropType<switchValue>;
|
94
94
|
};
|
95
|
+
draggable: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
} & {
|
98
|
+
type: import("vue").PropType<boolean>;
|
99
|
+
};
|
95
100
|
disabled: {
|
96
101
|
type: import("vue").PropType<boolean>;
|
97
102
|
} & {
|
@@ -251,6 +256,11 @@ declare const JourneyBladeComponent: {
|
|
251
256
|
} & {
|
252
257
|
type: import("vue").PropType<switchValue>;
|
253
258
|
};
|
259
|
+
draggable: {
|
260
|
+
type: import("vue").PropType<boolean>;
|
261
|
+
} & {
|
262
|
+
type: import("vue").PropType<boolean>;
|
263
|
+
};
|
254
264
|
disabled: {
|
255
265
|
type: import("vue").PropType<boolean>;
|
256
266
|
} & {
|
@@ -408,6 +418,11 @@ declare const JourneyBladeComponent: {
|
|
408
418
|
} & {
|
409
419
|
type: import("vue").PropType<switchValue>;
|
410
420
|
};
|
421
|
+
draggable: {
|
422
|
+
type: import("vue").PropType<boolean>;
|
423
|
+
} & {
|
424
|
+
type: import("vue").PropType<boolean>;
|
425
|
+
};
|
411
426
|
disabled: {
|
412
427
|
type: import("vue").PropType<boolean>;
|
413
428
|
} & {
|
@@ -562,6 +577,11 @@ declare const JourneyBladeComponent: {
|
|
562
577
|
} & {
|
563
578
|
type: import("vue").PropType<switchValue>;
|
564
579
|
};
|
580
|
+
draggable: {
|
581
|
+
type: import("vue").PropType<boolean>;
|
582
|
+
} & {
|
583
|
+
type: import("vue").PropType<boolean>;
|
584
|
+
};
|
565
585
|
disabled: {
|
566
586
|
type: import("vue").PropType<boolean>;
|
567
587
|
} & {
|
@@ -659,6 +679,7 @@ declare const JourneyBladeComponent: {
|
|
659
679
|
actionsFooter?: Func<[VNodeChild]>;
|
660
680
|
};
|
661
681
|
remove?: boolean;
|
682
|
+
draggable?: boolean;
|
662
683
|
variant?: "info" | "preview" | "read-only" | "edit" | "new";
|
663
684
|
subTitle?: string;
|
664
685
|
"sub-title"?: string;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { GuidValue } from "@omnia/fx-models";
|
2
2
|
import { JourneyBladeComponentTypings } from "../JourneyBlade";
|
3
|
+
import { WatchStopHandle } from "vue";
|
3
4
|
type ExtractProps<T> = {
|
4
5
|
[K in keyof (T extends {
|
5
6
|
$props: any;
|
@@ -14,13 +15,161 @@ export declare function useBlade<TRoute extends {
|
|
14
15
|
[name: string]: string | number | boolean | GuidValue;
|
15
16
|
} = {}>(bladeId: GuidValue): {
|
16
17
|
Blade: BladeElement;
|
18
|
+
DataTable: <T extends unknown>(props: import("../..").ExtractProps<{
|
19
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
20
|
+
} & {
|
21
|
+
container?: boolean;
|
22
|
+
} & {
|
23
|
+
colors?: import("../..").ColorSchemaStoreType;
|
24
|
+
} & {
|
25
|
+
"v-model:expanded"?: string[];
|
26
|
+
} & {
|
27
|
+
"onUpdate:expanded"?: (value: string[]) => void;
|
28
|
+
} & {
|
29
|
+
expanded?: string[];
|
30
|
+
} & {
|
31
|
+
"v-model:sortBy"?: import("../..").SortItem[];
|
32
|
+
} & {
|
33
|
+
"onUpdate:sortBy"?: (value: import("../..").SortItem[]) => void;
|
34
|
+
} & {
|
35
|
+
sortBy?: import("../..").SortItem[];
|
36
|
+
} & {
|
37
|
+
mustSort?: boolean;
|
38
|
+
} & {
|
39
|
+
height?: string | number;
|
40
|
+
} & {
|
41
|
+
noDataText?: string;
|
42
|
+
} & {
|
43
|
+
loading?: boolean;
|
44
|
+
} & {
|
45
|
+
draggable?: boolean;
|
46
|
+
} & {
|
47
|
+
hover?: boolean;
|
48
|
+
} & {
|
49
|
+
showExpand?: boolean;
|
50
|
+
} & {
|
51
|
+
itemsPerPage?: number;
|
52
|
+
} & {
|
53
|
+
headers?: import("../..").DataTableHeader[];
|
54
|
+
} & {
|
55
|
+
items?: T[];
|
56
|
+
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
57
|
+
item: T;
|
58
|
+
}) => void>> & Omit<{
|
59
|
+
"onUpdate:expanded"?: (expanded: string[]) => any;
|
60
|
+
"onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
|
61
|
+
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
|
62
|
+
"v-slots"?: {
|
63
|
+
default?: import("vue").Slot;
|
64
|
+
} & {
|
65
|
+
[x: `header.${string}`]: (header: import("../..").DataTableHeader) => void;
|
66
|
+
[x: `item.${string}`]: (e: {
|
67
|
+
item: T;
|
68
|
+
}) => void;
|
69
|
+
item?: (row: import("../..").IDataTableRowRenderer<T>) => void;
|
70
|
+
};
|
71
|
+
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
72
|
+
$: import("vue").ComponentInternalInstance;
|
73
|
+
$data: {};
|
74
|
+
$props: {};
|
75
|
+
$attrs: {
|
76
|
+
[x: string]: unknown;
|
77
|
+
};
|
78
|
+
$refs: {
|
79
|
+
[x: string]: unknown;
|
80
|
+
};
|
81
|
+
$slots: Readonly<{
|
82
|
+
[name: string]: import("vue").Slot<any>;
|
83
|
+
}>;
|
84
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
85
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
86
|
+
$emit: (event: string, ...args: any[]) => void;
|
87
|
+
$el: any;
|
88
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
89
|
+
beforeCreate?: (() => void) | (() => void)[];
|
90
|
+
created?: (() => void) | (() => void)[];
|
91
|
+
beforeMount?: (() => void) | (() => void)[];
|
92
|
+
mounted?: (() => void) | (() => void)[];
|
93
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
94
|
+
updated?: (() => void) | (() => void)[];
|
95
|
+
activated?: (() => void) | (() => void)[];
|
96
|
+
deactivated?: (() => void) | (() => void)[];
|
97
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
98
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
99
|
+
destroyed?: (() => void) | (() => void)[];
|
100
|
+
unmounted?: (() => void) | (() => void)[];
|
101
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
102
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
103
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
104
|
+
};
|
105
|
+
$forceUpdate: () => void;
|
106
|
+
$nextTick: typeof import("vue").nextTick;
|
107
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): WatchStopHandle;
|
108
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
109
|
+
propsDefinition: import("../..").ExtractProps<{
|
110
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
111
|
+
} & {
|
112
|
+
container?: boolean;
|
113
|
+
} & {
|
114
|
+
colors?: import("../..").ColorSchemaStoreType;
|
115
|
+
} & {
|
116
|
+
"v-model:expanded"?: string[];
|
117
|
+
} & {
|
118
|
+
"onUpdate:expanded"?: (value: string[]) => void;
|
119
|
+
} & {
|
120
|
+
expanded?: string[];
|
121
|
+
} & {
|
122
|
+
"v-model:sortBy"?: import("../..").SortItem[];
|
123
|
+
} & {
|
124
|
+
"onUpdate:sortBy"?: (value: import("../..").SortItem[]) => void;
|
125
|
+
} & {
|
126
|
+
sortBy?: import("../..").SortItem[];
|
127
|
+
} & {
|
128
|
+
mustSort?: boolean;
|
129
|
+
} & {
|
130
|
+
height?: string | number;
|
131
|
+
} & {
|
132
|
+
noDataText?: string;
|
133
|
+
} & {
|
134
|
+
loading?: boolean;
|
135
|
+
} & {
|
136
|
+
draggable?: boolean;
|
137
|
+
} & {
|
138
|
+
hover?: boolean;
|
139
|
+
} & {
|
140
|
+
showExpand?: boolean;
|
141
|
+
} & {
|
142
|
+
itemsPerPage?: number;
|
143
|
+
} & {
|
144
|
+
headers?: import("../..").DataTableHeader[];
|
145
|
+
} & {
|
146
|
+
items?: T[];
|
147
|
+
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
148
|
+
item: T;
|
149
|
+
}) => void>> & {
|
150
|
+
"v-slots"?: {
|
151
|
+
default?: import("vue").Slot;
|
152
|
+
} & {
|
153
|
+
[x: `header.${string}`]: (header: import("../..").DataTableHeader) => void;
|
154
|
+
[x: `item.${string}`]: (e: {
|
155
|
+
item: T;
|
156
|
+
}) => void;
|
157
|
+
item?: (row: import("../..").IDataTableRowRenderer<T>) => void;
|
158
|
+
};
|
159
|
+
} & {
|
160
|
+
"onUpdate:expanded"?: (expanded: string[]) => any;
|
161
|
+
"onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
|
162
|
+
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
|
163
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
164
|
+
[key: string]: any;
|
165
|
+
}>;
|
17
166
|
readonly route: TRoute;
|
18
167
|
moveNext(): void;
|
19
168
|
movePrev(): void;
|
20
169
|
travelTo(toBladeId: GuidValue): void;
|
21
|
-
defineValueToSave<
|
22
|
-
value:
|
23
|
-
setValue: (value:
|
170
|
+
defineValueToSave<T_2>(value?: T_2): {
|
171
|
+
value: T_2;
|
172
|
+
setValue: (value: T_2) => void;
|
24
173
|
};
|
25
174
|
};
|
26
175
|
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function mergeObjects<T extends object = object>(target: T, nullOrUndefinedValueCustomHandler: (missingPropertyName: string, parent: object, defaultValue: object) => object, emptyStringValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, emptyArrayValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, ...sources: T[]): T;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
export * from "./BlockSettingsProvider";
|
2
2
|
export * from "./BlockSettingsReader";
|
3
3
|
export * from "./BlockSettingsWriter";
|
4
|
-
export * from "./ObjectMerger";
|
5
4
|
export * from "./layoutdefinitionsettings";
|
6
5
|
export * from "./LayoutEditorThemingManager";
|
7
6
|
export * from "./ThemingRenditionManager";
|
8
7
|
export * from "./BreakPointManager";
|
9
8
|
export * from "./LayoutManager";
|
10
9
|
export * from "./styles";
|
10
|
+
export * from "./ObjectMergerTemp";
|
@@ -34,6 +34,18 @@ declare const _default: {
|
|
34
34
|
hideToolbar: {
|
35
35
|
type: import("vue").PropType<boolean>;
|
36
36
|
};
|
37
|
+
colorSchemaType: {
|
38
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
39
|
+
required: boolean;
|
40
|
+
};
|
41
|
+
container: {
|
42
|
+
type: BooleanConstructor;
|
43
|
+
required: boolean;
|
44
|
+
};
|
45
|
+
colors: {
|
46
|
+
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
47
|
+
required: boolean;
|
48
|
+
};
|
37
49
|
"onUpdate:modelValue": {
|
38
50
|
type: import("vue").PropType<(value: string) => any>;
|
39
51
|
};
|
@@ -132,6 +144,18 @@ declare const _default: {
|
|
132
144
|
hideToolbar: {
|
133
145
|
type: import("vue").PropType<boolean>;
|
134
146
|
};
|
147
|
+
colorSchemaType: {
|
148
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
149
|
+
required: boolean;
|
150
|
+
};
|
151
|
+
container: {
|
152
|
+
type: BooleanConstructor;
|
153
|
+
required: boolean;
|
154
|
+
};
|
155
|
+
colors: {
|
156
|
+
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
157
|
+
required: boolean;
|
158
|
+
};
|
135
159
|
"onUpdate:modelValue": {
|
136
160
|
type: import("vue").PropType<(value: string) => any>;
|
137
161
|
};
|
@@ -198,7 +222,9 @@ declare const _default: {
|
|
198
222
|
};
|
199
223
|
}>;
|
200
224
|
};
|
201
|
-
}>>, {
|
225
|
+
}>>, {
|
226
|
+
container: boolean;
|
227
|
+
}, true, {}, {}, {
|
202
228
|
P: {};
|
203
229
|
B: {};
|
204
230
|
D: {};
|
@@ -237,6 +263,18 @@ declare const _default: {
|
|
237
263
|
hideToolbar: {
|
238
264
|
type: import("vue").PropType<boolean>;
|
239
265
|
};
|
266
|
+
colorSchemaType: {
|
267
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
268
|
+
required: boolean;
|
269
|
+
};
|
270
|
+
container: {
|
271
|
+
type: BooleanConstructor;
|
272
|
+
required: boolean;
|
273
|
+
};
|
274
|
+
colors: {
|
275
|
+
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
276
|
+
required: boolean;
|
277
|
+
};
|
240
278
|
"onUpdate:modelValue": {
|
241
279
|
type: import("vue").PropType<(value: string) => any>;
|
242
280
|
};
|
@@ -303,7 +341,9 @@ declare const _default: {
|
|
303
341
|
};
|
304
342
|
}>;
|
305
343
|
};
|
306
|
-
}>>, () => JSX.Element, {}, {}, {}, {
|
344
|
+
}>>, () => JSX.Element, {}, {}, {}, {
|
345
|
+
container: boolean;
|
346
|
+
}>;
|
307
347
|
__isFragment?: never;
|
308
348
|
__isTeleport?: never;
|
309
349
|
__isSuspense?: never;
|
@@ -339,6 +379,18 @@ declare const _default: {
|
|
339
379
|
hideToolbar: {
|
340
380
|
type: import("vue").PropType<boolean>;
|
341
381
|
};
|
382
|
+
colorSchemaType: {
|
383
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
384
|
+
required: boolean;
|
385
|
+
};
|
386
|
+
container: {
|
387
|
+
type: BooleanConstructor;
|
388
|
+
required: boolean;
|
389
|
+
};
|
390
|
+
colors: {
|
391
|
+
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
392
|
+
required: boolean;
|
393
|
+
};
|
342
394
|
"onUpdate:modelValue": {
|
343
395
|
type: import("vue").PropType<(value: string) => any>;
|
344
396
|
};
|
@@ -405,7 +457,9 @@ declare const _default: {
|
|
405
457
|
};
|
406
458
|
}>;
|
407
459
|
};
|
408
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
460
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
461
|
+
container: boolean;
|
462
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
409
463
|
propsDefinition: Omit<Readonly<{} & {
|
410
464
|
name?: {
|
411
465
|
[x: `onUpdate:${string}`]: {
|
@@ -470,9 +524,12 @@ declare const _default: {
|
|
470
524
|
};
|
471
525
|
typography?: "text" | "title" | "navigation" | TypographyTypes;
|
472
526
|
blueprint?: TextBlueprint;
|
527
|
+
container?: boolean;
|
473
528
|
size?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
|
474
529
|
placeholder?: string;
|
530
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
475
531
|
toned?: boolean;
|
532
|
+
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
476
533
|
"v-model"?: string;
|
477
534
|
"onUpdate:modelValue"?: (value: string) => any;
|
478
535
|
modelValue?: string;
|
@@ -25,6 +25,8 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
25
25
|
noDataText?: string;
|
26
26
|
} & {
|
27
27
|
loading?: boolean;
|
28
|
+
} & {
|
29
|
+
draggable?: boolean;
|
28
30
|
} & {
|
29
31
|
hover?: boolean;
|
30
32
|
} & {
|
@@ -38,9 +40,9 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
38
40
|
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
39
41
|
item: T;
|
40
42
|
}) => void>> & Omit<{
|
41
|
-
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
42
43
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
43
|
-
|
44
|
+
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
45
|
+
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
|
44
46
|
"v-slots"?: {
|
45
47
|
default?: import("vue").Slot;
|
46
48
|
} & {
|
@@ -50,7 +52,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
50
52
|
}) => void;
|
51
53
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
52
54
|
};
|
53
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "
|
55
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
54
56
|
$: import("vue").ComponentInternalInstance;
|
55
57
|
$data: {};
|
56
58
|
$props: {};
|
@@ -114,6 +116,8 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
114
116
|
noDataText?: string;
|
115
117
|
} & {
|
116
118
|
loading?: boolean;
|
119
|
+
} & {
|
120
|
+
draggable?: boolean;
|
117
121
|
} & {
|
118
122
|
hover?: boolean;
|
119
123
|
} & {
|
@@ -137,9 +141,9 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
137
141
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
138
142
|
};
|
139
143
|
} & {
|
140
|
-
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
141
144
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
142
|
-
|
145
|
+
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
146
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
|
143
147
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
144
148
|
[key: string]: any;
|
145
149
|
}>;
|
@@ -99,13 +99,13 @@ declare const _default: {
|
|
99
99
|
type: import("vue").PropType<string[]>;
|
100
100
|
required: false;
|
101
101
|
};
|
102
|
-
"onUpdate:expanded": {
|
103
|
-
type: import("vue").PropType<(value: string[]) => any>;
|
104
|
-
};
|
105
102
|
"v-model:expanded": {
|
106
103
|
type: import("vue").PropType<string[]>;
|
107
104
|
required: false;
|
108
105
|
};
|
106
|
+
"onUpdate:expanded": {
|
107
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
108
|
+
};
|
109
109
|
clickable: {
|
110
110
|
type: import("vue").PropType<boolean>;
|
111
111
|
required: false;
|
@@ -322,13 +322,13 @@ declare const _default: {
|
|
322
322
|
type: import("vue").PropType<string[]>;
|
323
323
|
required: false;
|
324
324
|
};
|
325
|
-
"onUpdate:expanded": {
|
326
|
-
type: import("vue").PropType<(value: string[]) => any>;
|
327
|
-
};
|
328
325
|
"v-model:expanded": {
|
329
326
|
type: import("vue").PropType<string[]>;
|
330
327
|
required: false;
|
331
328
|
};
|
329
|
+
"onUpdate:expanded": {
|
330
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
331
|
+
};
|
332
332
|
clickable: {
|
333
333
|
type: import("vue").PropType<boolean>;
|
334
334
|
required: false;
|
@@ -546,13 +546,13 @@ declare const _default: {
|
|
546
546
|
type: import("vue").PropType<string[]>;
|
547
547
|
required: false;
|
548
548
|
};
|
549
|
-
"onUpdate:expanded": {
|
550
|
-
type: import("vue").PropType<(value: string[]) => any>;
|
551
|
-
};
|
552
549
|
"v-model:expanded": {
|
553
550
|
type: import("vue").PropType<string[]>;
|
554
551
|
required: false;
|
555
552
|
};
|
553
|
+
"onUpdate:expanded": {
|
554
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
555
|
+
};
|
556
556
|
clickable: {
|
557
557
|
type: import("vue").PropType<boolean>;
|
558
558
|
required: false;
|
@@ -767,13 +767,13 @@ declare const _default: {
|
|
767
767
|
type: import("vue").PropType<string[]>;
|
768
768
|
required: false;
|
769
769
|
};
|
770
|
-
"onUpdate:expanded": {
|
771
|
-
type: import("vue").PropType<(value: string[]) => any>;
|
772
|
-
};
|
773
770
|
"v-model:expanded": {
|
774
771
|
type: import("vue").PropType<string[]>;
|
775
772
|
required: false;
|
776
773
|
};
|
774
|
+
"onUpdate:expanded": {
|
775
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
776
|
+
};
|
777
777
|
clickable: {
|
778
778
|
type: import("vue").PropType<boolean>;
|
779
779
|
required: false;
|
@@ -975,22 +975,22 @@ declare const _default: {
|
|
975
975
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
976
976
|
} & ODataTableServerSlots;
|
977
977
|
loading?: boolean;
|
978
|
-
|
979
|
-
|
980
|
-
"item-value"?: SelectItemKey;
|
981
|
-
itemSelectable?: SelectItemKey;
|
978
|
+
"v-model:expanded"?: string[];
|
979
|
+
"onUpdate:expanded"?: (value: string[]) => any;
|
982
980
|
sortBy?: SortItem[];
|
981
|
+
"v-model:sortBy"?: SortItem[];
|
982
|
+
"onUpdate:sortBy"?: (value: SortItem[]) => any;
|
983
983
|
mustSort?: boolean;
|
984
|
-
|
984
|
+
hover?: boolean;
|
985
985
|
showExpand?: boolean;
|
986
986
|
itemsPerPage?: number;
|
987
|
-
|
988
|
-
"
|
987
|
+
itemValue?: SelectItemKey;
|
988
|
+
"item-value"?: SelectItemKey;
|
989
|
+
itemSelectable?: SelectItemKey;
|
990
|
+
showSelect?: boolean;
|
989
991
|
"onUpdate:page"?: (value: number) => any;
|
990
992
|
"items-per-page"?: number;
|
991
993
|
"show-expand"?: boolean;
|
992
|
-
"v-model:expanded"?: string[];
|
993
|
-
"v-model:sortBy"?: SortItem[];
|
994
994
|
"show-select"?: boolean;
|
995
995
|
"must-sort"?: boolean;
|
996
996
|
"v-model:page"?: number;
|
@@ -0,0 +1,54 @@
|
|
1
|
+
import { ButtonIconOptions, OSizeTypes } from "@omnia/fx-models";
|
2
|
+
import { DefineProp, DefinePropClass, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
3
|
+
type FabProps = DefinePropTheming & DefinePropClass & DefineVModel<"", boolean, false, true, "The v-model of the component"> & DefineProp<"active", boolean, false, true, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"app", boolean, false, false, "If true, attaches to the closest layout and positions according to the value of location."> & DefineProp<"block", boolean, false, false, "Expands the button to 100% of available space."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"stacked", boolean, false, false, "Displays the button as a column with the icon on top"> & DefineProp<"text", string, false, null, "Specify content text for the component."> & DefineProp<"size", OSizeTypes, false, "default", "Sets the size of the button."> & DefineProp<"variant", "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain", false, "elevated", "Applies a distinct style to the component."> & DefineProp<"icon", ButtonIconOptions, false, null, "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button.">;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<FabProps> & Omit<{}, "text" | "icon" | "container" | "class" | "block" | "size" | "active" | "disabled" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "app" | "stacked"> & {
|
5
|
+
"v-slots"?: {
|
6
|
+
default?: import("vue").Slot;
|
7
|
+
} & {};
|
8
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "icon" | "container" | "class" | "block" | "size" | "active" | "disabled" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "app" | "stacked">) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
41
|
+
};
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<FabProps> & {
|
47
|
+
"v-slots"?: {
|
48
|
+
default?: import("vue").Slot;
|
49
|
+
} & {};
|
50
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "icon" | "container" | "class" | "block" | "size" | "active" | "disabled" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "app" | "stacked">;
|
51
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
52
|
+
[key: string]: any;
|
53
|
+
}>;
|
54
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & Omit<{}, string | number> & {
|
2
|
+
"v-slots"?: {
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
} & {};
|
5
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
} & {};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
51
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -346,8 +346,8 @@ declare const _default: {
|
|
346
346
|
} & VRatingSlots;
|
347
347
|
readonly?: boolean;
|
348
348
|
clearable?: boolean;
|
349
|
-
density?: "default" | "compact" | "comfortable";
|
350
349
|
hover?: boolean;
|
350
|
+
density?: "default" | "compact" | "comfortable";
|
351
351
|
}>, never>;
|
352
352
|
};
|
353
353
|
export default _default;
|
@@ -75,7 +75,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
75
75
|
item?: (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild;
|
76
76
|
"append-item"?: () => VNodeChild;
|
77
77
|
};
|
78
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "emit:update:focused" | "emit:click:button" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected" | "emit:update:modelValue" | "emit:update:search" | "slot:chip" | "slot:selection" | "slot:
|
78
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "emit:update:focused" | "emit:click:button" | "clearable" | "slot:item" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected" | "emit:update:modelValue" | "emit:update:search" | "slot:chip" | "slot:selection" | "slot:append-item">) => {
|
79
79
|
$: import("vue").ComponentInternalInstance;
|
80
80
|
$data: {};
|
81
81
|
$props: {};
|
@@ -581,13 +581,13 @@ declare const _default: {
|
|
581
581
|
appendInnerItem?: (item: any, index: Number) => VNodeChild;
|
582
582
|
itemToolTip?: (item: any) => VNodeChild;
|
583
583
|
};
|
584
|
+
"v-model:expanded"?: any[];
|
585
|
+
"onUpdate:expanded"?: (value: any[]) => any;
|
584
586
|
itemTitle?: string | ((item: any) => string);
|
585
587
|
itemValue?: string;
|
586
588
|
"item-value"?: string;
|
587
589
|
"item-title"?: string | ((item: any) => string);
|
588
|
-
"onUpdate:expanded"?: (value: any[]) => any;
|
589
590
|
itemChildren?: string;
|
590
|
-
"v-model:expanded"?: any[];
|
591
591
|
expandOnSelection?: boolean;
|
592
592
|
"expand-on-selection"?: boolean;
|
593
593
|
batchChildrensDisplay?: number;
|
@@ -0,0 +1,70 @@
|
|
1
|
+
export declare function useDraggable(): {
|
2
|
+
Draggable: (props: import("../InternalDefineComponent").ExtractProps<{
|
3
|
+
"v-model"?: any[];
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: any[]) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: any[];
|
8
|
+
} & {
|
9
|
+
placeholderClass?: string;
|
10
|
+
}> & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass"> & {
|
11
|
+
"v-slots"?: {
|
12
|
+
default?: import("vue").Slot;
|
13
|
+
} & {};
|
14
|
+
} & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">) => {
|
15
|
+
$: import("vue").ComponentInternalInstance;
|
16
|
+
$data: {};
|
17
|
+
$props: {};
|
18
|
+
$attrs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$refs: {
|
22
|
+
[x: string]: unknown;
|
23
|
+
};
|
24
|
+
$slots: Readonly<{
|
25
|
+
[name: string]: import("vue").Slot<any>;
|
26
|
+
}>;
|
27
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
28
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
29
|
+
$emit: (event: string, ...args: any[]) => void;
|
30
|
+
$el: any;
|
31
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
32
|
+
beforeCreate?: (() => void) | (() => void)[];
|
33
|
+
created?: (() => void) | (() => void)[];
|
34
|
+
beforeMount?: (() => void) | (() => void)[];
|
35
|
+
mounted?: (() => void) | (() => void)[];
|
36
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
37
|
+
updated?: (() => void) | (() => void)[];
|
38
|
+
activated?: (() => void) | (() => void)[];
|
39
|
+
deactivated?: (() => void) | (() => void)[];
|
40
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
41
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
42
|
+
destroyed?: (() => void) | (() => void)[];
|
43
|
+
unmounted?: (() => void) | (() => void)[];
|
44
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
46
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
47
|
+
};
|
48
|
+
$forceUpdate: () => void;
|
49
|
+
$nextTick: typeof import("vue").nextTick;
|
50
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
51
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
52
|
+
propsDefinition: import("../InternalDefineComponent").ExtractProps<{
|
53
|
+
"v-model"?: any[];
|
54
|
+
} & {
|
55
|
+
"onUpdate:modelValue"?: (value: any[]) => void;
|
56
|
+
} & {
|
57
|
+
modelValue?: any[];
|
58
|
+
} & {
|
59
|
+
placeholderClass?: string;
|
60
|
+
}> & {
|
61
|
+
"v-slots"?: {
|
62
|
+
default?: import("vue").Slot;
|
63
|
+
} & {};
|
64
|
+
} & {} & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">;
|
65
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
66
|
+
[key: string]: any;
|
67
|
+
}>;
|
68
|
+
draggableItemClass: string;
|
69
|
+
disabledDraggableItemClass: string;
|
70
|
+
};
|
@@ -26,6 +26,15 @@ export interface VelcronSubComponentDescriptor extends VelcronDescriptor {
|
|
26
26
|
properties?: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>;
|
27
27
|
events?: Array<VelcronComponentEventDescriptor>;
|
28
28
|
}
|
29
|
+
export interface VelcronComponentPropertyCleanupCondition {
|
30
|
+
propertyPath: string;
|
31
|
+
matchValue?: Array<any>;
|
32
|
+
containsInSubProperty?: {
|
33
|
+
subPropertyPath: string;
|
34
|
+
values: Array<any>;
|
35
|
+
};
|
36
|
+
alwaysDelete?: boolean;
|
37
|
+
}
|
29
38
|
export interface VelcronComponentPropertyDescriptor {
|
30
39
|
name: string;
|
31
40
|
type: VelcronDataTypes;
|
@@ -36,6 +45,7 @@ export interface VelcronComponentPropertyDescriptor {
|
|
36
45
|
disableRemovePropertyOnEmptyOrFalse?: boolean;
|
37
46
|
label?: string;
|
38
47
|
bindable?: boolean;
|
48
|
+
propertyCleanup?: Array<VelcronComponentPropertyCleanupCondition>;
|
39
49
|
}
|
40
50
|
export interface VelcronComponentArrayPropertyDescriptor extends VelcronComponentPropertyDescriptor {
|
41
51
|
type: VelcronDataTypes.componentArray;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { EditorLocation,
|
1
|
+
import { EditorLocation, VelcronPosition, VelcronSpacing, VelcronSpacingEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
location: {
|
@@ -78,9 +78,9 @@ declare const _default: {
|
|
78
78
|
}>;
|
79
79
|
};
|
80
80
|
}>> & {
|
81
|
-
"onUpdate:modelValue"?: (
|
81
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
82
82
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
83
|
-
"update:modelValue": (
|
83
|
+
"update:modelValue": (value: VelcronSpacing | VelcronPosition) => true;
|
84
84
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
85
85
|
location: {
|
86
86
|
type: import("vue").PropType<EditorLocation>;
|
@@ -159,7 +159,7 @@ declare const _default: {
|
|
159
159
|
}>;
|
160
160
|
};
|
161
161
|
}>> & {
|
162
|
-
"onUpdate:modelValue"?: (
|
162
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
163
163
|
}, {}, true, {}, {}, {
|
164
164
|
P: {};
|
165
165
|
B: {};
|
@@ -245,7 +245,7 @@ declare const _default: {
|
|
245
245
|
}>;
|
246
246
|
};
|
247
247
|
}>> & {
|
248
|
-
"onUpdate:modelValue"?: (
|
248
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
249
249
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
250
250
|
__isFragment?: never;
|
251
251
|
__isTeleport?: never;
|
@@ -328,9 +328,9 @@ declare const _default: {
|
|
328
328
|
}>;
|
329
329
|
};
|
330
330
|
}>> & {
|
331
|
-
"onUpdate:modelValue"?: (
|
331
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
332
332
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
333
|
-
"update:modelValue": (
|
333
|
+
"update:modelValue": (value: VelcronSpacing | VelcronPosition) => true;
|
334
334
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
335
335
|
propsDefinition: Omit<Readonly<{} & {
|
336
336
|
name?: {
|
@@ -400,7 +400,7 @@ declare const _default: {
|
|
400
400
|
modelValue?: VelcronSpacing | VelcronPosition;
|
401
401
|
location?: EditorLocation;
|
402
402
|
}>, "onUpdate:modelValue"> & {
|
403
|
-
"onUpdate:modelValue"?: (
|
403
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
404
404
|
};
|
405
405
|
};
|
406
406
|
export default _default;
|
@@ -211,6 +211,7 @@ import wcc0415286cfac41349dd264dc1621c463 from './ux/oxide/divider/Divider';
|
|
211
211
|
import wc3465fc250ac44f43af9d3df1cf17ec55 from './ux/oxide/draggable/Draggable';
|
212
212
|
import wc220372653d7a43a6a79cf1d01a23cffb from './ux/oxide/expansionpanel/ExpansionPanels';
|
213
213
|
import wca6ca5f7d21d24b168fcab70c965fded1 from './ux/oxide/expansionpanel/ExpansionPanel';
|
214
|
+
import wc12f88f4b9cf142cc8e5f6b203e55c873 from './ux/oxide/fab/FloatingActionButton.';
|
214
215
|
import wc1691e25d963243f9b78a548fe8d2e8a7 from './ux/oxide/flex/Flex2';
|
215
216
|
import wcee11b15d9e30495fb46b0c84244110c2 from './ux/oxide/flex/Row';
|
216
217
|
import wc02b49401a3554f3db9fc158e52535ac3 from './ux/oxide/form/Form';
|
@@ -1087,6 +1088,9 @@ declare global {
|
|
1087
1088
|
"o-expansion-panel": typeof wca6ca5f7d21d24b168fcab70c965fded1 extends {
|
1088
1089
|
propsDefinition: infer TProp;
|
1089
1090
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wca6ca5f7d21d24b168fcab70c965fded1 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wca6ca5f7d21d24b168fcab70c965fded1>, "propsDefinition">> : never;
|
1091
|
+
"o-fab": typeof wc12f88f4b9cf142cc8e5f6b203e55c873 extends {
|
1092
|
+
propsDefinition: infer TProp;
|
1093
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc12f88f4b9cf142cc8e5f6b203e55c873 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc12f88f4b9cf142cc8e5f6b203e55c873>, "propsDefinition">> : never;
|
1090
1094
|
"o-flex": typeof wc1691e25d963243f9b78a548fe8d2e8a7 extends {
|
1091
1095
|
propsDefinition: infer TProp;
|
1092
1096
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1691e25d963243f9b78a548fe8d2e8a7 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1691e25d963243f9b78a548fe8d2e8a7>, "propsDefinition">> : never;
|
@@ -5125,6 +5129,13 @@ declare global {
|
|
5125
5129
|
};
|
5126
5130
|
} : typeof wca6ca5f7d21d24b168fcab70c965fded1;
|
5127
5131
|
};
|
5132
|
+
"fab": typeof wc12f88f4b9cf142cc8e5f6b203e55c873 extends {
|
5133
|
+
propsDefinition: infer TProp;
|
5134
|
+
} ? {
|
5135
|
+
new (...args: any[]): {
|
5136
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5137
|
+
};
|
5138
|
+
} : typeof wc12f88f4b9cf142cc8e5f6b203e55c873;
|
5128
5139
|
"flex": typeof wc1691e25d963243f9b78a548fe8d2e8a7 extends {
|
5129
5140
|
propsDefinition: infer TProp;
|
5130
5141
|
} ? {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.181-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.181-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,5 +0,0 @@
|
|
1
|
-
export declare function isEmptyObject(item: any): boolean;
|
2
|
-
export declare function objectKeysWithFilter(object: any, includeFunctions: boolean): Array<string>;
|
3
|
-
export declare function mergeObjects<T extends object = object>(target: T, nullOrUndefinedValueCustomHandler: (missingPropertyName: string, parent: object, defaultValue: object) => object, emptyStringValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, emptyArrayValueCustomHandler: (propertyName: string, parent: object, defaultValue: object) => object, ...sources: T[]): T;
|
4
|
-
export declare function customNullCondition<T extends object = object>(target: T, condition: (target: T) => boolean): T;
|
5
|
-
export declare function deleteNullProperties<T extends object = object>(target: T, disableTreatingEmptyStringAsNull: boolean, disableTreatingFalseAsNull: boolean, disableTreatingZeroAsNull: boolean, disableTreatingEmptyArrayAsNull: boolean): void;
|