@omnia/fx 8.0.212-dev → 8.0.214-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/internal-do-not-import-from-here/core/messaging/InternalTopics.d.ts +0 -3
  2. package/internal-do-not-import-from-here/core/utils/EnterprisePropertyHandler.d.ts +9 -0
  3. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  5. package/internal-do-not-import-from-here/runtime/core/InternalWebComponentBootstrapper.d.ts +10 -1
  6. package/internal-do-not-import-from-here/runtime/core/ManifestResourceLoader.d.ts +1 -0
  7. package/internal-do-not-import-from-here/runtime/workers/ResolveRules.d.ts +1 -0
  8. package/internal-do-not-import-from-here/services/identities/DynamicGroupService.d.ts +3 -3
  9. package/internal-do-not-import-from-here/stores/DynamicGroupStore.d.ts +1 -0
  10. package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +0 -5
  11. package/internal-do-not-import-from-here/stores/UserTypeIdentityStore.d.ts +0 -1
  12. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +24 -0
  13. package/internal-do-not-import-from-here/ux/admin/system/loc/localize.d.ts +1 -0
  14. package/internal-do-not-import-from-here/ux/admin/system/submenu/auditlogs/blades/ListingBlade.d.ts +5 -0
  15. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +84 -0
  16. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +84 -0
  17. package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +1 -0
  18. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +2 -1
  19. package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +46 -15
  20. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datetimefield/DatetimeFieldDisplay.d.ts +75 -26
  21. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datetimefield/IDatetimeFieldDisplay.d.ts +0 -12
  22. package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +2 -0
  24. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +1 -0
  25. package/internal-do-not-import-from-here/ux/magiclink/MagicLinkSuccess.d.ts +46 -15
  26. package/internal-do-not-import-from-here/ux/magiclink/Shared.d.ts +4 -1
  27. package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +2 -0
  28. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.css.d.ts +2 -0
  29. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +13 -0
  30. package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +14 -1
  31. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +49 -36
  32. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +9 -0
  33. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +1 -0
  34. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +13 -0
  35. package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +13 -0
  36. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +21 -0
  37. package/internal-do-not-import-from-here/ux/signin/omnia/providers/AuthProviders.d.ts +2 -0
  38. package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +56 -32
  39. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +4 -3
  40. package/internal-do-not-import-from-here/ux/velcron/editor/components/EditorCanvas.css.d.ts +3 -0
  41. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +50 -15
  42. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentPropertyDescriptorTemplates.d.ts +21 -0
  43. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentePropertiesGroupDescriptorTemplates.d.ts +8 -0
  44. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +7 -2
  45. package/internal-do-not-import-from-here/wctypings.d.ts +13 -0
  46. package/package.json +3 -3
  47. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +0 -4
  48. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +0 -7
  49. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +0 -15
@@ -993,6 +993,7 @@ export declare const useTypographyBlueprintStore: () => {
993
993
  })[];
994
994
  acrylic?: boolean;
995
995
  };
996
+ pattern?: "solid" | "dotted" | "dashed";
996
997
  };
997
998
  elevation?: number;
998
999
  media?: {
@@ -1131,6 +1132,7 @@ export declare const useTypographyBlueprintStore: () => {
1131
1132
  })[];
1132
1133
  acrylic?: boolean;
1133
1134
  };
1135
+ pattern?: "solid" | "dotted" | "dashed";
1134
1136
  };
1135
1137
  elevation?: number;
1136
1138
  media?: {
@@ -1269,6 +1271,7 @@ export declare const useTypographyBlueprintStore: () => {
1269
1271
  })[];
1270
1272
  acrylic?: boolean;
1271
1273
  };
1274
+ pattern?: "solid" | "dotted" | "dashed";
1272
1275
  };
1273
1276
  elevation?: number;
1274
1277
  media?: {
@@ -1407,6 +1410,7 @@ export declare const useTypographyBlueprintStore: () => {
1407
1410
  })[];
1408
1411
  acrylic?: boolean;
1409
1412
  };
1413
+ pattern?: "solid" | "dotted" | "dashed";
1410
1414
  };
1411
1415
  elevation?: number;
1412
1416
  media?: {
@@ -1545,6 +1549,7 @@ export declare const useTypographyBlueprintStore: () => {
1545
1549
  })[];
1546
1550
  acrylic?: boolean;
1547
1551
  };
1552
+ pattern?: "solid" | "dotted" | "dashed";
1548
1553
  };
1549
1554
  elevation?: number;
1550
1555
  media?: {
@@ -1683,6 +1688,7 @@ export declare const useTypographyBlueprintStore: () => {
1683
1688
  })[];
1684
1689
  acrylic?: boolean;
1685
1690
  };
1691
+ pattern?: "solid" | "dotted" | "dashed";
1686
1692
  };
1687
1693
  elevation?: number;
1688
1694
  media?: {
@@ -1821,6 +1827,7 @@ export declare const useTypographyBlueprintStore: () => {
1821
1827
  })[];
1822
1828
  acrylic?: boolean;
1823
1829
  };
1830
+ pattern?: "solid" | "dotted" | "dashed";
1824
1831
  };
1825
1832
  elevation?: number;
1826
1833
  media?: {
@@ -1959,6 +1966,7 @@ export declare const useTypographyBlueprintStore: () => {
1959
1966
  })[];
1960
1967
  acrylic?: boolean;
1961
1968
  };
1969
+ pattern?: "solid" | "dotted" | "dashed";
1962
1970
  };
1963
1971
  elevation?: number;
1964
1972
  media?: {
@@ -2097,6 +2105,7 @@ export declare const useTypographyBlueprintStore: () => {
2097
2105
  })[];
2098
2106
  acrylic?: boolean;
2099
2107
  };
2108
+ pattern?: "solid" | "dotted" | "dashed";
2100
2109
  };
2101
2110
  elevation?: number;
2102
2111
  media?: {
@@ -2237,6 +2246,7 @@ export declare const useTypographyBlueprintStore: () => {
2237
2246
  })[];
2238
2247
  acrylic?: boolean;
2239
2248
  };
2249
+ pattern?: "solid" | "dotted" | "dashed";
2240
2250
  };
2241
2251
  elevation?: number;
2242
2252
  media?: {
@@ -2375,6 +2385,7 @@ export declare const useTypographyBlueprintStore: () => {
2375
2385
  })[];
2376
2386
  acrylic?: boolean;
2377
2387
  };
2388
+ pattern?: "solid" | "dotted" | "dashed";
2378
2389
  };
2379
2390
  elevation?: number;
2380
2391
  media?: {
@@ -2513,6 +2524,7 @@ export declare const useTypographyBlueprintStore: () => {
2513
2524
  })[];
2514
2525
  acrylic?: boolean;
2515
2526
  };
2527
+ pattern?: "solid" | "dotted" | "dashed";
2516
2528
  };
2517
2529
  elevation?: number;
2518
2530
  media?: {
@@ -2651,6 +2663,7 @@ export declare const useTypographyBlueprintStore: () => {
2651
2663
  })[];
2652
2664
  acrylic?: boolean;
2653
2665
  };
2666
+ pattern?: "solid" | "dotted" | "dashed";
2654
2667
  };
2655
2668
  elevation?: number;
2656
2669
  media?: {
@@ -2789,6 +2802,7 @@ export declare const useTypographyBlueprintStore: () => {
2789
2802
  })[];
2790
2803
  acrylic?: boolean;
2791
2804
  };
2805
+ pattern?: "solid" | "dotted" | "dashed";
2792
2806
  };
2793
2807
  elevation?: number;
2794
2808
  media?: {
@@ -2927,6 +2941,7 @@ export declare const useTypographyBlueprintStore: () => {
2927
2941
  })[];
2928
2942
  acrylic?: boolean;
2929
2943
  };
2944
+ pattern?: "solid" | "dotted" | "dashed";
2930
2945
  };
2931
2946
  elevation?: number;
2932
2947
  media?: {
@@ -3065,6 +3080,7 @@ export declare const useTypographyBlueprintStore: () => {
3065
3080
  })[];
3066
3081
  acrylic?: boolean;
3067
3082
  };
3083
+ pattern?: "solid" | "dotted" | "dashed";
3068
3084
  };
3069
3085
  elevation?: number;
3070
3086
  media?: {
@@ -3203,6 +3219,7 @@ export declare const useTypographyBlueprintStore: () => {
3203
3219
  })[];
3204
3220
  acrylic?: boolean;
3205
3221
  };
3222
+ pattern?: "solid" | "dotted" | "dashed";
3206
3223
  };
3207
3224
  elevation?: number;
3208
3225
  media?: {
@@ -3341,6 +3358,7 @@ export declare const useTypographyBlueprintStore: () => {
3341
3358
  })[];
3342
3359
  acrylic?: boolean;
3343
3360
  };
3361
+ pattern?: "solid" | "dotted" | "dashed";
3344
3362
  };
3345
3363
  elevation?: number;
3346
3364
  media?: {
@@ -3482,6 +3500,7 @@ export declare const useTypographyBlueprintStore: () => {
3482
3500
  })[];
3483
3501
  acrylic?: boolean;
3484
3502
  };
3503
+ pattern?: "solid" | "dotted" | "dashed";
3485
3504
  };
3486
3505
  elevation?: number;
3487
3506
  media?: {
@@ -3639,6 +3658,7 @@ export declare const useTypographyBlueprintStore: () => {
3639
3658
  })[];
3640
3659
  acrylic?: boolean;
3641
3660
  };
3661
+ pattern?: "solid" | "dotted" | "dashed";
3642
3662
  };
3643
3663
  elevation?: number;
3644
3664
  media?: {
@@ -3766,6 +3786,7 @@ export declare const useTypographyBlueprintStore: () => {
3766
3786
  })[];
3767
3787
  acrylic?: boolean;
3768
3788
  };
3789
+ pattern?: "solid" | "dotted" | "dashed";
3769
3790
  };
3770
3791
  elevation?: number;
3771
3792
  media?: {
@@ -3829,6 +3850,7 @@ export declare const useTypographyBlueprintStore: () => {
3829
3850
  })[];
3830
3851
  acrylic?: boolean;
3831
3852
  };
3853
+ pattern?: "solid" | "dotted" | "dashed";
3832
3854
  };
3833
3855
  elevation?: number;
3834
3856
  media?: {
@@ -3986,6 +4008,7 @@ export declare const useTypographyBlueprintStore: () => {
3986
4008
  })[];
3987
4009
  acrylic?: boolean;
3988
4010
  };
4011
+ pattern?: "solid" | "dotted" | "dashed";
3989
4012
  };
3990
4013
  elevation?: number;
3991
4014
  media?: {
@@ -4113,6 +4136,7 @@ export declare const useTypographyBlueprintStore: () => {
4113
4136
  })[];
4114
4137
  acrylic?: boolean;
4115
4138
  };
4139
+ pattern?: "solid" | "dotted" | "dashed";
4116
4140
  };
4117
4141
  elevation?: number;
4118
4142
  media?: {
@@ -4176,6 +4200,7 @@ export declare const useTypographyBlueprintStore: () => {
4176
4200
  })[];
4177
4201
  acrylic?: boolean;
4178
4202
  };
4203
+ pattern?: "solid" | "dotted" | "dashed";
4179
4204
  };
4180
4205
  elevation?: number;
4181
4206
  media?: {
@@ -4333,6 +4358,7 @@ export declare const useTypographyBlueprintStore: () => {
4333
4358
  })[];
4334
4359
  acrylic?: boolean;
4335
4360
  };
4361
+ pattern?: "solid" | "dotted" | "dashed";
4336
4362
  };
4337
4363
  elevation?: number;
4338
4364
  media?: {
@@ -4460,6 +4486,7 @@ export declare const useTypographyBlueprintStore: () => {
4460
4486
  })[];
4461
4487
  acrylic?: boolean;
4462
4488
  };
4489
+ pattern?: "solid" | "dotted" | "dashed";
4463
4490
  };
4464
4491
  elevation?: number;
4465
4492
  media?: {
@@ -4523,6 +4550,7 @@ export declare const useTypographyBlueprintStore: () => {
4523
4550
  })[];
4524
4551
  acrylic?: boolean;
4525
4552
  };
4553
+ pattern?: "solid" | "dotted" | "dashed";
4526
4554
  };
4527
4555
  elevation?: number;
4528
4556
  media?: {
@@ -4680,6 +4708,7 @@ export declare const useTypographyBlueprintStore: () => {
4680
4708
  })[];
4681
4709
  acrylic?: boolean;
4682
4710
  };
4711
+ pattern?: "solid" | "dotted" | "dashed";
4683
4712
  };
4684
4713
  elevation?: number;
4685
4714
  media?: {
@@ -4807,6 +4836,7 @@ export declare const useTypographyBlueprintStore: () => {
4807
4836
  })[];
4808
4837
  acrylic?: boolean;
4809
4838
  };
4839
+ pattern?: "solid" | "dotted" | "dashed";
4810
4840
  };
4811
4841
  elevation?: number;
4812
4842
  media?: {
@@ -5023,6 +5053,7 @@ export declare const useTypographyBlueprintStore: () => {
5023
5053
  })[];
5024
5054
  acrylic?: boolean;
5025
5055
  };
5056
+ pattern?: "solid" | "dotted" | "dashed";
5026
5057
  };
5027
5058
  elevation?: number;
5028
5059
  media?: {
@@ -5242,6 +5273,7 @@ export declare const useTypographyBlueprintStore: () => {
5242
5273
  })[];
5243
5274
  acrylic?: boolean;
5244
5275
  };
5276
+ pattern?: "solid" | "dotted" | "dashed";
5245
5277
  };
5246
5278
  elevation?: number;
5247
5279
  media?: {
@@ -5461,6 +5493,7 @@ export declare const useTypographyBlueprintStore: () => {
5461
5493
  })[];
5462
5494
  acrylic?: boolean;
5463
5495
  };
5496
+ pattern?: "solid" | "dotted" | "dashed";
5464
5497
  };
5465
5498
  elevation?: number;
5466
5499
  media?: {
@@ -5680,6 +5713,7 @@ export declare const useTypographyBlueprintStore: () => {
5680
5713
  })[];
5681
5714
  acrylic?: boolean;
5682
5715
  };
5716
+ pattern?: "solid" | "dotted" | "dashed";
5683
5717
  };
5684
5718
  elevation?: number;
5685
5719
  media?: {
@@ -5826,6 +5860,52 @@ export declare const useTypographyBlueprintStore: () => {
5826
5860
  };
5827
5861
  name?: string;
5828
5862
  };
5863
+ chips?: {
5864
+ bgColor?: string | {
5865
+ colors: (string | {
5866
+ colorType: "base" | "onBase" | "container" | "onContainer";
5867
+ toned?: boolean;
5868
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5869
+ opacity?: number;
5870
+ } | {
5871
+ color: string | {
5872
+ colorType: "base" | "onBase" | "container" | "onContainer";
5873
+ toned?: boolean;
5874
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5875
+ opacity?: number;
5876
+ };
5877
+ stop?: number;
5878
+ })[];
5879
+ acrylic?: boolean;
5880
+ } | {
5881
+ colorType: "base" | "onBase" | "container" | "onContainer";
5882
+ toned?: boolean;
5883
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5884
+ opacity?: number;
5885
+ };
5886
+ textColor?: string | {
5887
+ colors: (string | {
5888
+ colorType: "base" | "onBase" | "container" | "onContainer";
5889
+ toned?: boolean;
5890
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5891
+ opacity?: number;
5892
+ } | {
5893
+ color: string | {
5894
+ colorType: "base" | "onBase" | "container" | "onContainer";
5895
+ toned?: boolean;
5896
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5897
+ opacity?: number;
5898
+ };
5899
+ stop?: number;
5900
+ })[];
5901
+ acrylic?: boolean;
5902
+ } | {
5903
+ colorType: "base" | "onBase" | "container" | "onContainer";
5904
+ toned?: boolean;
5905
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5906
+ opacity?: number;
5907
+ };
5908
+ };
5829
5909
  containers?: {
5830
5910
  variant1?: {
5831
5911
  name?: string;
@@ -5882,6 +5962,7 @@ export declare const useTypographyBlueprintStore: () => {
5882
5962
  })[];
5883
5963
  acrylic?: boolean;
5884
5964
  };
5965
+ pattern?: "solid" | "dotted" | "dashed";
5885
5966
  };
5886
5967
  elevation?: number;
5887
5968
  media?: {
@@ -5946,6 +6027,7 @@ export declare const useTypographyBlueprintStore: () => {
5946
6027
  })[];
5947
6028
  acrylic?: boolean;
5948
6029
  };
6030
+ pattern?: "solid" | "dotted" | "dashed";
5949
6031
  };
5950
6032
  elevation?: number;
5951
6033
  media?: {
@@ -6010,6 +6092,7 @@ export declare const useTypographyBlueprintStore: () => {
6010
6092
  })[];
6011
6093
  acrylic?: boolean;
6012
6094
  };
6095
+ pattern?: "solid" | "dotted" | "dashed";
6013
6096
  };
6014
6097
  elevation?: number;
6015
6098
  media?: {
@@ -6074,6 +6157,7 @@ export declare const useTypographyBlueprintStore: () => {
6074
6157
  })[];
6075
6158
  acrylic?: boolean;
6076
6159
  };
6160
+ pattern?: "solid" | "dotted" | "dashed";
6077
6161
  };
6078
6162
  elevation?: number;
6079
6163
  media?: {
@@ -60,6 +60,7 @@ export declare function useThemeStyling(): {
60
60
  blueprints: {
61
61
  button: typeof blueprintStyles.getButtonBlueprintStyling;
62
62
  icon: typeof blueprintStyles.getIconBlueprintStyling;
63
+ chip: typeof blueprintStyles.getChipBlueprintStyling;
63
64
  fill: typeof blueprintStyles.getBlueprintFillStyling;
64
65
  fillObject: typeof blueprintStyles.getBlueprintFillObject;
65
66
  border: typeof blueprintStyles.getBlueprintBorderStyling;
@@ -1,4 +1,4 @@
1
- import { FillDefinitionValue, BorderStylingDefinition, ButtonBlueprint, SpacingBlueprintTypes, Spacing, SpacingValue, BackgroundDefinition, TextBlueprint, IconBlueprint, TabsBlueprint } from "@omnia/fx-models";
1
+ import { FillDefinitionValue, BorderStylingDefinition, ButtonBlueprint, SpacingBlueprintTypes, Spacing, SpacingValue, BackgroundDefinition, TextBlueprint, IconBlueprint, TabsBlueprint, ChipBlueprint } from "@omnia/fx-models";
2
2
  import { NestedCSSProperties } from "typestyle/lib/types";
3
3
  import { useColorSchemaStore, useSpacingBlueprintStore, useTypographyBlueprintStore } from "../../store";
4
4
  export declare namespace blueprintStyles {
@@ -27,4 +27,5 @@ export declare namespace blueprintStyles {
27
27
  function getBlueprintTextStyling(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): string;
28
28
  function getBlueprintTextStylingObject(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): NestedCSSProperties;
29
29
  function getIconBlueprintStyling(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): string;
30
+ function getChipBlueprintStyling(bluePrint: ChipBlueprint, colors: ReturnType<typeof useColorSchemaStore>): string;
30
31
  }
@@ -1,17 +1,48 @@
1
1
  import "./AuthSetup.css";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
4
- P: {};
5
- B: {};
6
- D: {};
7
- C: {};
8
- M: {};
9
- Defaults: {};
10
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
11
- __isFragment?: never;
12
- __isTeleport?: never;
13
- __isSuspense?: never;
14
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
15
- propsDefinition: Omit<Readonly<{} & {}>, never>;
16
- };
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: {};
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot<any>;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
20
+ beforeCreate?: (() => void) | (() => void)[];
21
+ created?: (() => void) | (() => void)[];
22
+ beforeMount?: (() => void) | (() => void)[];
23
+ mounted?: (() => void) | (() => void)[];
24
+ beforeUpdate?: (() => void) | (() => void)[];
25
+ updated?: (() => void) | (() => void)[];
26
+ activated?: (() => void) | (() => void)[];
27
+ deactivated?: (() => void) | (() => void)[];
28
+ beforeDestroy?: (() => void) | (() => void)[];
29
+ beforeUnmount?: (() => void) | (() => void)[];
30
+ destroyed?: (() => void) | (() => void)[];
31
+ unmounted?: (() => void) | (() => void)[];
32
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
34
+ 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)[];
35
+ };
36
+ $forceUpdate: () => void;
37
+ $nextTick: typeof import("vue").nextTick;
38
+ $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;
39
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
40
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
41
+ "v-slots"?: {
42
+ default?: import("vue").Slot;
43
+ } & {};
44
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
45
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
46
+ [key: string]: any;
47
+ }>;
17
48
  export default _default;
@@ -1,31 +1,80 @@
1
- import { VueComponentBase } from "@omnia/fx/ux";
2
- import { IWebComponentInstance, OmniaContext } from "../../../../../fx";
3
- import { IDatetimeFieldDisplay } from "./IDatetimeFieldDisplay";
4
1
  import { EnterprisePropertyDefinition } from "../../../../models";
5
- import { OmniaTheming } from "../../..";
6
- export declare class DatetimeFieldDisplayComponent extends VueComponentBase implements IWebComponentInstance, IDatetimeFieldDisplay {
7
- valueBind: string;
8
- settings: {
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ "v-model"?: string;
4
+ } & {
5
+ "onUpdate:modelValue"?: (value: string) => void;
6
+ } & {
7
+ modelValue?: string;
8
+ } & {
9
+ settings?: {
9
10
  format?: string;
10
11
  locale?: string;
11
- mode: any;
12
+ mode?: any;
12
13
  };
13
- property: EnterprisePropertyDefinition;
14
- wrapWithParentContent: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
15
- omniaCtx: OmniaContext;
16
- omniaTheming: OmniaTheming;
17
- dateValue: string;
18
- language: string;
19
- formatDate: string;
20
- formatter: {
21
- timeformat: string;
22
- locale: string;
23
- firstdayofweek: number;
14
+ } & {
15
+ property?: EnterprisePropertyDefinition;
16
+ } & {
17
+ wrapWithParentContent?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
18
+ }>) => {
19
+ $: import("vue").ComponentInternalInstance;
20
+ $data: {};
21
+ $props: {};
22
+ $attrs: {
23
+ [x: string]: unknown;
24
24
  };
25
- created(): void;
26
- mounted(): void;
27
- private onSettingsChanged;
28
- private init;
29
- private renderContent;
30
- render(): JSX.Element;
31
- }
25
+ $refs: {
26
+ [x: string]: unknown;
27
+ };
28
+ $slots: Readonly<{
29
+ [name: string]: import("vue").Slot<any>;
30
+ }>;
31
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
32
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
33
+ $emit: (event: string, ...args: any[]) => void;
34
+ $el: any;
35
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
36
+ beforeCreate?: (() => void) | (() => void)[];
37
+ created?: (() => void) | (() => void)[];
38
+ beforeMount?: (() => void) | (() => void)[];
39
+ mounted?: (() => void) | (() => void)[];
40
+ beforeUpdate?: (() => void) | (() => void)[];
41
+ updated?: (() => void) | (() => void)[];
42
+ activated?: (() => void) | (() => void)[];
43
+ deactivated?: (() => void) | (() => void)[];
44
+ beforeDestroy?: (() => void) | (() => void)[];
45
+ beforeUnmount?: (() => void) | (() => void)[];
46
+ destroyed?: (() => void) | (() => void)[];
47
+ unmounted?: (() => void) | (() => void)[];
48
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
49
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
50
+ 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)[];
51
+ };
52
+ $forceUpdate: () => void;
53
+ $nextTick: typeof import("vue").nextTick;
54
+ $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;
55
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
56
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
57
+ "v-model"?: string;
58
+ } & {
59
+ "onUpdate:modelValue"?: (value: string) => void;
60
+ } & {
61
+ modelValue?: string;
62
+ } & {
63
+ settings?: {
64
+ format?: string;
65
+ locale?: string;
66
+ mode?: any;
67
+ };
68
+ } & {
69
+ property?: EnterprisePropertyDefinition;
70
+ } & {
71
+ wrapWithParentContent?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
72
+ }> & {
73
+ "v-slots"?: {
74
+ default?: import("vue").Slot;
75
+ } & {};
76
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "property" | "settings" | "v-model" | "onUpdate:modelValue" | "modelValue" | "wrapWithParentContent">;
77
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
78
+ [key: string]: any;
79
+ }>;
80
+ export default _default;
@@ -1,4 +1,3 @@
1
- import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
2
1
  import { EnterprisePropertyDisplayProps } from "../../EnterprisePropertyComponentProps";
3
2
  export interface IDatetimeFieldDisplay extends EnterprisePropertyDisplayProps {
4
3
  [name: string]: any;
@@ -8,14 +7,3 @@ export interface DateTimeFieldSettings {
8
7
  format?: string;
9
8
  locale?: string;
10
9
  }
11
- declare global {
12
- namespace JSX {
13
- interface Element {
14
- }
15
- interface ElementClass {
16
- }
17
- interface IntrinsicElements {
18
- "omfx-enterpriseproperties-datetimefield-display": TsxAllowUnknowProperties<IDatetimeFieldDisplay>;
19
- }
20
- }
21
- }
@@ -40,5 +40,6 @@ export declare namespace FeaturesLocalization {
40
40
  ConsentCompletedWaitingActivation: string;
41
41
  ConsentLinkWaitingMessage: string;
42
42
  InstructingRevisitAzureAdPermissionsSettings: string;
43
+ ErrorMissingAdPermissions: string;
43
44
  }
44
45
  }
@@ -22,6 +22,7 @@ export declare const useFeatureJourneyStore: () => {
22
22
  consentUrl: string;
23
23
  appInstance: AppInstance;
24
24
  appTemplate: AppTemplate;
25
+ isMissingAdPermission: boolean;
25
26
  };
26
27
  events: {
27
28
  onMutatedTargetResolverType: import("@omnia/fx").MessageBusExposeOnlySubscription<TargetResolverTypes>;
@@ -44,6 +45,7 @@ export declare const useFeatureJourneyStore: () => {
44
45
  onMutatedConsentUrl: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
45
46
  onMutatedAppInstance: import("@omnia/fx").MessageBusExposeOnlySubscription<AppInstance>;
46
47
  onMutatedAppTemplate: import("@omnia/fx").MessageBusExposeOnlySubscription<AppTemplate>;
48
+ onMutatedIsMissingAdPermission: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
47
49
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
48
50
  actions: {
49
51
  onDispatching: {
@@ -172,6 +172,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
172
172
  readonly top: number;
173
173
  readonly bottom: number;
174
174
  };
175
+ readonly scrollPosition: number;
175
176
  };
176
177
  }>;
177
178
  sizeContainer: StoreState<{