@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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
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 useSpacingBlueprintStore: () => {
6074
6157
  })[];
6075
6158
  acrylic?: boolean;
6076
6159
  };
6160
+ pattern?: "solid" | "dotted" | "dashed";
6077
6161
  };
6078
6162
  elevation?: number;
6079
6163
  media?: {