shogun-button-react 6.7.0 → 6.7.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.
@@ -451,4 +451,43 @@
451
451
  text-decoration: underline;
452
452
  }
453
453
 
454
- /* Redundant dark theme styles removed */
454
+ /* Redundant dark theme styles removed */
455
+
456
+ /* Advanced Options Toggle */
457
+ .shogun-advanced-toggle {
458
+ margin: 8px 0;
459
+ }
460
+
461
+ .shogun-toggle-advanced {
462
+ background: none;
463
+ border: none;
464
+ color: var(--shogun-text-secondary);
465
+ font-size: 13px;
466
+ cursor: pointer;
467
+ padding: 6px 0;
468
+ display: flex;
469
+ align-items: center;
470
+ gap: 4px;
471
+ font-weight: 500;
472
+ transition: color 0.2s ease;
473
+ }
474
+
475
+ .shogun-toggle-advanced:hover {
476
+ color: var(--shogun-primary);
477
+ }
478
+
479
+ /* Advanced Options Container */
480
+ .shogun-advanced-options {
481
+ background-color: var(--shogun-bg-secondary);
482
+ padding: 12px;
483
+ border-radius: var(--shogun-border-radius);
484
+ border: 1px dashed var(--shogun-border);
485
+ }
486
+
487
+ /* Field Hint */
488
+ .shogun-field-hint {
489
+ font-size: 12px;
490
+ color: var(--shogun-text-secondary);
491
+ margin-top: 4px;
492
+ font-style: italic;
493
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shogun-button-react",
3
3
  "description": "Shogun connector button",
4
- "version": "6.7.0",
4
+ "version": "6.7.1",
5
5
  "files": [
6
6
  "dist",
7
7
  "src/styles/index.css"
@@ -451,4 +451,43 @@
451
451
  text-decoration: underline;
452
452
  }
453
453
 
454
- /* Redundant dark theme styles removed */
454
+ /* Redundant dark theme styles removed */
455
+
456
+ /* Advanced Options Toggle */
457
+ .shogun-advanced-toggle {
458
+ margin: 8px 0;
459
+ }
460
+
461
+ .shogun-toggle-advanced {
462
+ background: none;
463
+ border: none;
464
+ color: var(--shogun-text-secondary);
465
+ font-size: 13px;
466
+ cursor: pointer;
467
+ padding: 6px 0;
468
+ display: flex;
469
+ align-items: center;
470
+ gap: 4px;
471
+ font-weight: 500;
472
+ transition: color 0.2s ease;
473
+ }
474
+
475
+ .shogun-toggle-advanced:hover {
476
+ color: var(--shogun-primary);
477
+ }
478
+
479
+ /* Advanced Options Container */
480
+ .shogun-advanced-options {
481
+ background-color: var(--shogun-bg-secondary);
482
+ padding: 12px;
483
+ border-radius: var(--shogun-border-radius);
484
+ border: 1px dashed var(--shogun-border);
485
+ }
486
+
487
+ /* Field Hint */
488
+ .shogun-field-hint {
489
+ font-size: 12px;
490
+ color: var(--shogun-text-secondary);
491
+ margin-top: 4px;
492
+ font-style: italic;
493
+ }