@bluealba/platform-cli 0.2.0 → 0.3.0-feature-platform-cli-211
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/index.js +776 -163
- package/package.json +5 -5
- package/templates/bootstrap-service-template/package.json +2 -2
- package/templates/customization-ui-module-template/package.json +2 -2
- package/templates/customization-ui-module-template/src/root.component.tsx +2 -11
- package/templates/platform-init-template/{local → core/local}/core-docker-compose.yml +4 -4
- package/templates/platform-init-template/{local → core/local}/platform-docker-compose.yml +1 -1
- package/templates/react-ui-module-template/package.json +1 -1
- package/templates/customization-ui-module-template/src/components/ExpandedNavbarLogo.tsx +0 -62
- package/templates/customization-ui-module-template/src/components/ExtensionPoints/index.tsx +0 -28
- package/templates/customization-ui-module-template/src/components/Logo.tsx +0 -55
- package/templates/customization-ui-module-template/src/components/SplashLogo.tsx +0 -52
- package/templates/customization-ui-module-template/src/hooks/useDynamicStyleSheet.ts +0 -18
- package/templates/platform-init-template/local/docker-compose.yml +0 -3
- package/templates/platform-init-template/local/package.json +0 -18
- package/templates/platform-init-template/local/scripts/build.sh +0 -18
- package/templates/platform-init-template/local/scripts/install.sh +0 -18
- /package/templates/platform-init-template/{local → core/local}/.env.example +0 -0
- /package/templates/platform-init-template/{local → core/local}/environment/pae-nestjs-gateway-service.env +0 -0
- /package/templates/platform-init-template/{local → core/local}/nginx.conf +0 -0
- /package/templates/platform-init-template/{local → core/local}/ssl/cert.pem +0 -0
- /package/templates/platform-init-template/{local → core/local}/ssl/key.pem +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluealba/platform-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-feature-platform-cli-211",
|
|
4
4
|
"description": "Blue Alba Platform CLI",
|
|
5
5
|
"license": "PolyForm-Noncommercial-1.0.0",
|
|
6
6
|
"type": "module",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^25.5.0",
|
|
29
29
|
"@types/react": "^19.0.0",
|
|
30
|
-
"tsup": "^8.0.0"
|
|
31
|
-
"typescript": "^5.0.0"
|
|
30
|
+
"tsup": "^8.0.0"
|
|
32
31
|
},
|
|
33
32
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
33
|
+
"node": ">=22"
|
|
35
34
|
},
|
|
36
35
|
"publishConfig": {
|
|
36
|
+
"@bluealba:registry": "https://registry.npmjs.org/",
|
|
37
37
|
"access": "public"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
// import './styles/splash.css';
|
|
2
|
-
|
|
3
1
|
// @ts-expect-error test
|
|
4
2
|
import styles from '!css-loader!./styles/index.css';
|
|
5
3
|
import { RootComponentProps } from '@bluealba/pae-ui-react-core';
|
|
6
|
-
import ExtensionPoints from './components/ExtensionPoints';
|
|
7
|
-
import { useDynamicStyleSheet } from './hooks/useDynamicStyleSheet';
|
|
8
|
-
|
|
9
|
-
// injectFonts();
|
|
10
4
|
|
|
11
5
|
export default function Root(_props: RootComponentProps) {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
return (
|
|
15
|
-
<ExtensionPoints />
|
|
16
|
-
);
|
|
6
|
+
// Your customization components here.
|
|
7
|
+
return null;
|
|
17
8
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
services:
|
|
3
3
|
platform-bootstrap-service:
|
|
4
4
|
build:
|
|
5
|
-
context: ../
|
|
5
|
+
context: ../services/platform-bootstrap-service
|
|
6
6
|
dockerfile: Dockerfile.development
|
|
7
7
|
environment:
|
|
8
8
|
- NODE_TLS_REJECT_UNAUTHORIZED=0
|
|
@@ -12,16 +12,16 @@ services:
|
|
|
12
12
|
- GATEWAY_SERVICE_URL=${PAE_GATEWAY_URL}
|
|
13
13
|
- SERVICE_ACCESS_SECRET=${PAE_GATEWAY_SERVICE_ACCESS_SECRET}
|
|
14
14
|
volumes:
|
|
15
|
-
- ${PWD}
|
|
15
|
+
- ${PWD}/:/app/out
|
|
16
16
|
depends_on:
|
|
17
17
|
pae-nestjs-gateway-service:
|
|
18
18
|
condition: service_healthy
|
|
19
19
|
|
|
20
20
|
platform-customization-ui:
|
|
21
21
|
build:
|
|
22
|
-
context: ../
|
|
22
|
+
context: ../ui/platform-customization-ui
|
|
23
23
|
dockerfile: Dockerfile.development
|
|
24
24
|
ports:
|
|
25
25
|
- 9446:80
|
|
26
26
|
volumes:
|
|
27
|
-
- ${PWD}
|
|
27
|
+
- ${PWD}/:/app/out
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import type { FC } from 'react';
|
|
2
|
-
|
|
3
|
-
type ExpandedLogoProps = {
|
|
4
|
-
size?: number;
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
const ExpandedLogo: FC<ExpandedLogoProps> = ({ size = 232 }) => {
|
|
8
|
-
return (
|
|
9
|
-
<svg width={size} height={size * 0.135} viewBox="0 0 237 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10
|
-
<title>Tradewinds Logo Large</title>
|
|
11
|
-
<g clipPath="url(#clip0_2118_4342)">
|
|
12
|
-
<path
|
|
13
|
-
fillRule="evenodd"
|
|
14
|
-
clipRule="evenodd"
|
|
15
|
-
d="M0 29.3925C11.8178 7.00634 34.7505 22.104 47.1931 5.49658C40.1388 30.9283 14.9154 15.7525 0 29.3925Z"
|
|
16
|
-
fill="#E4E4E7"
|
|
17
|
-
/>
|
|
18
|
-
<path
|
|
19
|
-
fillRule="evenodd"
|
|
20
|
-
clipRule="evenodd"
|
|
21
|
-
d="M0 29.3925C11.8178 7.00634 34.7505 22.104 47.1931 5.49658C36.9371 26.1907 13.1974 11.3534 0 29.3925Z"
|
|
22
|
-
fill="white"
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
fillRule="evenodd"
|
|
26
|
-
clipRule="evenodd"
|
|
27
|
-
d="M11.1411 25.2016C19.8613 22.5725 36.7029 24.9153 41.9611 17.5747C36.2344 29.9652 24.4947 24.707 11.1411 25.2016Z"
|
|
28
|
-
fill="#E4E4E7"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
fillRule="evenodd"
|
|
32
|
-
clipRule="evenodd"
|
|
33
|
-
d="M11.1411 25.2016C19.8613 22.5725 36.7029 24.9153 41.9611 17.5747C35.9481 27.6745 21.0847 23.1973 11.1411 25.2016Z"
|
|
34
|
-
fill="white"
|
|
35
|
-
/>
|
|
36
|
-
<path
|
|
37
|
-
fillRule="evenodd"
|
|
38
|
-
clipRule="evenodd"
|
|
39
|
-
d="M11.7917 16.8458C26.1605 4.71566 40.8677 9.3751 48 2.47705C39.1236 15.6224 24 11.3794 11.7917 16.8458Z"
|
|
40
|
-
fill="#E4E4E7"
|
|
41
|
-
/>
|
|
42
|
-
<path
|
|
43
|
-
fillRule="evenodd"
|
|
44
|
-
clipRule="evenodd"
|
|
45
|
-
d="M11.7917 16.8458C26.1605 4.71566 40.8677 9.3751 48 2.47705C38.2646 13.2536 25.2234 8.02152 11.7917 16.8458Z"
|
|
46
|
-
fill="white"
|
|
47
|
-
/>
|
|
48
|
-
</g>
|
|
49
|
-
<path
|
|
50
|
-
d="M69.6133 24V9.72656H64.5156V6.82031H78.168V9.72656H73.082V24H69.6133ZM82.2109 24H78.918V11.5547H81.9766V13.3242C82.5 12.4883 82.9688 11.9375 83.3828 11.6719C83.8047 11.4062 84.2812 11.2734 84.8125 11.2734C85.5625 11.2734 86.2852 11.4805 86.9805 11.8945L85.9609 14.7656C85.4062 14.4062 84.8906 14.2266 84.4141 14.2266C83.9531 14.2266 83.5625 14.3555 83.2422 14.6133C82.9219 14.8633 82.668 15.3203 82.4805 15.9844C82.3008 16.6484 82.2109 18.0391 82.2109 20.1562V24ZM90.8711 15.3516L87.8828 14.8125C88.2188 13.6094 88.7969 12.7188 89.6172 12.1406C90.4375 11.5625 91.6562 11.2734 93.2734 11.2734C94.7422 11.2734 95.8359 11.4492 96.5547 11.8008C97.2734 12.1445 97.7773 12.5859 98.0664 13.125C98.3633 13.6562 98.5117 14.6367 98.5117 16.0664L98.4766 19.9102C98.4766 21.0039 98.5273 21.8125 98.6289 22.3359C98.7383 22.8516 98.9375 23.4062 99.2266 24H95.9688C95.8828 23.7812 95.7773 23.457 95.6523 23.0273C95.5977 22.832 95.5586 22.7031 95.5352 22.6406C94.9727 23.1875 94.3711 23.5977 93.7305 23.8711C93.0898 24.1445 92.4062 24.2812 91.6797 24.2812C90.3984 24.2812 89.3867 23.9336 88.6445 23.2383C87.9102 22.543 87.543 21.6641 87.543 20.6016C87.543 19.8984 87.7109 19.2734 88.0469 18.7266C88.3828 18.1719 88.8516 17.75 89.4531 17.4609C90.0625 17.1641 90.9375 16.9062 92.0781 16.6875C93.6172 16.3984 94.6836 16.1289 95.2773 15.8789V15.5508C95.2773 14.918 95.1211 14.4688 94.8086 14.2031C94.4961 13.9297 93.9062 13.793 93.0391 13.793C92.4531 13.793 91.9961 13.9102 91.668 14.1445C91.3398 14.3711 91.0742 14.7734 90.8711 15.3516ZM95.2773 18.0234C94.8555 18.1641 94.1875 18.332 93.2734 18.5273C92.3594 18.7227 91.7617 18.9141 91.4805 19.1016C91.0508 19.4062 90.8359 19.793 90.8359 20.2617C90.8359 20.7227 91.0078 21.1211 91.3516 21.457C91.6953 21.793 92.1328 21.9609 92.6641 21.9609C93.2578 21.9609 93.8242 21.7656 94.3633 21.375C94.7617 21.0781 95.0234 20.7148 95.1484 20.2852C95.2344 20.0039 95.2773 19.4688 95.2773 18.6797V18.0234ZM113.184 24H110.125V22.1719C109.617 22.8828 109.016 23.4141 108.32 23.7656C107.633 24.1094 106.938 24.2812 106.234 24.2812C104.805 24.2812 103.578 23.707 102.555 22.5586C101.539 21.4023 101.031 19.793 101.031 17.7305C101.031 15.6211 101.527 14.0195 102.52 12.9258C103.512 11.8242 104.766 11.2734 106.281 11.2734C107.672 11.2734 108.875 11.8516 109.891 13.0078V6.82031H113.184V24ZM104.395 17.5078C104.395 18.8359 104.578 19.7969 104.945 20.3906C105.477 21.25 106.219 21.6797 107.172 21.6797C107.93 21.6797 108.574 21.3594 109.105 20.7188C109.637 20.0703 109.902 19.1055 109.902 17.8242C109.902 16.3945 109.645 15.3672 109.129 14.7422C108.613 14.1094 107.953 13.793 107.148 13.793C106.367 13.793 105.711 14.1055 105.18 14.7305C104.656 15.3477 104.395 16.2734 104.395 17.5078ZM123.648 20.0391L126.93 20.5898C126.508 21.793 125.84 22.7109 124.926 23.3438C124.02 23.9688 122.883 24.2812 121.516 24.2812C119.352 24.2812 117.75 23.5742 116.711 22.1602C115.891 21.0273 115.48 19.5977 115.48 17.8711C115.48 15.8086 116.02 14.1953 117.098 13.0312C118.176 11.8594 119.539 11.2734 121.188 11.2734C123.039 11.2734 124.5 11.8867 125.57 13.1133C126.641 14.332 127.152 16.2031 127.105 18.7266H118.855C118.879 19.7031 119.145 20.4648 119.652 21.0117C120.16 21.5508 120.793 21.8203 121.551 21.8203C122.066 21.8203 122.5 21.6797 122.852 21.3984C123.203 21.1172 123.469 20.6641 123.648 20.0391ZM123.836 16.7109C123.812 15.7578 123.566 15.0352 123.098 14.543C122.629 14.043 122.059 13.793 121.387 13.793C120.668 13.793 120.074 14.0547 119.605 14.5781C119.137 15.1016 118.906 15.8125 118.914 16.7109H123.836ZM132.121 24L128.184 11.5547H131.383L133.715 19.7109L135.859 11.5547H139.035L141.109 19.7109L143.488 11.5547H146.734L142.738 24H139.574L137.43 15.9961L135.32 24H132.121ZM148.48 9.86719V6.82031H151.773V9.86719H148.48ZM148.48 24V11.5547H151.773V24H148.48ZM166.48 24H163.188V17.6484C163.188 16.3047 163.117 15.4375 162.977 15.0469C162.836 14.6484 162.605 14.3398 162.285 14.1211C161.973 13.9023 161.594 13.793 161.148 13.793C160.578 13.793 160.066 13.9492 159.613 14.2617C159.16 14.5742 158.848 14.9883 158.676 15.5039C158.512 16.0195 158.43 16.9727 158.43 18.3633V24H155.137V11.5547H158.195V13.3828C159.281 11.9766 160.648 11.2734 162.297 11.2734C163.023 11.2734 163.688 11.4062 164.289 11.6719C164.891 11.9297 165.344 12.2617 165.648 12.668C165.961 13.0742 166.176 13.5352 166.293 14.0508C166.418 14.5664 166.48 15.3047 166.48 16.2656V24ZM181.246 24H178.188V22.1719C177.68 22.8828 177.078 23.4141 176.383 23.7656C175.695 24.1094 175 24.2812 174.297 24.2812C172.867 24.2812 171.641 23.707 170.617 22.5586C169.602 21.4023 169.094 19.793 169.094 17.7305C169.094 15.6211 169.59 14.0195 170.582 12.9258C171.574 11.8242 172.828 11.2734 174.344 11.2734C175.734 11.2734 176.938 11.8516 177.953 13.0078V6.82031H181.246V24ZM172.457 17.5078C172.457 18.8359 172.641 19.7969 173.008 20.3906C173.539 21.25 174.281 21.6797 175.234 21.6797C175.992 21.6797 176.637 21.3594 177.168 20.7188C177.699 20.0703 177.965 19.1055 177.965 17.8242C177.965 16.3945 177.707 15.3672 177.191 14.7422C176.676 14.1094 176.016 13.793 175.211 13.793C174.43 13.793 173.773 14.1055 173.242 14.7305C172.719 15.3477 172.457 16.2734 172.457 17.5078ZM183.344 20.4492L186.648 19.9453C186.789 20.5859 187.074 21.0742 187.504 21.4102C187.934 21.7383 188.535 21.9023 189.309 21.9023C190.16 21.9023 190.801 21.7461 191.23 21.4336C191.52 21.2148 191.664 20.9219 191.664 20.5547C191.664 20.3047 191.586 20.0977 191.43 19.9336C191.266 19.7773 190.898 19.6328 190.328 19.5C187.672 18.9141 185.988 18.3789 185.277 17.8945C184.293 17.2227 183.801 16.2891 183.801 15.0938C183.801 14.0156 184.227 13.1094 185.078 12.375C185.93 11.6406 187.25 11.2734 189.039 11.2734C190.742 11.2734 192.008 11.5508 192.836 12.1055C193.664 12.6602 194.234 13.4805 194.547 14.5664L191.441 15.1406C191.309 14.6562 191.055 14.2852 190.68 14.0273C190.312 13.7695 189.785 13.6406 189.098 13.6406C188.23 13.6406 187.609 13.7617 187.234 14.0039C186.984 14.1758 186.859 14.3984 186.859 14.6719C186.859 14.9062 186.969 15.1055 187.188 15.2695C187.484 15.4883 188.508 15.7969 190.258 16.1953C192.016 16.5938 193.242 17.082 193.938 17.6602C194.625 18.2461 194.969 19.0625 194.969 20.1094C194.969 21.25 194.492 22.2305 193.539 23.0508C192.586 23.8711 191.176 24.2812 189.309 24.2812C187.613 24.2812 186.27 23.9375 185.277 23.25C184.293 22.5625 183.648 21.6289 183.344 20.4492ZM214.961 20.9414V24H203.418C203.543 22.8438 203.918 21.75 204.543 20.7188C205.168 19.6797 206.402 18.3047 208.246 16.5938C209.73 15.2109 210.641 14.2734 210.977 13.7812C211.43 13.1016 211.656 12.4297 211.656 11.7656C211.656 11.0312 211.457 10.4688 211.059 10.0781C210.668 9.67969 210.125 9.48047 209.43 9.48047C208.742 9.48047 208.195 9.6875 207.789 10.1016C207.383 10.5156 207.148 11.2031 207.086 12.1641L203.805 11.8359C204 10.0234 204.613 8.72266 205.645 7.93359C206.676 7.14453 207.965 6.75 209.512 6.75C211.207 6.75 212.539 7.20703 213.508 8.12109C214.477 9.03516 214.961 10.1719 214.961 11.5312C214.961 12.3047 214.82 13.043 214.539 13.7461C214.266 14.4414 213.828 15.1719 213.227 15.9375C212.828 16.4453 212.109 17.1758 211.07 18.1289C210.031 19.082 209.371 19.7148 209.09 20.0273C208.816 20.3398 208.594 20.6445 208.422 20.9414H214.961ZM217.902 24V20.707H221.195V24H217.902ZM229.445 6.75C231.109 6.75 232.41 7.34375 233.348 8.53125C234.465 9.9375 235.023 12.2695 235.023 15.5273C235.023 18.7773 234.461 21.1133 233.336 22.5352C232.406 23.707 231.109 24.293 229.445 24.293C227.773 24.293 226.426 23.6523 225.402 22.3711C224.379 21.082 223.867 18.7891 223.867 15.4922C223.867 12.2578 224.43 9.92969 225.555 8.50781C226.484 7.33594 227.781 6.75 229.445 6.75ZM229.445 9.48047C229.047 9.48047 228.691 9.60938 228.379 9.86719C228.066 10.1172 227.824 10.5703 227.652 11.2266C227.426 12.0781 227.312 13.5117 227.312 15.5273C227.312 17.543 227.414 18.9297 227.617 19.6875C227.82 20.4375 228.074 20.9375 228.379 21.1875C228.691 21.4375 229.047 21.5625 229.445 21.5625C229.844 21.5625 230.199 21.4375 230.512 21.1875C230.824 20.9297 231.066 20.4727 231.238 19.8164C231.465 18.9727 231.578 17.543 231.578 15.5273C231.578 13.5117 231.477 12.1289 231.273 11.3789C231.07 10.6211 230.812 10.1172 230.5 9.86719C230.195 9.60938 229.844 9.48047 229.445 9.48047Z"
|
|
51
|
-
fill="white"
|
|
52
|
-
/>
|
|
53
|
-
<defs>
|
|
54
|
-
<clipPath id="clip0_2118_4342">
|
|
55
|
-
<rect width="48" height="27.0456" fill="white" transform="translate(0 2.47705)" />
|
|
56
|
-
</clipPath>
|
|
57
|
-
</defs>
|
|
58
|
-
</svg>
|
|
59
|
-
);
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
export default ExpandedLogo;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
// import { ExtendExtensionPoint } from '@bluealba/pae-ui-react-core';
|
|
2
|
-
// import ExpandedLogo from '../ExpandedNavbarLogo';
|
|
3
|
-
// import Logo from '../Logo';
|
|
4
|
-
// import SplashLogo from '../SplashLogo';
|
|
5
|
-
|
|
6
|
-
function ExtensionPoints() {
|
|
7
|
-
return (
|
|
8
|
-
<>
|
|
9
|
-
{/* <ExtendExtensionPoint module="@bluealba/pae-shell-ui" point="SplashLogo">
|
|
10
|
-
<SplashLogo />
|
|
11
|
-
</ExtendExtensionPoint>
|
|
12
|
-
|
|
13
|
-
<ExtendExtensionPoint module="@bluealba/pae-shell-ui" point="NavbarPortalLogo">
|
|
14
|
-
<Logo />
|
|
15
|
-
</ExtendExtensionPoint>
|
|
16
|
-
|
|
17
|
-
<ExtendExtensionPoint module="@bluealba/pae-shell-ui" point="ExpandedNavbarPortalLogo">
|
|
18
|
-
<ExpandedLogo />
|
|
19
|
-
</ExtendExtensionPoint>
|
|
20
|
-
|
|
21
|
-
<ExtendExtensionPoint module="@bluealba/pae-shell-ui" point="VersionsLogo">
|
|
22
|
-
<Logo size={32} />
|
|
23
|
-
</ExtendExtensionPoint> */}
|
|
24
|
-
</>
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export default ExtensionPoints;
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
interface LogoProps {
|
|
2
|
-
size?: number;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
const Logo = ({ size = 48 }: LogoProps) => {
|
|
6
|
-
return (
|
|
7
|
-
<svg role="image" width={size} height={size} viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
8
|
-
<g clipPath="url(#clip0_2030_3682)">
|
|
9
|
-
<path
|
|
10
|
-
fillRule="evenodd"
|
|
11
|
-
clipRule="evenodd"
|
|
12
|
-
d="M0.5 36.9154C12.3178 14.5293 35.2505 29.6269 47.6931 13.0195C40.6388 38.4512 15.4154 23.2755 0.5 36.9154Z"
|
|
13
|
-
fill="#E4E4E7"
|
|
14
|
-
/>
|
|
15
|
-
<path
|
|
16
|
-
fillRule="evenodd"
|
|
17
|
-
clipRule="evenodd"
|
|
18
|
-
d="M0.5 36.9154C12.3178 14.5293 35.2505 29.6269 47.6931 13.0195C37.4371 33.7137 13.6974 18.8764 0.5 36.9154Z"
|
|
19
|
-
fill="white"
|
|
20
|
-
/>
|
|
21
|
-
<path
|
|
22
|
-
fillRule="evenodd"
|
|
23
|
-
clipRule="evenodd"
|
|
24
|
-
d="M11.6411 32.7246C20.3613 30.0955 37.2029 32.4382 42.4611 25.0977C36.7344 37.4881 24.9947 32.23 11.6411 32.7246Z"
|
|
25
|
-
fill="#E4E4E7"
|
|
26
|
-
/>
|
|
27
|
-
<path
|
|
28
|
-
fillRule="evenodd"
|
|
29
|
-
clipRule="evenodd"
|
|
30
|
-
d="M11.6411 32.7246C20.3613 30.0955 37.2029 32.4382 42.4611 25.0977C36.4481 35.1974 21.5847 30.7202 11.6411 32.7246Z"
|
|
31
|
-
fill="white"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
fillRule="evenodd"
|
|
35
|
-
clipRule="evenodd"
|
|
36
|
-
d="M12.2917 24.3688C26.6605 12.2386 41.3677 16.898 48.5 10C39.6236 23.1453 24.5 18.9024 12.2917 24.3688Z"
|
|
37
|
-
fill="#E4E4E7"
|
|
38
|
-
/>
|
|
39
|
-
<path
|
|
40
|
-
fillRule="evenodd"
|
|
41
|
-
clipRule="evenodd"
|
|
42
|
-
d="M12.2917 24.3688C26.6605 12.2386 41.3677 16.898 48.5 10C38.7646 20.7766 25.7234 15.5445 12.2917 24.3688Z"
|
|
43
|
-
fill="white"
|
|
44
|
-
/>
|
|
45
|
-
</g>
|
|
46
|
-
<defs>
|
|
47
|
-
<clipPath id="clip0_2030_3682">
|
|
48
|
-
<rect width="48" height="27.0456" fill="white" transform="translate(0.5 10)" />
|
|
49
|
-
</clipPath>
|
|
50
|
-
</defs>
|
|
51
|
-
</svg>
|
|
52
|
-
);
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
export default Logo;
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
const SplashLogo = () => {
|
|
2
|
-
return (
|
|
3
|
-
<svg width="267" height="150" viewBox="0 0 267 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<title>Splash Logo</title>
|
|
5
|
-
<g clipPath="url(#clip0_2027_7665)">
|
|
6
|
-
<path
|
|
7
|
-
fillRule="evenodd"
|
|
8
|
-
clipRule="evenodd"
|
|
9
|
-
d="M-0.000244141 149.278C65.5435 25.1203 192.733 108.855 261.742 16.7468C222.618 157.796 82.7235 73.6284 -0.000244141 149.278Z"
|
|
10
|
-
fill="#E4E4E7"
|
|
11
|
-
/>
|
|
12
|
-
<path
|
|
13
|
-
fillRule="evenodd"
|
|
14
|
-
clipRule="evenodd"
|
|
15
|
-
d="M-0.000244141 149.278C65.5435 25.1203 192.733 108.855 261.742 16.7468C204.86 131.521 73.1951 49.23 -0.000244141 149.278Z"
|
|
16
|
-
fill="white"
|
|
17
|
-
/>
|
|
18
|
-
<path
|
|
19
|
-
fillRule="evenodd"
|
|
20
|
-
clipRule="evenodd"
|
|
21
|
-
d="M61.79 126.035C110.154 111.453 203.561 124.447 232.724 83.7344C200.962 152.454 135.852 123.292 61.79 126.035Z"
|
|
22
|
-
fill="#E4E4E7"
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
fillRule="evenodd"
|
|
26
|
-
clipRule="evenodd"
|
|
27
|
-
d="M61.79 126.035C110.154 111.453 203.561 124.447 232.724 83.7344C199.374 139.75 116.939 114.918 61.79 126.035Z"
|
|
28
|
-
fill="white"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
fillRule="evenodd"
|
|
32
|
-
clipRule="evenodd"
|
|
33
|
-
d="M65.3994 79.692C145.091 12.4158 226.66 38.2579 266.217 0C216.987 72.9066 133.109 49.3744 65.3994 79.692Z"
|
|
34
|
-
fill="#E4E4E7"
|
|
35
|
-
/>
|
|
36
|
-
<path
|
|
37
|
-
fillRule="evenodd"
|
|
38
|
-
clipRule="evenodd"
|
|
39
|
-
d="M65.3994 79.692C145.091 12.4158 226.66 38.2579 266.217 0C212.223 59.769 139.894 30.7507 65.3994 79.692Z"
|
|
40
|
-
fill="white"
|
|
41
|
-
/>
|
|
42
|
-
</g>
|
|
43
|
-
<defs>
|
|
44
|
-
<clipPath id="clip0_2027_7665">
|
|
45
|
-
<rect width="266.217" height="150" fill="white" />
|
|
46
|
-
</clipPath>
|
|
47
|
-
</defs>
|
|
48
|
-
</svg>
|
|
49
|
-
);
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
export default SplashLogo;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { useModuleConfig } from '@bluealba/pae-ui-react-core';
|
|
2
|
-
import { useEffect } from 'react';
|
|
3
|
-
|
|
4
|
-
export const useDynamicStyleSheet = (styleSheet: string): void => {
|
|
5
|
-
const { cssCustomizationLoadingDelay = 1000 } = useModuleConfig();
|
|
6
|
-
|
|
7
|
-
// biome-ignore lint/correctness/useExhaustiveDependencies: Not idempotent
|
|
8
|
-
useEffect(() => {
|
|
9
|
-
const styleElement = document.createElement('style');
|
|
10
|
-
setTimeout(() => {
|
|
11
|
-
styleElement.innerHTML = styleSheet;
|
|
12
|
-
|
|
13
|
-
document.head.append(styleElement);
|
|
14
|
-
}, cssCustomizationLoadingDelay);
|
|
15
|
-
|
|
16
|
-
return () => styleElement.remove();
|
|
17
|
-
}, [styleSheet]);
|
|
18
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@{{organizationName}}/{{platformName}}-local",
|
|
3
|
-
"displayName": "{{platformTitle}} Local",
|
|
4
|
-
"version": "0.1.0",
|
|
5
|
-
"description": "Local development scripts for the {{platformTitle}} platform",
|
|
6
|
-
"private": true,
|
|
7
|
-
"scripts": {
|
|
8
|
-
"install": "./scripts/install.sh",
|
|
9
|
-
"build": "./scripts/build.sh",
|
|
10
|
-
"start": "docker compose -p tradewinds-local -f docker-compose.yml up -d --build --remove-orphans --force-recreate",
|
|
11
|
-
"stop": "docker compose -p tradewinds-local -f docker-compose.yml down",
|
|
12
|
-
"restart": "npm run stop && npm run start",
|
|
13
|
-
"destroy": "docker compose -p tradewinds-local -f docker-compose.yml down -v --rmi all"
|
|
14
|
-
},
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=20"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
4
|
-
|
|
5
|
-
pids=()
|
|
6
|
-
for dir in "$ROOT"/*/; do
|
|
7
|
-
if [ "$dir" != "$ROOT/local/" ]; then
|
|
8
|
-
echo "Building $dir..."
|
|
9
|
-
(cd "$dir" && npm run build) &
|
|
10
|
-
pids+=($!)
|
|
11
|
-
fi
|
|
12
|
-
done
|
|
13
|
-
|
|
14
|
-
exit_code=0
|
|
15
|
-
for pid in "${pids[@]}"; do
|
|
16
|
-
wait "$pid" || exit_code=$?
|
|
17
|
-
done
|
|
18
|
-
exit $exit_code
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
4
|
-
|
|
5
|
-
pids=()
|
|
6
|
-
for dir in "$ROOT"/*/; do
|
|
7
|
-
if [ "$dir" != "$ROOT/local/" ]; then
|
|
8
|
-
echo "Installing $dir..."
|
|
9
|
-
(cd "$dir" && npm i) &
|
|
10
|
-
pids+=($!)
|
|
11
|
-
fi
|
|
12
|
-
done
|
|
13
|
-
|
|
14
|
-
exit_code=0
|
|
15
|
-
for pid in "${pids[@]}"; do
|
|
16
|
-
wait "$pid" || exit_code=$?
|
|
17
|
-
done
|
|
18
|
-
exit $exit_code
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|