@lincros-ui/components 0.2.0 → 0.2.1

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.
@@ -0,0 +1,47 @@
1
+ #root {
2
+ width: 100%;
3
+ min-height: 100vh;
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ .logo {
9
+ height: 6em;
10
+ padding: 1.5em;
11
+ will-change: filter;
12
+ transition: filter 300ms;
13
+ }
14
+ .logo:hover {
15
+ filter: drop-shadow(0 0 2em #646cffaa);
16
+ }
17
+ .logo.react:hover {
18
+ filter: drop-shadow(0 0 2em #61dafbaa);
19
+ }
20
+
21
+ @keyframes logo-spin {
22
+ from {
23
+ transform: rotate(0deg);
24
+ }
25
+ to {
26
+ transform: rotate(360deg);
27
+ }
28
+ }
29
+
30
+ @media (prefers-reduced-motion: no-preference) {
31
+ a:nth-of-type(2) .logo {
32
+ animation: logo-spin infinite 20s linear;
33
+ }
34
+ }
35
+
36
+ .card {
37
+ padding: 2em;
38
+ }
39
+
40
+ .read-the-docs {
41
+ color: #888;
42
+ }
43
+
44
+ .icon-size {
45
+ width: 2em;
46
+ height: 2em;
47
+ }
@@ -0,0 +1,39 @@
1
+ /* Credentials Modal Styles */
2
+ .credential-form-modal {
3
+ /* Ensure dialog content doesn't overflow */
4
+ [role="dialog"] {
5
+ overflow: visible;
6
+ }
7
+
8
+ /* Fix for Select dropdowns in Dialog */
9
+ [data-radix-popper-content-wrapper] {
10
+ z-index: 9999 !important;
11
+ }
12
+
13
+ /* Ensure proper spacing in form fields */
14
+ input[type="text"],
15
+ input[type="password"] {
16
+ width: 100%;
17
+ }
18
+
19
+ /* Fix button positioning in password fields */
20
+ .relative input {
21
+ padding-right: 2.5rem;
22
+ }
23
+ }
24
+
25
+ /* Fix for ScrollArea in Dialog */
26
+ [data-radix-scroll-area-viewport] {
27
+ /* Prevent horizontal scroll */
28
+ overflow-x: hidden !important;
29
+
30
+ /* Add padding to prevent content cutoff */
31
+ > div {
32
+ padding-right: 0 !important;
33
+ }
34
+ }
35
+
36
+ /* Ensure Select dropdowns are properly displayed */
37
+ [data-state="open"][data-side="bottom"] {
38
+ max-height: var(--radix-select-content-available-height);
39
+ }
@@ -0,0 +1,273 @@
1
+ /* React Flow Editor Styles */
2
+
3
+ /* Override React Flow default styles */
4
+ .react-flow__node {
5
+ font-family: inherit;
6
+ }
7
+
8
+ .react-flow__edge-path {
9
+ stroke: #6b7280;
10
+ stroke-width: 2;
11
+ }
12
+
13
+ .react-flow__edge.selected .react-flow__edge-path {
14
+ stroke: #3b82f6;
15
+ stroke-width: 3;
16
+ }
17
+
18
+ .react-flow__handle {
19
+ border: 2px solid white;
20
+ background: #6b7280;
21
+ width: 8px;
22
+ height: 8px;
23
+ }
24
+
25
+ .react-flow__handle.connecting {
26
+ background: #3b82f6;
27
+ }
28
+
29
+ .react-flow__handle.valid {
30
+ background: #10b981;
31
+ }
32
+
33
+ /* Minimap customization */
34
+ .react-flow__minimap {
35
+ background-color: white;
36
+ border: 1px solid #e5e7eb;
37
+ border-radius: 4px;
38
+ }
39
+
40
+ .react-flow__controls {
41
+ background-color: white;
42
+ border: 1px solid #e5e7eb;
43
+ border-radius: 4px;
44
+ }
45
+
46
+ .react-flow__controls button {
47
+ background-color: white;
48
+ border: none;
49
+ border-bottom: 1px solid #e5e7eb;
50
+ }
51
+
52
+ .react-flow__controls button:hover {
53
+ background-color: #f9fafb;
54
+ }
55
+
56
+ /* Custom node styles */
57
+ .flow-node {
58
+ transition: all 0.2s ease;
59
+ }
60
+
61
+ .flow-node:hover {
62
+ transform: translateY(-1px);
63
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
64
+ }
65
+
66
+ .flow-node.selected {
67
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
68
+ }
69
+
70
+ /* Node type specific styles */
71
+ .trigger-node {
72
+ background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
73
+ border-color: #10b981;
74
+ }
75
+
76
+ .action-node {
77
+ background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
78
+ border-color: #3b82f6;
79
+ }
80
+
81
+ .condition-node {
82
+ background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
83
+ border-color: #f59e0b;
84
+ }
85
+
86
+ .ai-agent-node {
87
+ background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
88
+ border-color: #8b5cf6;
89
+ }
90
+
91
+ .merge-node {
92
+ background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
93
+ border-color: #6b7280;
94
+ }
95
+
96
+ /* Node library panel */
97
+ .node-library-item {
98
+ cursor: grab;
99
+ transition: all 0.2s ease;
100
+ }
101
+
102
+ .node-library-item:hover {
103
+ background-color: #f3f4f6;
104
+ transform: translateY(-1px);
105
+ }
106
+
107
+ .node-library-item:active {
108
+ cursor: grabbing;
109
+ transform: scale(0.95);
110
+ }
111
+
112
+ /* Connection validation */
113
+ .react-flow__connection-line {
114
+ stroke: #3b82f6;
115
+ stroke-width: 2;
116
+ stroke-dasharray: 5, 5;
117
+ }
118
+
119
+ /* Properties panel */
120
+ .properties-panel {
121
+ border-left: 1px solid #e5e7eb;
122
+ background: white;
123
+ }
124
+
125
+ .properties-panel .form-group {
126
+ margin-bottom: 1rem;
127
+ }
128
+
129
+ .properties-panel label {
130
+ font-size: 0.875rem;
131
+ font-weight: 500;
132
+ color: #374151;
133
+ margin-bottom: 0.25rem;
134
+ display: block;
135
+ }
136
+
137
+ /* Animation for node addition */
138
+ @keyframes nodeAppear {
139
+ from {
140
+ opacity: 0;
141
+ transform: scale(0.8);
142
+ }
143
+ to {
144
+ opacity: 1;
145
+ transform: scale(1);
146
+ }
147
+ }
148
+
149
+ .flow-node.new {
150
+ animation: nodeAppear 0.3s ease-out;
151
+ }
152
+
153
+ /* Edge hover effects */
154
+ .react-flow__edge {
155
+ cursor: pointer;
156
+ }
157
+
158
+ .react-flow__edge:hover .react-flow__edge-path {
159
+ stroke: #3b82f6;
160
+ stroke-width: 3;
161
+ cursor: pointer;
162
+ }
163
+
164
+ /* Edge selected state - more visible */
165
+ .react-flow__edge.selected .react-flow__edge-path {
166
+ stroke: #dc2626;
167
+ stroke-width: 4;
168
+ filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.5));
169
+ }
170
+
171
+ /* Add delete hint on selected edge */
172
+ .react-flow__edge.selected::after {
173
+ content: 'Pressione Delete para remover';
174
+ position: absolute;
175
+ top: -25px;
176
+ left: 50%;
177
+ transform: translateX(-50%);
178
+ background: #dc2626;
179
+ color: white;
180
+ padding: 4px 8px;
181
+ border-radius: 4px;
182
+ font-size: 12px;
183
+ white-space: nowrap;
184
+ pointer-events: none;
185
+ }
186
+
187
+ /* Connection handles */
188
+ .react-flow__handle-top {
189
+ top: -4px;
190
+ }
191
+
192
+ .react-flow__handle-bottom {
193
+ bottom: -4px;
194
+ }
195
+
196
+ .react-flow__handle-left {
197
+ left: -4px;
198
+ }
199
+
200
+ .react-flow__handle-right {
201
+ right: -4px;
202
+ }
203
+
204
+ /* Conditional connection handles */
205
+ .condition-node .react-flow__handle[data-id="true"] {
206
+ background: #10b981;
207
+ }
208
+
209
+ .condition-node .react-flow__handle[data-id="false"] {
210
+ background: #ef4444;
211
+ }
212
+
213
+ /* Loading state */
214
+ .flow-editor-loading {
215
+ display: flex;
216
+ align-items: center;
217
+ justify-content: center;
218
+ height: 100%;
219
+ background: #f9fafb;
220
+ }
221
+
222
+ .flow-editor-loading::after {
223
+ content: '';
224
+ width: 32px;
225
+ height: 32px;
226
+ border: 3px solid #e5e7eb;
227
+ border-top: 3px solid #3b82f6;
228
+ border-radius: 50%;
229
+ animation: spin 1s linear infinite;
230
+ }
231
+
232
+ @keyframes spin {
233
+ 0% { transform: rotate(0deg); }
234
+ 100% { transform: rotate(360deg); }
235
+ }
236
+
237
+ /* Responsive adjustments */
238
+ @media (max-width: 768px) {
239
+ .node-library-panel {
240
+ display: none;
241
+ }
242
+
243
+ .properties-panel {
244
+ position: absolute;
245
+ top: 0;
246
+ right: 0;
247
+ z-index: 10;
248
+ box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
249
+ }
250
+ }
251
+
252
+ /* Dark mode support */
253
+ @media (prefers-color-scheme: dark) {
254
+ .react-flow__minimap {
255
+ background-color: #1f2937;
256
+ border-color: #374151;
257
+ }
258
+
259
+ .react-flow__controls {
260
+ background-color: #1f2937;
261
+ border-color: #374151;
262
+ }
263
+
264
+ .react-flow__controls button {
265
+ background-color: #1f2937;
266
+ color: white;
267
+ border-color: #374151;
268
+ }
269
+
270
+ .react-flow__controls button:hover {
271
+ background-color: #374151;
272
+ }
273
+ }
@@ -0,0 +1,190 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+
4
+ @layer base {
5
+ :root {
6
+ --background: rgb(255 255 255);
7
+ --foreground: rgb(12 13 27);
8
+
9
+ --card: rgb(255 255 255);
10
+ --card-foreground: rgb(12 13 27);
11
+
12
+ --popover: rgb(255 255 255);
13
+ --popover-foreground: rgb(12 13 27);
14
+
15
+ --primary: rgb(30 64 175);
16
+ --primary-foreground: rgb(255 255 255);
17
+
18
+ --secondary: rgb(239 243 246);
19
+ --secondary-foreground: rgb(28 28 42);
20
+
21
+ --muted: rgb(239 243 246);
22
+ --muted-foreground: rgb(120 120 145);
23
+
24
+ --accent: rgb(239 243 246);
25
+ --accent-foreground: rgb(28 28 42);
26
+
27
+ --destructive: rgb(239 68 68);
28
+ --destructive-foreground: rgb(250 251 251);
29
+
30
+ --border: rgb(229 231 235);
31
+ --input: rgb(229 231 235);
32
+ --ring: rgb(12 13 27);
33
+
34
+ --radius: 0.5rem;
35
+
36
+ --sidebar-background: rgb(250 250 250);
37
+
38
+ --sidebar-foreground: rgb(67 67 79);
39
+
40
+ --sidebar-primary: rgb(26 26 30);
41
+
42
+ --sidebar-primary-foreground: rgb(250 250 250);
43
+
44
+ --sidebar-accent: rgb(244 244 245);
45
+
46
+ --sidebar-accent-foreground: rgb(26 26 30);
47
+
48
+ --sidebar-border: rgb(229 230 232);
49
+
50
+ --sidebar-ring: rgb(59 130 246);
51
+
52
+ /* Acorde Design System variables */
53
+ --acorde-primary: rgb(5 150 105); /* #059669 - Verde Acorde */
54
+ --acorde-secondary: rgb(30 64 175); /* #1e40af - Azul Acorde */
55
+ --acorde-success: rgb(34 197 94); /* #22c55e */
56
+ --acorde-warning: rgb(245 158 11); /* #f59e0b */
57
+ --acorde-error: rgb(239 68 68); /* #ef4444 */
58
+ --acorde-info: rgb(59 130 246); /* #3b82f6 */
59
+ }
60
+
61
+ .dark {
62
+ --background: rgb(12 13 27);
63
+ --foreground: rgb(250 251 251);
64
+
65
+ --card: rgb(12 13 27);
66
+ --card-foreground: rgb(250 251 251);
67
+
68
+ --popover: rgb(12 13 27);
69
+ --popover-foreground: rgb(250 251 251);
70
+
71
+ --primary: rgb(250 251 251);
72
+ --primary-foreground: rgb(28 28 42);
73
+
74
+ --secondary: rgb(45 45 57);
75
+ --secondary-foreground: rgb(250 251 251);
76
+
77
+ --muted: rgb(45 45 57);
78
+ --muted-foreground: rgb(166 166 178);
79
+
80
+ --accent: rgb(45 45 57);
81
+ --accent-foreground: rgb(250 251 251);
82
+
83
+ --destructive: rgb(156 23 23);
84
+ --destructive-foreground: rgb(250 251 251);
85
+
86
+ --border: rgb(45 45 57);
87
+ --input: rgb(45 45 57);
88
+ --ring: rgb(214 214 219);
89
+ --sidebar-background: rgb(26 26 30);
90
+ --sidebar-foreground: rgb(244 244 245);
91
+ --sidebar-primary: rgb(59 130 246);
92
+ --sidebar-primary-foreground: rgb(255 255 255);
93
+ --sidebar-accent: rgb(41 41 51);
94
+ --sidebar-accent-foreground: rgb(244 244 245);
95
+ --sidebar-border: rgb(41 41 51);
96
+ --sidebar-ring: rgb(59 130 246);
97
+
98
+ /* Acorde Design System variables - Dark mode */
99
+ --acorde-primary: rgb(52 211 153); /* #34d399 - Verde Acorde */
100
+ --acorde-secondary: rgb(59 130 246); /* #3b82f6 - Azul Acorde */
101
+ --acorde-success: rgb(34 197 94); /* #22c55e */
102
+ --acorde-warning: rgb(251 191 36); /* #fbbf24 */
103
+ --acorde-error: rgb(248 113 113); /* #f87171 */
104
+ --acorde-info: rgb(96 165 250); /* #60a5fa */
105
+ }
106
+ }
107
+
108
+
109
+ @layer utilities {
110
+ /* Switch Color */
111
+ .switch-color[data-state="checked"] {
112
+ background-color: var(--primary);
113
+ }
114
+
115
+ .switch-color[data-state="unchecked"] {
116
+ background-color: var(--input);
117
+ }
118
+
119
+ .error-color {
120
+ color: var(--acorde-error);
121
+ }
122
+
123
+ .primary-color {
124
+ color: var(--primary);
125
+ }
126
+
127
+ /* Custom Scrollbar */
128
+ .custom-scrollbar {
129
+ scrollbar-width: thin;
130
+ scrollbar-color: color-mix(in srgb, var(--acorde-primary) 30%, transparent) transparent;
131
+ }
132
+
133
+ .custom-scrollbar::-webkit-scrollbar {
134
+ width: 6px;
135
+ height: 6px;
136
+ }
137
+
138
+ .custom-scrollbar::-webkit-scrollbar-track {
139
+ background: transparent;
140
+ border-radius: 10px;
141
+ }
142
+
143
+ .custom-scrollbar::-webkit-scrollbar-thumb {
144
+ background: color-mix(in srgb, var(--sidebar-primary) 30%, transparent);
145
+ border-radius: 10px;
146
+ transition: background 0.2s ease;
147
+ }
148
+
149
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
150
+ background: color-mix(in srgb, var(--sidebar-primary) 50%, transparent);
151
+ }
152
+
153
+ .custom-scrollbar::-webkit-scrollbar-corner {
154
+ background: transparent;
155
+ }
156
+
157
+ /* Hide Scrollbar */
158
+ .hide-scrollbar {
159
+ -ms-overflow-style: none;
160
+ scrollbar-width: none;
161
+ }
162
+
163
+ .hide-scrollbar::-webkit-scrollbar {
164
+ display: none;
165
+ }
166
+
167
+ .hide-scrollbar-x {
168
+ overflow-x: auto;
169
+ -ms-overflow-style: none;
170
+ scrollbar-width: none;
171
+ }
172
+
173
+ .hide-scrollbar-x::-webkit-scrollbar {
174
+ display: none;
175
+ }
176
+
177
+ .hide-scrollbar-y {
178
+ overflow-y: auto;
179
+ -ms-overflow-style: none;
180
+ scrollbar-width: none;
181
+ }
182
+
183
+ .hide-scrollbar-y::-webkit-scrollbar {
184
+ display: none;
185
+ }
186
+
187
+ }
188
+
189
+
190
+ @tailwind utilities;
@@ -10,7 +10,9 @@ var acordeColors = {
10
10
  600: "#059669",
11
11
  700: "#047857",
12
12
  800: "#065f46",
13
- 900: "#064e3b"
13
+ 900: "#064e3b",
14
+ DEFAULT: "var(--primary)",
15
+ foreground: "var(--primary-foreground)"
14
16
  },
15
17
  secondary: {
16
18
  50: "#eff6ff",
@@ -22,7 +24,9 @@ var acordeColors = {
22
24
  600: "#1e40af",
23
25
  700: "#1d4ed8",
24
26
  800: "#1e3a8a",
25
- 900: "#1e293b"
27
+ 900: "#1e293b",
28
+ DEFAULT: "var(--secondary)",
29
+ foreground: "var(--secondary-foreground)"
26
30
  },
27
31
  success: "#22c55e",
28
32
  warning: "#f59e0b",
@@ -39,6 +43,47 @@ var acordeColors = {
39
43
  700: "#374151",
40
44
  800: "#1f2937",
41
45
  900: "#111827"
46
+ },
47
+ "acorde-primary": "var(--acorde-primary)",
48
+ "acorde-secondary": "var(--acorde-secondary)",
49
+ "acorde-success": "var(--acorde-success)",
50
+ "acorde-warning": "var(--acorde-warning)",
51
+ "acorde-error": "var(--acorde-error)",
52
+ "acorde-info": "var(--acorde-info)",
53
+ border: "var(--border)",
54
+ input: "var(--input)",
55
+ ring: "var(--ring)",
56
+ background: "var(--background)",
57
+ foreground: "var(--foreground)",
58
+ destructive: {
59
+ DEFAULT: "var(--destructive)",
60
+ foreground: "var(--destructive-foreground)"
61
+ },
62
+ muted: {
63
+ DEFAULT: "var(--muted)",
64
+ foreground: "var(--muted-foreground)"
65
+ },
66
+ accent: {
67
+ DEFAULT: "var(--accent)",
68
+ foreground: "var(--accent-foreground)"
69
+ },
70
+ popover: {
71
+ DEFAULT: "var(--popover)",
72
+ foreground: "var(--popover-foreground)"
73
+ },
74
+ card: {
75
+ DEFAULT: "var(--card)",
76
+ foreground: "var(--card-foreground)"
77
+ },
78
+ sidebar: {
79
+ DEFAULT: "var(--sidebar-background)",
80
+ foreground: "var(--sidebar-foreground)",
81
+ primary: "var(--sidebar-primary)",
82
+ "primary-foreground": "var(--sidebar-primary-foreground)",
83
+ accent: "var(--sidebar-accent)",
84
+ "accent-foreground": "var(--sidebar-accent-foreground)",
85
+ border: "var(--sidebar-border)",
86
+ ring: "var(--sidebar-ring)"
42
87
  }
43
88
  };
44
89
 
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/styles/design-tokens/colors.ts","../../src/styles/design-tokens/typography.ts","../../src/styles/design-tokens/spacing.ts","../../src/styles/design-tokens/shadows.ts","../../src/styles/design-tokens/borders.ts","../../src/styles/design-tokens/breakpoints.ts","../../src/styles/design-tokens/animations.ts","../../src/styles/design-tokens/index.ts"],"names":[],"mappings":";AAAO,IAAM,YAAA,GAAe;AAAA,EAC1B,OAAA,EAAS;AAAA,IACP,EAAA,EAAI,SAAA;AAAA,IACJ,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK;AAAA,GACP;AAAA,EACA,SAAA,EAAW;AAAA,IACT,EAAA,EAAI,SAAA;AAAA,IACJ,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK;AAAA,GACP;AAAA,EACA,OAAA,EAAS,SAAA;AAAA,EACT,OAAA,EAAS,SAAA;AAAA,EACT,KAAA,EAAO,SAAA;AAAA,EACP,IAAA,EAAM,SAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI,SAAA;AAAA,IACJ,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK,SAAA;AAAA,IACL,GAAA,EAAK;AAAA;AAET;;;ACzCO,IAAM,gBAAA,GAAmB;AAAA,EAC9B,UAAA,EAAY;AAAA,IACV,IAAA,EAAM,CAAC,OAAA,EAAS,WAAA,EAAa,YAAY,CAAA;AAAA,IACzC,IAAA,EAAM,CAAC,aAAA,EAAe,WAAW;AAAA,GACnC;AAAA,EACA,QAAA,EAAU;AAAA,IACR,EAAA,EAAI,MAAA;AAAA,IACJ,EAAA,EAAI,MAAA;AAAA,IACJ,IAAA,EAAM,MAAA;AAAA,IACN,EAAA,EAAI,MAAA;AAAA,IACJ,EAAA,EAAI,MAAA;AAAA,IACJ,EAAA,EAAI,MAAA;AAAA,IACJ,KAAA,EAAO,MAAA;AAAA,IACP,KAAA,EAAO,MAAA;AAAA,IACP,KAAA,EAAO,MAAA;AAAA,IACP,KAAA,EAAO;AAAA,GACT;AAAA,EACA,UAAA,EAAY;AAAA,IACV,KAAA,EAAO,KAAA;AAAA,IACP,MAAA,EAAQ,KAAA;AAAA,IACR,MAAA,EAAQ,KAAA;AAAA,IACR,QAAA,EAAU,KAAA;AAAA,IACV,IAAA,EAAM;AAAA,GACR;AAAA,EACA,UAAA,EAAY;AAAA,IACV,KAAA,EAAO,KAAA;AAAA,IACP,MAAA,EAAQ,KAAA;AAAA,IACR,OAAA,EAAS;AAAA;AAEb;;;AC7BO,IAAM,aAAA,GAAgB;AAAA,EAC3B,EAAA,EAAI,KAAA;AAAA,EACJ,CAAA,EAAG,KAAA;AAAA,EACH,GAAA,EAAK,KAAA;AAAA,EACL,CAAA,EAAG,KAAA;AAAA,EACH,CAAA,EAAG,KAAA;AAAA,EACH,CAAA,EAAG,MAAA;AAAA,EACH,CAAA,EAAG,MAAA;AAAA,EACH,CAAA,EAAG,MAAA;AAAA,EACH,CAAA,EAAG,MAAA;AAAA,EACH,CAAA,EAAG,MAAA;AAAA,EACH,EAAA,EAAI,MAAA;AAAA,EACJ,EAAA,EAAI,MAAA;AAAA,EACJ,EAAA,EAAI,MAAA;AAAA,EACJ,EAAA,EAAI,MAAA;AAAA,EACJ,EAAA,EAAI,MAAA;AAAA,EACJ,EAAA,EAAI;AACN;;;ACjBO,IAAM,aAAA,GAAgB;AAAA,EAC3B,IAAA,EAAM,MAAA;AAAA,EACN,EAAA,EAAI,+BAAA;AAAA,EACJ,EAAA,EAAI,+BAAA;AAAA,EACJ,EAAA,EAAI,gCAAA;AAAA,EACJ,EAAA,EAAI,gCAAA;AAAA,EACJ,KAAA,EAAO,iCAAA;AAAA,EACP,KAAA,EAAO;AACT;;;ACRO,IAAM,aAAA,GAAgB;AAAA,EAC3B,KAAA,EAAO;AAAA,IACL,CAAA,EAAG,KAAA;AAAA,IACH,CAAA,EAAG,KAAA;AAAA,IACH,CAAA,EAAG,KAAA;AAAA,IACH,CAAA,EAAG;AAAA,GACL;AAAA,EACA,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,KAAA;AAAA,IACN,EAAA,EAAI,KAAA;AAAA,IACJ,EAAA,EAAI,KAAA;AAAA,IACJ,EAAA,EAAI,KAAA;AAAA,IACJ,EAAA,EAAI,MAAA;AAAA,IACJ,KAAA,EAAO,MAAA;AAAA,IACP,KAAA,EAAO,MAAA;AAAA,IACP,IAAA,EAAM;AAAA;AAEV;;;ACjBO,IAAM,iBAAA,GAAoB;AAAA,EAC/B,EAAA,EAAI,OAAA;AAAA,EACJ,EAAA,EAAI,OAAA;AAAA,EACJ,EAAA,EAAI,QAAA;AAAA,EACJ,EAAA,EAAI,QAAA;AAAA,EACJ,KAAA,EAAO;AACT;;;ACNO,IAAM,gBAAA,GAAmB;AAAA,EAC9B,QAAA,EAAU;AAAA,IACR,IAAA,EAAM,OAAA;AAAA,IACN,MAAA,EAAQ,OAAA;AAAA,IACR,IAAA,EAAM;AAAA,GACR;AAAA,EACA,MAAA,EAAQ;AAAA,IACN,MAAA,EAAQ,QAAA;AAAA,IACR,EAAA,EAAI,4BAAA;AAAA,IACJ,GAAA,EAAK,4BAAA;AAAA,IACL,KAAA,EAAO;AAAA;AAEX;;;ACIO,IAAM,kBAAA,GAAqB;AAAA,EAChC,MAAA,EAAQ,YAAA;AAAA,EACR,UAAA,EAAY,gBAAA;AAAA,EACZ,OAAA,EAAS,aAAA;AAAA,EACT,OAAA,EAAS,aAAA;AAAA,EACT,OAAA,EAAS,aAAA;AAAA,EACT,WAAA,EAAa,iBAAA;AAAA,EACb,UAAA,EAAY;AACd","file":"index.js","sourcesContent":["export const acordeColors = {\n primary: {\n 50: '#ecfdf5',\n 100: '#d1fae5',\n 200: '#a7f3d0',\n 300: '#6ee7b7',\n 400: '#34d399',\n 500: '#10b981',\n 600: '#059669',\n 700: '#047857',\n 800: '#065f46',\n 900: '#064e3b',\n },\n secondary: {\n 50: '#eff6ff',\n 100: '#dbeafe',\n 200: '#bfdbfe',\n 300: '#93c5fd',\n 400: '#60a5fa',\n 500: '#3b82f6',\n 600: '#1e40af',\n 700: '#1d4ed8',\n 800: '#1e3a8a',\n 900: '#1e293b',\n },\n success: '#22c55e',\n warning: '#f59e0b',\n error: '#ef4444',\n info: '#3b82f6',\n gray: {\n 50: '#f9fafb',\n 100: '#f3f4f6',\n 200: '#e5e7eb',\n 300: '#d1d5db',\n 400: '#9ca3af',\n 500: '#6b7280',\n 600: '#4b5563',\n 700: '#374151',\n 800: '#1f2937',\n 900: '#111827',\n }\n} as const;","export const acordeTypography = {\n fontFamily: {\n sans: ['Inter', 'system-ui', 'sans-serif'],\n mono: ['Roboto Mono', 'monospace'],\n },\n fontSize: {\n xs: '10px',\n sm: '12px',\n base: '14px',\n md: '16px',\n lg: '18px',\n xl: '20px',\n '2xl': '24px',\n '3xl': '28px',\n '4xl': '36px',\n '5xl': '48px',\n },\n fontWeight: {\n light: '300',\n normal: '400',\n medium: '500',\n semibold: '600',\n bold: '700',\n },\n lineHeight: {\n tight: '1.2',\n normal: '1.5',\n relaxed: '1.75',\n }\n} as const;","export const acordeSpacing = {\n px: '1px',\n 0: '0px',\n 0.5: '2px',\n 1: '4px',\n 2: '8px',\n 3: '12px',\n 4: '16px',\n 5: '20px',\n 6: '24px',\n 8: '32px',\n 10: '40px',\n 12: '48px',\n 16: '64px',\n 20: '80px',\n 24: '96px',\n 32: '128px',\n} as const;","export const acordeShadows = {\n none: 'none',\n sm: '0 1px 2px rgba(0, 0, 0, 0.05)',\n md: '0 4px 6px rgba(0, 0, 0, 0.07)',\n lg: '0 10px 15px rgba(0, 0, 0, 0.1)',\n xl: '0 20px 25px rgba(0, 0, 0, 0.1)',\n '2xl': '0 25px 50px rgba(0, 0, 0, 0.25)',\n inner: 'inset 0 2px 4px rgba(0, 0, 0, 0.1)',\n} as const;","export const acordeBorders = {\n width: {\n 0: '0px',\n 1: '1px',\n 2: '2px',\n 4: '4px',\n },\n radius: {\n none: '0px',\n sm: '2px',\n md: '4px',\n lg: '8px',\n xl: '12px',\n '2xl': '16px',\n '3xl': '24px',\n full: '9999px',\n }\n} as const;","export const acordeBreakpoints = {\n sm: '640px',\n md: '768px',\n lg: '1024px',\n xl: '1280px',\n '2xl': '1536px',\n} as const;","export const acordeAnimations = {\n duration: {\n fast: '150ms',\n normal: '300ms',\n slow: '500ms',\n },\n easing: {\n linear: 'linear',\n in: 'cubic-bezier(0.4, 0, 1, 1)',\n out: 'cubic-bezier(0, 0, 0.2, 1)',\n inOut: 'cubic-bezier(0.4, 0, 0.2, 1)',\n }\n} as const;","export { acordeColors } from './colors';\nexport { acordeTypography } from './typography';\nexport { acordeSpacing } from './spacing';\nexport { acordeShadows } from './shadows';\nexport { acordeBorders } from './borders';\nexport { acordeBreakpoints } from './breakpoints';\nexport { acordeAnimations } from './animations';\n\nimport { acordeColors } from './colors';\nimport { acordeTypography } from './typography';\nimport { acordeSpacing } from './spacing';\nimport { acordeShadows } from './shadows';\nimport { acordeBorders } from './borders';\nimport { acordeBreakpoints } from './breakpoints';\nimport { acordeAnimations } from './animations';\n\nexport const acordeDesignTokens = {\n colors: acordeColors,\n typography: acordeTypography,\n spacing: acordeSpacing,\n shadows: acordeShadows,\n borders: acordeBorders,\n breakpoints: acordeBreakpoints,\n animations: acordeAnimations,\n} as const;\n\nexport type AcordeColors = typeof acordeColors;\nexport type AcordeTypography = typeof acordeTypography;\nexport type AcordeSpacing = typeof acordeSpacing;\nexport type AcordeShadows = typeof acordeShadows;\nexport type AcordeBorders = typeof acordeBorders;\nexport type AcordeBreakpoints = typeof acordeBreakpoints;\nexport type AcordeAnimations = typeof acordeAnimations;"]}
1
+ {"version":3,"sources":["../../src/styles/design-tokens/colors.ts","../../src/styles/design-tokens/typography.ts","../../src/styles/design-tokens/spacing.ts","../../src/styles/design-tokens/shadows.ts","../../src/styles/design-tokens/borders.ts","../../src/styles/design-tokens/breakpoints.ts","../../src/styles/design-tokens/animations.ts","../../src/styles/design-tokens/index.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["export const acordeColors = {\n primary: {\n 50: '#ecfdf5',\n 100: '#d1fae5',\n 200: '#a7f3d0',\n 300: '#6ee7b7',\n 400: '#34d399',\n 500: '#10b981',\n 600: '#059669',\n 700: '#047857',\n 800: '#065f46',\n 900: '#064e3b',\n DEFAULT: 'var(--primary)',\n foreground: 'var(--primary-foreground)',\n },\n secondary: {\n 50: '#eff6ff',\n 100: '#dbeafe',\n 200: '#bfdbfe',\n 300: '#93c5fd',\n 400: '#60a5fa',\n 500: '#3b82f6',\n 600: '#1e40af',\n 700: '#1d4ed8',\n 800: '#1e3a8a',\n 900: '#1e293b',\n DEFAULT: 'var(--secondary)',\n foreground: 'var(--secondary-foreground)',\n },\n success: '#22c55e',\n warning: '#f59e0b',\n error: '#ef4444',\n info: '#3b82f6',\n gray: {\n 50: '#f9fafb',\n 100: '#f3f4f6',\n 200: '#e5e7eb',\n 300: '#d1d5db',\n 400: '#9ca3af',\n 500: '#6b7280',\n 600: '#4b5563',\n 700: '#374151',\n 800: '#1f2937',\n 900: '#111827',\n },\n 'acorde-primary': 'var(--acorde-primary)',\n 'acorde-secondary': 'var(--acorde-secondary)',\n 'acorde-success': 'var(--acorde-success)',\n 'acorde-warning': 'var(--acorde-warning)',\n 'acorde-error': 'var(--acorde-error)',\n 'acorde-info': 'var(--acorde-info)',\n border: 'var(--border)',\n input: 'var(--input)',\n ring: 'var(--ring)',\n background: 'var(--background)',\n foreground: 'var(--foreground)',\n destructive: {\n DEFAULT: 'var(--destructive)',\n foreground: 'var(--destructive-foreground)',\n },\n muted: {\n DEFAULT: 'var(--muted)',\n foreground: 'var(--muted-foreground)',\n },\n accent: {\n DEFAULT: 'var(--accent)',\n foreground: 'var(--accent-foreground)',\n },\n popover: {\n DEFAULT: 'var(--popover)',\n foreground: 'var(--popover-foreground)',\n },\n card: {\n DEFAULT: 'var(--card)',\n foreground: 'var(--card-foreground)',\n },\n sidebar: {\n DEFAULT: 'var(--sidebar-background)',\n foreground: 'var(--sidebar-foreground)',\n primary: 'var(--sidebar-primary)',\n 'primary-foreground': 'var(--sidebar-primary-foreground)',\n accent: 'var(--sidebar-accent)',\n 'accent-foreground': 'var(--sidebar-accent-foreground)',\n border: 'var(--sidebar-border)',\n ring: 'var(--sidebar-ring)',\n },\n} as const;","export const acordeTypography = {\n fontFamily: {\n sans: ['Inter', 'system-ui', 'sans-serif'],\n mono: ['Roboto Mono', 'monospace'],\n },\n fontSize: {\n xs: '10px',\n sm: '12px',\n base: '14px',\n md: '16px',\n lg: '18px',\n xl: '20px',\n '2xl': '24px',\n '3xl': '28px',\n '4xl': '36px',\n '5xl': '48px',\n },\n fontWeight: {\n light: '300',\n normal: '400',\n medium: '500',\n semibold: '600',\n bold: '700',\n },\n lineHeight: {\n tight: '1.2',\n normal: '1.5',\n relaxed: '1.75',\n }\n} as const;","export const acordeSpacing = {\n px: '1px',\n 0: '0px',\n 0.5: '2px',\n 1: '4px',\n 2: '8px',\n 3: '12px',\n 4: '16px',\n 5: '20px',\n 6: '24px',\n 8: '32px',\n 10: '40px',\n 12: '48px',\n 16: '64px',\n 20: '80px',\n 24: '96px',\n 32: '128px',\n} as const;","export const acordeShadows = {\n none: 'none',\n sm: '0 1px 2px rgba(0, 0, 0, 0.05)',\n md: '0 4px 6px rgba(0, 0, 0, 0.07)',\n lg: '0 10px 15px rgba(0, 0, 0, 0.1)',\n xl: '0 20px 25px rgba(0, 0, 0, 0.1)',\n '2xl': '0 25px 50px rgba(0, 0, 0, 0.25)',\n inner: 'inset 0 2px 4px rgba(0, 0, 0, 0.1)',\n} as const;","export const acordeBorders = {\n width: {\n 0: '0px',\n 1: '1px',\n 2: '2px',\n 4: '4px',\n },\n radius: {\n none: '0px',\n sm: '2px',\n md: '4px',\n lg: '8px',\n xl: '12px',\n '2xl': '16px',\n '3xl': '24px',\n full: '9999px',\n }\n} as const;","export const acordeBreakpoints = {\n sm: '640px',\n md: '768px',\n lg: '1024px',\n xl: '1280px',\n '2xl': '1536px',\n} as const;","export const acordeAnimations = {\n duration: {\n fast: '150ms',\n normal: '300ms',\n slow: '500ms',\n },\n easing: {\n linear: 'linear',\n in: 'cubic-bezier(0.4, 0, 1, 1)',\n out: 'cubic-bezier(0, 0, 0.2, 1)',\n inOut: 'cubic-bezier(0.4, 0, 0.2, 1)',\n }\n} as const;","export { acordeColors } from './colors';\nexport { acordeTypography } from './typography';\nexport { acordeSpacing } from './spacing';\nexport { acordeShadows } from './shadows';\nexport { acordeBorders } from './borders';\nexport { acordeBreakpoints } from './breakpoints';\nexport { acordeAnimations } from './animations';\n\nimport { acordeColors } from './colors';\nimport { acordeTypography } from './typography';\nimport { acordeSpacing } from './spacing';\nimport { acordeShadows } from './shadows';\nimport { acordeBorders } from './borders';\nimport { acordeBreakpoints } from './breakpoints';\nimport { acordeAnimations } from './animations';\n\nexport const acordeDesignTokens = {\n colors: acordeColors,\n typography: acordeTypography,\n spacing: acordeSpacing,\n shadows: acordeShadows,\n borders: acordeBorders,\n breakpoints: acordeBreakpoints,\n animations: acordeAnimations,\n} as const;\n\nexport type AcordeColors = typeof acordeColors;\nexport type AcordeTypography = typeof acordeTypography;\nexport type AcordeSpacing = typeof acordeSpacing;\nexport type AcordeShadows = typeof acordeShadows;\nexport type AcordeBorders = typeof acordeBorders;\nexport type AcordeBreakpoints = typeof acordeBreakpoints;\nexport type AcordeAnimations = typeof acordeAnimations;"]}
package/package.json CHANGED
@@ -1,16 +1,18 @@
1
1
  {
2
2
  "name": "@lincros-ui/components",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "React component library based on shadcn/ui compatible with Lincros React UI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
8
8
  "exports": {
9
9
  ".": {
10
- "import": "./dist/index.js"
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js"
11
12
  },
12
13
  "./styles": {
13
- "import": "./dist/styles/index.js"
14
+ "import": "./dist/styles/index.js",
15
+ "require": "./dist/styles/index.js"
14
16
  },
15
17
  "./styles/*.css": "./dist/styles/*.css"
16
18
  },
@@ -33,6 +35,7 @@
33
35
  "@dnd-kit/sortable": "^10.0.0",
34
36
  "@dnd-kit/utilities": "^3.2.2",
35
37
  "@hookform/resolvers": "^3.9.0",
38
+ "@lincros-ui/components": "file:",
36
39
  "@monaco-editor/react": "^4.7.0",
37
40
  "@radix-ui/react-accordion": "^1.2.0",
38
41
  "@radix-ui/react-alert-dialog": "^1.1.1",