@liquidcommerce/elements-sdk 2.6.0-beta.1 → 2.6.0-beta.3

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.
Files changed (23) hide show
  1. package/README.md +1 -0
  2. package/dist/index.esm.js +11009 -9677
  3. package/dist/types/constants/core.constant.d.ts +11 -0
  4. package/dist/types/enums/cloud.enum.d.ts +326 -0
  5. package/dist/types/enums/core.enum.d.ts +1 -0
  6. package/dist/types/interfaces/configs/global.interface.d.ts +1 -0
  7. package/dist/types/modules/product-list/components/index.d.ts +2 -0
  8. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/index.d.ts +6 -0
  9. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-apply-filter-button.component.d.ts +1 -0
  10. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-checkbox-filter.components.d.ts +7 -0
  11. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-delivery-options-filter.components.d.ts +16 -0
  12. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-price-filter.components.d.ts +22 -0
  13. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-search.component.d.ts +16 -0
  14. package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-toggle-filters.components.d.ts +18 -0
  15. package/dist/types/modules/product-list/components/product-list-filters.component.d.ts +27 -5
  16. package/dist/types/modules/product-list/product-list.component.d.ts +14 -5
  17. package/dist/types/modules/product-list/product-list.interface.d.ts +80 -0
  18. package/dist/types/static/icon/chevron-up.icon.d.ts +2 -0
  19. package/dist/types/static/icon/filter.icon.d.ts +2 -0
  20. package/dist/types/static/icon/index.d.ts +1 -0
  21. package/docs/THEMING.md +3 -0
  22. package/package.json +1 -1
  23. package/umd/elements.js +1 -1
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const FilterIcon: ({ width, height, className, color }: IconProps) => string;
@@ -3,6 +3,7 @@ export * from './bag.icon';
3
3
  export * from './checkbox.icon';
4
4
  export * from './chevron-down.icon';
5
5
  export * from './chevron-left.icon';
6
+ export * from './chevron-up.icon';
6
7
  export * from './close.icon';
7
8
  export * from './error-info.icon';
8
9
  export * from './icon.types';
package/docs/THEMING.md CHANGED
@@ -37,6 +37,7 @@ interface IGlobalTheme {
37
37
  accentColor: string;
38
38
  defaultTextColor: string;
39
39
  selectedTextColor: string;
40
+ linkTextColor: string;
40
41
  errorColor: string;
41
42
  warningColor: string;
42
43
  successColor: string;
@@ -68,6 +69,7 @@ customTheme: {
68
69
  accentColor: '#6c757d',
69
70
  defaultTextColor: '#212529',
70
71
  selectedTextColor: '#ffffff',
72
+ linkTextColor: '#1d4ed8',
71
73
  errorColor: '#dc3545',
72
74
  warningColor: '#ffc107',
73
75
  successColor: '#28a745',
@@ -367,6 +369,7 @@ const client = await Elements('YOUR_API_KEY', {
367
369
  accentColor: '#6c757d',
368
370
  defaultTextColor: '#212529',
369
371
  selectedTextColor: '#ffffff',
372
+ linkTextColor: '#1d4ed8',
370
373
  errorColor: '#dc3545',
371
374
  warningColor: '#ffc107',
372
375
  successColor: '#28a745',
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "LiquidCommerce Elements SDK",
4
4
  "license": "UNLICENSED",
5
5
  "author": "LiquidCommerce Team",
6
- "version": "2.6.0-beta.1",
6
+ "version": "2.6.0-beta.3",
7
7
  "homepage": "https://docs.liquidcommerce.co/elements-sdk",
8
8
  "repository": {
9
9
  "type": "git",