@fundamental-ngx/cdk 0.55.2-rc.4 → 0.55.2-rc.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/cdk",
3
- "version": "0.55.2-rc.4",
3
+ "version": "0.55.2-rc.5",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - CDK",
6
6
  "license": "Apache-2.0",
@@ -49,13 +49,13 @@
49
49
  "types": "./data-source/index.d.ts",
50
50
  "default": "./fesm2022/fundamental-ngx-cdk-data-source.mjs"
51
51
  },
52
- "./utils": {
53
- "types": "./utils/index.d.ts",
54
- "default": "./fesm2022/fundamental-ngx-cdk-utils.mjs"
55
- },
56
52
  "./forms": {
57
53
  "types": "./forms/index.d.ts",
58
54
  "default": "./fesm2022/fundamental-ngx-cdk-forms.mjs"
55
+ },
56
+ "./utils": {
57
+ "types": "./utils/index.d.ts",
58
+ "default": "./fesm2022/fundamental-ngx-cdk-utils.mjs"
59
59
  }
60
60
  },
61
61
  "sideEffects": false
@@ -12,5 +12,5 @@ export declare class KeyUtil {
12
12
  * @param event - KeyboardEvent
13
13
  * @param keyType - Type of key
14
14
  * */
15
- static isKeyType(event: KeyboardEvent, keyType: 'alphabetical' | 'numeric' | 'control'): boolean;
15
+ static isKeyType(event: KeyboardEvent, keyType: 'alphabetical' | 'numeric' | 'control' | 'ime'): boolean;
16
16
  }