@cxbox-ui/core 1.37.2-alpha.0 → 1.37.2-alpha.10

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.
@@ -13,10 +13,10 @@ export declare function getTemplate(literals: TemplateStringsArray, ...placehold
13
13
  *
14
14
  * @param bcName Business component name
15
15
  * @param includeSelf If result hierarchy should include target bc or only ancestors
16
- * @param store
16
+ * @param state
17
17
  * @category Utils
18
18
  */
19
- export declare function buildBcUrl(bcName: string, includeSelf?: boolean, store?: Store): string;
19
+ export declare function buildBcUrl(bcName: string, includeSelf: boolean, state: Store): string;
20
20
  export declare function splitBcUrl(bcUrl: string): string[];
21
21
  /**
22
22
  * If there is a template in the field name then returns the formatted string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cxbox-ui/core",
3
- "version": "1.37.2-alpha.0",
3
+ "version": "1.37.2-alpha.10",
4
4
  "description": "CXBox RTK business logic",
5
5
  "author": "cxbox",
6
6
  "license": "Apache-2.0",
@@ -23,7 +23,7 @@
23
23
  "format:check": "prettier --list-different \"(src|examples)/**/*.{ts,tsx}\" \"docs/*/**.md\"",
24
24
  "lint": "eslint src",
25
25
  "test": "jest --runInBand",
26
- "type-tests": "yarn tsc -p src/tests/tsconfig.typetests.jsonn",
26
+ "type-tests": "yarn tsc -p src/tests/tsconfig.typetests.json",
27
27
  "prepack": "npm run build-prepare",
28
28
  "gen:schema": "node ./node_modules/@cxbox-ui/schema/bin/build-schema"
29
29
  },