@inversestudio/neptune-components 1.0.0

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.
Files changed (42) hide show
  1. package/README.md +2 -0
  2. package/components/data-display/AppPreview.jsx +150 -0
  3. package/components/data-display/DataTable.jsx +65 -0
  4. package/components/data-display/FileTree.jsx +123 -0
  5. package/components/data-display/KpiCard.jsx +57 -0
  6. package/components/data-display/VersionRow.jsx +103 -0
  7. package/components/feedback/Avatar.jsx +28 -0
  8. package/components/feedback/Badge.jsx +32 -0
  9. package/components/feedback/ChatMessage.jsx +42 -0
  10. package/components/feedback/StatusDot.jsx +55 -0
  11. package/components/feedback/StatusIndicator.jsx +40 -0
  12. package/components/inputs/Button.jsx +48 -0
  13. package/components/inputs/Checkbox.jsx +90 -0
  14. package/components/inputs/FilterBar.jsx +64 -0
  15. package/components/inputs/IconButton.jsx +43 -0
  16. package/components/inputs/IconToggle.jsx +44 -0
  17. package/components/inputs/NaiaChatInput.jsx +173 -0
  18. package/components/inputs/NaiaSendButton.jsx +36 -0
  19. package/components/inputs/PillSelect.jsx +175 -0
  20. package/components/inputs/PropertyField.jsx +58 -0
  21. package/components/inputs/SuggestionPill.jsx +28 -0
  22. package/components/inputs/TextInput.jsx +96 -0
  23. package/components/inputs/Toggle.jsx +73 -0
  24. package/components/layout/AppHeader.jsx +56 -0
  25. package/components/layout/BottomBar.jsx +81 -0
  26. package/components/layout/Card.jsx +57 -0
  27. package/components/layout/Panel.jsx +26 -0
  28. package/components/layout/Toolbar.jsx +89 -0
  29. package/components/navigation/Breadcrumb.jsx +43 -0
  30. package/components/navigation/Dropdown.jsx +104 -0
  31. package/components/navigation/SidebarNav.jsx +82 -0
  32. package/components/navigation/SidebarTabs.jsx +99 -0
  33. package/components/navigation/TabBar.jsx +61 -0
  34. package/components/overlays/Modal.jsx +101 -0
  35. package/components/shared/index.jsx +112 -0
  36. package/index.css +3 -0
  37. package/index.js +50 -0
  38. package/neptune-components.css +1771 -0
  39. package/package.json +45 -0
  40. package/registry.json +1215 -0
  41. package/tokens/neptune-design-tokens.css +730 -0
  42. package/tokens/neptune-design-tokens.json +191 -0
@@ -0,0 +1,191 @@
1
+ {
2
+ "plum": {
3
+ "50": "#faf4f8",
4
+ "100": "#f7e9f2",
5
+ "150": "#f3d8e9",
6
+ "200": "#efc3df",
7
+ "250": "#eaa4d1",
8
+ "300": "#e67fc1",
9
+ "350": "#e359b2",
10
+ "400": "#e133a2",
11
+ "450": "#cc1e8e",
12
+ "500": "#a61c74",
13
+ "550": "#80195b",
14
+ "600": "#601645",
15
+ "650": "#52143c",
16
+ "700": "#441232",
17
+ "750": "#39102a",
18
+ "800": "#2e0f23",
19
+ "850": "#260d1d",
20
+ "900": "#1e0b17",
21
+ "950": "#12080e"
22
+ },
23
+ "orange": {
24
+ "50": "#fdf8f2",
25
+ "100": "#fcf0e3",
26
+ "150": "#fee7cd",
27
+ "200": "#ffdbb2",
28
+ "250": "#ffca8f",
29
+ "300": "#ffb666",
30
+ "350": "#ffa33d",
31
+ "400": "#ff8f14",
32
+ "450": "#eb7b00",
33
+ "500": "#c26600",
34
+ "550": "#995000",
35
+ "600": "#753e00",
36
+ "650": "#663600",
37
+ "700": "#572d00",
38
+ "750": "#4a2600",
39
+ "800": "#3c2001",
40
+ "850": "#301a02",
41
+ "900": "#251503",
42
+ "950": "#160d04"
43
+ },
44
+ "purple": {
45
+ "50": "#f6f4fb",
46
+ "100": "#ece7f8",
47
+ "150": "#ded5f6",
48
+ "200": "#ccbef4",
49
+ "250": "#b39cf2",
50
+ "300": "#9673f2",
51
+ "350": "#7749f3",
52
+ "400": "#591ff4",
53
+ "450": "#450be0",
54
+ "500": "#3a0cb6",
55
+ "550": "#300d8c",
56
+ "600": "#260e68",
57
+ "650": "#220e59",
58
+ "700": "#1d0d4a",
59
+ "750": "#1a0c3e",
60
+ "800": "#160b32",
61
+ "850": "#120a29",
62
+ "900": "#0f0920",
63
+ "950": "#0a0713"
64
+ },
65
+ "lavender": {
66
+ "50": "#f4f2fe",
67
+ "100": "#e8e3fd",
68
+ "150": "#d8ccfc",
69
+ "200": "#c4b0fb",
70
+ "250": "#ac8df9",
71
+ "300": "#9468f7",
72
+ "350": "#7c42f5",
73
+ "400": "#6318f3",
74
+ "450": "#5208d8",
75
+ "500": "#4307b0",
76
+ "550": "#350889",
77
+ "600": "#280866",
78
+ "650": "#200748",
79
+ "700": "#190634",
80
+ "750": "#140526",
81
+ "800": "#0f041a",
82
+ "850": "#0b0312",
83
+ "900": "#08020c",
84
+ "950": "#050208"
85
+ },
86
+ "green": {
87
+ "50": "#f9fdf2",
88
+ "100": "#f3fce3",
89
+ "150": "#ebfecd",
90
+ "200": "#e2ffb2",
91
+ "250": "#d4ff8f",
92
+ "300": "#c5ff66",
93
+ "350": "#b5ff3d",
94
+ "400": "#a5ff14",
95
+ "450": "#91eb00",
96
+ "500": "#78c200",
97
+ "550": "#5f9900",
98
+ "600": "#487500",
99
+ "650": "#3f6600",
100
+ "700": "#365700",
101
+ "750": "#2e4a00",
102
+ "800": "#263c01",
103
+ "850": "#1f3002",
104
+ "900": "#182503",
105
+ "950": "#0f1604"
106
+ },
107
+ "red": {
108
+ "50": "#fbf4f4",
109
+ "100": "#f8e8e8",
110
+ "150": "#f5d6d6",
111
+ "200": "#f3bfc0",
112
+ "250": "#f19d9e",
113
+ "300": "#f07577",
114
+ "350": "#f04c4f",
115
+ "400": "#f02326",
116
+ "450": "#dc0f11",
117
+ "500": "#b30f11",
118
+ "550": "#8a0f11",
119
+ "600": "#660f10",
120
+ "650": "#580e10",
121
+ "700": "#490e0f",
122
+ "750": "#3d0d0e",
123
+ "800": "#310c0d",
124
+ "850": "#280b0c",
125
+ "900": "#1f0a0a",
126
+ "950": "#120707"
127
+ },
128
+ "coral": {
129
+ "50": "#fef5f1",
130
+ "100": "#fde9e0",
131
+ "150": "#fdd7c8",
132
+ "200": "#fcc2ab",
133
+ "250": "#fba787",
134
+ "300": "#fa8860",
135
+ "350": "#f96838",
136
+ "400": "#f54d12",
137
+ "450": "#e03c00",
138
+ "500": "#b83200",
139
+ "550": "#912800",
140
+ "600": "#6e1e00",
141
+ "650": "#561800",
142
+ "700": "#401200",
143
+ "750": "#2e0d01",
144
+ "800": "#1f0901",
145
+ "850": "#150602",
146
+ "900": "#0e0402",
147
+ "950": "#090302"
148
+ },
149
+ "neutral": {
150
+ "50": "#f8f7f7",
151
+ "100": "#f0eff0",
152
+ "150": "#e7e4e6",
153
+ "200": "#dbd6d9",
154
+ "250": "#cbc2c8",
155
+ "300": "#b9acb4",
156
+ "350": "#a696a0",
157
+ "400": "#93808c",
158
+ "450": "#7e6d77",
159
+ "500": "#675b62",
160
+ "550": "#51484e",
161
+ "600": "#3e383b",
162
+ "650": "#363034",
163
+ "700": "#2e292c",
164
+ "750": "#272326",
165
+ "800": "#201d1f",
166
+ "850": "#1a181a",
167
+ "900": "#151315",
168
+ "950": "#0d0c0d"
169
+ },
170
+ "aubergine": {
171
+ "50": "#f8f5f7",
172
+ "100": "#f0eaee",
173
+ "150": "#e5dbe2",
174
+ "200": "#d8c9d3",
175
+ "250": "#c7b0bf",
176
+ "300": "#b496aa",
177
+ "350": "#a07c96",
178
+ "400": "#8c6382",
179
+ "450": "#774b6e",
180
+ "500": "#623b5b",
181
+ "550": "#4e2f49",
182
+ "600": "#3c2539",
183
+ "650": "#301e2e",
184
+ "700": "#261824",
185
+ "750": "#1d131b",
186
+ "800": "#160f14",
187
+ "850": "#100b0f",
188
+ "900": "#0b080a",
189
+ "950": "#070506"
190
+ }
191
+ }