@paydock/client-sdk 1.104.1-beta → 1.104.3-beta
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 +3 -4
- package/bundles/index.cjs +1 -1
- package/bundles/index.cjs.map +1 -1
- package/bundles/index.mjs +1 -1
- package/bundles/index.mjs.map +1 -1
- package/bundles/types/components/{form-Interceptor.d.ts → form-interceptor.d.ts} +1 -1
- package/bundles/types/components/{form-Interceptor.d.ts.map → form-interceptor.d.ts.map} +1 -1
- package/bundles/widget.umd.js +1 -1
- package/bundles/widget.umd.js.map +1 -1
- package/bundles/widget.umd.min.js +1 -1
- package/bundles/widget.umd.min.js.map +1 -1
- package/docs/install/umd.content.md +3 -4
- package/docs/install.md +4 -14
- package/package.json +1 -1
- package/slate.md +3 -4
package/README.md
CHANGED
|
@@ -69,10 +69,9 @@ import paydock from '@paydock/client-sdk'
|
|
|
69
69
|
### Download from CDN
|
|
70
70
|
|
|
71
71
|
For browser environments, you can import the Client SDK directly from our CDN to
|
|
72
|
-
your project's HTML. To accomplish this
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
variable `paydock`.
|
|
72
|
+
your project's HTML. To accomplish this, include the Client SDK in your page
|
|
73
|
+
using one and only of the two script tags below. After this step you will be
|
|
74
|
+
able to access the Client SDK features via the global variable `paydock`.
|
|
76
75
|
|
|
77
76
|
For production we recommend using the compressed version (`.min.js`) since
|
|
78
77
|
it will result in faster loading times for your end users.
|
package/bundles/index.cjs
CHANGED