@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/index.js
CHANGED
|
@@ -6840,8 +6840,8 @@ _ConversationConnector_connectionListeners = new WeakMap(), _ConversationConnect
|
|
|
6840
6840
|
}, _ConversationConnector_emitConnectionState = function _ConversationConnector_emitConnectionState(payload) {
|
|
6841
6841
|
// Loop in reverse order to enable splicing the array while iterating
|
|
6842
6842
|
for (let i = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").length - 1; i >= 0; i--) {
|
|
6843
|
-
const
|
|
6844
|
-
const complete =
|
|
6843
|
+
const callback = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f")[i];
|
|
6844
|
+
const complete = callback(payload);
|
|
6845
6845
|
// If we only want to execute the callback once, remove it from the listener
|
|
6846
6846
|
if (complete) {
|
|
6847
6847
|
__classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").splice(i, 1);
|
|
@@ -7294,7 +7294,7 @@ _API_ready = new WeakMap(), _API_externalId = new WeakMap(), _API_layoutMode = n
|
|
|
7294
7294
|
return {
|
|
7295
7295
|
clientName: "@seamly/web-ui",
|
|
7296
7296
|
clientVariant: api_classPrivateFieldGet(this, _API_layoutMode, "f"),
|
|
7297
|
-
clientVersion: "21.0.
|
|
7297
|
+
clientVersion: "21.0.3-beta.3",
|
|
7298
7298
|
currentUrl: window.location.toString(),
|
|
7299
7299
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
7300
7300
|
timezone: getTimeZone(),
|
|
@@ -22679,7 +22679,6 @@ const DeprecatedAppFrame = ({
|
|
|
22679
22679
|
|
|
22680
22680
|
|
|
22681
22681
|
|
|
22682
|
-
|
|
22683
22682
|
const ShowInlineView = ({
|
|
22684
22683
|
children
|
|
22685
22684
|
}) => {
|
|
@@ -22693,7 +22692,6 @@ const ShowInlineView = ({
|
|
|
22693
22692
|
});
|
|
22694
22693
|
};
|
|
22695
22694
|
const DeprecatedView = () => {
|
|
22696
|
-
use_seamly_chat();
|
|
22697
22695
|
const {
|
|
22698
22696
|
isVisible,
|
|
22699
22697
|
openChat,
|