@firestitch/filter 18.0.20 → 18.0.21
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/app/components/action-button/action-button.component.d.ts +2 -2
- package/app/components/actions/actions.component.d.ts +2 -2
- package/app/enums/index.d.ts +0 -1
- package/app/helpers/create-filter-item.d.ts +1 -1
- package/app/interfaces/action.interface.d.ts +2 -3
- package/app/interfaces/config.interface.d.ts +1 -0
- package/app/models/action.model.d.ts +2 -2
- package/app/models/filter-config.d.ts +3 -0
- package/esm2022/app/components/action-button/action-button.component.mjs +5 -5
- package/esm2022/app/components/actions/actions.component.mjs +5 -5
- package/esm2022/app/components/filter/filter.component.mjs +3 -3
- package/esm2022/app/enums/index.mjs +1 -2
- package/esm2022/app/interfaces/action.interface.mjs +1 -1
- package/esm2022/app/interfaces/config.interface.mjs +1 -1
- package/esm2022/app/models/action.model.mjs +9 -7
- package/esm2022/app/models/filter-config.mjs +33 -25
- package/esm2022/public_api.mjs +2 -2
- package/fesm2022/firestitch-filter.mjs +48 -49
- package/fesm2022/firestitch-filter.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
- package/app/enums/action-type.enum.d.ts +0 -9
- package/esm2022/app/enums/action-type.enum.mjs +0 -11
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export { FilterValuesReturnFn, IFilterConfigSelectIsolate, IFilterConfigSelectIt
|
|
|
18
18
|
export { IFilterConfigTextItem } from './app/interfaces/items/text.interface';
|
|
19
19
|
export { ChangeFn, FilterConfig, FilterSort, FsFilterPersistance, IFilterConfigItem, Sort, SortItem, } from './app/interfaces/config.interface';
|
|
20
20
|
export { FilterRemoteDelete, FilterRemoteLoad, FilterRemoteOrder, FilterRemoteSave, IFilterSavedFilter, IFilterSavedFiltersConfig, } from './app/interfaces/saved-filters.interface';
|
|
21
|
-
export {
|
|
21
|
+
export { ButtonStyle } from './app/enums';
|
|
22
22
|
export { ActionMode } from './app/enums/action-mode.enum';
|
|
23
23
|
export { ItemDateMode } from './app/enums/item-date-mode.enum';
|
|
24
24
|
export { ItemType } from './app/enums/item-type.enum';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export var ActionType;
|
|
2
|
-
(function (ActionType) {
|
|
3
|
-
ActionType["Basic"] = "basic";
|
|
4
|
-
ActionType["Raised"] = "raised";
|
|
5
|
-
ActionType["Icon"] = "icon";
|
|
6
|
-
ActionType["Fab"] = "fab";
|
|
7
|
-
ActionType["MiniFab"] = "mini-fab";
|
|
8
|
-
ActionType["Flat"] = "flat";
|
|
9
|
-
ActionType["Stroked"] = "stroked";
|
|
10
|
-
})(ActionType || (ActionType = {}));
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLXR5cGUuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9hcHAvZW51bXMvYWN0aW9uLXR5cGUuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLENBQU4sSUFBWSxVQVFYO0FBUkQsV0FBWSxVQUFVO0lBQ3BCLDZCQUF5QixDQUFBO0lBQ3pCLCtCQUEyQixDQUFBO0lBQzNCLDJCQUF1QixDQUFBO0lBQ3ZCLHlCQUFxQixDQUFBO0lBQ3JCLGtDQUE2QixDQUFBO0lBQzdCLDJCQUF1QixDQUFBO0lBQ3ZCLGlDQUE2QixDQUFBO0FBQy9CLENBQUMsRUFSVyxVQUFVLEtBQVYsVUFBVSxRQVFyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJ1dHRvblN0eWxlIH0gZnJvbSAnLi9idXR0b24tc3R5bGUnO1xuXG5leHBvcnQgZW51bSBBY3Rpb25UeXBlIHtcbiAgQmFzaWMgPSBCdXR0b25TdHlsZS5CYXNpYyxcbiAgUmFpc2VkID0gQnV0dG9uU3R5bGUuUmFpc2VkLFxuICBJY29uID0gQnV0dG9uU3R5bGUuSWNvbixcbiAgRmFiID0gQnV0dG9uU3R5bGUuRmFiLFxuICBNaW5pRmFiID0gQnV0dG9uU3R5bGUuTWluaUZhYixcbiAgRmxhdCA9IEJ1dHRvblN0eWxlLkZsYXQsXG4gIFN0cm9rZWQgPSBCdXR0b25TdHlsZS5TdHJva2VkLCAgXG59XG4iXX0=
|