@carbon/ai-chat 0.1.1-alpha5 → 0.1.1-react17
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/dist/App.js +933 -55468
- package/dist/Carousel.js +1 -5705
- package/dist/Chat.js +1 -8339
- package/dist/GenesysMessengerServiceDesk.js +1 -579
- package/dist/HumanAgentServiceImpl.js +1 -1122
- package/dist/NiceDFOServiceDesk.js +2 -2097
- package/dist/PDFViewerContainer.js +2 -27439
- package/dist/SFServiceDesk.js +1 -1012
- package/dist/ServiceDeskImpl.js +1 -72
- package/dist/ZendeskServiceDesk.js +1 -649
- package/dist/_commonjsHelpers.js +1 -33
- package/dist/_node-resolve_empty.js +1 -25
- package/dist/agentActions.js +1 -187
- package/dist/aiChatEntry.js +1 -28
- package/dist/aiChatEntry2.js +4 -7022
- package/dist/anonymousUserIDStorage.js +2 -250
- package/dist/ar-dz.js +1 -55
- package/dist/ar-kw.js +1 -55
- package/dist/ar-ly.js +1 -55
- package/dist/ar-ma.js +1 -55
- package/dist/ar-sa.js +1 -55
- package/dist/ar-tn.js +1 -55
- package/dist/ar.js +1 -55
- package/dist/ar2.js +1 -470
- package/dist/cs.js +1 -55
- package/dist/cs2.js +1 -470
- package/dist/de-at.js +1 -55
- package/dist/de-ch.js +1 -55
- package/dist/de.js +1 -55
- package/dist/de2.js +1 -470
- package/dist/domUtils.js +2 -820
- package/dist/en-au.js +1 -55
- package/dist/en-ca.js +1 -55
- package/dist/en-gb.js +1 -55
- package/dist/en-ie.js +1 -55
- package/dist/en-il.js +1 -55
- package/dist/en-nz.js +1 -55
- package/dist/es-do.js +1 -55
- package/dist/es-us.js +1 -55
- package/dist/es.js +1 -55
- package/dist/es2.js +1 -470
- package/dist/export.js +1 -25
- package/dist/export.legacy.js +1 -25
- package/dist/fontUtils.js +1 -1036
- package/dist/fr-ca.js +1 -55
- package/dist/fr-ch.js +1 -55
- package/dist/fr.js +1 -55
- package/dist/fr2.js +1 -470
- package/dist/humanAgentUtils.js +1 -1393
- package/dist/it-ch.js +1 -55
- package/dist/it.js +1 -55
- package/dist/it2.js +1 -470
- package/dist/ja.js +1 -55
- package/dist/ja2.js +1 -470
- package/dist/jstz.min.js +1 -41
- package/dist/ko.js +1 -55
- package/dist/ko2.js +1 -470
- package/dist/messageUtils.js +1 -1338
- package/dist/mockServiceDesk.js +1 -851
- package/dist/moduleFederationPluginUtils.js +2 -5852
- package/dist/nl.js +1 -55
- package/dist/nl2.js +1 -470
- package/dist/pt-br.js +1 -55
- package/dist/pt-br2.js +1 -470
- package/dist/pt.js +1 -55
- package/dist/render.js +1 -88
- package/dist/web-components/cds-aichat-container/index.js +3 -3
- package/dist/web-components/cds-aichat-container/index.js.map +1 -1
- package/dist/web-components/cds-aichat-custom-element/index.js +2 -2
- package/dist/web-components/cds-aichat-custom-element/index.js.map +1 -1
- package/dist/zh-cn.js +1 -55
- package/dist/zh-tw.js +1 -55
- package/dist/zh-tw2.js +1 -470
- package/dist/zh.js +1 -470
- package/package.json +1 -1
|
@@ -1,250 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { I as IS_SESSION_STORAGE, aK as isSecureHost } from './humanAgentUtils.js';
|
|
24
|
-
import { u as uuid, U as UUIDType } from './aiChatEntry2.js';
|
|
25
|
-
|
|
26
|
-
/*! js-cookie v3.0.5 | MIT */
|
|
27
|
-
/* eslint-disable no-var */
|
|
28
|
-
function assign (target) {
|
|
29
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
30
|
-
var source = arguments[i];
|
|
31
|
-
for (var key in source) {
|
|
32
|
-
target[key] = source[key];
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
return target
|
|
36
|
-
}
|
|
37
|
-
/* eslint-enable no-var */
|
|
38
|
-
|
|
39
|
-
/* eslint-disable no-var */
|
|
40
|
-
var defaultConverter = {
|
|
41
|
-
read: function (value) {
|
|
42
|
-
if (value[0] === '"') {
|
|
43
|
-
value = value.slice(1, -1);
|
|
44
|
-
}
|
|
45
|
-
return value.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent)
|
|
46
|
-
},
|
|
47
|
-
write: function (value) {
|
|
48
|
-
return encodeURIComponent(value).replace(
|
|
49
|
-
/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,
|
|
50
|
-
decodeURIComponent
|
|
51
|
-
)
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
/* eslint-enable no-var */
|
|
55
|
-
|
|
56
|
-
/* eslint-disable no-var */
|
|
57
|
-
|
|
58
|
-
function init (converter, defaultAttributes) {
|
|
59
|
-
function set (name, value, attributes) {
|
|
60
|
-
if (typeof document === 'undefined') {
|
|
61
|
-
return
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
attributes = assign({}, defaultAttributes, attributes);
|
|
65
|
-
|
|
66
|
-
if (typeof attributes.expires === 'number') {
|
|
67
|
-
attributes.expires = new Date(Date.now() + attributes.expires * 864e5);
|
|
68
|
-
}
|
|
69
|
-
if (attributes.expires) {
|
|
70
|
-
attributes.expires = attributes.expires.toUTCString();
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
name = encodeURIComponent(name)
|
|
74
|
-
.replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent)
|
|
75
|
-
.replace(/[()]/g, escape);
|
|
76
|
-
|
|
77
|
-
var stringifiedAttributes = '';
|
|
78
|
-
for (var attributeName in attributes) {
|
|
79
|
-
if (!attributes[attributeName]) {
|
|
80
|
-
continue
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
stringifiedAttributes += '; ' + attributeName;
|
|
84
|
-
|
|
85
|
-
if (attributes[attributeName] === true) {
|
|
86
|
-
continue
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// Considers RFC 6265 section 5.2:
|
|
90
|
-
// ...
|
|
91
|
-
// 3. If the remaining unparsed-attributes contains a %x3B (";")
|
|
92
|
-
// character:
|
|
93
|
-
// Consume the characters of the unparsed-attributes up to,
|
|
94
|
-
// not including, the first %x3B (";") character.
|
|
95
|
-
// ...
|
|
96
|
-
stringifiedAttributes += '=' + attributes[attributeName].split(';')[0];
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
return (document.cookie =
|
|
100
|
-
name + '=' + converter.write(value, name) + stringifiedAttributes)
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
function get (name) {
|
|
104
|
-
if (typeof document === 'undefined' || (arguments.length && !name)) {
|
|
105
|
-
return
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// To prevent the for loop in the first place assign an empty array
|
|
109
|
-
// in case there are no cookies at all.
|
|
110
|
-
var cookies = document.cookie ? document.cookie.split('; ') : [];
|
|
111
|
-
var jar = {};
|
|
112
|
-
for (var i = 0; i < cookies.length; i++) {
|
|
113
|
-
var parts = cookies[i].split('=');
|
|
114
|
-
var value = parts.slice(1).join('=');
|
|
115
|
-
|
|
116
|
-
try {
|
|
117
|
-
var found = decodeURIComponent(parts[0]);
|
|
118
|
-
jar[found] = converter.read(value, found);
|
|
119
|
-
|
|
120
|
-
if (name === found) {
|
|
121
|
-
break
|
|
122
|
-
}
|
|
123
|
-
} catch (e) {}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
return name ? jar[name] : jar
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
return Object.create(
|
|
130
|
-
{
|
|
131
|
-
set,
|
|
132
|
-
get,
|
|
133
|
-
remove: function (name, attributes) {
|
|
134
|
-
set(
|
|
135
|
-
name,
|
|
136
|
-
'',
|
|
137
|
-
assign({}, attributes, {
|
|
138
|
-
expires: -1
|
|
139
|
-
})
|
|
140
|
-
);
|
|
141
|
-
},
|
|
142
|
-
withAttributes: function (attributes) {
|
|
143
|
-
return init(this.converter, assign({}, this.attributes, attributes))
|
|
144
|
-
},
|
|
145
|
-
withConverter: function (converter) {
|
|
146
|
-
return init(assign({}, this.converter, converter), this.attributes)
|
|
147
|
-
}
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
attributes: { value: Object.freeze(defaultAttributes) },
|
|
151
|
-
converter: { value: Object.freeze(converter) }
|
|
152
|
-
}
|
|
153
|
-
)
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
var api = init(defaultConverter, { path: '/' });
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
*
|
|
160
|
-
* IBM Confidential
|
|
161
|
-
*
|
|
162
|
-
* (C) Copyright IBM Corp. 2019, 2023
|
|
163
|
-
*
|
|
164
|
-
* The source code for this program is not published or otherwise
|
|
165
|
-
* divested of its trade secrets, irrespective of what has been
|
|
166
|
-
* deposited with the U. S. Copyright Office
|
|
167
|
-
*
|
|
168
|
-
* US Government Users Restricted Rights - Use, duplication or
|
|
169
|
-
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
170
|
-
*
|
|
171
|
-
*/
|
|
172
|
-
/**
|
|
173
|
-
* This module is responsible for managing the storage of anonymousUserId. We use an anonymousUserId if the userId is
|
|
174
|
-
* not set in order to not repeat bill unique users that are anonymous. The id is stored (preferentially) as a 1st
|
|
175
|
-
* party cookie that expires in 45 days. The expiration date is so we don't leave data sitting in the user's browser
|
|
176
|
-
* for a long period of time per IBM policy. The period of 45 days is chosen so that the cookie does not expire
|
|
177
|
-
* within a given month of so which would result in the user being detected as a new user and thus causing the
|
|
178
|
-
* client to be billed for an additional user. The number should be between 32 days (the minimum to cover a whole month)
|
|
179
|
-
* and 365 days (the maximum allowed by IBM policy).
|
|
180
|
-
*/
|
|
181
|
-
// The length of cookie the anonymous userID cookie should live in days. This may be fractions of days if needed.
|
|
182
|
-
const COOKIE_DURATION = 45; // Days
|
|
183
|
-
// The prefix attached to all anonymous user ids.
|
|
184
|
-
const ANONYMOUS_USER_ID_PREFIX = 'anonymous_IBMuid-';
|
|
185
|
-
// The key in browser storage that contains the session id for a particular user.
|
|
186
|
-
const ANONYMOUS_USER_ID_KEY = 'IBM_WAC_ANONYMOUS_USER_ID';
|
|
187
|
-
/**
|
|
188
|
-
* Returns the anonymousUserId as recorded in local storage. If there is no defined anonymousUserId, this
|
|
189
|
-
* will return undefined.
|
|
190
|
-
*/
|
|
191
|
-
function getAnonymousUserID(useCookie) {
|
|
192
|
-
// Return the value of the cookie, looking in session storage first as that's our fallback if cookies aren't
|
|
193
|
-
// available.
|
|
194
|
-
let userID;
|
|
195
|
-
if (IS_SESSION_STORAGE()) {
|
|
196
|
-
if (useCookie) {
|
|
197
|
-
userID = window.sessionStorage.getItem(ANONYMOUS_USER_ID_KEY) || api.get(ANONYMOUS_USER_ID_KEY);
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
userID = window.sessionStorage.getItem(ANONYMOUS_USER_ID_KEY);
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
else if (useCookie) {
|
|
204
|
-
userID = api.get(ANONYMOUS_USER_ID_KEY);
|
|
205
|
-
}
|
|
206
|
-
// If there is an ID, we need to do a "set" again which will update the expiration date on the cookie.
|
|
207
|
-
if (userID) {
|
|
208
|
-
setAnonymousUserId(userID, useCookie);
|
|
209
|
-
}
|
|
210
|
-
return userID || null;
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* Sets the anonymousUserId in local storage.
|
|
214
|
-
*/
|
|
215
|
-
function setAnonymousUserId(anonymousUserId, useCookie) {
|
|
216
|
-
if (useCookie) {
|
|
217
|
-
api.set(ANONYMOUS_USER_ID_KEY, anonymousUserId, {
|
|
218
|
-
expires: COOKIE_DURATION,
|
|
219
|
-
sameSite: 'lax',
|
|
220
|
-
secure: isSecureHost(),
|
|
221
|
-
});
|
|
222
|
-
}
|
|
223
|
-
if ((!useCookie || !api.get(ANONYMOUS_USER_ID_KEY)) && IS_SESSION_STORAGE()) {
|
|
224
|
-
// If the cookie failed to get set, it means we're in a higher security level and we need to attempt to use
|
|
225
|
-
// session storage instead. If tracking is disabled, browsers may disable localStorage and cookies, but still allow
|
|
226
|
-
// session storage. Falling back to session storage at least allows us to not bill each page view as an
|
|
227
|
-
// individual user! https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Privacy/Storage_access_policy
|
|
228
|
-
window.sessionStorage.setItem(ANONYMOUS_USER_ID_KEY, anonymousUserId);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
/**
|
|
232
|
-
* Generated a new anonymousUserId (MUST start with anonymous_ to be handled correctly downstream).
|
|
233
|
-
*/
|
|
234
|
-
function generateAndSetAnonymousUserId(useCookie) {
|
|
235
|
-
const anonymousUserId = `${ANONYMOUS_USER_ID_PREFIX}${uuid(UUIDType.USER)}`;
|
|
236
|
-
setAnonymousUserId(anonymousUserId, useCookie);
|
|
237
|
-
return anonymousUserId;
|
|
238
|
-
}
|
|
239
|
-
/**
|
|
240
|
-
* Clear the anonymousUserId from localStorage. Called when a real userId is set.
|
|
241
|
-
*
|
|
242
|
-
*/
|
|
243
|
-
function clearAnonymousUserId() {
|
|
244
|
-
api.remove(ANONYMOUS_USER_ID_KEY);
|
|
245
|
-
if (IS_SESSION_STORAGE()) {
|
|
246
|
-
window.sessionStorage.removeItem(ANONYMOUS_USER_ID_KEY);
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
export { ANONYMOUS_USER_ID_PREFIX as A, generateAndSetAnonymousUserId as a, clearAnonymousUserId as c, getAnonymousUserID as g };
|
|
1
|
+
import{I as e,aK as t}from"./humanAgentUtils.js";import{u as n,U as r}from"./aiChatEntry2.js";
|
|
2
|
+
/*! js-cookie v3.0.5 | MIT */function o(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var i=function e(t,n){function r(e,r,i){if("undefined"!=typeof document){"number"==typeof(i=o({},n,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var a in i)i[a]&&(s+="; "+a,!0!==i[a]&&(s+="="+i[a].split(";")[0]));return document.cookie=e+"="+t.write(r,e)+s}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],r={},o=0;o<n.length;o++){var i=n[o].split("="),s=i.slice(1).join("=");try{var a=decodeURIComponent(i[0]);if(r[a]=t.read(s,a),e===a)break}catch(e){}}return e?r[e]:r}},remove:function(e,t){r(e,"",o({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,o({},this.attributes,t))},withConverter:function(t){return e(o({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"});const s=45,a="anonymous_IBMuid-",c="IBM_WAC_ANONYMOUS_USER_ID";function u(t){let n;return e()?n=t?window.sessionStorage.getItem(c)||i.get(c):window.sessionStorage.getItem(c):t&&(n=i.get(c)),n&&f(n,t),n||null}function f(n,r){r&&i.set(c,n,{expires:s,sameSite:"lax",secure:t()}),r&&i.get(c)||!e()||window.sessionStorage.setItem(c,n)}function p(e){const t=`${a}${n(r.USER)}`;return f(t,e),t}function d(){i.remove(c),e()&&window.sessionStorage.removeItem(c)}export{a as A,p as a,d as c,u as g};
|
package/dist/ar-dz.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arDz$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(_,e){module.exports=e(dayjs_minExports);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),d={name:"ar-dz",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),ordinal:function(_){return _},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(_){return _>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return t.default.locale(d,null,!0),d}));
|
|
45
|
-
} (arDz$2));
|
|
46
|
-
|
|
47
|
-
var arDzExports = arDz$2.exports;
|
|
48
|
-
var arDz = /*@__PURE__*/getDefaultExportFromCjs(arDzExports);
|
|
49
|
-
|
|
50
|
-
var arDz$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arDz
|
|
53
|
-
}, [arDzExports]);
|
|
54
|
-
|
|
55
|
-
export { arDz$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-dz",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return _.default.locale(r,null,!0),r}(_),s=r({__proto__:null,default:e(o)},[o]);export{s as a};
|
package/dist/ar-kw.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arKw$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(_,e){module.exports=e(dayjs_minExports);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),d={name:"ar-kw",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(_){return _},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(_){return _>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return t.default.locale(d,null,!0),d}));
|
|
45
|
-
} (arKw$2));
|
|
46
|
-
|
|
47
|
-
var arKwExports = arKw$2.exports;
|
|
48
|
-
var arKw = /*@__PURE__*/getDefaultExportFromCjs(arKwExports);
|
|
49
|
-
|
|
50
|
-
var arKw$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arKw
|
|
53
|
-
}, [arKwExports]);
|
|
54
|
-
|
|
55
|
-
export { arKw$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-kw",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return _.default.locale(r,null,!0),r}(_),s=r({__proto__:null,default:e(o)},[o]);export{s as a};
|
package/dist/ar-ly.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arLy$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(_,e){module.exports=e(dayjs_minExports);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),n={name:"ar-ly",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekStart:6,weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(_){return _},meridiem:function(_){return _>12?"م":"ص"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"}};return t.default.locale(n,null,!0),n}));
|
|
45
|
-
} (arLy$2));
|
|
46
|
-
|
|
47
|
-
var arLyExports = arLy$2.exports;
|
|
48
|
-
var arLy = /*@__PURE__*/getDefaultExportFromCjs(arLyExports);
|
|
49
|
-
|
|
50
|
-
var arLy$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arLy
|
|
53
|
-
}, [arLyExports]);
|
|
54
|
-
|
|
55
|
-
export { arLy$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-ly",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekStart:6,weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},meridiem:function(e){return e>12?"م":"ص"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"}};return _.default.locale(r,null,!0),r}(_),a=r({__proto__:null,default:e(o)},[o]);export{a};
|
package/dist/ar-ma.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arMa$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(e,_){module.exports=_(dayjs_minExports);}(commonjsGlobal,(function(e){function _(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var t=_(e),d={name:"ar-ma",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekStart:6,weekdaysShort:"احد_إثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return t.default.locale(d,null,!0),d}));
|
|
45
|
-
} (arMa$2));
|
|
46
|
-
|
|
47
|
-
var arMaExports = arMa$2.exports;
|
|
48
|
-
var arMa = /*@__PURE__*/getDefaultExportFromCjs(arMaExports);
|
|
49
|
-
|
|
50
|
-
var arMa$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arMa
|
|
53
|
-
}, [arMaExports]);
|
|
54
|
-
|
|
55
|
-
export { arMa$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-ma",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekStart:6,weekdaysShort:"احد_إثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return _.default.locale(r,null,!0),r}(_),a=r({__proto__:null,default:e(o)},[o]);export{a};
|
package/dist/ar-sa.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arSa$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(_,e){module.exports=e(dayjs_minExports);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),d={name:"ar-sa",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(_){return _},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(_){return _>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return t.default.locale(d,null,!0),d}));
|
|
45
|
-
} (arSa$2));
|
|
46
|
-
|
|
47
|
-
var arSaExports = arSa$2.exports;
|
|
48
|
-
var arSa = /*@__PURE__*/getDefaultExportFromCjs(arSaExports);
|
|
49
|
-
|
|
50
|
-
var arSa$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arSa
|
|
53
|
-
}, [arSaExports]);
|
|
54
|
-
|
|
55
|
-
export { arSa$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-sa",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return _.default.locale(r,null,!0),r}(_),s=r({__proto__:null,default:e(o)},[o]);export{s as a};
|
package/dist/ar-tn.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
(C) Copyright IBM Corp. 2017, 2024. All Rights Reserved.
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
7
|
-
in compliance with the License. You may obtain a copy of the License at
|
|
8
|
-
|
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
12
|
-
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
13
|
-
or implied. See the License for the specific language governing permissions and limitations under
|
|
14
|
-
the License.
|
|
15
|
-
|
|
16
|
-
@carbon/ai-chat 0.1.1-alpha5
|
|
17
|
-
|
|
18
|
-
Built: Oct 24 2024 10:59 am -04:00
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal } from './_commonjsHelpers.js';
|
|
24
|
-
import { a0 as dayjs_minExports } from './moduleFederationPluginUtils.js';
|
|
25
|
-
|
|
26
|
-
function _mergeNamespaces(n, m) {
|
|
27
|
-
m.forEach(function (e) {
|
|
28
|
-
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
29
|
-
if (k !== 'default' && !(k in n)) {
|
|
30
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return e[k]; }
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var arTn$2 = {exports: {}};
|
|
42
|
-
|
|
43
|
-
(function (module, exports) {
|
|
44
|
-
!function(e,_){module.exports=_(dayjs_minExports);}(commonjsGlobal,(function(e){function _(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var t=_(e),d={name:"ar-tn",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekStart:1,weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return t.default.locale(d,null,!0),d}));
|
|
45
|
-
} (arTn$2));
|
|
46
|
-
|
|
47
|
-
var arTnExports = arTn$2.exports;
|
|
48
|
-
var arTn = /*@__PURE__*/getDefaultExportFromCjs(arTnExports);
|
|
49
|
-
|
|
50
|
-
var arTn$1 = /*#__PURE__*/_mergeNamespaces({
|
|
51
|
-
__proto__: null,
|
|
52
|
-
default: arTn
|
|
53
|
-
}, [arTnExports]);
|
|
54
|
-
|
|
55
|
-
export { arTn$1 as a };
|
|
1
|
+
import{g as e,c as t}from"./_commonjsHelpers.js";import{a0 as _}from"./moduleFederationPluginUtils.js";function r(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(_){if("default"!==_&&!(_ in e)){var r=Object.getOwnPropertyDescriptor(t,_);Object.defineProperty(e,_,r.get?r:{enumerable:!0,get:function(){return t[_]}})}}))})),Object.freeze(e)}var n={exports:{}},o=n.exports=function(e){function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var _=t(e),r={name:"ar-tn",weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekStart:1,weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiem:function(e){return e>12?"م":"ص"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"}};return _.default.locale(r,null,!0),r}(_),s=r({__proto__:null,default:e(o)},[o]);export{s as a};
|