@okta/okta-signin-widget 7.1.2 → 7.1.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 +5 -5
- package/dist/esm/src/config/config.json.js +1 -1
- package/dist/js/okta-sign-in.classic.js +1 -1
- package/dist/js/okta-sign-in.classic.min.js +1 -1
- package/dist/js/okta-sign-in.js +1 -1
- package/dist/js/okta-sign-in.min.js +14 -14
- package/dist/js/okta-sign-in.min.js.map +1 -1
- package/dist/js/okta-sign-in.no-polyfill.min.js +1 -1
- package/dist/js/okta-sign-in.oie.js +1 -1
- package/dist/js/okta-sign-in.oie.min.js +1 -1
- package/dist/js/okta-sign-in.polyfill.js +7317 -15430
- package/dist/js/okta-sign-in.polyfill.js.map +1 -1
- package/dist/js/okta-sign-in.polyfill.min.js +2 -2
- package/dist/js/okta-sign-in.polyfill.min.js.map +1 -1
- package/package.json +3 -3
- package/polyfill/index.js +21 -1
- package/src/config/config.json +1 -1
package/README.md
CHANGED
|
@@ -254,9 +254,9 @@ To embed the Sign-in Widget via CDN, include links to the JS and CSS files in yo
|
|
|
254
254
|
|
|
255
255
|
```html
|
|
256
256
|
<!-- Latest CDN production Javascript and CSS -->
|
|
257
|
-
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.
|
|
257
|
+
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.3/js/okta-sign-in.min.js" type="text/javascript"></script>
|
|
258
258
|
|
|
259
|
-
<link href="https://global.oktacdn.com/okta-signin-widget/7.1.
|
|
259
|
+
<link href="https://global.oktacdn.com/okta-signin-widget/7.1.3/css/okta-sign-in.min.css" type="text/css" rel="stylesheet"/>
|
|
260
260
|
```
|
|
261
261
|
|
|
262
262
|
**NOTE:** The CDN URLs contain a version number. This number should be the same for both the Javascript and the CSS file and match a version on the [releases page](https://github.com/okta/okta-signin-widget/releases). We recommend using the latest widget version.
|
|
@@ -266,13 +266,13 @@ When using one of the bundles without the polyfill included, you may want to con
|
|
|
266
266
|
|
|
267
267
|
```html
|
|
268
268
|
<!-- Polyfill for older browsers -->
|
|
269
|
-
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.
|
|
269
|
+
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.3/js/okta-sign-in.polyfill.min.js" type="text/javascript"></script>
|
|
270
270
|
|
|
271
271
|
<!-- Widget bundle for Okta Identity Engine -->
|
|
272
|
-
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.
|
|
272
|
+
<script src="https://global.oktacdn.com/okta-signin-widget/7.1.3/js/okta-sign-in.oie.min.js" type="text/javascript"></script>
|
|
273
273
|
|
|
274
274
|
<!-- CSS for widget -->
|
|
275
|
-
<link href="https://global.oktacdn.com/okta-signin-widget/7.1.
|
|
275
|
+
<link href="https://global.oktacdn.com/okta-signin-widget/7.1.3/css/okta-sign-in.min.css" type="text/css" rel="stylesheet"/>
|
|
276
276
|
```
|
|
277
277
|
|
|
278
278
|
|
|
@@ -63320,7 +63320,7 @@ module.exports = JSON.parse('{"signout":"Sign Out","signin":"Sign In","signup":"
|
|
|
63320
63320
|
/***/ (function(module) {
|
|
63321
63321
|
|
|
63322
63322
|
"use strict";
|
|
63323
|
-
module.exports = JSON.parse('{"defaultLanguage":"en","version":"7.1.
|
|
63323
|
+
module.exports = JSON.parse('{"defaultLanguage":"en","version":"7.1.3","supportedLanguages":["en","cs","da","de","el","es","fi","fr","hu","id","in","it","ja","ko","ms","nb","nl-NL","ok-PL","pl","pt-BR","ro","ru","sv","th","tr","uk","vi","zh-CN","zh-TW"]}');
|
|
63324
63324
|
|
|
63325
63325
|
/***/ })
|
|
63326
63326
|
|