ngx-st-tables 1.1.13 → 1.1.14
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/README.md +24 -24
- package/assets/base-collapse-table.scss +49 -49
- package/assets/base-table.scss +155 -155
- package/esm2020/lib/components/local-table/configurations/configurations.component.mjs +69 -69
- package/esm2020/lib/components/local-table/local-table.component.mjs +259 -259
- package/esm2020/lib/components/select-table/select-table.component.mjs +101 -100
- package/esm2020/lib/models/st-configurations-settings.model.mjs +1 -1
- package/esm2020/lib/models/st-global-search-settings.model.mjs +1 -1
- package/esm2020/lib/models/st-local-storage-configuration.model.mjs +1 -1
- package/esm2020/lib/models/st-local-table-column.model.mjs +1 -1
- package/esm2020/lib/models/st-local-table-columns.model.mjs +1 -1
- package/esm2020/lib/models/st-table-settings.model.mjs +1 -1
- package/esm2020/lib/ngx-st-tables.module.mjs +89 -89
- package/esm2020/lib/services/local-table.service.mjs +36 -36
- package/esm2020/ngx-st-tables.mjs +4 -4
- package/esm2020/public-api.mjs +15 -15
- package/fesm2015/ngx-st-tables.mjs +482 -481
- package/fesm2015/ngx-st-tables.mjs.map +1 -1
- package/fesm2020/ngx-st-tables.mjs +484 -483
- package/fesm2020/ngx-st-tables.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/components/local-table/configurations/configurations.component.d.ts +27 -27
- package/lib/components/local-table/local-table.component.d.ts +63 -63
- package/lib/components/select-table/select-table.component.d.ts +37 -37
- package/lib/models/st-configurations-settings.model.d.ts +6 -6
- package/lib/models/st-global-search-settings.model.d.ts +4 -4
- package/lib/models/st-local-storage-configuration.model.d.ts +8 -8
- package/lib/models/st-local-table-column.model.d.ts +22 -22
- package/lib/models/st-local-table-columns.model.d.ts +4 -4
- package/lib/models/st-table-settings.model.d.ts +3 -3
- package/lib/ngx-st-tables.module.d.ts +24 -24
- package/lib/services/local-table.service.d.ts +11 -11
- package/package.json +1 -1
- package/public-api.d.ts +11 -11
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LXN0LXRhYmxlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1zdC10YWJsZXMvc3JjL25neC1zdC10YWJsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
package/esm2020/public-api.mjs
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of ngx-st-tables
|
|
3
|
-
*/
|
|
4
|
-
export * from './lib/services/local-table.service';
|
|
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';
|
|
8
|
-
export * from './lib/models/st-configurations-settings.model';
|
|
9
|
-
export * from './lib/models/st-global-search-settings.model';
|
|
10
|
-
export * from './lib/models/st-local-storage-configuration.model';
|
|
11
|
-
export * from './lib/models/st-local-table-column.model';
|
|
12
|
-
export * from './lib/models/st-local-table-columns.model';
|
|
13
|
-
export * from './lib/models/st-table-settings.model';
|
|
14
|
-
export * from './lib/ngx-st-tables.module';
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of ngx-st-tables
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/services/local-table.service';
|
|
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';
|
|
8
|
+
export * from './lib/models/st-configurations-settings.model';
|
|
9
|
+
export * from './lib/models/st-global-search-settings.model';
|
|
10
|
+
export * from './lib/models/st-local-storage-configuration.model';
|
|
11
|
+
export * from './lib/models/st-local-table-column.model';
|
|
12
|
+
export * from './lib/models/st-local-table-columns.model';
|
|
13
|
+
export * from './lib/models/st-table-settings.model';
|
|
14
|
+
export * from './lib/ngx-st-tables.module';
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1zdC10YWJsZXMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsb0RBQW9ELENBQUM7QUFDbkUsY0FBYyxzRUFBc0UsQ0FBQztBQUNyRixjQUFjLHNEQUFzRCxDQUFDO0FBQ3JFLGNBQWMsK0NBQStDLENBQUM7QUFDOUQsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsNEJBQTRCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygbmd4LXN0LXRhYmxlc1xyXG4gKi9cclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL2xvY2FsLXRhYmxlLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2xvY2FsLXRhYmxlL2xvY2FsLXRhYmxlLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbG9jYWwtdGFibGUvY29uZmlndXJhdGlvbnMvY29uZmlndXJhdGlvbnMuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9zZWxlY3QtdGFibGUvc2VsZWN0LXRhYmxlLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zdC1jb25maWd1cmF0aW9ucy1zZXR0aW5ncy5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zdC1nbG9iYWwtc2VhcmNoLXNldHRpbmdzLm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3N0LWxvY2FsLXN0b3JhZ2UtY29uZmlndXJhdGlvbi5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zdC1sb2NhbC10YWJsZS1jb2x1bW4ubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvc3QtbG9jYWwtdGFibGUtY29sdW1ucy5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zdC10YWJsZS1zZXR0aW5ncy5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL25neC1zdC10YWJsZXMubW9kdWxlJztcclxuIl19
|