@bbn/bbn 1.0.67 → 1.0.68

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/dist/bundle.d.ts CHANGED
@@ -2197,7 +2197,7 @@ declare module "fn/default/defaultHistoryFunction" {
2197
2197
  export { defaultHistoryFunction };
2198
2198
  }
2199
2199
  declare module "fn/default/defaultPreLinkFunction" {
2200
- const defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => string;
2200
+ const defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => any;
2201
2201
  export { defaultPreLinkFunction };
2202
2202
  }
2203
2203
  declare module "fn/default/defaultResizeFunction" {
@@ -4708,7 +4708,7 @@ declare module "fn" {
4708
4708
  defaultHistoryFunction: (obj: any) => boolean;
4709
4709
  defaultLinkFunction: (responseObj: any, ele: any) => boolean;
4710
4710
  defaultPostLinkFunction: (r: object, ele?: HTMLElement) => boolean;
4711
- defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => string;
4711
+ defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => any;
4712
4712
  defaultResizeFunction: () => boolean;
4713
4713
  defaultStartLoadingFunction: (url: string, tst: number, data?: object, requestId?: string) => boolean;
4714
4714
  deleteProp: (obj: object, prop: string) => void;
package/dist/bundle.js CHANGED
@@ -4513,7 +4513,7 @@
4513
4513
  Object.defineProperty(exports, "__esModule", { value: true });
4514
4514
  exports.defaultPreLinkFunction = void 0;
4515
4515
  const defaultPreLinkFunction = function (url, force, ele) {
4516
- return url;
4516
+ return 1;
4517
4517
  };
4518
4518
  exports.defaultPreLinkFunction = defaultPreLinkFunction;
4519
4519
  });
@@ -1,2 +1,2 @@
1
- declare const defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => string;
1
+ declare const defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => any;
2
2
  export { defaultPreLinkFunction };
@@ -1,4 +1,4 @@
1
1
  const defaultPreLinkFunction = function (url, force, ele) {
2
- return url;
2
+ return 1;
3
3
  };
4
4
  export { defaultPreLinkFunction };
package/dist/fn.d.ts CHANGED
@@ -61,7 +61,7 @@ declare const fn: {
61
61
  defaultHistoryFunction: (obj: any) => boolean;
62
62
  defaultLinkFunction: (responseObj: any, ele: any) => boolean;
63
63
  defaultPostLinkFunction: (r: object, ele?: HTMLElement) => boolean;
64
- defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => string;
64
+ defaultPreLinkFunction: (url: string, force?: boolean, ele?: HTMLElement) => any;
65
65
  defaultResizeFunction: () => boolean;
66
66
  defaultStartLoadingFunction: (url: string, tst: number, data?: object, requestId?: string) => boolean;
67
67
  deleteProp: (obj: object, prop: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",