create-bluecopa-react-app 1.0.20 → 1.0.22
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/bin/create-bluecopa-react-app.js +6 -7
- package/package.json +1 -1
- package/templates/latest/app/components/app-sidebar.tsx +5 -0
- package/templates/latest/app/routes/apitest.tsx +1963 -0
- package/templates/latest/app/routes/comments.tsx +96 -60
- package/templates/latest/app/routes.tsx +2 -0
- package/templates/latest/dist/assets/{__federation_expose_App-CcOhEUCE.js → __federation_expose_App-rkiN5ftu.js} +1 -1
- package/templates/latest/dist/assets/{client-uh-HfYnI.js → client-CjZD2orr.js} +5762 -4345
- package/templates/latest/dist/assets/{index-C1IOBHtM.js → index-BIZxzud9.js} +1 -1
- package/templates/latest/dist/assets/remoteEntry.css +130 -0
- package/templates/latest/dist/assets/remoteEntry.js +1 -1
- package/templates/latest/dist/index.html +2 -2
- package/templates/latest/package-lock.json +82 -8
- package/templates/latest/package.json +2 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
System.register(['./__federation_fn_import-CzfA7kmP.js', './client-
|
|
1
|
+
System.register(['./__federation_fn_import-CzfA7kmP.js', './client-CjZD2orr.js'], (function (exports, module) {
|
|
2
2
|
'use strict';
|
|
3
3
|
var importShared, ReactDOM, jsxRuntimeExports, BrowserRouter, App;
|
|
4
4
|
return {
|
|
@@ -35,6 +35,19 @@
|
|
|
35
35
|
--tw-ring-offset-color: #fff;
|
|
36
36
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
37
37
|
--tw-outline-style: solid;
|
|
38
|
+
--tw-blur: initial;
|
|
39
|
+
--tw-brightness: initial;
|
|
40
|
+
--tw-contrast: initial;
|
|
41
|
+
--tw-grayscale: initial;
|
|
42
|
+
--tw-hue-rotate: initial;
|
|
43
|
+
--tw-invert: initial;
|
|
44
|
+
--tw-opacity: initial;
|
|
45
|
+
--tw-saturate: initial;
|
|
46
|
+
--tw-sepia: initial;
|
|
47
|
+
--tw-drop-shadow: initial;
|
|
48
|
+
--tw-drop-shadow-color: initial;
|
|
49
|
+
--tw-drop-shadow-alpha: 100%;
|
|
50
|
+
--tw-drop-shadow-size: initial;
|
|
38
51
|
--tw-duration: initial;
|
|
39
52
|
--tw-ease: initial;
|
|
40
53
|
--tw-content: "";
|
|
@@ -72,9 +85,12 @@
|
|
|
72
85
|
:root, :host {
|
|
73
86
|
--font-sans: "Satoshi", ui-sans-serif, system-ui, sans-serif;
|
|
74
87
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
88
|
+
--color-red-500: oklch(63.7% .237 25.331);
|
|
75
89
|
--color-orange-600: oklch(64.6% .222 41.116);
|
|
76
90
|
--color-green-400: oklch(79.2% .209 151.711);
|
|
77
91
|
--color-green-500: oklch(72.3% .219 149.579);
|
|
92
|
+
--color-blue-600: oklch(54.6% .245 262.881);
|
|
93
|
+
--color-blue-800: oklch(42.4% .199 265.638);
|
|
78
94
|
--color-gray-950: oklch(13% .028 261.692);
|
|
79
95
|
--color-black: #000;
|
|
80
96
|
--color-white: #fff;
|
|
@@ -596,6 +612,10 @@
|
|
|
596
612
|
margin-bottom: calc(var(--spacing) * 4);
|
|
597
613
|
}
|
|
598
614
|
|
|
615
|
+
.mb-6 {
|
|
616
|
+
margin-bottom: calc(var(--spacing) * 6);
|
|
617
|
+
}
|
|
618
|
+
|
|
599
619
|
.-ml-1 {
|
|
600
620
|
margin-left: calc(var(--spacing) * -1);
|
|
601
621
|
}
|
|
@@ -809,6 +829,14 @@
|
|
|
809
829
|
max-height: var(--radix-select-content-available-height);
|
|
810
830
|
}
|
|
811
831
|
|
|
832
|
+
.max-h-40 {
|
|
833
|
+
max-height: calc(var(--spacing) * 40);
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.max-h-60 {
|
|
837
|
+
max-height: calc(var(--spacing) * 60);
|
|
838
|
+
}
|
|
839
|
+
|
|
812
840
|
.max-h-96 {
|
|
813
841
|
max-height: calc(var(--spacing) * 96);
|
|
814
842
|
}
|
|
@@ -825,6 +853,14 @@
|
|
|
825
853
|
min-height: 80px;
|
|
826
854
|
}
|
|
827
855
|
|
|
856
|
+
.min-h-\[150px\] {
|
|
857
|
+
min-height: 150px;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.min-h-\[200px\] {
|
|
861
|
+
min-height: 200px;
|
|
862
|
+
}
|
|
863
|
+
|
|
828
864
|
.min-h-svh {
|
|
829
865
|
min-height: 100svh;
|
|
830
866
|
}
|
|
@@ -1021,6 +1057,10 @@
|
|
|
1021
1057
|
cursor: default;
|
|
1022
1058
|
}
|
|
1023
1059
|
|
|
1060
|
+
.cursor-pointer {
|
|
1061
|
+
cursor: pointer;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1024
1064
|
.scroll-my-1 {
|
|
1025
1065
|
scroll-margin-block: calc(var(--spacing) * 1);
|
|
1026
1066
|
}
|
|
@@ -1622,6 +1662,10 @@
|
|
|
1622
1662
|
white-space: nowrap;
|
|
1623
1663
|
}
|
|
1624
1664
|
|
|
1665
|
+
.text-blue-600 {
|
|
1666
|
+
color: var(--color-blue-600);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1625
1669
|
.text-card-foreground {
|
|
1626
1670
|
color: var(--card-foreground);
|
|
1627
1671
|
}
|
|
@@ -1638,6 +1682,10 @@
|
|
|
1638
1682
|
color: var(--foreground);
|
|
1639
1683
|
}
|
|
1640
1684
|
|
|
1685
|
+
.text-green-500 {
|
|
1686
|
+
color: var(--color-green-500);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1641
1689
|
.text-muted-foreground {
|
|
1642
1690
|
color: var(--muted-foreground);
|
|
1643
1691
|
}
|
|
@@ -1658,6 +1706,10 @@
|
|
|
1658
1706
|
color: var(--primary-foreground);
|
|
1659
1707
|
}
|
|
1660
1708
|
|
|
1709
|
+
.text-red-500 {
|
|
1710
|
+
color: var(--color-red-500);
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1661
1713
|
.text-secondary-foreground {
|
|
1662
1714
|
color: var(--secondary-foreground);
|
|
1663
1715
|
}
|
|
@@ -1685,6 +1737,10 @@
|
|
|
1685
1737
|
font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
|
|
1686
1738
|
}
|
|
1687
1739
|
|
|
1740
|
+
.underline {
|
|
1741
|
+
text-decoration-line: underline;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1688
1744
|
.underline-offset-4 {
|
|
1689
1745
|
text-underline-offset: 4px;
|
|
1690
1746
|
}
|
|
@@ -1757,6 +1813,10 @@
|
|
|
1757
1813
|
outline-width: 1px;
|
|
1758
1814
|
}
|
|
1759
1815
|
|
|
1816
|
+
.filter {
|
|
1817
|
+
filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1760
1820
|
.transition {
|
|
1761
1821
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
1762
1822
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -2190,6 +2250,10 @@
|
|
|
2190
2250
|
color: var(--accent-foreground);
|
|
2191
2251
|
}
|
|
2192
2252
|
|
|
2253
|
+
.hover\:text-blue-800:hover {
|
|
2254
|
+
color: var(--color-blue-800);
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2193
2257
|
.hover\:text-foreground:hover {
|
|
2194
2258
|
color: var(--foreground);
|
|
2195
2259
|
}
|
|
@@ -3776,6 +3840,72 @@ html, body {
|
|
|
3776
3840
|
initial-value: solid;
|
|
3777
3841
|
}
|
|
3778
3842
|
|
|
3843
|
+
@property --tw-blur {
|
|
3844
|
+
syntax: "*";
|
|
3845
|
+
inherits: false
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3848
|
+
@property --tw-brightness {
|
|
3849
|
+
syntax: "*";
|
|
3850
|
+
inherits: false
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
@property --tw-contrast {
|
|
3854
|
+
syntax: "*";
|
|
3855
|
+
inherits: false
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
@property --tw-grayscale {
|
|
3859
|
+
syntax: "*";
|
|
3860
|
+
inherits: false
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
@property --tw-hue-rotate {
|
|
3864
|
+
syntax: "*";
|
|
3865
|
+
inherits: false
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
@property --tw-invert {
|
|
3869
|
+
syntax: "*";
|
|
3870
|
+
inherits: false
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
@property --tw-opacity {
|
|
3874
|
+
syntax: "*";
|
|
3875
|
+
inherits: false
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
@property --tw-saturate {
|
|
3879
|
+
syntax: "*";
|
|
3880
|
+
inherits: false
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
@property --tw-sepia {
|
|
3884
|
+
syntax: "*";
|
|
3885
|
+
inherits: false
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
@property --tw-drop-shadow {
|
|
3889
|
+
syntax: "*";
|
|
3890
|
+
inherits: false
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
@property --tw-drop-shadow-color {
|
|
3894
|
+
syntax: "*";
|
|
3895
|
+
inherits: false
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
@property --tw-drop-shadow-alpha {
|
|
3899
|
+
syntax: "<percentage>";
|
|
3900
|
+
inherits: false;
|
|
3901
|
+
initial-value: 100%;
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
@property --tw-drop-shadow-size {
|
|
3905
|
+
syntax: "*";
|
|
3906
|
+
inherits: false
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3779
3909
|
@property --tw-duration {
|
|
3780
3910
|
syntax: "*";
|
|
3781
3911
|
inherits: false
|
|
@@ -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-rkiN5ftu.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-BIZxzud9.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-CjZD2orr.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.19",
|
|
10
10
|
"@dnd-kit/core": "^6.3.1",
|
|
11
11
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
12
12
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@types/react": "^18.3.12",
|
|
50
50
|
"@types/react-dom": "^18.3.1",
|
|
51
51
|
"tailwindcss": "^4.1.13",
|
|
52
|
+
"tar": "^7.4.3",
|
|
52
53
|
"tw-animate-css": "^1.3.8",
|
|
53
54
|
"typescript": "^5.8.3",
|
|
54
55
|
"vite": "6.4.1",
|
|
@@ -65,9 +66,9 @@
|
|
|
65
66
|
}
|
|
66
67
|
},
|
|
67
68
|
"node_modules/@bluecopa/core": {
|
|
68
|
-
"version": "0.1.
|
|
69
|
-
"resolved": "https://registry.npmjs.org/@bluecopa/core/-/core-0.1.
|
|
70
|
-
"integrity": "sha512-
|
|
69
|
+
"version": "0.1.17",
|
|
70
|
+
"resolved": "https://registry.npmjs.org/@bluecopa/core/-/core-0.1.17.tgz",
|
|
71
|
+
"integrity": "sha512-w6tvOdCCjaBXAxYYV2tpRmrOTkC/L/VQ09v4qkBbU29NtMZRgLkBUOqEIiYsSff70ZtW05sT+VEAH9sympWhgQ==",
|
|
71
72
|
"license": "MIT",
|
|
72
73
|
"dependencies": {
|
|
73
74
|
"axios": "1.12.0",
|
|
@@ -79,12 +80,12 @@
|
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
82
|
"node_modules/@bluecopa/react": {
|
|
82
|
-
"version": "0.1.
|
|
83
|
-
"resolved": "https://registry.npmjs.org/@bluecopa/react/-/react-0.1.
|
|
84
|
-
"integrity": "sha512-
|
|
83
|
+
"version": "0.1.19",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/@bluecopa/react/-/react-0.1.19.tgz",
|
|
85
|
+
"integrity": "sha512-KsXZBY/boOdrYQnSq3jZdplhZA3b6vzSL2jwoBNe9c1vQDRdmRHpnfS623dlengON6G1CEFrHfbpeLKGmoaq8Q==",
|
|
85
86
|
"license": "MIT",
|
|
86
87
|
"dependencies": {
|
|
87
|
-
"@bluecopa/core": "0.1.
|
|
88
|
+
"@bluecopa/core": "0.1.17",
|
|
88
89
|
"@tanstack/react-query": "5.59.0",
|
|
89
90
|
"@tanstack/react-query-devtools": "5.59.0"
|
|
90
91
|
},
|
|
@@ -617,6 +618,19 @@
|
|
|
617
618
|
"integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
|
|
618
619
|
"license": "MIT"
|
|
619
620
|
},
|
|
621
|
+
"node_modules/@isaacs/fs-minipass": {
|
|
622
|
+
"version": "4.0.1",
|
|
623
|
+
"resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
|
|
624
|
+
"integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
|
|
625
|
+
"dev": true,
|
|
626
|
+
"license": "ISC",
|
|
627
|
+
"dependencies": {
|
|
628
|
+
"minipass": "^7.0.4"
|
|
629
|
+
},
|
|
630
|
+
"engines": {
|
|
631
|
+
"node": ">=18.0.0"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
620
634
|
"node_modules/@jridgewell/gen-mapping": {
|
|
621
635
|
"version": "0.3.13",
|
|
622
636
|
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
@@ -2724,6 +2738,16 @@
|
|
|
2724
2738
|
"protobufjs": "^7.2.5"
|
|
2725
2739
|
}
|
|
2726
2740
|
},
|
|
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
|
+
},
|
|
2727
2751
|
"node_modules/class-variance-authority": {
|
|
2728
2752
|
"version": "0.7.1",
|
|
2729
2753
|
"resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
|
|
@@ -3626,6 +3650,29 @@
|
|
|
3626
3650
|
"node": ">= 0.6"
|
|
3627
3651
|
}
|
|
3628
3652
|
},
|
|
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
|
+
},
|
|
3629
3676
|
"node_modules/ms": {
|
|
3630
3677
|
"version": "2.1.3",
|
|
3631
3678
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
@@ -4098,6 +4145,23 @@
|
|
|
4098
4145
|
"url": "https://opencollective.com/webpack"
|
|
4099
4146
|
}
|
|
4100
4147
|
},
|
|
4148
|
+
"node_modules/tar": {
|
|
4149
|
+
"version": "7.5.2",
|
|
4150
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.2.tgz",
|
|
4151
|
+
"integrity": "sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==",
|
|
4152
|
+
"dev": true,
|
|
4153
|
+
"license": "BlueOak-1.0.0",
|
|
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
|
+
},
|
|
4101
4165
|
"node_modules/tiny-invariant": {
|
|
4102
4166
|
"version": "1.3.3",
|
|
4103
4167
|
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
|
|
@@ -4358,6 +4422,16 @@
|
|
|
4358
4422
|
}
|
|
4359
4423
|
}
|
|
4360
4424
|
},
|
|
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
|
+
},
|
|
4361
4435
|
"node_modules/zod": {
|
|
4362
4436
|
"version": "4.1.12",
|
|
4363
4437
|
"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": "
|
|
13
|
+
"@bluecopa/react": "0.1.20",
|
|
14
14
|
"@dnd-kit/core": "^6.3.1",
|
|
15
15
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
16
16
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@types/react": "^18.3.12",
|
|
54
54
|
"@types/react-dom": "^18.3.1",
|
|
55
55
|
"tailwindcss": "^4.1.13",
|
|
56
|
+
"tar": "^7.4.3",
|
|
56
57
|
"tw-animate-css": "^1.3.8",
|
|
57
58
|
"typescript": "^5.8.3",
|
|
58
59
|
"vite": "6.4.1",
|