@visns-studio/visns-components 5.5.6 → 5.5.7

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.
@@ -172,6 +172,33 @@
172
172
  font-weight: 600;
173
173
  }
174
174
 
175
+ .sectionHeaderActions {
176
+ display: flex;
177
+ align-items: center;
178
+ gap: 8px;
179
+ }
180
+
181
+ .helpButton {
182
+ background: none;
183
+ border: none;
184
+ color: var(--muted-color, #6b7280);
185
+ cursor: pointer;
186
+ font-size: 0.9rem;
187
+ padding: 2px;
188
+ border-radius: 4px;
189
+ display: flex;
190
+ align-items: center;
191
+ justify-content: center;
192
+ transition: all 0.2s ease;
193
+ width: 24px;
194
+ height: 24px;
195
+
196
+ &:hover {
197
+ color: var(--primary-color, #2563eb);
198
+ background-color: rgba(37, 99, 235, 0.1);
199
+ }
200
+ }
201
+
175
202
  .toggleBtn {
176
203
  background: none;
177
204
  border: none;
@@ -320,6 +347,179 @@
320
347
  margin-bottom: 16px;
321
348
  }
322
349
 
350
+ // Filter group styles
351
+ .filterGroup {
352
+ margin-bottom: 16px;
353
+ border: 1px solid var(--border-color, #e5e7eb);
354
+ border-radius: 8px;
355
+ overflow: hidden;
356
+ }
357
+
358
+ .filterGroupHeader {
359
+ display: flex;
360
+ justify-content: space-between;
361
+ align-items: center;
362
+ padding: 12px 16px;
363
+ background-color: #f3f4f6;
364
+ border-bottom: 1px solid var(--border-color, #e5e7eb);
365
+ }
366
+
367
+ .filterGroupTitle {
368
+ display: flex;
369
+ align-items: center;
370
+ gap: 16px;
371
+
372
+ h4 {
373
+ margin: 0;
374
+ font-size: 0.95em;
375
+ font-weight: 600;
376
+ color: var(--heading-color, #1f2937);
377
+ }
378
+ }
379
+
380
+ .filterGroupOperator {
381
+ display: flex;
382
+ align-items: center;
383
+ gap: 8px;
384
+
385
+ label {
386
+ font-size: 0.85em;
387
+ color: var(--paragraph-color, #4b5563);
388
+ }
389
+ }
390
+
391
+ .filterGroupActions {
392
+ display: flex;
393
+ gap: 8px;
394
+ }
395
+
396
+ .filterOperatorContainer {
397
+ display: flex;
398
+ justify-content: space-between;
399
+ align-items: center;
400
+ margin-bottom: 16px;
401
+ padding: 12px 16px;
402
+ background-color: #f9fafb;
403
+ border: 1px solid var(--border-color, #e5e7eb);
404
+ border-radius: 8px;
405
+ }
406
+
407
+ .mainFilterOperator {
408
+ display: flex;
409
+ align-items: center;
410
+ gap: 12px;
411
+
412
+ label {
413
+ font-size: 0.9em;
414
+ font-weight: 500;
415
+ color: var(--heading-color, #1f2937);
416
+ }
417
+ }
418
+
419
+ .operatorSelect {
420
+ padding: 6px 10px;
421
+ border: 1px solid var(--border-color, #d1d5db);
422
+ border-radius: 4px;
423
+ background-color: white;
424
+ font-size: 0.85em;
425
+ color: var(--paragraph-color, #4b5563);
426
+ min-width: 200px;
427
+ }
428
+
429
+ .operatorOptions {
430
+ display: flex;
431
+ gap: 12px;
432
+ margin-left: 8px;
433
+ }
434
+
435
+ .operatorOption {
436
+ border: 1px solid var(--border-color, #d1d5db);
437
+ border-radius: 6px;
438
+ padding: 8px 16px;
439
+ cursor: pointer;
440
+ transition: all 0.2s ease;
441
+ background-color: #f9fafb;
442
+ min-width: 140px;
443
+
444
+ &:hover {
445
+ background-color: #f3f4f6;
446
+ border-color: #c1c5cb;
447
+ }
448
+ }
449
+
450
+ .operatorOptionSelected {
451
+ background-color: var(--primary-color, #3b82f6);
452
+ color: white;
453
+ border-color: var(--primary-color, #3b82f6);
454
+
455
+ &:hover {
456
+ background-color: darken(#3b82f6, 5%);
457
+ border-color: darken(#3b82f6, 5%);
458
+ }
459
+
460
+ .operatorDescription {
461
+ color: rgba(255, 255, 255, 0.9);
462
+ }
463
+ }
464
+
465
+ .operatorName {
466
+ font-weight: 600;
467
+ font-size: 0.9em;
468
+ margin-bottom: 4px;
469
+ }
470
+
471
+ .operatorDescription {
472
+ font-size: 0.75em;
473
+ color: var(--muted-color, #6b7280);
474
+ }
475
+
476
+ .operatorButtonGroup {
477
+ display: flex;
478
+ border: 1px solid var(--border-color, #d1d5db);
479
+ border-radius: 4px;
480
+ overflow: hidden;
481
+ }
482
+
483
+ .operatorButton {
484
+ padding: 4px 12px;
485
+ background-color: #f9fafb;
486
+ border: none;
487
+ font-size: 0.8em;
488
+ cursor: pointer;
489
+ transition: all 0.2s ease;
490
+
491
+ &:first-child {
492
+ border-right: 1px solid var(--border-color, #d1d5db);
493
+ }
494
+
495
+ &:hover {
496
+ background-color: #f3f4f6;
497
+ }
498
+ }
499
+
500
+ .operatorButtonSelected {
501
+ background-color: var(--primary-color, #3b82f6);
502
+ color: white;
503
+
504
+ &:hover {
505
+ background-color: darken(#3b82f6, 5%);
506
+ }
507
+ }
508
+
509
+ .filterActionButtons {
510
+ display: flex;
511
+ gap: 8px;
512
+ }
513
+
514
+ .emptyFilterGroup {
515
+ padding: 16px;
516
+ text-align: center;
517
+ color: var(--muted-color, #6b7280);
518
+ font-style: italic;
519
+ font-size: 0.9em;
520
+ background-color: #f9fafb;
521
+ }
522
+
323
523
  .joinSection {
324
524
  margin-top: 8px;
325
525
  padding: 16px;