tnx-shared 5.1.77 → 5.1.78

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.
Files changed (34) hide show
  1. package/assets/docker/docker-entrypoint.sh +22 -22
  2. package/bundles/tnx-shared.umd.js +55 -23
  3. package/bundles/tnx-shared.umd.js.map +1 -1
  4. package/bundles/tnx-shared.umd.min.js +1 -1
  5. package/bundles/tnx-shared.umd.min.js.map +1 -1
  6. package/classes/public-function.d.ts +1 -1
  7. package/components/crud/crud-form/crud-form.component.d.ts +2 -2
  8. package/components/crud/crud-list/crud-list.component.d.ts.map +1 -1
  9. package/components/share-link-by-permission/models/share-link-by-permission.d.ts +3 -0
  10. package/components/share-link-by-permission/models/share-link-by-permission.d.ts.map +1 -1
  11. package/components/share-link-by-permission/share-link-by-permission.component.d.ts.map +1 -1
  12. package/esm2015/components/chat/chat-box/chat-box.component.js +1 -1
  13. package/esm2015/components/chat/chat-send-message-box/chat-send-message-box.component.js +1 -1
  14. package/esm2015/components/crud/advance-search/advance-search.component.js +1 -1
  15. package/esm2015/components/crud/crud-list/crud-list.component.js +10 -7
  16. package/esm2015/components/qr-code-generator/qr-code-generator.component.js +2 -2
  17. package/esm2015/components/query-builders/query-builder/query-builder.component.js +1 -1
  18. package/esm2015/components/share-link-by-permission/models/share-link-by-permission.js +1 -1
  19. package/esm2015/components/share-link-by-permission/share-link-by-permission.component.js +31 -1
  20. package/esm2015/components/tn-tabview/tn-tabview.component.js +1 -1
  21. package/esm2015/components/universal-link-processor/universal-link-processor.component.js +2 -2
  22. package/esm2015/components/user-picker/user-picker-box/user-picker-box.component.js +1 -1
  23. package/esm2015/components/vanban-picker/vanban-den-picker/vanban-den-picker.component.js +2 -2
  24. package/esm2015/components/vanban-picker/vanban-di-picker/vanban-di-picker.component.js +2 -2
  25. package/esm2015/components/vanban-picker/vanban-picker-dialog/vanban-picker-dialog.component.js +2 -2
  26. package/esm2015/components/workflow/workflow-picker/workflow-picker.component.js +1 -1
  27. package/esm2015/components/workflow/workflow-setting-new/workflow-setting-new.component.js +1 -1
  28. package/esm2015/congviec/congviec/congviec-dinhkem/congviec-dinhkem.component.js +3 -3
  29. package/esm2015/congviec/congviec/congviec-dinhkem-form/congviec-dinhkem-form.component.js +2 -2
  30. package/esm2015/services/storage.service.js +1 -1
  31. package/fesm2015/tnx-shared.js +55 -22
  32. package/fesm2015/tnx-shared.js.map +1 -1
  33. package/package.json +2 -2
  34. package/tnx-shared.metadata.json +1 -1
@@ -1,22 +1,22 @@
1
- #!/usr/bin/env sh
2
- set -eu
3
-
4
- # Inject environment variables into NGINX configuration
5
- # List all variables to be substituted to avoid clashing with
6
- # NGINX own variables: https://serverfault.com/questions/577370
7
- envsubst \
8
- '${BASE_HREF}' \
9
- </etc/nginx/nginx.conf.template \
10
- >/etc/nginx/nginx.conf
11
- cat /etc/nginx/nginx.conf
12
-
13
- # Set correct HTML base tag, so static resources are fetched
14
- # from the right path instead of the root path.
15
- # NOTE: Trailing and leading slashes in base href are important!
16
- # Using `~` separator to avoid problems with forward slashes
17
- sed --in-place \
18
- 's~<base href="/">~<base href="'$BASE_HREF'/"><script type="text/javascript"> window.baseHref = "'$BASE_HREF'";</script>~' \
19
- /usr/share/nginx/html/index.html
20
-
21
- cat /usr/share/nginx/html/index.html
22
- exec "$@"
1
+ #!/usr/bin/env sh
2
+ set -eu
3
+
4
+ # Inject environment variables into NGINX configuration
5
+ # List all variables to be substituted to avoid clashing with
6
+ # NGINX own variables: https://serverfault.com/questions/577370
7
+ envsubst \
8
+ '${BASE_HREF}' \
9
+ </etc/nginx/nginx.conf.template \
10
+ >/etc/nginx/nginx.conf
11
+ cat /etc/nginx/nginx.conf
12
+
13
+ # Set correct HTML base tag, so static resources are fetched
14
+ # from the right path instead of the root path.
15
+ # NOTE: Trailing and leading slashes in base href are important!
16
+ # Using `~` separator to avoid problems with forward slashes
17
+ sed --in-place \
18
+ 's~<base href="/">~<base href="'$BASE_HREF'/"><script type="text/javascript"> window.baseHref = "'$BASE_HREF'";</script>~' \
19
+ /usr/share/nginx/html/index.html
20
+
21
+ cat /usr/share/nginx/html/index.html
22
+ exec "$@"