@omnia/fx-models 8.0.340-dev → 8.0.341-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/Enums.js
CHANGED
@@ -772,7 +772,7 @@ var IdentityUserIdTypeMatch;
|
|
772
772
|
(function (IdentityUserIdTypeMatch) {
|
773
773
|
//Example: {Id: c:0\u002b.w|s-1-5-21-1111812947-3881384297-199475092-571, Entitype: 'SecGroup'}
|
774
774
|
IdentityUserIdTypeMatch["SPOnpremAdGroup"] = "c:0+";
|
775
|
-
//Example: { Id: i:0#.w|
|
775
|
+
//Example: { Id: i:0#.w|YOURDOMAIN\\administrator, EntityType: "User" }
|
776
776
|
IdentityUserIdTypeMatch["SPOnpremAdUser"] = "\\";
|
777
777
|
//Empty not yet use
|
778
778
|
IdentityUserIdTypeMatch["AzureAdGroup"] = "";
|
package/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Omnia Fx Tooling
|
2
2
|
|
3
|
-
Omnia Fx Tooling is a product from
|
3
|
+
Omnia Fx Tooling is a product from Omnia Digital Workplace AB. In order to use Omnia Fx you need a product license for one of the following products:
|
4
4
|
|
5
5
|
### Documentation
|
6
|
-
https://github.com/
|
6
|
+
https://github.com/omniaintranet/OmniaDocs
|
@@ -10,6 +10,15 @@ export type VelcronOnSavingEvent = {
|
|
10
10
|
export type VelcronOnActiveEvent = {
|
11
11
|
onActive?: Array<string>;
|
12
12
|
};
|
13
|
+
export type VelcronOnPressOutsideEvent = {
|
14
|
+
onPressOutside?: Array<string>;
|
15
|
+
};
|
16
|
+
export type VelcronOnPointerEnterEvent = {
|
17
|
+
onPointerEnter?: Array<string>;
|
18
|
+
};
|
19
|
+
export type VelcronOnPointerLeaveEvent = {
|
20
|
+
onPointerLeave?: Array<string>;
|
21
|
+
};
|
13
22
|
export type VelcronOnPersistingStateEvent = {
|
14
23
|
onPersistState?: Array<string>;
|
15
24
|
onRestoreState?: Array<string>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerFillBlueprint, BackgroundDefinition, BlueprintVariant, IconBlueprint, ButtonBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
1
|
+
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerFillBlueprint, BackgroundDefinition, BlueprintVariant, IconBlueprint, ButtonBlueprint, VelcronOnPressOutsideEvent, VelcronOnPointerEnterEvent, VelcronOnPointerLeaveEvent } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
import { VelcronComponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
|
3
3
|
import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
|
4
4
|
import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
|
@@ -39,6 +39,7 @@ export interface BuiltInComponentRenderers {
|
|
39
39
|
"editor": unknown;
|
40
40
|
"link": unknown;
|
41
41
|
"motion": unknown;
|
42
|
+
"scroll": unknown;
|
42
43
|
}
|
43
44
|
export interface ColorSchemaReference {
|
44
45
|
name: string;
|
@@ -213,7 +214,7 @@ export interface VelcronGridDefinition extends VelcronDefinition {
|
|
213
214
|
}
|
214
215
|
export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow {
|
215
216
|
type: "row";
|
216
|
-
events?: VelcronOnPressEvent;
|
217
|
+
events?: VelcronOnPressEvent & VelcronOnPressOutsideEvent & VelcronOnPointerEnterEvent & VelcronOnPointerLeaveEvent;
|
217
218
|
direction?: VelcronBindableProp<"row" | "row-reverse">;
|
218
219
|
position?: VelcronBindableProp<VelcronPosition>;
|
219
220
|
zIndex?: VelcronBindableProp<number>;
|
@@ -378,6 +379,12 @@ export interface VelcronSlidePanelDefinition extends VelcronDefinition {
|
|
378
379
|
slides?: VelcronSlidePanelSlidesOptions;
|
379
380
|
styles?: VelcronSlidePanelStyles;
|
380
381
|
}
|
382
|
+
export interface VelcronScrollDefinition extends VelcronDefinition {
|
383
|
+
type: "scroll";
|
384
|
+
events?: VelcronOnPressEvent;
|
385
|
+
height?: number | string;
|
386
|
+
dynamicHeight?: boolean;
|
387
|
+
}
|
381
388
|
export interface VelcronEditorRendererDefinition extends VelcronDefinition {
|
382
389
|
type: "editor";
|
383
390
|
editor: VelcronEditor;
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx-models",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.341-dev",
|
5
5
|
"description": "Provide Omnia Fx Models Stuffs.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
8
8
|
},
|
9
9
|
"repository": {
|
10
10
|
"type": "git",
|
11
|
-
"url": "git+https://github.com/
|
11
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
12
12
|
},
|
13
13
|
"keywords": [
|
14
14
|
"omnia",
|
@@ -17,13 +17,11 @@
|
|
17
17
|
"office365",
|
18
18
|
"sharepoint"
|
19
19
|
],
|
20
|
-
"author": "
|
21
|
-
"dependencies": {
|
22
|
-
|
23
|
-
},
|
20
|
+
"author": "Omnia Digital Workplace AB",
|
21
|
+
"dependencies": {},
|
24
22
|
"typings": "./index.d.ts",
|
25
23
|
"bugs": {
|
26
|
-
"url": "https://github.com/
|
24
|
+
"url": "https://github.com/omniaintranet/OmniaFx/issues"
|
27
25
|
},
|
28
|
-
"homepage": "https://github.com/
|
29
|
-
}
|
26
|
+
"homepage": "https://github.com/omniaintranet/OmniaFx#readme"
|
27
|
+
}
|