@stytch/vanilla-js 6.0.0-next.8 → 6.0.1
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 +19 -61
- package/dist/cjs/adminPortal/index.cjs +29 -29
- package/dist/cjs/adminPortal/index.cjs.map +1 -1
- package/dist/cjs-dev/adminPortal/index.cjs +29 -29
- package/dist/cjs-dev/adminPortal/index.cjs.map +1 -1
- package/dist/esm/_virtual/index3.mjs +5 -3
- package/dist/esm/_virtual/index3.mjs.map +1 -1
- package/dist/esm/_virtual/index4.mjs +3 -5
- package/dist/esm/_virtual/index4.mjs.map +1 -1
- package/dist/esm/internal/assets/dist/index.mjs +29 -29
- package/dist/esm/internal/assets/dist/index.mjs.map +1 -1
- package/dist/esm/packages/web/src/adminPortal/utils/theme.mjs +1 -1
- package/dist/esm/packages/web/src/utils/crypto.mjs +1 -1
- package/dist/esm-dev/internal/assets/dist/index.mjs +29 -29
- package/dist/esm-dev/internal/assets/dist/index.mjs.map +1 -1
- package/dist/iife/adminPortal/index.js +1 -1
- package/dist/iife/adminPortal/index.js.map +1 -1
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,76 +1,34 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
-
## 6.0.
|
|
3
|
+
## 6.0.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- Fix
|
|
7
|
+
- 3d08061: Fix package issue
|
|
8
8
|
|
|
9
|
-
## 6.0.0
|
|
9
|
+
## 6.0.0
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
- Update watermark
|
|
14
|
-
|
|
15
|
-
## 6.0.0-next.6
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- Improve style isolation
|
|
20
|
-
|
|
21
|
-
## 6.0.0-next.5
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- Fix typo
|
|
26
|
-
|
|
27
|
-
## 6.0.0-next.4
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- Beta bug fixes, add buttonId option
|
|
32
|
-
|
|
33
|
-
## 6.0.0-next.3
|
|
34
|
-
|
|
35
|
-
### Patch Changes
|
|
36
|
-
|
|
37
|
-
- Various beta bug fixes
|
|
38
|
-
|
|
39
|
-
## 6.0.0-next.2
|
|
40
|
-
|
|
41
|
-
### Patch Changes
|
|
42
|
-
|
|
43
|
-
- Beta bug fixes
|
|
44
|
-
|
|
45
|
-
## 6.0.0-next.1
|
|
46
|
-
|
|
47
|
-
### Patch Changes
|
|
48
|
-
|
|
49
|
-
- 76ae314: Beta bug fixes
|
|
50
|
-
|
|
51
|
-
## 6.0.0-next.0
|
|
52
|
-
|
|
53
|
-
### Major Changes
|
|
54
|
-
|
|
55
|
-
- 872ebff: ## Stytch UI redesign preview
|
|
11
|
+
This is a major release, containing a redesign of our frontend components and package structure.
|
|
56
12
|
|
|
57
|
-
|
|
13
|
+
**We recommend [reading our upgrade guide](https://stytch.com/docs/api-reference/consumer/frontend-sdks/vanilla-js/upgrade-guide) when updating to this version**.
|
|
58
14
|
|
|
59
|
-
|
|
15
|
+
### Breaking changes
|
|
60
16
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
17
|
+
- `@stytch/vanilla-js` now ships standard custom elements which need to be registered before usage
|
|
18
|
+
- `@stytch/vanilla-js/ui` is now merged into the main export
|
|
19
|
+
- `config.products` must use `Products` and `B2BProducts` enum, not strings
|
|
20
|
+
- Styling is now done through a new presentation configuration object
|
|
21
|
+
- Code is now transpiled only up to our browser support level to reduce sizes
|
|
64
22
|
|
|
65
|
-
|
|
23
|
+
### Update highlights
|
|
66
24
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
25
|
+
- Redesigned frontend components that are more modern, accessible and configurable
|
|
26
|
+
- Components have now been reviewed and tested for accessibility
|
|
27
|
+
- shadcn UI theming compatibility out of the box
|
|
28
|
+
- Automatic light / dark mode switching now supported
|
|
29
|
+
- Significantly smaller bundle sizes through modern transpilation targets and tree shaking
|
|
30
|
+
- Clientside validation for configs now only occur in development build to reduce bundle size from validation message strings
|
|
31
|
+
- @stytch/vanilla-js now exports standard web components (custom element), allowing for easy integration with other frameworks like Vue.js and Svelte
|
|
74
32
|
|
|
75
33
|
## 5.45.0
|
|
76
34
|
|
|
@@ -36057,35 +36057,35 @@ const useDeleteConnection = ({ onConfirm } = {})=>{
|
|
|
36057
36057
|
const deepEqual = storage.createDeepEqual();
|
|
36058
36058
|
|
|
36059
36059
|
const adminPortalAssets = {
|
|
36060
|
-
"oktaSamlSettingsConfig": "
|
|
36061
|
-
"oktaSamlGetMetadataUrl": "
|
|
36062
|
-
"oktaOidcAppType": "
|
|
36063
|
-
"oktaGrantType": "
|
|
36064
|
-
"oktaCreateAppIntegration": "
|
|
36065
|
-
"oktaClientSecret": "
|
|
36066
|
-
"oktaAssign": "
|
|
36067
|
-
"oktaAccessType": "
|
|
36068
|
-
"googleUserAccess": "
|
|
36069
|
-
"googleSamlSpDetails": "
|
|
36070
|
-
"googleSamlConfigInfo": "
|
|
36071
|
-
"googleAppsTab": "
|
|
36072
|
-
"googleAddSamlApp": "
|
|
36073
|
-
"googleAccessOn": "
|
|
36074
|
-
"entraSetupSso": "
|
|
36075
|
-
"entraSamlMetadataUrl": "
|
|
36076
|
-
"entraOidcSecretValue": "
|
|
36077
|
-
"entraOidcRegisterApp": "
|
|
36078
|
-
"entraOidcNewClientSecret": "
|
|
36079
|
-
"entraOidcConfigureRedirectUri": "
|
|
36080
|
-
"entraOidcClientIdAndIssuer": "
|
|
36081
|
-
"entraOidcAuthSetup": "
|
|
36082
|
-
"entraOidcAppRegistrations": "
|
|
36083
|
-
"entraEditNameidClaim": "
|
|
36084
|
-
"entraCreateOwnApp": "
|
|
36085
|
-
"entraCreateNewApplication": "
|
|
36086
|
-
"entraBasicSamlConfig": "
|
|
36087
|
-
"entraAttributesAndClaims": "
|
|
36088
|
-
"entraAddUsersAndGroups": "
|
|
36060
|
+
"oktaSamlSettingsConfig": "https://js.stytch.com/sdk-assets/admin-portal/okta-saml-settings-config.049ebf3598cc.png",
|
|
36061
|
+
"oktaSamlGetMetadataUrl": "https://js.stytch.com/sdk-assets/admin-portal/okta-saml-get-metadata-url.310a36ea0837.png",
|
|
36062
|
+
"oktaOidcAppType": "https://js.stytch.com/sdk-assets/admin-portal/okta-oidc-app-type.2172f86151db.png",
|
|
36063
|
+
"oktaGrantType": "https://js.stytch.com/sdk-assets/admin-portal/okta-grant-type.0bbe2086ef52.png",
|
|
36064
|
+
"oktaCreateAppIntegration": "https://js.stytch.com/sdk-assets/admin-portal/okta-create-app-integration.46221fab936f.png",
|
|
36065
|
+
"oktaClientSecret": "https://js.stytch.com/sdk-assets/admin-portal/okta-client-secret.bb3ddf78497b.png",
|
|
36066
|
+
"oktaAssign": "https://js.stytch.com/sdk-assets/admin-portal/okta-assign.77e9445e9acb.png",
|
|
36067
|
+
"oktaAccessType": "https://js.stytch.com/sdk-assets/admin-portal/okta-access-type.58ef0aa94ef1.png",
|
|
36068
|
+
"googleUserAccess": "https://js.stytch.com/sdk-assets/admin-portal/google-user-access.4e4479da549e.png",
|
|
36069
|
+
"googleSamlSpDetails": "https://js.stytch.com/sdk-assets/admin-portal/google-saml-sp-details.9c783667840d.png",
|
|
36070
|
+
"googleSamlConfigInfo": "https://js.stytch.com/sdk-assets/admin-portal/google-saml-config-info.09f18e61cce4.png",
|
|
36071
|
+
"googleAppsTab": "https://js.stytch.com/sdk-assets/admin-portal/google-apps-tab.cbc30bc52b34.png",
|
|
36072
|
+
"googleAddSamlApp": "https://js.stytch.com/sdk-assets/admin-portal/google-add-saml-app.07f9157ae4bb.png",
|
|
36073
|
+
"googleAccessOn": "https://js.stytch.com/sdk-assets/admin-portal/google-access-on.58368c19de00.png",
|
|
36074
|
+
"entraSetupSso": "https://js.stytch.com/sdk-assets/admin-portal/entra-setup-sso.496e93f748d0.png",
|
|
36075
|
+
"entraSamlMetadataUrl": "https://js.stytch.com/sdk-assets/admin-portal/entra-saml-metadata-url.0fbcdb6ddcf6.png",
|
|
36076
|
+
"entraOidcSecretValue": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-secret-value.6bfcfc829897.png",
|
|
36077
|
+
"entraOidcRegisterApp": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-register-app.0ac40c5381a7.png",
|
|
36078
|
+
"entraOidcNewClientSecret": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-new-client-secret.d73205af2795.png",
|
|
36079
|
+
"entraOidcConfigureRedirectUri": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-configure-redirect-uri.5b379bc58e5b.png",
|
|
36080
|
+
"entraOidcClientIdAndIssuer": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-client-id-and-issuer.6090565bf994.png",
|
|
36081
|
+
"entraOidcAuthSetup": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-auth-setup.8f8319db81e9.png",
|
|
36082
|
+
"entraOidcAppRegistrations": "https://js.stytch.com/sdk-assets/admin-portal/entra-oidc-app-registrations.8eb337ec38b7.png",
|
|
36083
|
+
"entraEditNameidClaim": "https://js.stytch.com/sdk-assets/admin-portal/entra-edit-nameid-claim.1ced8152c89d.png",
|
|
36084
|
+
"entraCreateOwnApp": "https://js.stytch.com/sdk-assets/admin-portal/entra-create-own-app.7cc98a7d5c53.png",
|
|
36085
|
+
"entraCreateNewApplication": "https://js.stytch.com/sdk-assets/admin-portal/entra-create-new-application.1344b6b515b5.png",
|
|
36086
|
+
"entraBasicSamlConfig": "https://js.stytch.com/sdk-assets/admin-portal/entra-basic-saml-config.65a1e3a8120d.png",
|
|
36087
|
+
"entraAttributesAndClaims": "https://js.stytch.com/sdk-assets/admin-portal/entra-attributes-and-claims.e6c5f9b4efb9.png",
|
|
36088
|
+
"entraAddUsersAndGroups": "https://js.stytch.com/sdk-assets/admin-portal/entra-add-users-and-groups.949270ce6d26.png"};
|
|
36089
36089
|
|
|
36090
36090
|
const Instruction = ({ children })=>/*#__PURE__*/ uniqueId.wn.createElement(Typography, {
|
|
36091
36091
|
variant: "body2"
|