@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.
- package/README.md +1 -0
- package/dist/index.esm.js +11009 -9677
- package/dist/types/constants/core.constant.d.ts +11 -0
- package/dist/types/enums/cloud.enum.d.ts +326 -0
- package/dist/types/enums/core.enum.d.ts +1 -0
- package/dist/types/interfaces/configs/global.interface.d.ts +1 -0
- package/dist/types/modules/product-list/components/index.d.ts +2 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/index.d.ts +6 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-apply-filter-button.component.d.ts +1 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-checkbox-filter.components.d.ts +7 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-delivery-options-filter.components.d.ts +16 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-price-filter.components.d.ts +22 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-search.component.d.ts +16 -0
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-toggle-filters.components.d.ts +18 -0
- package/dist/types/modules/product-list/components/product-list-filters.component.d.ts +27 -5
- package/dist/types/modules/product-list/product-list.component.d.ts +14 -5
- package/dist/types/modules/product-list/product-list.interface.d.ts +80 -0
- package/dist/types/static/icon/chevron-up.icon.d.ts +2 -0
- package/dist/types/static/icon/filter.icon.d.ts +2 -0
- package/dist/types/static/icon/index.d.ts +1 -0
- package/docs/THEMING.md +3 -0
- package/package.json +1 -1
- package/umd/elements.js +1 -1
|
@@ -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