@omnia/fx 8.0.439-dev → 8.0.440-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.
@@ -25,6 +25,7 @@ export declare namespace MediaPickerLocalization {
25
25
  RemoveScalingSettings: {
26
26
  Title: string;
27
27
  Message: string;
28
+ MessageBody: string;
28
29
  };
29
30
  CropRatios: {
30
31
  Title: string;
@@ -35,7 +36,14 @@ export declare namespace MediaPickerLocalization {
35
36
  RemoveRatioConfirmDialog: {
36
37
  Title: string;
37
38
  Message: string;
39
+ MessageBody: string;
38
40
  };
41
+ CreateCropRatio: string;
42
+ EditCropRatio: string;
43
+ };
44
+ Scalings: {
45
+ CreateScaling: string;
46
+ EditScaling: string;
39
47
  };
40
48
  }
41
49
  }
@@ -4,12 +4,13 @@ export declare namespace OmniaRedirectLocalize {
4
4
  Settings: {
5
5
  Title: string;
6
6
  Detail: {
7
- Add: string;
8
- Edit: string;
7
+ CreateRedirect: string;
8
+ EditRedirect: string;
9
9
  SourcePath: string;
10
10
  TargetPath: string;
11
11
  PermanentRedirect: string;
12
12
  RedirectType: string;
13
+ DeleteRedirectConfirmation: string;
13
14
  };
14
15
  Type: {
15
16
  StatusRedirect: string;
@@ -1 +0,0 @@
1
- export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1 +0,0 @@
1
- export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
@@ -15,13 +15,6 @@ export declare function defineBlade<TRoute extends JourneyBladeRoute = {}>(blade
15
15
  moveNext(): void;
16
16
  movePrev(): void;
17
17
  travelTo(toBladeId: guid): void;
18
- defineValueToSave<T>(value?: T, defineDisabledClone?: boolean): {
19
- value: T;
20
- /**
21
- * reset initial value to trigger new watching value change.
22
- */
23
- resetValue: (value: T, disabledClone?: boolean) => void;
24
- };
25
18
  defineValueToCommit<T>(value?: T, defineDisabledClone?: boolean): {
26
19
  value: T;
27
20
  /**
@@ -7,7 +7,7 @@ type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> &
7
7
  index: number;
8
8
  }) => VNodeChild> & DefineSlot<"selectionRenderV2", (item: {
9
9
  SelectionRenderer: JourneySelectBladeElement;
10
- }) => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: TItem, index: number) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:clear", () => true> & DefineProp<"onClickAdd", (item: Array<TItem> | TItem) => void | boolean | Promise<boolean>> & DefineProp<"onClickUpdate", (item: TItem, index: number) => void | boolean | Promise<boolean>> & DefineProp<"onClickDelete", (item: TItem, index: number) => void | boolean | Promise<boolean>>;
10
+ }) => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: TItem, index: number) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:clear", () => true> & DefineProp<"onClickAdd", (item: Array<TItem> | TItem) => void | boolean | Promise<boolean>> & DefineProp<"onRemoveItem", (item: TItem) => void | boolean | Promise<boolean>> & DefineProp<"onClickUpdate", (item: TItem, index: number) => void | boolean | Promise<boolean>> & DefineProp<"onClickDelete", (item: TItem, index: number) => void | boolean | Promise<boolean>>;
11
11
  declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/ux").ExtractProps<BaseProps<TItem>> & {
12
12
  "onUpdate:modelValue"?: (value: any) => any;
13
13
  "onClick:clear"?: () => any;
@@ -32,5 +32,5 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
32
32
  } & Omit<{
33
33
  default?: import("vue").Slot;
34
34
  }, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender" | "settingsRenderV2" | "selectionRenderV2">;
35
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "items" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "readonly" | "slot:actions" | "emit:update:modelValue" | "v-model" | "colors" | "toned" | "emit:search" | "getApi" | "emit:click:clear" | "itemDeletable" | "sortable" | "labelAdd" | "propertyValueMapping" | "returnSelectionAsObject" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "emit:showAdd" | "emit:showEdit" | "onClickAdd" | "onClickUpdate" | "onClickDelete"> & import("@omnia/fx/ux").VNodeEvents) => any;
35
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "items" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "readonly" | "slot:actions" | "emit:update:modelValue" | "v-model" | "colors" | "toned" | "emit:search" | "getApi" | "emit:click:clear" | "itemDeletable" | "sortable" | "labelAdd" | "propertyValueMapping" | "returnSelectionAsObject" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "emit:showAdd" | "emit:showEdit" | "onClickAdd" | "onRemoveItem" | "onClickUpdate" | "onClickDelete"> & import("@omnia/fx/ux").VNodeEvents) => any;
36
36
  export default _default;
@@ -0,0 +1,18 @@
1
+ import { DefineProp, DefineSlot, ItemValueType } from "@omnia/fx/ux";
2
+ import { VNodeChild } from "vue";
3
+ declare const emptyArray: any[];
4
+ type VirtualScrollProps<T> = DefineProp<"maxHeight", string | number, false, null, "Sets the maximum height for the component."> & DefineProp<"maxWidth", string | number, false, null, "Sets the maximum width for the component."> & DefineProp<"minHeight", string | number, false, null, "Sets the minimum height for the component."> & DefineProp<"minWidth", string | number, false, null, "Sets the minimum width for the component."> & DefineProp<"width", string | number, false, null, "Sets the width for the component."> & DefineProp<"height", string | number, false, null, "Height of the component as a css value."> & DefineProp<"itemHeight", string | number, false, null, "Height in pixels of each item to display."> & DefineProp<"itemKey", ItemValueType<T>, false, null, "Should point to a property with a unique value for each item, if not set then item index will be used as a key which may result in unnecessary re-renders."> & DefineProp<"items", T[], false, typeof emptyArray, "The array of items to display."> & DefineSlot<"default", (value: {
5
+ item: T;
6
+ index: number;
7
+ }) => VNodeChild>;
8
+ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<VirtualScrollProps<T>> & {} & {
9
+ "v-slots"?: {
10
+ default?: (value: {
11
+ item: T;
12
+ index: number;
13
+ }) => VNodeChild;
14
+ } & Omit<{
15
+ default?: import("vue").Slot;
16
+ }, "default">;
17
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "items" | "itemHeight" | "itemKey" | "slot:default"> & import("@omnia/fx/ux").VNodeEvents) => any;
18
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
@@ -0,0 +1,6 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
+ "v-slots"?: {} & Omit<{
3
+ default?: import("vue").Slot;
4
+ }, never>;
5
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
@@ -353,6 +353,7 @@ import wc19adb19938604f41b10f3a00eb3eb534 from './ux/oxide/tooltip/Tooltip';
353
353
  import wc943114ca0d5c4f48a881eb6e047daf4d from './ux/oxide/treeview/OTreeViewV3';
354
354
  import wcc617a9d7e25249929c41becb55905973 from './ux/oxide/treeview/Treeview';
355
355
  import wc1e7fa637f4914cbeb9ceb6d577fec150 from './ux/oxide/validation/Validation';
356
+ import wca7b4c5ba709144929fbfacfbb0d61d58 from './ux/oxide/virtualscroll/VirtualScroll';
356
357
  import wc87d2f5f7fa15440ba71dbb642b0dcf38 from './ux/post/templates/PostTemplate';
357
358
  import wc8270a3e368484538870b0bc4a6654234 from './ux/properties/block/PropertyBlock';
358
359
  import wcab2cfe16632d45b5bab39e05612982a3 from './ux/properties/block/PropertyBlockSettings';
@@ -5706,6 +5707,15 @@ declare global {
5706
5707
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5707
5708
  };
5708
5709
  } : typeof wc1e7fa637f4914cbeb9ceb6d577fec150;
5710
+ "virtual": {
5711
+ "scroll": typeof wca7b4c5ba709144929fbfacfbb0d61d58 extends {
5712
+ propsDefinition: infer TProp;
5713
+ } ? {
5714
+ new (...args: any[]): {
5715
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5716
+ };
5717
+ } : typeof wca7b4c5ba709144929fbfacfbb0d61d58;
5718
+ };
5709
5719
  "demo": typeof wcc9d01726f5594902bf4de68612b186de extends {
5710
5720
  propsDefinition: infer TProp;
5711
5721
  } ? {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.439-dev",
4
+ "version": "8.0.440-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": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.439-dev",
23
+ "@omnia/fx-models": "8.0.440-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",