@omnia/fx-models 8.0.339-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/Constants.d.ts CHANGED
@@ -196,6 +196,7 @@ export declare const Constants: {
196
196
  omniaPublishingCore: guid;
197
197
  omniaTeamworkCore: guid;
198
198
  aiEngine: guid;
199
+ seoCore: guid;
199
200
  };
200
201
  app: {
201
202
  tableName: string;
package/Constants.js CHANGED
@@ -227,7 +227,8 @@ exports.Constants = {
227
227
  omniaCommunitiesCore: (0, models_1.guid)("8c2d5ec7-9454-46ef-8039-0aa9cb834d48"),
228
228
  omniaPublishingCore: (0, models_1.guid)("dcf426dd-1488-46ca-b7b1-6c174b29d28b"),
229
229
  omniaTeamworkCore: (0, models_1.guid)("a3bdc65e-ef63-4f8e-92fd-f9c8b527fe8d"),
230
- aiEngine: (0, models_1.guid)("f976ad6f-987f-44e6-973a-097d81f73fc7")
230
+ aiEngine: (0, models_1.guid)("f976ad6f-987f-44e6-973a-097d81f73fc7"),
231
+ seoCore: (0, models_1.guid)("27448096-ad28-49a3-9b3d-bb12abb5a182")
231
232
  },
232
233
  app: {
233
234
  tableName: "AppInstances",
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|precio\\administrator, EntityType: "User" }
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 Precio Fishbone. In order to use Omnia Fx you need a product license for one of the following products:
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/preciofishbone/OmniaDocs
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.339-dev",
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/preciofishbone/OmniaFx"
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": "Precio Fishbone",
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/preciofishbone/OmniaFx/issues"
24
+ "url": "https://github.com/omniaintranet/OmniaFx/issues"
27
25
  },
28
- "homepage": "https://github.com/preciofishbone/OmniaFx#readme"
29
- }
26
+ "homepage": "https://github.com/omniaintranet/OmniaFx#readme"
27
+ }