@liquidcommerce/elements-sdk 2.7.25 → 2.7.26
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 +20 -4
- package/dist/index.checkout.esm.js +8410 -7130
- package/dist/index.esm.js +13783 -11655
- package/dist/types/core/a11y/announcer.service.d.ts +16 -0
- package/dist/types/core/a11y/focus-manager.service.d.ts +21 -0
- package/dist/types/core/a11y/focusable.d.ts +5 -0
- package/dist/types/core/a11y/glyph-button.d.ts +8 -0
- package/dist/types/core/a11y/index.d.ts +5 -0
- package/dist/types/core/a11y/single-select.d.ts +16 -0
- package/dist/types/core/base-component.service.d.ts +2 -0
- package/dist/types/interfaces/configs/global.interface.d.ts +2 -0
- package/dist/types/modules/address/address-display.component.d.ts +3 -1
- package/dist/types/modules/address/address-input.component.d.ts +10 -1
- package/dist/types/modules/cart/components/cart-body.component.d.ts +1 -0
- package/dist/types/modules/cart/components/cart-item-quantity-price.component.d.ts +5 -0
- package/dist/types/modules/cart/components/cart-item.component.d.ts +6 -0
- package/dist/types/modules/checkout/components/checkout-completed.component.d.ts +2 -0
- package/dist/types/modules/checkout/components/checkout-item-quantity.component.d.ts +1 -0
- package/dist/types/modules/checkout/components/checkout-payment.component.d.ts +1 -0
- package/dist/types/modules/checkout/components/checkout-place-order-button.component.d.ts +2 -0
- package/dist/types/modules/product/components/components.d.ts +6 -1
- package/dist/types/modules/product/components/product-add-to-cart-section.component.d.ts +6 -1
- package/dist/types/modules/product/components/product-drawer.component.d.ts +6 -0
- package/dist/types/modules/product/components/product-image-carousel.component.d.ts +1 -0
- package/dist/types/modules/product/components/product-retailers-carousel.component.d.ts +1 -0
- package/dist/types/modules/product/components/product-retailers-popup-list.component.d.ts +5 -0
- package/dist/types/modules/product/product.commands.d.ts +2 -2
- package/dist/types/modules/product-list/components/card-components/product-price-and-personalization.d.ts +2 -1
- package/dist/types/modules/product-list/components/card-components/product-quantity-selector.d.ts +2 -1
- package/dist/types/modules/product-list/components/card-components/product-sizes-list.d.ts +1 -0
- package/dist/types/modules/product-list/components/filter-components/product-list-fulfillment-filter.d.ts +1 -0
- package/dist/types/modules/product-list/components/product-list-filters.component.d.ts +1 -0
- package/dist/types/modules/product-list/components/product-list-product-pre-cart.component.d.ts +2 -0
- package/dist/types/modules/product-list/product-list.commands.d.ts +1 -1
- package/dist/types/modules/product-list/product-list.component.d.ts +3 -0
- package/dist/types/modules/theme-provider/services/contrast-guard.service.d.ts +19 -0
- package/dist/types/modules/ui-components/alert/alert.component.d.ts +1 -1
- package/dist/types/modules/ui-components/buttons/buttons-open-cart.component.d.ts +5 -0
- package/dist/types/modules/ui-components/drawer/drawer.component.d.ts +14 -0
- package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +2 -0
- package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +1 -0
- package/dist/types/modules/ui-components/input/input.component.d.ts +5 -0
- package/dist/types/modules/ui-components/lce-element/lce-element.component.d.ts +9 -1
- package/dist/types/modules/ui-components/ui.commands.d.ts +3 -1
- package/dist/types/static/icon/arrow-right.icon.d.ts +1 -1
- package/dist/types/static/icon/bag.icon.d.ts +1 -1
- package/dist/types/static/icon/check.icon.d.ts +1 -1
- package/dist/types/static/icon/checkbox.icon.d.ts +1 -1
- package/dist/types/static/icon/chevron-down.icon.d.ts +1 -1
- package/dist/types/static/icon/chevron-left.icon.d.ts +1 -1
- package/dist/types/static/icon/chevron-up.icon.d.ts +1 -1
- package/dist/types/static/icon/close.icon.d.ts +1 -1
- package/dist/types/static/icon/error-info.icon.d.ts +1 -1
- package/dist/types/static/icon/filter.icon.d.ts +1 -1
- package/dist/types/static/icon/icon.a11y.d.ts +1 -0
- package/dist/types/static/icon/icon.types.d.ts +1 -0
- package/dist/types/static/icon/index.d.ts +1 -0
- package/dist/types/static/icon/info.icon.d.ts +1 -1
- package/dist/types/static/icon/loading-spinner.icon.d.ts +1 -1
- package/dist/types/static/icon/search.icon.d.ts +1 -1
- package/dist/types/static/icon/success.icon.d.ts +1 -1
- package/dist/types/static/icon/trash.icon.d.ts +1 -1
- package/dist/types/static/icon/warning.icon.d.ts +1 -1
- package/dist/types/utils/color-contrast.d.ts +16 -0
- package/docs/v1/README.md +3 -0
- package/docs/v1/api/actions/address-actions.md +1 -1
- package/docs/v1/api/client.md +4 -3
- package/docs/v1/api/configuration.md +13 -0
- package/docs/v1/api/ui-helpers.md +2 -2
- package/docs/v1/getting-started/concepts.md +24 -7
- package/docs/v1/getting-started/installation.md +2 -2
- package/docs/v1/getting-started/quick-start.md +8 -3
- package/docs/v1/guides/accessibility.md +190 -0
- package/docs/v1/guides/address-component.md +3 -3
- package/docs/v1/guides/best-practices.md +1 -1
- package/docs/v1/guides/cart-component.md +3 -3
- package/docs/v1/guides/events.md +18 -5
- package/docs/v1/guides/theming.md +6 -1
- package/docs/v1/integration/vanilla-js.md +1 -1
- package/docs/v1/reference/error-handling.md +1 -1
- package/package.json +43 -14
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.7.
|
|
6
|
+
"version": "2.7.26",
|
|
7
7
|
"homepage": "https://docs.liquidcommerce.co/elements-sdk",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"module": "./dist/index.esm.js",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
|
-
"packageManager": "pnpm@11.
|
|
17
|
+
"packageManager": "pnpm@11.18.0",
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./dist/types/index.d.ts",
|
|
@@ -68,17 +68,46 @@
|
|
|
68
68
|
},
|
|
69
69
|
"keywords": [
|
|
70
70
|
"liquidcommerce",
|
|
71
|
+
"vesper",
|
|
72
|
+
"vesper-commerce",
|
|
73
|
+
"accelpay",
|
|
74
|
+
"reservebar",
|
|
75
|
+
"minibar",
|
|
71
76
|
"alcohol",
|
|
72
77
|
"beverage",
|
|
73
|
-
"alcohol tech",
|
|
74
78
|
"elements",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
+
"alcohol-ecommerce",
|
|
80
|
+
"ecommerce",
|
|
81
|
+
"ecommerce-sdk",
|
|
82
|
+
"headless-commerce",
|
|
83
|
+
"embeddable-commerce",
|
|
84
|
+
"embeddable-components",
|
|
85
|
+
"web-components",
|
|
86
|
+
"custom-elements",
|
|
87
|
+
"shadow-dom",
|
|
88
|
+
"framework-agnostic",
|
|
89
|
+
"typescript",
|
|
90
|
+
"zero-dependencies",
|
|
91
|
+
"product-display",
|
|
92
|
+
"product-list",
|
|
93
|
+
"shopping-cart",
|
|
94
|
+
"cart-drawer",
|
|
95
|
+
"checkout",
|
|
96
|
+
"hosted-checkout",
|
|
97
|
+
"stripe",
|
|
98
|
+
"payments",
|
|
99
|
+
"promo-codes",
|
|
100
|
+
"gift-cards",
|
|
101
|
+
"address-autocomplete",
|
|
102
|
+
"delivery",
|
|
103
|
+
"shipping",
|
|
104
|
+
"pickup",
|
|
105
|
+
"presale",
|
|
106
|
+
"fulfillment",
|
|
107
|
+
"theming"
|
|
79
108
|
],
|
|
80
109
|
"devDependencies": {
|
|
81
|
-
"@biomejs/biome": "^2.5.
|
|
110
|
+
"@biomejs/biome": "^2.5.6",
|
|
82
111
|
"@commitlint/cli": "^21.2.1",
|
|
83
112
|
"@commitlint/config-conventional": "^21.2.0",
|
|
84
113
|
"@rollup/plugin-alias": "^6.0.0",
|
|
@@ -87,21 +116,21 @@
|
|
|
87
116
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
88
117
|
"@rollup/plugin-replace": "^6.0.3",
|
|
89
118
|
"@rollup/plugin-terser": "^1.0.0",
|
|
90
|
-
"@semantic-release/changelog": "^
|
|
119
|
+
"@semantic-release/changelog": "^7.0.0",
|
|
91
120
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
92
|
-
"@semantic-release/git": "^
|
|
121
|
+
"@semantic-release/git": "^11.0.1",
|
|
93
122
|
"@semantic-release/github": "^12.0.9",
|
|
94
123
|
"@semantic-release/npm": "^13.1.5",
|
|
95
124
|
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
96
125
|
"@types/core-js": "^2.5.8",
|
|
97
|
-
"@types/node": "^26.1.
|
|
98
|
-
"conventional-changelog": "8.0
|
|
126
|
+
"@types/node": "^26.1.2",
|
|
127
|
+
"conventional-changelog": "8.1.0",
|
|
99
128
|
"husky": "^9.1.7",
|
|
100
129
|
"process": "^0.11.10",
|
|
101
|
-
"rollup": "^4.62.
|
|
130
|
+
"rollup": "^4.62.3",
|
|
102
131
|
"rollup-obfuscator": "^4.1.1",
|
|
103
132
|
"rollup-plugin-typescript2": "^0.37.0",
|
|
104
|
-
"semantic-release": "^25.0.
|
|
133
|
+
"semantic-release": "^25.0.8",
|
|
105
134
|
"ts-node": "^10.9.2",
|
|
106
135
|
"typescript": "6.0.3"
|
|
107
136
|
},
|