create-bluecopa-react-app 1.0.14 → 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.
@@ -1,4 +1,4 @@
1
- System.register(['./__federation_fn_import-CzfA7kmP.js', './client-CsvW46cT.js'], (function (exports, module) {
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: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
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-BIH7hwj_.js').then(module =>Object.keys(module).every(item => exportSet.has(item)) ? () => module.default : () => module)},};
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-CFECuPSy.js"></script>
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-CsvW46cT.js">
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.14",
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",
@@ -51,7 +51,7 @@
51
51
  "tailwindcss": "^4.1.13",
52
52
  "tw-animate-css": "^1.3.8",
53
53
  "typescript": "^5.8.3",
54
- "vite": "^6.3.3",
54
+ "vite": "6.4.1",
55
55
  "vite-tsconfig-paths": "^5.1.4"
56
56
  }
57
57
  },
@@ -65,9 +65,9 @@
65
65
  }
66
66
  },
67
67
  "node_modules/@bluecopa/core": {
68
- "version": "0.1.14",
69
- "resolved": "https://registry.npmjs.org/@bluecopa/core/-/core-0.1.14.tgz",
70
- "integrity": "sha512-vcXRReqfXmZ5yR+nZrLsZth3rTU717Z4WsCsaPNR8+mlcCZ/zMqdi9hPREmOJg5ZN59yD+R22Y2juzTKiRjThg==",
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.14",
83
- "resolved": "https://registry.npmjs.org/@bluecopa/react/-/react-0.1.14.tgz",
84
- "integrity": "sha512-K90UtYPGy2whGlxVdObR8BYZ888r/UAqAEwDCztfOx5gmfG0VltBIwLdx3MgdKWdMFspUbArv8qujxMGAO99qg==",
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.14",
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
  },
@@ -617,19 +617,6 @@
617
617
  "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
618
618
  "license": "MIT"
619
619
  },
620
- "node_modules/@isaacs/fs-minipass": {
621
- "version": "4.0.1",
622
- "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
623
- "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
624
- "dev": true,
625
- "license": "ISC",
626
- "dependencies": {
627
- "minipass": "^7.0.4"
628
- },
629
- "engines": {
630
- "node": ">=18.0.0"
631
- }
632
- },
633
620
  "node_modules/@jridgewell/gen-mapping": {
634
621
  "version": "0.3.13",
635
622
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
@@ -2219,8 +2206,7 @@
2219
2206
  "hasInstallScript": true,
2220
2207
  "license": "MIT",
2221
2208
  "dependencies": {
2222
- "detect-libc": "^2.0.4",
2223
- "tar": "^7.5.1"
2209
+ "detect-libc": "^2.0.4"
2224
2210
  },
2225
2211
  "engines": {
2226
2212
  "node": ">= 10"
@@ -2738,16 +2724,6 @@
2738
2724
  "protobufjs": "^7.2.5"
2739
2725
  }
2740
2726
  },
2741
- "node_modules/chownr": {
2742
- "version": "3.0.0",
2743
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
2744
- "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
2745
- "dev": true,
2746
- "license": "BlueOak-1.0.0",
2747
- "engines": {
2748
- "node": ">=18"
2749
- }
2750
- },
2751
2727
  "node_modules/class-variance-authority": {
2752
2728
  "version": "0.7.1",
2753
2729
  "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
@@ -3162,9 +3138,9 @@
3162
3138
  }
3163
3139
  },
3164
3140
  "node_modules/form-data": {
3165
- "version": "4.0.4",
3166
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
3167
- "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
3141
+ "version": "4.0.5",
3142
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
3143
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
3168
3144
  "license": "MIT",
3169
3145
  "dependencies": {
3170
3146
  "asynckit": "^0.4.0",
@@ -3650,29 +3626,6 @@
3650
3626
  "node": ">= 0.6"
3651
3627
  }
3652
3628
  },
3653
- "node_modules/minipass": {
3654
- "version": "7.1.2",
3655
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
3656
- "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
3657
- "dev": true,
3658
- "license": "ISC",
3659
- "engines": {
3660
- "node": ">=16 || 14 >=14.17"
3661
- }
3662
- },
3663
- "node_modules/minizlib": {
3664
- "version": "3.1.0",
3665
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
3666
- "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
3667
- "dev": true,
3668
- "license": "MIT",
3669
- "dependencies": {
3670
- "minipass": "^7.1.2"
3671
- },
3672
- "engines": {
3673
- "node": ">= 18"
3674
- }
3675
- },
3676
3629
  "node_modules/ms": {
3677
3630
  "version": "2.1.3",
3678
3631
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
@@ -4145,23 +4098,6 @@
4145
4098
  "url": "https://opencollective.com/webpack"
4146
4099
  }
4147
4100
  },
4148
- "node_modules/tar": {
4149
- "version": "7.5.1",
4150
- "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz",
4151
- "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==",
4152
- "dev": true,
4153
- "license": "ISC",
4154
- "dependencies": {
4155
- "@isaacs/fs-minipass": "^4.0.0",
4156
- "chownr": "^3.0.0",
4157
- "minipass": "^7.1.2",
4158
- "minizlib": "^3.1.0",
4159
- "yallist": "^5.0.0"
4160
- },
4161
- "engines": {
4162
- "node": ">=18"
4163
- }
4164
- },
4165
4101
  "node_modules/tiny-invariant": {
4166
4102
  "version": "1.3.3",
4167
4103
  "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
@@ -4329,9 +4265,9 @@
4329
4265
  }
4330
4266
  },
4331
4267
  "node_modules/vite": {
4332
- "version": "6.3.6",
4333
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.6.tgz",
4334
- "integrity": "sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==",
4268
+ "version": "6.4.1",
4269
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
4270
+ "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
4335
4271
  "license": "MIT",
4336
4272
  "dependencies": {
4337
4273
  "esbuild": "^0.25.0",
@@ -4422,16 +4358,6 @@
4422
4358
  }
4423
4359
  }
4424
4360
  },
4425
- "node_modules/yallist": {
4426
- "version": "5.0.0",
4427
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
4428
- "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
4429
- "dev": true,
4430
- "license": "BlueOak-1.0.0",
4431
- "engines": {
4432
- "node": ">=18"
4433
- }
4434
- },
4435
4361
  "node_modules/zod": {
4436
4362
  "version": "4.1.12",
4437
4363
  "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz",
@@ -10,7 +10,7 @@
10
10
  "typecheck": "tsc"
11
11
  },
12
12
  "dependencies": {
13
- "@bluecopa/react": "0.1.14",
13
+ "@bluecopa/react": "^0.1.16",
14
14
  "@dnd-kit/core": "^6.3.1",
15
15
  "@dnd-kit/modifiers": "^9.0.0",
16
16
  "@dnd-kit/sortable": "^10.0.0",
@@ -55,7 +55,7 @@
55
55
  "tailwindcss": "^4.1.13",
56
56
  "tw-animate-css": "^1.3.8",
57
57
  "typescript": "^5.8.3",
58
- "vite": "^6.3.3",
58
+ "vite": "6.4.1",
59
59
  "vite-tsconfig-paths": "^5.1.4"
60
60
  }
61
61
  }