@omnia/fx 8.0.383-dev → 8.0.385-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/services/SecurityService.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ButtonsEditorStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker_old.d.ts +475 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/renderers/SwatchRenderer.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/stores/ColorPickerStore.d.ts +48 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +23 -30
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +58 -1
- package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +1 -13
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +27 -79
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/CellRenderer.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +4 -26
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/sitelogoicon/SiteLogoIcon.d.ts +9 -12
- package/internal-do-not-import-from-here/wctypings.d.ts +28 -0
- package/package.json +3 -3
@@ -5,5 +5,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ScrollContai
|
|
5
5
|
"v-slots"?: {} & Omit<{
|
6
6
|
default?: import("vue").Slot;
|
7
7
|
}, never>;
|
8
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "width" | "filled" | "class" | "colorSchemaType" | "colors" | "toned" | "
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "width" | "filled" | "class" | "colorSchemaType" | "colors" | "toned" | "disableScrolling" | "getApi" | "compensatScrollbar" | "dynamicHeight" | "scrolling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
9
|
export default _default;
|
@@ -1,23 +1,23 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
import { SelectionItem } from "..";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
items?: SelectionItem<any>[];
|
4
|
+
} & {
|
5
|
+
"emit:update:modelValue": (value: SelectionItem<any>) => void;
|
6
|
+
} & {
|
7
|
+
"v-model"?: SelectionItem<any>;
|
8
|
+
} & {
|
9
|
+
modelValue?: SelectionItem<any>;
|
10
|
+
} & {
|
8
11
|
loading?: boolean;
|
9
|
-
|
12
|
+
} & {
|
13
|
+
label?: string;
|
14
|
+
} & {
|
10
15
|
disabled?: boolean;
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
beforeDestroy(): void;
|
20
|
-
private handleChange;
|
21
|
-
private handleTokenChange;
|
22
|
-
render(): import("vue/jsx-runtime").JSX.Element;
|
23
|
-
}
|
16
|
+
}> & {
|
17
|
+
"onUpdate:modelValue"?: (value: SelectionItem<any>) => any;
|
18
|
+
} & {
|
19
|
+
"v-slots"?: {} & Omit<{
|
20
|
+
default?: import("vue").Slot;
|
21
|
+
}, never>;
|
22
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "disabled" | "modelValue" | "items" | "loading" | "v-model" | "emit:update:modelValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
23
|
+
export default _default;
|
@@ -1,15 +1,12 @@
|
|
1
|
-
|
2
|
-
import { IWebComponentInstance } from "../..";
|
3
|
-
import { ISiteLogoIcon } from "./ISiteLogoIcon";
|
4
|
-
import { SiteStore } from "../../stores";
|
5
|
-
export declare class SiteLogoIcon extends VueComponentBase implements IWebComponentInstance, ISiteLogoIcon {
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
2
|
forceLetterAvatar?: boolean;
|
3
|
+
} & {
|
7
4
|
siteUrl?: string;
|
5
|
+
} & {
|
8
6
|
size?: number;
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
}
|
7
|
+
}> & {} & {
|
8
|
+
"v-slots"?: {} & Omit<{
|
9
|
+
default?: import("vue").Slot;
|
10
|
+
}, never>;
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "size" | "forceLetterAvatar" | "siteUrl"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
|
+
export default _default;
|
@@ -61,6 +61,7 @@ import wcec81357974804c539bff6c58a8785c22 from './ux/identitypicker/IdentityPick
|
|
61
61
|
import wc5d74b2de65164761a3dce6a534b64bd1 from './ux/identitypicker/IdentityPickerDialog';
|
62
62
|
import wc70593d481fa54e68be9f4fe41f0f5c92 from './ux/identitypicker/IdentityPickerButton';
|
63
63
|
import wc91919b3f54de42dab709575b8a9ca233 from './ux/inputlanguagepicker/InputLanguagePicker';
|
64
|
+
import wcdb657792b7d541d7a90dd4488bd1034e from './ux/inputtoken/InputToken';
|
64
65
|
import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/Journey';
|
65
66
|
import wc4357bb8264e3482c8710afed3b2be35c from './ux/journey/JourneyBlade';
|
66
67
|
import wc0ce695fbce6f4c08906de47bbd84152d from './ux/journey/JourneyPlaceHolder';
|
@@ -110,6 +111,7 @@ import wc8c7794090eb647eb8510b39cbefa17a7 from './ux/rollupempty/RollupEmpty';
|
|
110
111
|
import wc327f0bbcccdf4ad6b43b86816c61d6c9 from './ux/rollupfilter/RollupFilter';
|
111
112
|
import wc0ed31f854a244481a011ce4fa4aa5436 from './ux/rollupfilter/RollupFilterPicker';
|
112
113
|
import wc379287b1efe64a49a43fcd754d1fd951 from './ux/securitytrimmer/SecurityTrimmer';
|
114
|
+
import wcd77bfe700fa84b5d9d2cb578660fc364 from './ux/selection/SelectionComponent';
|
113
115
|
import wcc0de4753b9fe4004b0f4e6b6b91730ab from './ux/settings/SettingsPane';
|
114
116
|
import wc67a7bdf58e82465d8f3fc32413512932 from './ux/shapedivider/ShapeDividerSettings';
|
115
117
|
import wce11da8c3cd654c1e8701db2c69e423de from './ux/shapedivider/ShapeDivider';
|
@@ -123,6 +125,7 @@ import wc535ac075284646eca569a78457213e6f from './ux/signin/omnia/Login';
|
|
123
125
|
import wc2b741f0203a54cb5a7be72e204ebecc8 from './ux/signin/identitycreationrequest/IdentityCreationRequestView';
|
124
126
|
import wcffcb5f0ddcfd445d81683167f298c336 from './ux/signin/identitycreationrequest/ConfirmEmailView';
|
125
127
|
import wcf297290b5ea4409a9738ca880f1ea612 from './ux/signout/Logout';
|
128
|
+
import wcb000c2b3b2114ea5b90511ead32741c4 from './ux/sitelogoicon/SiteLogoIcon';
|
126
129
|
import wc9be9d4f831fd4d15ab09d235d5cd6a38 from './ux/social/Comment';
|
127
130
|
import wc239412079c474a78b857dd4bdca3ff84 from './ux/social/PeopleTagging';
|
128
131
|
import wcd737feca8c0e44c1808f6f016122f8ea from './ux/social/CommentDialog';
|
@@ -1561,6 +1564,13 @@ declare global {
|
|
1561
1564
|
};
|
1562
1565
|
} : typeof wc91919b3f54de42dab709575b8a9ca233;
|
1563
1566
|
};
|
1567
|
+
"token": typeof wcdb657792b7d541d7a90dd4488bd1034e extends {
|
1568
|
+
propsDefinition: infer TProp;
|
1569
|
+
} ? {
|
1570
|
+
new (...args: any[]): {
|
1571
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1572
|
+
};
|
1573
|
+
} : typeof wcdb657792b7d541d7a90dd4488bd1034e;
|
1564
1574
|
"style": {
|
1565
1575
|
"picker": typeof wcd84a5b45429344d29a084ade31ad668d extends {
|
1566
1576
|
propsDefinition: infer TProp;
|
@@ -2195,6 +2205,13 @@ declare global {
|
|
2195
2205
|
};
|
2196
2206
|
} : typeof wc379287b1efe64a49a43fcd754d1fd951;
|
2197
2207
|
};
|
2208
|
+
"selection": typeof wcd77bfe700fa84b5d9d2cb578660fc364 extends {
|
2209
|
+
propsDefinition: infer TProp;
|
2210
|
+
} ? {
|
2211
|
+
new (...args: any[]): {
|
2212
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2213
|
+
};
|
2214
|
+
} : typeof wcd77bfe700fa84b5d9d2cb578660fc364;
|
2198
2215
|
"shape": {
|
2199
2216
|
"divider": {
|
2200
2217
|
"settings": typeof wc67a7bdf58e82465d8f3fc32413512932 extends {
|
@@ -2297,6 +2314,17 @@ declare global {
|
|
2297
2314
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2298
2315
|
};
|
2299
2316
|
} : typeof wcf297290b5ea4409a9738ca880f1ea612;
|
2317
|
+
"site": {
|
2318
|
+
"logo": {
|
2319
|
+
"icon": typeof wcb000c2b3b2114ea5b90511ead32741c4 extends {
|
2320
|
+
propsDefinition: infer TProp;
|
2321
|
+
} ? {
|
2322
|
+
new (...args: any[]): {
|
2323
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2324
|
+
};
|
2325
|
+
} : typeof wcb000c2b3b2114ea5b90511ead32741c4;
|
2326
|
+
};
|
2327
|
+
};
|
2300
2328
|
"comment": {
|
2301
2329
|
"component": typeof wc9be9d4f831fd4d15ab09d235d5cd6a38 extends {
|
2302
2330
|
propsDefinition: infer TProp;
|
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.385-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,13 +20,13 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.385-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
27
27
|
"splitpanes": "3.1.5",
|
28
28
|
"vue": "3.5.13",
|
29
|
-
"vuetify": "3.7.
|
29
|
+
"vuetify": "3.7.12",
|
30
30
|
"tslib": "2.6.2",
|
31
31
|
"typescript": "5.7.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|