create-bluecopa-react-app 1.0.16 → 1.0.17
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/package.json +1 -1
- package/templates/latest/Agent.md +93 -32
- package/templates/latest/README.md +17 -0
- package/templates/latest/app/app.css +1 -2
- package/templates/latest/app/components/app-sidebar.tsx +5 -0
- package/templates/latest/app/components/nav-user.tsx +4 -5
- package/templates/latest/app/routes/statements.tsx +493 -0
- package/templates/latest/app/routes.tsx +2 -0
- package/templates/latest/components.json +1 -2
- package/templates/latest/dist/assets/{__federation_expose_App-DK1ZdBX-.js → __federation_expose_App-CcOhEUCE.js} +1 -1
- package/templates/latest/dist/assets/{client-DqBeHjYu.js → client-uh-HfYnI.js} +6673 -5762
- package/templates/latest/dist/assets/{index-B8EMpf6o.js → index-C1IOBHtM.js} +1 -1
- package/templates/latest/dist/assets/remoteEntry.css +49 -2
- package/templates/latest/dist/assets/remoteEntry.js +1 -1
- package/templates/latest/dist/index.html +2 -2
- package/templates/latest/package-lock.json +11 -11
- package/templates/latest/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
System.register(['./__federation_fn_import-CzfA7kmP.js', './client-
|
|
1
|
+
System.register(['./__federation_fn_import-CzfA7kmP.js', './client-uh-HfYnI.js'], (function (exports, module) {
|
|
2
2
|
'use strict';
|
|
3
3
|
var importShared, ReactDOM, jsxRuntimeExports, BrowserRouter, App;
|
|
4
4
|
return {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
|
|
71
71
|
@layer theme {
|
|
72
72
|
:root, :host {
|
|
73
|
-
--font-sans: "
|
|
73
|
+
--font-sans: "Satoshi", ui-sans-serif, system-ui, sans-serif;
|
|
74
74
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
75
75
|
--color-orange-600: oklch(64.6% .222 41.116);
|
|
76
76
|
--color-green-400: oklch(79.2% .209 151.711);
|
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
--text-sm--line-height: calc(1.25 / .875);
|
|
88
88
|
--text-base: 1rem;
|
|
89
89
|
--text-base--line-height: calc(1.5 / 1);
|
|
90
|
+
--text-lg: 1.125rem;
|
|
91
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
90
92
|
--text-2xl: 1.5rem;
|
|
91
93
|
--text-2xl--line-height: calc(2 / 1.5);
|
|
92
94
|
--text-3xl: 1.875rem;
|
|
@@ -566,6 +568,14 @@
|
|
|
566
568
|
margin-block: calc(var(--spacing) * 1);
|
|
567
569
|
}
|
|
568
570
|
|
|
571
|
+
.mt-1 {
|
|
572
|
+
margin-top: calc(var(--spacing) * 1);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.mt-2 {
|
|
576
|
+
margin-top: calc(var(--spacing) * 2);
|
|
577
|
+
}
|
|
578
|
+
|
|
569
579
|
.mt-4 {
|
|
570
580
|
margin-top: calc(var(--spacing) * 4);
|
|
571
581
|
}
|
|
@@ -578,6 +588,10 @@
|
|
|
578
588
|
margin-right: calc(var(--spacing) * 2);
|
|
579
589
|
}
|
|
580
590
|
|
|
591
|
+
.mb-2 {
|
|
592
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
593
|
+
}
|
|
594
|
+
|
|
581
595
|
.mb-4 {
|
|
582
596
|
margin-bottom: calc(var(--spacing) * 4);
|
|
583
597
|
}
|
|
@@ -1274,6 +1288,16 @@
|
|
|
1274
1288
|
}
|
|
1275
1289
|
}
|
|
1276
1290
|
|
|
1291
|
+
.border-destructive\/50 {
|
|
1292
|
+
border-color: var(--destructive);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1296
|
+
.border-destructive\/50 {
|
|
1297
|
+
border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1277
1301
|
.border-input {
|
|
1278
1302
|
border-color: var(--input);
|
|
1279
1303
|
}
|
|
@@ -1316,10 +1340,16 @@
|
|
|
1316
1340
|
background-color: var(--card);
|
|
1317
1341
|
}
|
|
1318
1342
|
|
|
1319
|
-
.bg-destructive {
|
|
1343
|
+
.bg-destructive, .bg-destructive\/5 {
|
|
1320
1344
|
background-color: var(--destructive);
|
|
1321
1345
|
}
|
|
1322
1346
|
|
|
1347
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1348
|
+
.bg-destructive\/5 {
|
|
1349
|
+
background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1323
1353
|
.bg-muted, .bg-muted\/50 {
|
|
1324
1354
|
background-color: var(--muted);
|
|
1325
1355
|
}
|
|
@@ -1521,6 +1551,11 @@
|
|
|
1521
1551
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
1522
1552
|
}
|
|
1523
1553
|
|
|
1554
|
+
.text-lg {
|
|
1555
|
+
font-size: var(--text-lg);
|
|
1556
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1524
1559
|
.text-sm {
|
|
1525
1560
|
font-size: var(--text-sm);
|
|
1526
1561
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
@@ -1579,6 +1614,10 @@
|
|
|
1579
1614
|
overflow-wrap: break-word;
|
|
1580
1615
|
}
|
|
1581
1616
|
|
|
1617
|
+
.break-all {
|
|
1618
|
+
word-break: break-all;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1582
1621
|
.whitespace-nowrap {
|
|
1583
1622
|
white-space: nowrap;
|
|
1584
1623
|
}
|
|
@@ -1591,6 +1630,10 @@
|
|
|
1591
1630
|
color: currentColor;
|
|
1592
1631
|
}
|
|
1593
1632
|
|
|
1633
|
+
.text-destructive {
|
|
1634
|
+
color: var(--destructive);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1594
1637
|
.text-foreground {
|
|
1595
1638
|
color: var(--foreground);
|
|
1596
1639
|
}
|
|
@@ -2835,6 +2878,10 @@
|
|
|
2835
2878
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2836
2879
|
}
|
|
2837
2880
|
|
|
2881
|
+
.md\:grid-cols-3 {
|
|
2882
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2838
2885
|
.md\:gap-1\.5 {
|
|
2839
2886
|
gap: calc(var(--spacing) * 1.5);
|
|
2840
2887
|
}
|
|
@@ -8,7 +8,7 @@ System.register([], (function (exports, module) {
|
|
|
8
8
|
let moduleMap = {
|
|
9
9
|
"./App":()=>{
|
|
10
10
|
dynamicLoadingCss(["remoteEntry.css"], false, './App');
|
|
11
|
-
return __federation_import('./__federation_expose_App-
|
|
11
|
+
return __federation_import('./__federation_expose_App-CcOhEUCE.js').then(module =>Object.keys(module).every(item => exportSet.has(item)) ? () => module.default : () => module)},};
|
|
12
12
|
const seen = {};
|
|
13
13
|
const dynamicLoadingCss = exports("dynamicLoadingCss", (cssFilePaths, dontAppendStylesToHead, exposeItemName) => {
|
|
14
14
|
const metaUrl = module.meta.url;
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Bluecopa - AI-powered Finance Automation</title>
|
|
8
8
|
<meta name="description" content="AI-powered close automation for modern finance teams. Streamline your order-to-cash, procure-to-pay, and record-to-report processes." />
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-C1IOBHtM.js"></script>
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/__federation_fn_import-CzfA7kmP.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/index-BzNimew1.js">
|
|
12
12
|
<link rel="modulepreload" crossorigin href="/assets/index-DMFtQdNS.js">
|
|
13
|
-
<link rel="modulepreload" crossorigin href="/assets/client-
|
|
13
|
+
<link rel="modulepreload" crossorigin href="/assets/client-uh-HfYnI.js">
|
|
14
14
|
<link rel="stylesheet" crossorigin href="/assets/remoteEntry.css">
|
|
15
15
|
</head>
|
|
16
16
|
<body>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "boilerplate-copa",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@bluecopa/react": "0.1.
|
|
9
|
+
"@bluecopa/react": "^0.1.16",
|
|
10
10
|
"@dnd-kit/core": "^6.3.1",
|
|
11
11
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
12
12
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"node_modules/@bluecopa/core": {
|
|
68
|
-
"version": "0.1.
|
|
69
|
-
"resolved": "https://registry.npmjs.org/@bluecopa/core/-/core-0.1.
|
|
70
|
-
"integrity": "sha512-
|
|
68
|
+
"version": "0.1.16",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@bluecopa/core/-/core-0.1.16.tgz",
|
|
70
|
+
"integrity": "sha512-HLYzOyvSjsfLX5osxnury27Nm9VWTWQ/lFqmlYKMZf3iaWYejtSb8fSFuwP71yhk+zreFJ1tkgVtf8L1pzWazA==",
|
|
71
71
|
"license": "MIT",
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"axios": "1.12.0",
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"node_modules/@bluecopa/react": {
|
|
82
|
-
"version": "0.1.
|
|
83
|
-
"resolved": "https://registry.npmjs.org/@bluecopa/react/-/react-0.1.
|
|
84
|
-
"integrity": "sha512-
|
|
82
|
+
"version": "0.1.16",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/@bluecopa/react/-/react-0.1.16.tgz",
|
|
84
|
+
"integrity": "sha512-901cFgwIR3qpKUdMPWeJ5dY/d94gnH+wiYi/rePF2z39247oRwizjmG15BF3+fFdI+LLHIvYj+glfOLB3+ik+A==",
|
|
85
85
|
"license": "MIT",
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@bluecopa/core": "0.1.
|
|
87
|
+
"@bluecopa/core": "0.1.16",
|
|
88
88
|
"@tanstack/react-query": "5.59.0",
|
|
89
89
|
"@tanstack/react-query-devtools": "5.59.0"
|
|
90
90
|
},
|
|
@@ -3138,9 +3138,9 @@
|
|
|
3138
3138
|
}
|
|
3139
3139
|
},
|
|
3140
3140
|
"node_modules/form-data": {
|
|
3141
|
-
"version": "4.0.
|
|
3142
|
-
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.
|
|
3143
|
-
"integrity": "sha512-
|
|
3141
|
+
"version": "4.0.5",
|
|
3142
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
|
3143
|
+
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
3144
3144
|
"license": "MIT",
|
|
3145
3145
|
"dependencies": {
|
|
3146
3146
|
"asynckit": "^0.4.0",
|