@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
|
@@ -6796,8 +6796,8 @@ _ConversationConnector_connectionListeners = new WeakMap(), _ConversationConnect
|
|
|
6796
6796
|
}, _ConversationConnector_emitConnectionState = function _ConversationConnector_emitConnectionState(payload) {
|
|
6797
6797
|
// Loop in reverse order to enable splicing the array while iterating
|
|
6798
6798
|
for (let i = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").length - 1; i >= 0; i--) {
|
|
6799
|
-
const
|
|
6800
|
-
const complete =
|
|
6799
|
+
const callback = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f")[i];
|
|
6800
|
+
const complete = callback(payload);
|
|
6801
6801
|
// If we only want to execute the callback once, remove it from the listener
|
|
6802
6802
|
if (complete) {
|
|
6803
6803
|
__classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").splice(i, 1);
|
|
@@ -7250,7 +7250,7 @@ _API_ready = new WeakMap(), _API_externalId = new WeakMap(), _API_layoutMode = n
|
|
|
7250
7250
|
return {
|
|
7251
7251
|
clientName: "@seamly/web-ui",
|
|
7252
7252
|
clientVariant: api_classPrivateFieldGet(this, _API_layoutMode, "f"),
|
|
7253
|
-
clientVersion: "21.0.
|
|
7253
|
+
clientVersion: "21.0.3-beta.3",
|
|
7254
7254
|
currentUrl: window.location.toString(),
|
|
7255
7255
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
7256
7256
|
timezone: getTimeZone(),
|