@adobe-commerce/elsie 2.0.1 → 2.0.2-alpha-20260818101543
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/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @adobe-commerce/elsie
|
|
2
2
|
|
|
3
|
+
## 2.0.2-alpha-20260818101543
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 383aafe: reCAPTCHA form types are now configurable via feature flag. COMPANY_CREATE is no
|
|
8
|
+
longer in the default form-type map. B2B storefronts pass `{ b2bEnabled: true }`
|
|
9
|
+
to `setConfig()` to include it in the configuration query.
|
|
10
|
+
|
|
3
11
|
## 2.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -19,6 +27,7 @@
|
|
|
19
27
|
## What changed
|
|
20
28
|
|
|
21
29
|
### TypeScript 4.7 → 6.0
|
|
30
|
+
|
|
22
31
|
- `tsconfig-base.json` updated with correct TS 6 defaults. Two new-default opt-outs are deferred as tech debt: `exactOptionalPropertyTypes` and `verbatimModuleSyntax`.
|
|
23
32
|
- `moduleResolution` changed from `"nodenext"` to `"bundler"` across all packages — the correct pairing for `module: "esnext"` in a Vite monorepo. Only `packages/elsie` keeps `"NodeNext"` (paired with `module: "NodeNext"` for its dual CJS/ESM output).
|
|
24
33
|
- `baseUrl` removed from all tsconfigs (deprecated in TS 6; `paths` resolves relative to the tsconfig file directly).
|
|
@@ -28,6 +37,7 @@
|
|
|
28
37
|
- `noUncheckedIndexedAccess` enabled — violations were few enough to fix in source.
|
|
29
38
|
|
|
30
39
|
### ESLint 8 → 9 (flat config)
|
|
40
|
+
|
|
31
41
|
- `@typescript-eslint/parser` and `@typescript-eslint/eslint-plugin` (v5) removed; replaced by the unified `typescript-eslint` v8 package.
|
|
32
42
|
- `eslint-config-preact` bumped to `^2.0.0` (ESLint 9 support).
|
|
33
43
|
- `eslint-config-prettier` bumped to `^10.0.0`.
|
|
@@ -148,6 +158,7 @@
|
|
|
148
158
|
## What changed
|
|
149
159
|
|
|
150
160
|
### TypeScript 4.7 → 6.0
|
|
161
|
+
|
|
151
162
|
- `tsconfig-base.json` updated with correct TS 6 defaults. Two new-default opt-outs are deferred as tech debt: `exactOptionalPropertyTypes` and `verbatimModuleSyntax`.
|
|
152
163
|
- `moduleResolution` changed from `"nodenext"` to `"bundler"` across all packages — the correct pairing for `module: "esnext"` in a Vite monorepo. Only `packages/elsie` keeps `"NodeNext"` (paired with `module: "NodeNext"` for its dual CJS/ESM output).
|
|
153
164
|
- `baseUrl` removed from all tsconfigs (deprecated in TS 6; `paths` resolves relative to the tsconfig file directly).
|
|
@@ -157,6 +168,7 @@
|
|
|
157
168
|
- `noUncheckedIndexedAccess` enabled — violations were few enough to fix in source.
|
|
158
169
|
|
|
159
170
|
### ESLint 8 → 9 (flat config)
|
|
171
|
+
|
|
160
172
|
- `@typescript-eslint/parser` and `@typescript-eslint/eslint-plugin` (v5) removed; replaced by the unified `typescript-eslint` v8 package.
|
|
161
173
|
- `eslint-config-preact` bumped to `^2.0.0` (ESLint 9 support).
|
|
162
174
|
- `eslint-config-prettier` bumped to `^10.0.0`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/elsie",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2-alpha-20260818101543",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"description": "Domain Package SDK",
|
|
6
6
|
"engines": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@adobe-commerce/event-bus": "~1.1.1",
|
|
34
34
|
"@adobe-commerce/fetch-graphql": "~1.3.1",
|
|
35
|
-
"@adobe-commerce/recaptcha": "1.
|
|
35
|
+
"@adobe-commerce/recaptcha": "1.3.0-alpha-20260818101543",
|
|
36
36
|
"@adobe-commerce/storefront-design": "~1.1.1",
|
|
37
37
|
"@chromatic-com/storybook": "^5",
|
|
38
38
|
"@dropins/build-tools": "~1.2.1"
|