@zextras/carbonio-shell-ui 0.4.39 → 0.4.40
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/CHANGELOG.md +7 -0
- package/dist/PKGBUILD +7 -7
- package/dist/commit +1 -1
- package/dist/component.json +3 -3
- package/dist/index.html +3 -3
- package/dist/{src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.b732e9fa.chunk.js → src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.a84a22bb.chunk.js} +932 -995
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.a84a22bb.chunk.js.map +1 -0
- package/dist/{src_workers_folder_ts.fe1dc29f.chunk.js → src_workers_folder_ts.4f8ee05b.chunk.js} +2 -2
- package/dist/{src_workers_folder_ts.fe1dc29f.chunk.js.map → src_workers_folder_ts.4f8ee05b.chunk.js.map} +1 -1
- package/dist/{src_workers_tag_ts.07ecb5ff.chunk.js → src_workers_tag_ts.9abdc502.chunk.js} +2 -2
- package/dist/{src_workers_tag_ts.07ecb5ff.chunk.js.map → src_workers_tag_ts.9abdc502.chunk.js.map} +1 -1
- package/dist/{style.f89661d0.css → style.a13a920b.css} +29 -29
- package/dist/{style.f89661d0.css.map → style.a13a920b.css.map} +1 -1
- package/dist/zapp-shell.bundle.js +2 -2
- package/dist/zapp-shell.bundle.js.map +1 -1
- package/package.json +1 -1
- package/types/exports/index.d.ts +17 -23
- package/types/i18n/index.d.ts +6 -0
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.b732e9fa.chunk.js.map +0 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.4.40](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.39...v0.4.40) (2022-10-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* fixed translation function and contexts ([b1165d7](https://github.com/zextras/carbonio-shell-ui/commit/b1165d717aa370f2e79f360014827cdf1ae7d7af))
|
|
11
|
+
|
|
5
12
|
### [0.4.39](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.38...v0.4.39) (2022-10-17)
|
|
6
13
|
|
|
7
14
|
|
package/dist/PKGBUILD
CHANGED
|
@@ -10,7 +10,7 @@ targets=(
|
|
|
10
10
|
"ubuntu"
|
|
11
11
|
)
|
|
12
12
|
pkgname="carbonio-shell-ui"
|
|
13
|
-
pkgver="0.4.
|
|
13
|
+
pkgver="0.4.40"
|
|
14
14
|
pkgrel="1"
|
|
15
15
|
pkgdesc="The Zextras Carbonio web client"
|
|
16
16
|
pkgdesclong=(
|
|
@@ -35,11 +35,11 @@ preinst() {
|
|
|
35
35
|
|
|
36
36
|
package() {
|
|
37
37
|
cd "${srcdir}"
|
|
38
|
-
mkdir -p "${pkgdir}/opt/zextras/web/iris/${pkgname}/
|
|
39
|
-
cp -a ../dist/* "${pkgdir}/opt/zextras/web/iris/${pkgname}/
|
|
40
|
-
chown root:root -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/
|
|
41
|
-
chmod 644 -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/
|
|
42
|
-
find "${pkgdir}/opt/zextras/web/iris/${pkgname}/
|
|
38
|
+
mkdir -p "${pkgdir}/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4"
|
|
39
|
+
cp -a ../dist/* "${pkgdir}/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4" || true
|
|
40
|
+
chown root:root -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4"
|
|
41
|
+
chmod 644 -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4"
|
|
42
|
+
find "${pkgdir}/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4" -type d -exec chmod a+x "{}" \;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
postinst() {
|
|
@@ -47,7 +47,7 @@ postinst() {
|
|
|
47
47
|
mkdir -p "/opt/zextras/web/iris/${pkgname}/current"
|
|
48
48
|
|
|
49
49
|
# not every package has a index.html
|
|
50
|
-
cd "/opt/zextras/web/iris/${pkgname}/
|
|
50
|
+
cd "/opt/zextras/web/iris/${pkgname}/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4"
|
|
51
51
|
find . -name "*.html" -exec cp --parents "{}" /opt/zextras/web/iris/${pkgname}/current/ \;
|
|
52
52
|
|
|
53
53
|
# re-generate the component list, for every component
|
package/dist/commit
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4
|
package/dist/component.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carbonio-shell-ui",
|
|
3
|
-
"js_entrypoint": "/static/iris/carbonio-shell-ui/
|
|
3
|
+
"js_entrypoint": "/static/iris/carbonio-shell-ui/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4/zapp-shell.bundle.js",
|
|
4
4
|
"description": "The Zextras Carbonio web client",
|
|
5
|
-
"version": "0.4.
|
|
6
|
-
"commit": "
|
|
5
|
+
"version": "0.4.40",
|
|
6
|
+
"commit": "ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4",
|
|
7
7
|
"priority": -1,
|
|
8
8
|
"type": "shell",
|
|
9
9
|
"attrKey": "",
|
package/dist/index.html
CHANGED
|
@@ -9,8 +9,8 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|
|
9
9
|
|
|
10
10
|
<head>
|
|
11
11
|
<title>Carbonio Client</title>
|
|
12
|
-
<link rel="icon" type="image/svg+xml" href="/static/iris/carbonio-shell-ui/
|
|
13
|
-
<link rel="alternate icon" href="/static/iris/carbonio-shell-ui/
|
|
12
|
+
<link rel="icon" type="image/svg+xml" href="/static/iris/carbonio-shell-ui/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4/favicon.svg">
|
|
13
|
+
<link rel="alternate icon" href="/static/iris/carbonio-shell-ui/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4/favicon.png">
|
|
14
14
|
<meta charset="utf-8">
|
|
15
15
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
16
16
|
<meta name="viewport" content="minimum-scale=1.0, initial-scale=1.0, width=device-width, shrink-to-fit=no">
|
|
@@ -19,7 +19,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|
|
19
19
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
20
20
|
<meta http-equiv="Expires" content="0" />
|
|
21
21
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
|
|
22
|
-
<script defer src="/static/iris/carbonio-shell-ui/
|
|
22
|
+
<script defer src="/static/iris/carbonio-shell-ui/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4/zapp-shell.bundle.js"></script><link href="/static/iris/carbonio-shell-ui/ea7a3acb2a320477aa844bc2855ef85b2f0cf4f4/style.a13a920b.css" rel="stylesheet"></head>
|
|
23
23
|
|
|
24
24
|
<body>
|
|
25
25
|
<div id="app"></div>
|