ngx-st-tables 17.0.35 → 17.0.38
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/esm2022/lib/components/material-table/material-table-caption/material-table-caption.component.mjs +15 -30
- package/esm2022/lib/components/material-table/material-table-caption/material-table-filter-dialog/material-table-filter-dialog.component.mjs +3 -3
- package/esm2022/lib/components/material-table/material-table-row-cell/material-table-row-cell.component.mjs +13 -26
- package/esm2022/lib/components/material-table/material-table.component.mjs +37 -70
- package/esm2022/lib/ngx-st-tables.module.mjs +6 -16
- package/esm2022/public-api.mjs +3 -11
- package/fesm2022/ngx-st-tables.mjs +103 -592
- package/fesm2022/ngx-st-tables.mjs.map +1 -1
- package/lib/components/material-table/material-table-caption/material-table-caption.component.d.ts +11 -11
- package/lib/components/material-table/material-table-row-cell/material-table-row-cell.component.d.ts +12 -12
- package/lib/components/material-table/material-table.component.d.ts +19 -19
- package/lib/ngx-st-tables.module.d.ts +35 -38
- package/package.json +1 -1
- package/public-api.d.ts +2 -10
package/esm2022/public-api.mjs
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Public API Surface of ngx-st-tables
|
|
3
3
|
*/
|
|
4
|
-
export * from './lib/services/
|
|
5
|
-
export * from './lib/components/local-table/local-table.component';
|
|
6
|
-
export * from './lib/components/local-table/configurations/configurations.component';
|
|
7
|
-
export * from './lib/components/select-table/select-table.component';
|
|
4
|
+
export * from './lib/services/st-tables-translations.service';
|
|
8
5
|
export * from './lib/components/material-table/material-table-caption/material-table-caption.component';
|
|
9
6
|
export * from './lib/components/material-table/material-table.component';
|
|
10
|
-
export * from './lib/models/st-configurations-settings.model';
|
|
11
|
-
export * from './lib/models/st-global-search-settings.model';
|
|
12
|
-
export * from './lib/models/st-local-storage-configuration.model';
|
|
13
|
-
export * from './lib/models/st-local-table-column.model';
|
|
14
|
-
export * from './lib/models/st-local-table-columns.model';
|
|
15
|
-
export * from './lib/models/st-table-settings.model';
|
|
16
7
|
export * from './lib/models/st-material-table-column.model';
|
|
8
|
+
export * from './lib/models/st-tables-translations.model';
|
|
17
9
|
export * from './lib/ngx-st-tables.module';
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1zdC10YWJsZXMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLCtDQUErQyxDQUFDO0FBQzlELGNBQWMseUZBQXlGLENBQUM7QUFDeEcsY0FBYywwREFBMEQsQ0FBQztBQUN6RSxjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYyw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBuZ3gtc3QtdGFibGVzXHJcbiAqL1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvc3QtdGFibGVzLXRyYW5zbGF0aW9ucy5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlcmlhbC10YWJsZS9tYXRlcmlhbC10YWJsZS1jYXB0aW9uL21hdGVyaWFsLXRhYmxlLWNhcHRpb24uY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlcmlhbC10YWJsZS9tYXRlcmlhbC10YWJsZS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvc3QtbWF0ZXJpYWwtdGFibGUtY29sdW1uLm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3N0LXRhYmxlcy10cmFuc2xhdGlvbnMubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9uZ3gtc3QtdGFibGVzLm1vZHVsZSc7XHJcbiJdfQ==
|