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.
- package/bundles/ps-toolkit-ui.umd.js +31 -6
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/helper.class.js +7 -1
- package/esm2015/lib/classes/safehtml.class.js +17 -0
- package/esm2015/lib/classes/safestyle.class.js +4 -2
- package/esm2015/lib/components/form/select/item/form.select.item.component.js +2 -2
- package/esm2015/lib/components/table/row/table.row.component.js +3 -3
- package/esm2015/lib/ps-toolkit-ui.module.js +3 -2
- package/esm2015/ps-toolkit-ui.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +29 -6
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/helper.class.d.ts +1 -0
- package/lib/classes/safehtml.class.d.ts +7 -0
- package/lib/classes/safestyle.class.d.ts +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.d.ts +2 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -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):
|
|
6
|
+
transform(value: any): any;
|
|
7
7
|
}
|
package/package.json
CHANGED
package/ps-toolkit-ui.d.ts
CHANGED
|
@@ -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
|
|
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';
|