@forge/bridge 2.5.3-next.0 → 2.5.4-next.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @forge/bridge
2
2
 
3
+ ## 2.5.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - db8ede9: Added opt-in API for theming in custom UI Forge apps via the new enableTheming method.
8
+
9
+ ## 2.5.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 8fec8af: Update rate limit on invoke
14
+
3
15
  ## 2.5.3-next.0
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,2 @@
1
+ export declare const enableTheming: () => Promise<void>;
2
+ //# sourceMappingURL=enableTheming.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enableTheming.d.ts","sourceRoot":"","sources":["../../src/enableTheming/enableTheming.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa,QAAO,QAAQ,IAAI,CAAgC,CAAC"}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.enableTheming = void 0;
4
+ const bridge_1 = require("../bridge");
5
+ const callBridge = (0, bridge_1.getCallBridge)();
6
+ const enableTheming = () => callBridge('enableTheming');
7
+ exports.enableTheming = enableTheming;
@@ -0,0 +1,2 @@
1
+ export * from './enableTheming';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enableTheming/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./enableTheming"), exports);
package/out/index.d.ts CHANGED
@@ -5,4 +5,5 @@ export * from './modal';
5
5
  export * from './fetch';
6
6
  export * from './flag';
7
7
  export * from './events';
8
+ export * from './enableTheming';
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC"}
package/out/index.js CHANGED
@@ -8,3 +8,4 @@ tslib_1.__exportStar(require("./modal"), exports);
8
8
  tslib_1.__exportStar(require("./fetch"), exports);
9
9
  tslib_1.__exportStar(require("./flag"), exports);
10
10
  tslib_1.__exportStar(require("./events"), exports);
11
+ tslib_1.__exportStar(require("./enableTheming"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bridge",
3
- "version": "2.5.3-next.0",
3
+ "version": "2.5.4-next.0",
4
4
  "description": "Forge bridge API for custom UI apps",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",