@atomic.io/action-cards-web-sdk-cdn-icons 24.2.2 → 24.2.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 CHANGED
@@ -1,12 +1,12 @@
1
1
  [![codecov](https://codecov.io/github/atomic-app/action-cards-web-sdk/branch/master/graph/badge.svg?token=BNXNRL8ASJ)](https://codecov.io/github/atomic-app/action-cards-web-sdk)
2
2
 
3
- # Web SDK - Current (24.3.0)
3
+ # Web SDK - Current (24.3.1)
4
4
 
5
5
  ## Introduction
6
6
 
7
7
  The Atomic Web SDK allows you to integrate an Atomic stream container into your web app or site, presenting cards from a stream to your customers.
8
8
 
9
- The current stable release is **24.3.0**.
9
+ The current stable release is **24.3.1**.
10
10
 
11
11
  ### Browser support
12
12
 
@@ -18,10 +18,10 @@ We currently do not have a boilerplate app for the Web SDK. [Contact us](mailto:
18
18
 
19
19
  ## Installation
20
20
 
21
- The current version of the Atomic Web SDK is `24.3.0`, and is hosted on our CDN at `https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js`.
21
+ The current version of the Atomic Web SDK is `24.3.1`, and is hosted on our CDN at `https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js`.
22
22
 
23
23
  As of version `24.2.1` the Web SDK also offers a bundle variant which does not include the font used for icons in action cards. Instead this font is fetched via CDN as required, allowing the size of your initial bundle loaded by the browser to be smaller. Both variations function identically in all other respects.
24
- This variant is hosted on our CDN at `https://downloads.atomic.io/web-sdk/release/24.3.0/sdk-cdn-icons.js`.
24
+ This variant is hosted on our CDN at `https://downloads.atomic.io/web-sdk/release/24.3.1/sdk-cdn-icons.js`.
25
25
 
26
26
  To integrate it, add the script for your chosen variant as a source to your web page:
27
27
 
@@ -29,7 +29,7 @@ To integrate it, add the script for your chosen variant as a source to your web
29
29
  <html>
30
30
  ...
31
31
  <body>
32
- <script src="https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js"></script>
32
+ <script src="https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js"></script>
33
33
  </body>
34
34
  </html>
35
35
  ```
@@ -270,6 +270,10 @@ You can customize the following strings used by the Web SDK, using the `customSt
270
270
  - The error message shown when the user does not have an internet connection (`noInternetConnectionMessage`).
271
271
  - The error message shown when the theme or card list cannot be loaded due to an API error (`dataLoadFailedMessage`).
272
272
  - The title of the button allowing the user to retry the failed request for the card list or theme (`tryAgainTitle`).
273
+ - The text displayed on the card overlay while a file upload is in progress (`processingStateMessage`).
274
+ - The title of the button on the card overlay allowing the user to cancel file uploads that are currently in progress (`processingStateCancelButtonTitle`).
275
+ - The action text for a thumbnail image link (`thumbnailImageActionLinkTitle`).
276
+ - The action text for a thumbnail video link (`thumbnailVideoActionLinkTitle`).
273
277
 
274
278
  If you don't provide these custom strings, the SDK defaults will be used:
275
279
 
@@ -283,6 +287,10 @@ If you don't provide these custom strings, the SDK defaults will be used:
283
287
  - `noInternetConnectionMessage`: "No internet connection"
284
288
  - `dataLoadFailedMessage`: "Couldn't load data"
285
289
  - `tryAgainTitle`: "Try again"
290
+ - `processingStateMessage`: "Sending, please wait..."
291
+ - `processingStateCancelButtonTitle`: "Cancel process"
292
+ - `thumbnailImageActionLinkTitle`: "View"
293
+ - `thumbnailVideoActionLinkTitle`: "Watch"
286
294
 
287
295
  The code snippet below shows how to customize some of these strings.
288
296
 
@@ -380,7 +388,7 @@ The code sample below shows how to use the `AtomicSDK.launch(config)` method, to
380
388
  ...
381
389
  <body>
382
390
  <!-- Installation -->
383
- <script src="https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js"></script>
391
+ <script src="https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js"></script>
384
392
 
385
393
  <script>
386
394
  AtomicSDK.initialise('<apiHost>', '<apiKey>', '<environmentId>')
@@ -455,7 +463,7 @@ The iframe generated by the `singleCard` method can be styled just like any othe
455
463
  ...
456
464
  <body>
457
465
  <!--Installation-->
458
- <script src="https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js"></script>
466
+ <script src="https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js"></script>
459
467
 
460
468
  <script>
461
469
  AtomicSDK.initialise('<apiHost>', '<apiKey>', '<environmentId>')
@@ -488,7 +496,7 @@ The iframe generated by the `embed` method can be styled just like any other DOM
488
496
  ...
489
497
  <body>
490
498
  <!--Installation-->
491
- <script src="https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js"></script>
499
+ <script src="https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js"></script>
492
500
 
493
501
  <script>
494
502
  AtomicSDK.initialise('<apiHost>', '<apiKey>', '<environmentId>')
@@ -1707,10 +1715,10 @@ To use the SDK with your Cordova or Capacitor app:
1707
1715
 
1708
1716
  1. Download the Atomic SDK from our CDN, and bundle it with your application. There are two files you need to download:
1709
1717
 
1710
- - `https://downloads.atomic.io/web-sdk/release/24.3.0/iframe-manager.js`
1711
- - `https://downloads.atomic.io/web-sdk/release/24.3.0/sdk.js`
1718
+ - `https://downloads.atomic.io/web-sdk/release/24.3.1/iframe-manager.js`
1719
+ - `https://downloads.atomic.io/web-sdk/release/24.3.1/sdk.js`
1712
1720
 
1713
- _Where `24.3.0` is the version number of the SDK you wish to use._
1721
+ _Where `24.3.1` is the version number of the SDK you wish to use._
1714
1722
 
1715
1723
  2. **(Cordova only)**: Modify the `Content-Security-Policy` meta tag in your Cordova app to allow the following URLs, after the `default-src` directive:
1716
1724
 
@@ -1753,7 +1761,7 @@ To use the SDK with your Cordova or Capacitor app:
1753
1761
 
1754
1762
  ## Third-party dependencies
1755
1763
 
1756
- The Atomic Web SDK (as at the current release `24.3.0`) uses the following third-party dependencies:
1764
+ The Atomic Web SDK (as at the current release `24.3.1`) uses the following third-party dependencies:
1757
1765
 
1758
1766
  - Font Awesome Free `5.13.1`
1759
1767
  - snarkdown `1.2.1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomic.io/action-cards-web-sdk-cdn-icons",
3
- "version": "24.2.2",
3
+ "version": "24.2.3",
4
4
  "description": "The Atomic Web SDK",
5
5
  "main": "public/sdk.js",
6
6
  "typings": "public/sdk.d.ts",
@@ -1,4 +1,4 @@
1
- The Atomic Web SDK (24.2.2) uses the following open sources libraries:
1
+ The Atomic Web SDK (24.2.3) uses the following open sources libraries:
2
2
 
3
3
  -----------------------
4
4
 
@@ -90,11 +90,20 @@ MIT License
90
90
 
91
91
  Copyright (c) <year> <copyright holders>
92
92
 
93
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
93
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
94
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
95
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
96
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
97
+ following conditions:
94
98
 
95
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
99
+ The above copyright notice and this permission notice shall be included in all copies or substantial
100
+ portions of the Software.
96
101
 
97
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
102
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
103
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
104
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
105
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
106
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
98
107
 
99
108
 
100
109
  -----------------------
@@ -136,11 +145,20 @@ MIT License
136
145
 
137
146
  Copyright (c) <year> <copyright holders>
138
147
 
139
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
148
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
149
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
150
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
151
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
152
+ following conditions:
140
153
 
141
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
154
+ The above copyright notice and this permission notice shall be included in all copies or substantial
155
+ portions of the Software.
142
156
 
143
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
157
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
158
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
159
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
160
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
161
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
144
162
 
145
163
 
146
164
  -----------------------