ps-toolkit-ui 0.2.36 → 0.2.39

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.
@@ -25,4 +25,5 @@ export declare class HelperClass {
25
25
  static addNotification(m: any, e?: boolean): void;
26
26
  static checkCartDigit(code: any): boolean;
27
27
  static getData(key: any, state: any, parent: any): any;
28
+ static getColorByBgColor(bgColor: any): string;
28
29
  }
@@ -0,0 +1,7 @@
1
+ import { DomSanitizer } from '@angular/platform-browser';
2
+ import { PipeTransform } from '@angular/core';
3
+ export declare class SafeHtmlPipe implements PipeTransform {
4
+ private sanitized;
5
+ constructor(sanitized: DomSanitizer);
6
+ transform(value: any): any;
7
+ }
@@ -3,5 +3,5 @@ import { DomSanitizer } from '@angular/platform-browser';
3
3
  export declare class SafeStylePipe implements PipeTransform {
4
4
  private sanitizer;
5
5
  constructor(sanitizer: DomSanitizer);
6
- transform(value: any): import("@angular/platform-browser").SafeStyle;
6
+ transform(value: any): any;
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ps-toolkit-ui",
3
- "version": "0.2.36",
3
+ "version": "0.2.39",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^10.1.6",
6
6
  "@angular/core": "^10.1.6"
@@ -2,6 +2,7 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
+ export { SafeHtmlPipe as ɵr } from './lib/classes/safehtml.class';
5
6
  export { SafeStylePipe as ɵh } from './lib/classes/safestyle.class';
6
7
  export { CalendarComponent as ɵl } from './lib/components/calendar/calendar.component';
7
8
  export { ChartComponent as ɵn } from './lib/components/chart/chart.component';
@@ -15,7 +16,7 @@ export { SidebarItemComponent as ɵc } from './lib/components/sidebar/item/sideb
15
16
  export { TableOldLoadingComponent as ɵo } from './lib/components/table-old/loading/table-old.loading.component';
16
17
  export { TableOldPaginationComponent as ɵp } from './lib/components/table-old/pagination/table-old.pagination.component';
17
18
  export { TableOldRowComponent as ɵq } from './lib/components/table-old/row/table-old.row.component';
18
- export { TableOldComponent as ɵr } from './lib/components/table-old/table-old.component';
19
+ export { TableOldComponent as ɵs } from './lib/components/table-old/table-old.component';
19
20
  export { TableLoadingComponent as ɵe } from './lib/components/table/loading/table.loading.component';
20
21
  export { TablePaginationComponent as ɵb } from './lib/components/table/pagination/table.pagination.component';
21
22
  export { TableRowComponent as ɵg } from './lib/components/table/row/table.row.component';