@fundamental-ngx/cdk 0.56.0 → 0.56.1-rc.1

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.56.0",
3
+ "version": "0.56.1-rc.1",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - CDK",
6
6
  "license": "Apache-2.0",
@@ -1,10 +1,11 @@
1
+ import { InputSignal } from '@angular/core';
1
2
  import { Nullable } from '../models/nullable';
2
3
  import { HasElementRef } from './has-element-ref.interface';
3
4
  export interface CssClassBuilder extends HasElementRef {
4
5
  /**
5
6
  * The class for the component
6
7
  **/
7
- class: Nullable<string>;
8
+ class: Nullable<string> | InputSignal<string | undefined>;
8
9
  /**
9
10
  * Method to build component css class
10
11
  */