voa-ds-core 1.0.8 → 1.0.10

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 (49) hide show
  1. package/dist/collection/components/GetStarted/ImportandoEstilos.stories.js +32 -11
  2. package/dist/collection/components/GetStarted/ImportandoEstilos.stories.js.map +1 -1
  3. package/dist/collection/styles/external/saas-dashboard.css +566 -0
  4. package/dist/collection/styles/external/voa-accordion.external.css +295 -0
  5. package/dist/collection/styles/external/voa-alert.external.css +348 -0
  6. package/dist/collection/styles/external/voa-avatar.external.css +118 -0
  7. package/dist/collection/styles/external/voa-badge.external.css +346 -0
  8. package/dist/collection/styles/external/voa-breadcrumbs.external.css +183 -0
  9. package/dist/collection/styles/external/voa-button.external.css +257 -0
  10. package/dist/collection/styles/external/voa-card.external.css +30 -0
  11. package/dist/collection/styles/external/voa-checkbox.external.css +303 -0
  12. package/dist/collection/styles/external/voa-input-addon.external.css +204 -0
  13. package/dist/collection/styles/external/voa-input.external.css +307 -0
  14. package/dist/collection/styles/external/voa-keybinding.external.css +34 -0
  15. package/dist/collection/styles/external/voa-option.external.css +213 -0
  16. package/dist/collection/styles/external/voa-pagination.external.css +125 -0
  17. package/dist/collection/styles/external/voa-radio.external.css +235 -0
  18. package/dist/collection/styles/external/voa-radio.styles.ts +155 -0
  19. package/dist/collection/styles/external/voa-select.external.css +568 -0
  20. package/dist/collection/styles/external/voa-switch.external.css +215 -0
  21. package/dist/collection/styles/external/voa-tab.external.css +284 -0
  22. package/dist/collection/styles/external/voa-tag.external.css +206 -0
  23. package/dist/collection/styles/external/voa-text-area.external.css +174 -0
  24. package/dist/collection/styles/external/voa-tooltip.external.css +320 -0
  25. package/dist/collection/styles/voa-components.css +32 -0
  26. package/dist/voa/styles/external/saas-dashboard.css +566 -0
  27. package/dist/voa/styles/external/voa-accordion.external.css +295 -0
  28. package/dist/voa/styles/external/voa-alert.external.css +348 -0
  29. package/dist/voa/styles/external/voa-avatar.external.css +118 -0
  30. package/dist/voa/styles/external/voa-badge.external.css +346 -0
  31. package/dist/voa/styles/external/voa-breadcrumbs.external.css +183 -0
  32. package/dist/voa/styles/external/voa-button.external.css +257 -0
  33. package/dist/voa/styles/external/voa-card.external.css +30 -0
  34. package/dist/voa/styles/external/voa-checkbox.external.css +303 -0
  35. package/dist/voa/styles/external/voa-input-addon.external.css +204 -0
  36. package/dist/voa/styles/external/voa-input.external.css +307 -0
  37. package/dist/voa/styles/external/voa-keybinding.external.css +34 -0
  38. package/dist/voa/styles/external/voa-option.external.css +213 -0
  39. package/dist/voa/styles/external/voa-pagination.external.css +125 -0
  40. package/dist/voa/styles/external/voa-radio.external.css +235 -0
  41. package/dist/voa/styles/external/voa-radio.styles.ts +155 -0
  42. package/dist/voa/styles/external/voa-select.external.css +568 -0
  43. package/dist/voa/styles/external/voa-switch.external.css +215 -0
  44. package/dist/voa/styles/external/voa-tab.external.css +284 -0
  45. package/dist/voa/styles/external/voa-tag.external.css +206 -0
  46. package/dist/voa/styles/external/voa-text-area.external.css +174 -0
  47. package/dist/voa/styles/external/voa-tooltip.external.css +320 -0
  48. package/dist/voa/styles/voa-components.css +32 -0
  49. package/package.json +3 -1
@@ -0,0 +1,566 @@
1
+ /* SaaS Dashboard Story Styles */
2
+ /* Layout and Structure Only - No Colors, Fonts, or Visual Effects */
3
+ /* This CSS file follows the Voa Design System principle of "structure-only" styling */
4
+ /* All visual properties (colors, fonts, borders) are applied via component external CSS */
5
+
6
+ .saas-dashboard {
7
+ display: grid;
8
+ grid-template-rows: auto 1fr auto;
9
+ min-height: 100vh;
10
+ gap: 0;
11
+ }
12
+
13
+ /* Header Styles */
14
+ .dashboard-header {
15
+ display: flex;
16
+ flex-direction: column;
17
+ gap: 0;
18
+ padding: 16px 24px;
19
+ border-bottom: 1px solid;
20
+ position: sticky;
21
+ top: 0;
22
+ z-index: 10;
23
+ }
24
+
25
+ .dashboard-header.compact {
26
+ padding: 12px 16px;
27
+ }
28
+
29
+ .header-top {
30
+ display: flex;
31
+ justify-content: space-between;
32
+ align-items: center;
33
+ gap: 24px;
34
+ }
35
+
36
+ .header-left {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 32px;
40
+ flex: 1;
41
+ }
42
+
43
+ .app-logo {
44
+ margin: 0;
45
+ white-space: nowrap;
46
+ }
47
+
48
+ .breadcrumbs-nav {
49
+ display: flex;
50
+ gap: 16px;
51
+ }
52
+
53
+ .header-right {
54
+ display: flex;
55
+ align-items: center;
56
+ gap: 16px;
57
+ }
58
+
59
+ .search-box {
60
+ min-width: 300px;
61
+ }
62
+
63
+ .search-box voa-input {
64
+ width: 100%;
65
+ }
66
+
67
+ .header-actions {
68
+ display: flex;
69
+ align-items: center;
70
+ gap: 8px;
71
+ }
72
+
73
+ .icon-button {
74
+ display: inline-flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ position: relative;
78
+ width: 40px;
79
+ height: 40px;
80
+ padding: 0;
81
+ margin: 0;
82
+ border: none;
83
+ background: transparent;
84
+ cursor: pointer;
85
+ }
86
+
87
+ .icon-button voa-badge {
88
+ position: absolute;
89
+ top: -4px;
90
+ right: -4px;
91
+ }
92
+
93
+ .user-menu {
94
+ display: flex;
95
+ gap: 8px;
96
+ }
97
+
98
+ .header-tabs {
99
+ display: flex;
100
+ gap: 0;
101
+ margin-top: 16px;
102
+ border-top: 1px solid;
103
+ padding-top: 0;
104
+ }
105
+
106
+ .header-tabs.compact {
107
+ display: none;
108
+ }
109
+
110
+ /* Main Content */
111
+ .dashboard-main {
112
+ display: flex;
113
+ flex-direction: column;
114
+ gap: 24px;
115
+ padding: 24px;
116
+ overflow-y: auto;
117
+ }
118
+
119
+ .dashboard-main.compact {
120
+ padding: 16px;
121
+ }
122
+
123
+ /* Filters Section */
124
+ .filters-section {
125
+ display: flex;
126
+ align-items: flex-end;
127
+ gap: 16px;
128
+ padding: 16px;
129
+ border: 1px solid;
130
+ flex-wrap: wrap;
131
+ }
132
+
133
+ .filter-group {
134
+ display: flex;
135
+ flex-direction: column;
136
+ gap: 8px;
137
+ min-width: 200px;
138
+ }
139
+
140
+ .filter-group label {
141
+ display: block;
142
+ }
143
+
144
+ .filter-group voa-select,
145
+ .filter-group voa-input {
146
+ width: 100%;
147
+ }
148
+
149
+ .filter-actions {
150
+ display: flex;
151
+ gap: 8px;
152
+ margin-left: auto;
153
+ }
154
+
155
+ /* Stats Section */
156
+ .stats-section {
157
+ display: grid;
158
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
159
+ gap: 16px;
160
+ }
161
+
162
+ .stats-section.compact {
163
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
164
+ gap: 12px;
165
+ }
166
+
167
+ .stat-card {
168
+ display: flex;
169
+ justify-content: space-between;
170
+ align-items: flex-start;
171
+ padding: 16px;
172
+ border: 1px solid;
173
+ gap: 12px;
174
+ min-height: 120px;
175
+ }
176
+
177
+ .stat-card.compact {
178
+ flex-direction: column;
179
+ align-items: flex-start;
180
+ padding: 12px;
181
+ min-height: auto;
182
+ gap: 8px;
183
+ }
184
+
185
+ .stat-content {
186
+ display: flex;
187
+ flex-direction: column;
188
+ gap: 8px;
189
+ }
190
+
191
+ .stat-content h3 {
192
+ margin: 0;
193
+ }
194
+
195
+ .stat-value {
196
+ margin: 0;
197
+ }
198
+
199
+ .stat-trend {
200
+ display: flex;
201
+ align-items: center;
202
+ gap: 4px;
203
+ }
204
+
205
+ .stat-trend.positive {
206
+ /* Color applied via external CSS */
207
+ }
208
+
209
+ .stat-trend.negative {
210
+ /* Color applied via external CSS */
211
+ }
212
+
213
+ /* Table Section */
214
+ .table-section {
215
+ display: flex;
216
+ flex-direction: column;
217
+ gap: 16px;
218
+ }
219
+
220
+ .table-header {
221
+ display: flex;
222
+ justify-content: space-between;
223
+ align-items: center;
224
+ gap: 16px;
225
+ }
226
+
227
+ .table-header h2 {
228
+ margin: 0;
229
+ }
230
+
231
+ .table-wrapper {
232
+ display: flex;
233
+ flex-direction: column;
234
+ overflow-x: auto;
235
+ border: 1px solid;
236
+ }
237
+
238
+ .data-table {
239
+ width: 100%;
240
+ border-collapse: collapse;
241
+ }
242
+
243
+ .data-table thead {
244
+ position: sticky;
245
+ top: 0;
246
+ }
247
+
248
+ .data-table th {
249
+ padding: 12px 16px;
250
+ border-bottom: 1px solid;
251
+ }
252
+
253
+ .data-table td {
254
+ padding: 12px 16px;
255
+ border-bottom: 1px solid;
256
+ }
257
+
258
+ .data-table tbody tr {
259
+ /* Hover styling applied via external CSS */
260
+ }
261
+
262
+ .data-table tbody tr:last-child td {
263
+ border-bottom: none;
264
+ }
265
+
266
+ .project-name {
267
+ /* Font weight applied via external CSS */
268
+ }
269
+
270
+ .progress-bar {
271
+ display: flex;
272
+ height: 4px;
273
+ overflow: hidden;
274
+ min-width: 100px;
275
+ border: 1px solid;
276
+ }
277
+
278
+ .progress-fill {
279
+ /* Background gradient applied via external CSS */
280
+ flex: 1;
281
+ }
282
+
283
+ .owner-cell {
284
+ display: flex;
285
+ align-items: center;
286
+ gap: 8px;
287
+ }
288
+
289
+ .table-footer {
290
+ display: flex;
291
+ justify-content: space-between;
292
+ align-items: center;
293
+ padding: 12px 16px;
294
+ border-top: 1px solid;
295
+ }
296
+
297
+ .results-info {
298
+ /* Font size applied via external CSS */
299
+ }
300
+
301
+ /* Settings Section */
302
+ .settings-section {
303
+ display: flex;
304
+ flex-direction: column;
305
+ gap: 16px;
306
+ padding: 16px;
307
+ border: 1px solid;
308
+ }
309
+
310
+ .settings-section h2 {
311
+ margin: 0;
312
+ }
313
+
314
+ .settings-grid {
315
+ display: grid;
316
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
317
+ gap: 16px;
318
+ }
319
+
320
+ .setting-item {
321
+ display: flex;
322
+ justify-content: space-between;
323
+ align-items: center;
324
+ gap: 12px;
325
+ }
326
+
327
+ .setting-item label {
328
+ margin: 0;
329
+ }
330
+
331
+ /* Preferences Section */
332
+ .preferences-section {
333
+ display: flex;
334
+ flex-direction: column;
335
+ gap: 16px;
336
+ padding: 16px;
337
+ border: 1px solid;
338
+ }
339
+
340
+ .preferences-section h2 {
341
+ margin: 0;
342
+ }
343
+
344
+ .radio-group {
345
+ display: flex;
346
+ flex-direction: column;
347
+ gap: 12px;
348
+ }
349
+
350
+ .radio-item {
351
+ display: flex;
352
+ align-items: center;
353
+ gap: 8px;
354
+ cursor: pointer;
355
+ }
356
+
357
+ .radio-item span {
358
+ /* Font size applied via external CSS */
359
+ }
360
+
361
+ .checkbox-group {
362
+ display: flex;
363
+ flex-direction: column;
364
+ gap: 12px;
365
+ }
366
+
367
+ .checkbox-item {
368
+ display: flex;
369
+ align-items: center;
370
+ gap: 8px;
371
+ cursor: pointer;
372
+ }
373
+
374
+ .checkbox-item span {
375
+ /* Font size applied via external CSS */
376
+ }
377
+
378
+ /* Form Section */
379
+ .form-section {
380
+ display: flex;
381
+ flex-direction: column;
382
+ gap: 16px;
383
+ padding: 24px;
384
+ border: 1px solid;
385
+ max-width: 600px;
386
+ margin: 0 auto;
387
+ }
388
+
389
+ .data-form {
390
+ display: flex;
391
+ flex-direction: column;
392
+ gap: 16px;
393
+ }
394
+
395
+ .form-group {
396
+ display: flex;
397
+ flex-direction: column;
398
+ gap: 8px;
399
+ }
400
+
401
+ .form-group label {
402
+ margin: 0;
403
+ }
404
+
405
+ .form-group voa-input,
406
+ .form-group voa-select,
407
+ .form-group voa-text-area {
408
+ width: 100%;
409
+ }
410
+
411
+ .form-row {
412
+ display: grid;
413
+ grid-template-columns: 1fr 1fr;
414
+ gap: 16px;
415
+ }
416
+
417
+ .form-actions {
418
+ display: flex;
419
+ gap: 8px;
420
+ justify-content: flex-end;
421
+ margin-top: 16px;
422
+ }
423
+
424
+ /* Quick List */
425
+ .quick-list {
426
+ display: flex;
427
+ flex-direction: column;
428
+ gap: 12px;
429
+ }
430
+
431
+ .list-item {
432
+ display: flex;
433
+ justify-content: space-between;
434
+ align-items: center;
435
+ padding: 12px;
436
+ border: 1px solid;
437
+ gap: 12px;
438
+ }
439
+
440
+ .item-name {
441
+ /* Font weight applied via external CSS */
442
+ }
443
+
444
+ /* Footer */
445
+ .dashboard-footer {
446
+ display: flex;
447
+ justify-content: center;
448
+ padding: 24px;
449
+ border-top: 1px solid;
450
+ }
451
+
452
+ .footer-content {
453
+ display: flex;
454
+ flex-direction: column;
455
+ align-items: center;
456
+ gap: 16px;
457
+ text-align: center;
458
+ }
459
+
460
+ .footer-content p {
461
+ margin: 0;
462
+ }
463
+
464
+ .footer-links {
465
+ display: flex;
466
+ gap: 24px;
467
+ }
468
+
469
+ .footer-links a {
470
+ /* Text decoration and font size applied via external CSS */
471
+ }
472
+
473
+ /* Responsive Design */
474
+ @media (max-width: 1024px) {
475
+ .header-left {
476
+ gap: 16px;
477
+ }
478
+
479
+ .stats-section {
480
+ grid-template-columns: repeat(2, 1fr);
481
+ }
482
+
483
+ .form-row {
484
+ grid-template-columns: 1fr;
485
+ }
486
+
487
+ .search-box {
488
+ min-width: 200px;
489
+ }
490
+ }
491
+
492
+ @media (max-width: 768px) {
493
+ .dashboard-main {
494
+ padding: 12px;
495
+ gap: 16px;
496
+ }
497
+
498
+ .header-top {
499
+ flex-direction: column;
500
+ gap: 12px;
501
+ }
502
+
503
+ .header-right {
504
+ width: 100%;
505
+ flex-direction: column;
506
+ }
507
+
508
+ .search-box {
509
+ width: 100%;
510
+ min-width: auto;
511
+ }
512
+
513
+ .filter-actions {
514
+ width: 100%;
515
+ justify-content: flex-end;
516
+ }
517
+
518
+ .stats-section {
519
+ grid-template-columns: 1fr;
520
+ }
521
+
522
+ .settings-grid {
523
+ grid-template-columns: 1fr;
524
+ }
525
+
526
+ .form-row {
527
+ grid-template-columns: 1fr;
528
+ }
529
+
530
+ .table-wrapper {
531
+ overflow-x: auto;
532
+ }
533
+
534
+ .footer-links {
535
+ flex-wrap: wrap;
536
+ }
537
+ }
538
+
539
+ @media (max-width: 480px) {
540
+ .dashboard-header {
541
+ padding: 8px 12px;
542
+ }
543
+
544
+ .dashboard-main {
545
+ padding: 8px;
546
+ }
547
+
548
+ .app-logo {
549
+ white-space: nowrap;
550
+ }
551
+
552
+ .header-left {
553
+ flex-direction: column;
554
+ align-items: flex-start;
555
+ gap: 8px;
556
+ }
557
+
558
+ .breadcrumbs-nav {
559
+ display: none;
560
+ }
561
+
562
+ .data-table th,
563
+ .data-table td {
564
+ padding: 8px;
565
+ }
566
+ }