@c10t/nice-component-library 0.0.20-f → 0.0.21-a

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.
@@ -9,5 +9,6 @@ export interface NiceComponentLibraryConfig {
9
9
  DIS_DATE_TIME_FORMAT?: string;
10
10
  DIALOG_LOGO?: string;
11
11
  NO_IMAGE_AVAILABLE?: string;
12
+ STYLE_DISABLE: 'TEXT' | 'CONTROL';
12
13
  }
13
14
  export declare const InjectTokenNextSolutionsConfig: InjectionToken<NiceComponentLibraryConfig>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c10t/nice-component-library",
3
- "version": "0.0.20f",
3
+ "version": "0.0.21-a",
4
4
  "main": "lib/bundles/ncl-nice-component-library.umd.js",
5
5
  "module": "fesm2022/c10t-nice-component-library.mjs",
6
6
  "es2015": "lib/fesm2015/ncl-nice-component-library.js",
@@ -1,9 +1,9 @@
1
- import { ButtonModel } from "../models/components/button.model";
2
- import { ColumnModel } from "../models/components/column.model";
3
- import { ColumnTypeEnum } from "../enums/column-type.enum";
4
- import { AlignEnum } from "../enums/align.enum";
5
- import { TableFooterModel } from "../models/components/table-footer.model";
6
- import { IconTypeEnum } from "../enums/icon-type.enum";
1
+ import { ButtonModel } from '../models/components/button.model';
2
+ import { ColumnModel } from '../models/components/column.model';
3
+ import { ColumnTypeEnum } from '../enums/column-type.enum';
4
+ import { AlignEnum } from '../enums/align.enum';
5
+ import { TableFooterModel } from '../models/components/table-footer.model';
6
+ import { IconTypeEnum } from '../enums/icon-type.enum';
7
7
  export declare class TableService {
8
8
  static DEFAULT_NO_IMAGE_AVAILABLE: string;
9
9
  static displayHeaderName(column: ColumnModel, moduleName: string): string;
@@ -14,7 +14,7 @@ export declare class TableService {
14
14
  static onDisplayCell(column: ColumnModel, cell: any): boolean;
15
15
  static alignCellContent(column: ColumnModel): AlignEnum;
16
16
  static getColspan(footer: TableFooterModel, data: any[]): number;
17
- static getColumnClassName(col: ColumnModel | TableFooterModel, data?: any): string;
17
+ static getColumnClassName(col: ColumnModel | TableFooterModel | undefined, data?: any): string;
18
18
  static getColumnHeaderClassName(col: ColumnModel): string;
19
19
  static getIconType(button: ButtonModel): IconTypeEnum;
20
20
  static onErrorImgEvent(img: HTMLImageElement, noImageConfigBase64?: string): void;