@openfin/fdc3-api 41.102.6 → 41.102.7

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.
@@ -3000,6 +3000,10 @@ declare type ChromiumPolicies = {
3000
3000
  * Disable AutofillAddressEnabled policy for a Window or View.
3001
3001
  */
3002
3002
  AutofillAddressEnabled?: PolicyOptions;
3003
+ /**
3004
+ * Disable AutofillCreditCardEnabled policy for a Window or View.
3005
+ */
3006
+ AutofillCreditCardEnabled?: PolicyOptions;
3003
3007
  };
3004
3008
 
3005
3009
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
@@ -3850,6 +3854,10 @@ declare type ConstWindowOptions = {
3850
3854
  * Control which options to ignore when creating a Platform Window.
3851
3855
  */
3852
3856
  excludeOptions: ExcludeOptions;
3857
+ /**
3858
+ * Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
3859
+ */
3860
+ roundedCorners: boolean;
3853
3861
  };
3854
3862
 
3855
3863
  /**
@@ -9669,6 +9677,12 @@ declare type MutableWindowOptions = {
9669
9677
  /**
9670
9678
  * Shows the window's icon in the taskbar.
9671
9679
  *
9680
+ * @remarks
9681
+ * In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
9682
+ * In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
9683
+ * `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
9684
+ * {@link Window._Window.showPopupWindow}.
9685
+ *
9672
9686
  * @default true
9673
9687
  */
9674
9688
  showTaskbarIcon: boolean;
@@ -3000,6 +3000,10 @@ declare type ChromiumPolicies = {
3000
3000
  * Disable AutofillAddressEnabled policy for a Window or View.
3001
3001
  */
3002
3002
  AutofillAddressEnabled?: PolicyOptions;
3003
+ /**
3004
+ * Disable AutofillCreditCardEnabled policy for a Window or View.
3005
+ */
3006
+ AutofillCreditCardEnabled?: PolicyOptions;
3003
3007
  };
3004
3008
 
3005
3009
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
@@ -3850,6 +3854,10 @@ declare type ConstWindowOptions = {
3850
3854
  * Control which options to ignore when creating a Platform Window.
3851
3855
  */
3852
3856
  excludeOptions: ExcludeOptions;
3857
+ /**
3858
+ * Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
3859
+ */
3860
+ roundedCorners: boolean;
3853
3861
  };
3854
3862
 
3855
3863
  /**
@@ -9669,6 +9677,12 @@ declare type MutableWindowOptions = {
9669
9677
  /**
9670
9678
  * Shows the window's icon in the taskbar.
9671
9679
  *
9680
+ * @remarks
9681
+ * In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
9682
+ * In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
9683
+ * `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
9684
+ * {@link Window._Window.showPopupWindow}.
9685
+ *
9672
9686
  * @default true
9673
9687
  */
9674
9688
  showTaskbarIcon: boolean;
@@ -3000,6 +3000,10 @@ declare type ChromiumPolicies = {
3000
3000
  * Disable AutofillAddressEnabled policy for a Window or View.
3001
3001
  */
3002
3002
  AutofillAddressEnabled?: PolicyOptions;
3003
+ /**
3004
+ * Disable AutofillCreditCardEnabled policy for a Window or View.
3005
+ */
3006
+ AutofillCreditCardEnabled?: PolicyOptions;
3003
3007
  };
3004
3008
 
3005
3009
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
@@ -3850,6 +3854,10 @@ declare type ConstWindowOptions = {
3850
3854
  * Control which options to ignore when creating a Platform Window.
3851
3855
  */
3852
3856
  excludeOptions: ExcludeOptions;
3857
+ /**
3858
+ * Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
3859
+ */
3860
+ roundedCorners: boolean;
3853
3861
  };
3854
3862
 
3855
3863
  /**
@@ -9669,6 +9677,12 @@ declare type MutableWindowOptions = {
9669
9677
  /**
9670
9678
  * Shows the window's icon in the taskbar.
9671
9679
  *
9680
+ * @remarks
9681
+ * In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
9682
+ * In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
9683
+ * `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
9684
+ * {@link Window._Window.showPopupWindow}.
9685
+ *
9672
9686
  * @default true
9673
9687
  */
9674
9688
  showTaskbarIcon: boolean;
package/out/fdc3-api.d.ts CHANGED
@@ -3056,6 +3056,10 @@ declare type ChromiumPolicies = {
3056
3056
  * Disable AutofillAddressEnabled policy for a Window or View.
3057
3057
  */
3058
3058
  AutofillAddressEnabled?: PolicyOptions;
3059
+ /**
3060
+ * Disable AutofillCreditCardEnabled policy for a Window or View.
3061
+ */
3062
+ AutofillCreditCardEnabled?: PolicyOptions;
3059
3063
  };
3060
3064
 
3061
3065
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
@@ -3909,6 +3913,10 @@ declare type ConstWindowOptions = {
3909
3913
  * Control which options to ignore when creating a Platform Window.
3910
3914
  */
3911
3915
  excludeOptions: ExcludeOptions;
3916
+ /**
3917
+ * Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
3918
+ */
3919
+ roundedCorners: boolean;
3912
3920
  };
3913
3921
 
3914
3922
  /**
@@ -9969,6 +9977,12 @@ declare type MutableWindowOptions = {
9969
9977
  /**
9970
9978
  * Shows the window's icon in the taskbar.
9971
9979
  *
9980
+ * @remarks
9981
+ * In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
9982
+ * In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
9983
+ * `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
9984
+ * {@link Window._Window.showPopupWindow}.
9985
+ *
9972
9986
  * @default true
9973
9987
  */
9974
9988
  showTaskbarIcon: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "41.102.6",
3
+ "version": "41.102.7",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,