ngx-vector-components 4.97.1 → 4.99.0
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/CHANGELOG.md +12 -0
- package/esm2020/lib/components/fields/filters/filters.component.mjs +6 -5
- package/esm2020/lib/models/profile.model.mjs +2 -1
- package/fesm2015/ngx-vector-components.mjs +3 -2
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +3 -2
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/components/fields/filters/filters.component.d.ts +1 -0
- package/lib/models/profile.model.d.ts +2 -1
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export declare type FilterField = {
|
|
|
37
37
|
size?: 'small' | 'medium' | 'large' | 'largest' | 'full';
|
|
38
38
|
minLengthToService?: number;
|
|
39
39
|
initiateValue?: boolean;
|
|
40
|
+
tooltip?: string;
|
|
40
41
|
};
|
|
41
42
|
export declare class FiltersComponent implements OnInit, OnDestroy {
|
|
42
43
|
private activatedRoute;
|
|
@@ -292,5 +292,6 @@ export declare enum ProfileModuleActionType {
|
|
|
292
292
|
SHOW_SHIPPING_ORIGIN = "Show Shipping Origin",
|
|
293
293
|
SHOW_SHIPPING_COMBINED = "Show Shipping Combined",
|
|
294
294
|
SHOW_SHIPPING_CONTINUOUS = "Show Shipping Continuous",
|
|
295
|
-
SHOW_LOYALTY = "Show Loyalty"
|
|
295
|
+
SHOW_LOYALTY = "Show Loyalty",
|
|
296
|
+
SHOW_PAYMENT_PARAMETERS = "Show Payment Parameters"
|
|
296
297
|
}
|