@ramme-io/create-app 1.0.2 → 1.0.4
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/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Excesspool Limited Liability Company
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -10,19 +10,19 @@ import {
|
|
|
10
10
|
|
|
11
11
|
// Mock data is fine as is
|
|
12
12
|
const mockData = [
|
|
13
|
-
{ id:
|
|
14
|
-
{ id:
|
|
15
|
-
{ id:
|
|
16
|
-
{ id:
|
|
17
|
-
{ id:
|
|
13
|
+
{ id: 34561, name: 'Item Name 1', color: 'Blue' },
|
|
14
|
+
{ id: 76552, name: 'Item Name 2', color: 'Red' },
|
|
15
|
+
{ id: 54364, name: 'Item Name 3', color: 'Yellow' },
|
|
16
|
+
{ id: 87655, name: 'Item Name 3', color: 'Red' },
|
|
17
|
+
{ id: 98676, name: 'Item Name 3', color: 'Yellow' },
|
|
18
18
|
];
|
|
19
19
|
|
|
20
|
-
interface
|
|
20
|
+
interface AddItemsModalProps {
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
onClose: () => void;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
export const
|
|
25
|
+
export const AddItemsModal: React.FC<AddItemsModalProps> = ({
|
|
26
26
|
isOpen,
|
|
27
27
|
onClose,
|
|
28
28
|
}) => {
|
|
@@ -48,8 +48,8 @@ export const AddEntitiesModal: React.FC<AddEntitiesModalProps> = ({
|
|
|
48
48
|
field: 'id',
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
headerName: '
|
|
52
|
-
field: '
|
|
51
|
+
headerName: 'Color',
|
|
52
|
+
field: 'color',
|
|
53
53
|
},
|
|
54
54
|
], []);
|
|
55
55
|
|
|
@@ -60,7 +60,7 @@ export const AddEntitiesModal: React.FC<AddEntitiesModalProps> = ({
|
|
|
60
60
|
<Button variant="secondary" onClick={onClose}>
|
|
61
61
|
Cancel
|
|
62
62
|
</Button>
|
|
63
|
-
<Button variant="primary">Add
|
|
63
|
+
<Button variant="primary">Add Items</Button>
|
|
64
64
|
</div>
|
|
65
65
|
</div>
|
|
66
66
|
);
|
|
@@ -69,11 +69,11 @@ export const AddEntitiesModal: React.FC<AddEntitiesModalProps> = ({
|
|
|
69
69
|
<Modal
|
|
70
70
|
isOpen={isOpen}
|
|
71
71
|
onClose={onClose}
|
|
72
|
-
title="Add
|
|
72
|
+
title="Add Items"
|
|
73
73
|
footer={modalFooter}
|
|
74
74
|
>
|
|
75
75
|
<div className="space-y-4">
|
|
76
|
-
<h3 className="text-lg font-semibold">Select
|
|
76
|
+
<h3 className="text-lg font-semibold">Select Item(s)</h3>
|
|
77
77
|
<SearchInput placeholder="Search by name" />
|
|
78
78
|
<DataTable
|
|
79
79
|
// --- FIX: Use the correct prop names ---
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { useState } from 'react';
|
|
2
2
|
import { Button, PageHeader } from '@ramme-io/ui';
|
|
3
|
-
import {
|
|
3
|
+
import { AddItemsModal } from '../../components/AddItemsModal';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
const
|
|
7
|
+
const ItemSelectorPage = () => {
|
|
8
8
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
9
9
|
|
|
10
10
|
return (
|
|
11
11
|
<div>
|
|
12
12
|
<PageHeader
|
|
13
|
-
title="Prototype:
|
|
14
|
-
description="This page demonstrates the 'Add
|
|
13
|
+
title="Prototype: Item Selection"
|
|
14
|
+
description="This page demonstrates the 'Add Items' modal component."
|
|
15
15
|
/>
|
|
16
16
|
<div className="mt-8">
|
|
17
17
|
<Button onClick={() => setIsModalOpen(true)}>
|
|
@@ -19,7 +19,7 @@ const EntitySelectorPage = () => {
|
|
|
19
19
|
</Button>
|
|
20
20
|
</div>
|
|
21
21
|
|
|
22
|
-
<
|
|
22
|
+
<AddItemsModal
|
|
23
23
|
isOpen={isModalOpen}
|
|
24
24
|
onClose={() => setIsModalOpen(false)}
|
|
25
25
|
/>
|
|
@@ -27,4 +27,4 @@ const EntitySelectorPage = () => {
|
|
|
27
27
|
);
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
export default
|
|
30
|
+
export default ItemSelectorPage;
|
|
@@ -4,7 +4,6 @@ import { type SitemapEntry } from '../../core/sitemap-entry';
|
|
|
4
4
|
import Dashboard from '../../pages/Dashboard';
|
|
5
5
|
import AiChat from '../../pages/AiChat';
|
|
6
6
|
import DataGridPage from '../../pages/DataGridPage';
|
|
7
|
-
import AccountingLedgerPage from '../../pages/AccountingLedgerPage';
|
|
8
7
|
import Styleguide from '../../pages/styleguide/Styleguide';
|
|
9
8
|
import DataLayout from '../../layouts/DataLayout';
|
|
10
9
|
|
|
@@ -23,7 +22,7 @@ import ColorsSection from '../../pages/styleguide/sections/colors/ColorsSection'
|
|
|
23
22
|
import IconsSection from '../../pages/styleguide/sections/icons/IconsSection';
|
|
24
23
|
|
|
25
24
|
// --- ADD THIS IMPORT ---
|
|
26
|
-
import
|
|
25
|
+
import ItemSelectorPage from '../../pages/prototypes/ItemSelectorPage';
|
|
27
26
|
|
|
28
27
|
|
|
29
28
|
export const dashboardSitemap: SitemapEntry[] = [
|
|
@@ -41,7 +40,7 @@ export const dashboardSitemap: SitemapEntry[] = [
|
|
|
41
40
|
path: 'prototypes/entity-selector',
|
|
42
41
|
title: 'Entity Prototype',
|
|
43
42
|
icon: 'beaker',
|
|
44
|
-
component:
|
|
43
|
+
component: ItemSelectorPage,
|
|
45
44
|
},
|
|
46
45
|
{
|
|
47
46
|
id: 'ai-chat',
|
|
@@ -57,8 +56,7 @@ export const dashboardSitemap: SitemapEntry[] = [
|
|
|
57
56
|
icon: 'database',
|
|
58
57
|
component: DataLayout,
|
|
59
58
|
children: [
|
|
60
|
-
{ id: '
|
|
61
|
-
{ id: 'ledger', path: 'ledger', title: 'Ledger', component: AccountingLedgerPage, icon: 'book-open' },
|
|
59
|
+
{ id: 'users', path: 'users', title: 'Users', component: DataGridPage, icon: 'table' }
|
|
62
60
|
],
|
|
63
61
|
},
|
|
64
62
|
{
|