@seamly/web-ui 21.0.3-beta.1 → 21.0.3-beta.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/build/dist/lib/components.js +132 -134
- package/build/dist/lib/components.min.js +1 -1
- package/build/dist/lib/index.debug.js +3 -3
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.js +3 -5
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/standalone.js +3 -5
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/style-guide.js +3 -3
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/utils.js +3 -3
- package/build/dist/lib/utils.min.js +1 -1
- package/package.json +1 -1
- package/src/javascripts/api/conversation-connector.ts +2 -2
- package/src/javascripts/ui/components/view/deprecated-view.js +0 -2
package/build/dist/lib/utils.js
CHANGED
|
@@ -6940,8 +6940,8 @@ _ConversationConnector_connectionListeners = new WeakMap(), _ConversationConnect
|
|
|
6940
6940
|
}, _ConversationConnector_emitConnectionState = function _ConversationConnector_emitConnectionState(payload) {
|
|
6941
6941
|
// Loop in reverse order to enable splicing the array while iterating
|
|
6942
6942
|
for (let i = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").length - 1; i >= 0; i--) {
|
|
6943
|
-
const
|
|
6944
|
-
const complete =
|
|
6943
|
+
const callback = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f")[i];
|
|
6944
|
+
const complete = callback(payload);
|
|
6945
6945
|
// If we only want to execute the callback once, remove it from the listener
|
|
6946
6946
|
if (complete) {
|
|
6947
6947
|
__classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").splice(i, 1);
|
|
@@ -7394,7 +7394,7 @@ _API_ready = new WeakMap(), _API_externalId = new WeakMap(), _API_layoutMode = n
|
|
|
7394
7394
|
return {
|
|
7395
7395
|
clientName: "@seamly/web-ui",
|
|
7396
7396
|
clientVariant: api_classPrivateFieldGet(this, _API_layoutMode, "f"),
|
|
7397
|
-
clientVersion: "21.0.
|
|
7397
|
+
clientVersion: "21.0.3-beta.3",
|
|
7398
7398
|
currentUrl: window.location.toString(),
|
|
7399
7399
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
7400
7400
|
timezone: getTimeZone(),
|