@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
|
@@ -16230,8 +16230,8 @@ _ConversationConnector_connectionListeners = new (weak_map_default())(), _Conver
|
|
|
16230
16230
|
}, _ConversationConnector_emitConnectionState = function _ConversationConnector_emitConnectionState(payload) {
|
|
16231
16231
|
// Loop in reverse order to enable splicing the array while iterating
|
|
16232
16232
|
for (let i = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f").length - 1; i >= 0; i--) {
|
|
16233
|
-
const
|
|
16234
|
-
const complete =
|
|
16233
|
+
const callback = __classPrivateFieldGet(this, _ConversationConnector_connectionListeners, "f")[i];
|
|
16234
|
+
const complete = callback(payload);
|
|
16235
16235
|
// If we only want to execute the callback once, remove it from the listener
|
|
16236
16236
|
if (complete) {
|
|
16237
16237
|
var _context;
|
|
@@ -16708,7 +16708,7 @@ _API_ready = new (weak_map_default())(), _API_externalId = new (weak_map_default
|
|
|
16708
16708
|
return {
|
|
16709
16709
|
clientName: "@seamly/web-ui",
|
|
16710
16710
|
clientVariant: api_classPrivateFieldGet(this, _API_layoutMode, "f"),
|
|
16711
|
-
clientVersion: "21.0.
|
|
16711
|
+
clientVersion: "21.0.3-beta.3",
|
|
16712
16712
|
currentUrl: window.location.toString(),
|
|
16713
16713
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
16714
16714
|
timezone: getTimeZone(),
|
|
@@ -32888,7 +32888,6 @@ const DeprecatedAppFrame = _ref => {
|
|
|
32888
32888
|
|
|
32889
32889
|
|
|
32890
32890
|
|
|
32891
|
-
|
|
32892
32891
|
const ShowInlineView = _ref => {
|
|
32893
32892
|
let {
|
|
32894
32893
|
children
|
|
@@ -32903,7 +32902,6 @@ const ShowInlineView = _ref => {
|
|
|
32903
32902
|
});
|
|
32904
32903
|
};
|
|
32905
32904
|
const DeprecatedView = () => {
|
|
32906
|
-
use_seamly_chat();
|
|
32907
32905
|
const {
|
|
32908
32906
|
isVisible,
|
|
32909
32907
|
openChat,
|