@kksdev/ds-angular 1.4.0 → 1.6.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.
@@ -448,6 +448,41 @@ $datepicker-nav-size-sm: 24px;
448
448
  $datepicker-nav-size-md: 32px;
449
449
  $datepicker-nav-size-lg: 40px;
450
450
 
451
+ // === COLOR PICKER ===
452
+
453
+ $colorpicker-height-sm: 32px;
454
+ $colorpicker-height-md: 40px;
455
+ $colorpicker-height-lg: 48px;
456
+
457
+ $colorpicker-padding-sm: $space-1 $space-2;
458
+ $colorpicker-padding-md: $space-2;
459
+ $colorpicker-padding-lg: $space-3;
460
+
461
+ $colorpicker-font-size-sm: $font-size-2;
462
+ $colorpicker-font-size-md: $font-size-3;
463
+ $colorpicker-font-size-lg: $font-size-4;
464
+
465
+ $colorpicker-preview-size-sm: 20px;
466
+ $colorpicker-preview-size-md: 28px;
467
+ $colorpicker-preview-size-lg: 36px;
468
+
469
+ $colorpicker-action-size-sm: 20px;
470
+ $colorpicker-action-size-md: 24px;
471
+ $colorpicker-action-size-lg: 28px;
472
+
473
+ $colorpicker-gap: $space-2;
474
+ $colorpicker-radius: $radius-2;
475
+
476
+ $colorpicker-panel-width: 300px;
477
+ $colorpicker-panel-padding: $space-4;
478
+ $colorpicker-panel-gap: $space-3;
479
+ $colorpicker-panel-radius: $radius-2;
480
+ $colorpicker-panel-shadow: $shadow-3;
481
+
482
+ $colorpicker-spectrum-height: 180px;
483
+ $colorpicker-slider-height: 12px;
484
+ $colorpicker-preset-size: 28px;
485
+
451
486
  // === SLIDER ===
452
487
 
453
488
  $slider-track-height-sm: 4px;
@@ -498,6 +533,21 @@ $file-upload-padding-sm: $space-6;
498
533
  $file-upload-padding-md: $space-8;
499
534
  $file-upload-padding-lg: $space-10;
500
535
 
536
+ // === INPUT NUMBER ===
537
+
538
+ $input-number-height-sm: 32px;
539
+ $input-number-height-md: 40px;
540
+ $input-number-height-lg: 48px;
541
+
542
+ $input-number-btn-size-sm: 28px;
543
+ $input-number-btn-size-md: 36px;
544
+ $input-number-btn-size-lg: 44px;
545
+
546
+ $input-number-btn-bg: $gray-100;
547
+ $input-number-btn-hover: $gray-200;
548
+ $input-number-btn-active: $gray-300;
549
+ $input-number-btn-disabled: $gray-50;
550
+
501
551
  $file-upload-radius: $radius-2;
502
552
  $file-upload-file-radius: $radius-2;
503
553
 
@@ -634,3 +684,228 @@ $tree-label-font-size: $font-size-3;
634
684
  $tree-indent: 20px;
635
685
  $tree-max-height: 400px;
636
686
  $tree-border-radius: $radius-2;
687
+
688
+ // === PASSWORD STRENGTH ===
689
+
690
+ $password-strength-bar-height-sm: 4px;
691
+ $password-strength-bar-height-md: 6px;
692
+ $password-strength-bar-height-lg: 8px;
693
+ $password-strength-bar-gap: $space-1;
694
+ $password-strength-bar-radius: $radius-1;
695
+ $password-strength-label-font-size: $font-size-2;
696
+ $password-strength-label-gap: $space-2;
697
+
698
+ // === SEGMENTED CONTROL ===
699
+
700
+ $segmented-height-sm: 32px;
701
+ $segmented-height-md: 40px;
702
+ $segmented-height-lg: 48px;
703
+
704
+ $segmented-padding-sm: $space-2;
705
+ $segmented-padding-md: $space-3;
706
+ $segmented-padding-lg: $space-4;
707
+
708
+ $segmented-font-size-sm: $font-size-2;
709
+ $segmented-font-size-md: $font-size-3;
710
+ $segmented-font-size-lg: $font-size-4;
711
+
712
+ $segmented-icon-size-sm: 14px;
713
+ $segmented-icon-size-md: 16px;
714
+ $segmented-icon-size-lg: 18px;
715
+
716
+ $segmented-gap: 4px;
717
+ $segmented-segment-gap: $space-2;
718
+ $segmented-border-radius: $radius-2;
719
+ $segmented-active-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
720
+
721
+ // === TIMELINE ===
722
+
723
+ $timeline-dot-size-sm: 20px;
724
+ $timeline-dot-size-md: 24px;
725
+ $timeline-dot-size-lg: 32px;
726
+
727
+ $timeline-dot-border-width: 2px;
728
+
729
+ $timeline-line-width-sm: 2px;
730
+ $timeline-line-width-md: 2px;
731
+ $timeline-line-width-lg: 3px;
732
+
733
+ $timeline-item-gap-sm: $space-4;
734
+ $timeline-item-gap-md: $space-6;
735
+ $timeline-item-gap-lg: $space-8;
736
+
737
+ $timeline-content-gap-sm: $space-3;
738
+ $timeline-content-gap-md: $space-4;
739
+ $timeline-content-gap-lg: $space-6;
740
+
741
+ $timeline-content-inner-gap-sm: $space-1;
742
+ $timeline-content-inner-gap-md: $space-2;
743
+ $timeline-content-inner-gap-lg: $space-3;
744
+
745
+ $timeline-date-font-size-sm: $font-size-1;
746
+ $timeline-date-font-size-md: $font-size-2;
747
+ $timeline-date-font-size-lg: $font-size-3;
748
+
749
+ $timeline-text-font-size-sm: $font-size-2;
750
+ $timeline-text-font-size-md: $font-size-3;
751
+ $timeline-text-font-size-lg: $font-size-4;
752
+
753
+ $timeline-icon-size-sm: 12px;
754
+ $timeline-icon-size-md: 14px;
755
+ $timeline-icon-size-lg: 18px;
756
+
757
+ // === TRANSFER ===
758
+
759
+ $transfer-gap: $space-4;
760
+ $transfer-border-radius: $radius-2;
761
+
762
+ $transfer-header-padding: $space-3 $space-4;
763
+ $transfer-header-padding-sm: $space-2 $space-3;
764
+ $transfer-header-padding-lg: $space-4 $space-5;
765
+
766
+ $transfer-search-padding: $space-3 $space-4;
767
+ $transfer-search-padding-sm: $space-2 $space-3;
768
+ $transfer-search-padding-lg: $space-4 $space-5;
769
+
770
+ $transfer-search-input-padding: $space-2 $space-8 $space-2 $space-3;
771
+ $transfer-search-input-padding-sm: $space-1-5 $space-6 $space-1-5 $space-2;
772
+ $transfer-search-input-padding-lg: $space-3 $space-10 $space-3 $space-4;
773
+
774
+ $transfer-search-input-radius: $radius-1;
775
+
776
+ $transfer-list-min-height: 300px;
777
+ $transfer-list-min-height-sm: 200px;
778
+ $transfer-list-min-height-lg: 400px;
779
+
780
+ $transfer-list-max-height: 400px;
781
+ $transfer-list-max-height-sm: 300px;
782
+ $transfer-list-max-height-lg: 500px;
783
+
784
+ $transfer-item-padding: $space-3 $space-4;
785
+ $transfer-item-padding-sm: $space-2 $space-3;
786
+ $transfer-item-padding-lg: $space-4 $space-5;
787
+
788
+ $transfer-title-font-size: $font-size-3;
789
+ $transfer-item-font-size: $font-size-3;
790
+ $transfer-item-font-size-sm: $font-size-2;
791
+ $transfer-item-font-size-lg: $font-size-4;
792
+
793
+ $transfer-actions-gap: $space-2;
794
+
795
+ // === CAROUSEL ===
796
+
797
+ $carousel-container-height: 400px;
798
+ $carousel-container-height-mobile: 250px;
799
+
800
+ $carousel-radius: $radius-2;
801
+
802
+ $carousel-content-padding: $space-6;
803
+ $carousel-title-size: $font-size-5;
804
+ $carousel-description-size: $font-size-3;
805
+
806
+ $carousel-arrow-size: 40px;
807
+ $carousel-arrow-size-mobile: 28px;
808
+ $carousel-arrow-radius: 50%;
809
+ $carousel-arrow-offset: $space-4;
810
+ $carousel-arrow-offset-mobile: $space-2;
811
+ $carousel-arrow-icon-size: $font-size-4;
812
+ $carousel-arrow-icon-size-mobile: $font-size-3;
813
+
814
+ $carousel-dot-size: 10px;
815
+ $carousel-dot-size-active: 12px;
816
+ $carousel-dots-gap: $space-2;
817
+ $carousel-dots-padding: $space-4;
818
+
819
+ // === CALENDAR ===
820
+
821
+ $calendar-radius: $radius-2;
822
+
823
+ $calendar-header-padding: $space-4;
824
+ $calendar-header-padding-sm: $space-2;
825
+ $calendar-header-padding-lg: $space-6;
826
+
827
+ $calendar-nav-gap: $space-2;
828
+ $calendar-nav-btn-size: 32px;
829
+ $calendar-nav-btn-radius: $radius-1;
830
+ $calendar-nav-btn-font-size: $font-size-3;
831
+
832
+ $calendar-title-padding: $space-2 $space-3;
833
+ $calendar-title-radius: $radius-1;
834
+ $calendar-title-font-size: $font-size-4;
835
+ $calendar-title-font-size-sm: $font-size-3;
836
+ $calendar-title-font-size-lg: $font-size-5;
837
+ $calendar-title-font-weight: 600;
838
+
839
+ $calendar-mode-gap: $space-1;
840
+ $calendar-mode-radius: $radius-1;
841
+ $calendar-mode-padding: 2px;
842
+ $calendar-mode-btn-padding: $space-1 $space-3;
843
+ $calendar-mode-btn-radius: $radius-1;
844
+ $calendar-mode-btn-font-size: $font-size-2;
845
+
846
+ $calendar-month-view-padding: $space-4;
847
+
848
+ $calendar-weekday-gap: $space-1;
849
+ $calendar-weekday-margin: $space-2;
850
+ $calendar-weekday-padding: $space-2 0;
851
+ $calendar-weekday-font-size: $font-size-2;
852
+ $calendar-weekday-font-size-sm: $font-size-1;
853
+ $calendar-weekday-font-size-lg: $font-size-3;
854
+ $calendar-weekday-font-weight: 600;
855
+
856
+ $calendar-grid-gap: $space-1;
857
+
858
+ $calendar-day-padding: $space-2;
859
+ $calendar-day-padding-sm: $space-1;
860
+ $calendar-day-padding-lg: $space-3;
861
+ $calendar-day-radius: $radius-1;
862
+ $calendar-day-font-size: $font-size-3;
863
+ $calendar-day-font-size-sm: $font-size-2;
864
+ $calendar-day-font-size-lg: $font-size-4;
865
+
866
+ $calendar-day-number-margin: $space-1;
867
+
868
+ $calendar-events-gap: 2px;
869
+
870
+ $calendar-event-gap: $space-1;
871
+ $calendar-event-padding: 2px;
872
+ $calendar-event-radius: $radius-1;
873
+
874
+ $calendar-event-dot-size: 6px;
875
+
876
+ $calendar-event-title-font-size: $font-size-1;
877
+
878
+ $calendar-year-view-padding: $space-4;
879
+
880
+ $calendar-months-gap: $space-3;
881
+
882
+ $calendar-month-padding: $space-4;
883
+ $calendar-month-padding-sm: $space-2;
884
+ $calendar-month-padding-lg: $space-6;
885
+ $calendar-month-radius: $radius-2;
886
+ $calendar-month-font-size: $font-size-3;
887
+ $calendar-month-font-size-sm: $font-size-2;
888
+ $calendar-month-font-size-lg: $font-size-4;
889
+
890
+ // === NOTIFICATION ===
891
+
892
+ $notification-z-index: 1050;
893
+ $notification-max-width: 384px;
894
+ $notification-gap: $space-3;
895
+
896
+ $notification-offset-x: $space-6;
897
+ $notification-offset-y: $space-6;
898
+
899
+ $notification-padding: $space-4;
900
+ $notification-gap-inner: $space-3;
901
+
902
+ $notification-border-width: 1px;
903
+ $notification-radius: $radius-2;
904
+
905
+ $notification-icon-size: 20px;
906
+ $notification-icon-gap: $space-2;
907
+
908
+ $notification-title-size: $font-size-3;
909
+ $notification-title-weight: 600;
910
+
911
+ $notification-message-size: $font-size-2;
@@ -524,6 +524,33 @@
524
524
  --datepicker-radius: #{$datepicker-radius};
525
525
  --datepicker-shadow: #{$datepicker-shadow};
526
526
 
527
+ /* === COLOR PICKER === */
528
+ --colorpicker-height-sm: #{$colorpicker-height-sm};
529
+ --colorpicker-height-md: #{$colorpicker-height-md};
530
+ --colorpicker-height-lg: #{$colorpicker-height-lg};
531
+ --colorpicker-padding-sm: #{$colorpicker-padding-sm};
532
+ --colorpicker-padding-md: #{$colorpicker-padding-md};
533
+ --colorpicker-padding-lg: #{$colorpicker-padding-lg};
534
+ --colorpicker-font-size-sm: #{$colorpicker-font-size-sm};
535
+ --colorpicker-font-size-md: #{$colorpicker-font-size-md};
536
+ --colorpicker-font-size-lg: #{$colorpicker-font-size-lg};
537
+ --colorpicker-preview-size-sm: #{$colorpicker-preview-size-sm};
538
+ --colorpicker-preview-size-md: #{$colorpicker-preview-size-md};
539
+ --colorpicker-preview-size-lg: #{$colorpicker-preview-size-lg};
540
+ --colorpicker-action-size-sm: #{$colorpicker-action-size-sm};
541
+ --colorpicker-action-size-md: #{$colorpicker-action-size-md};
542
+ --colorpicker-action-size-lg: #{$colorpicker-action-size-lg};
543
+ --colorpicker-gap: #{$colorpicker-gap};
544
+ --colorpicker-radius: #{$colorpicker-radius};
545
+ --colorpicker-panel-width: #{$colorpicker-panel-width};
546
+ --colorpicker-panel-padding: #{$colorpicker-panel-padding};
547
+ --colorpicker-panel-gap: #{$colorpicker-panel-gap};
548
+ --colorpicker-panel-radius: #{$colorpicker-panel-radius};
549
+ --colorpicker-panel-shadow: #{$colorpicker-panel-shadow};
550
+ --colorpicker-spectrum-height: #{$colorpicker-spectrum-height};
551
+ --colorpicker-slider-height: #{$colorpicker-slider-height};
552
+ --colorpicker-preset-size: #{$colorpicker-preset-size};
553
+
527
554
  /* === SLIDER === */
528
555
  --slider-track-height-sm: #{$slider-track-height-sm};
529
556
  --slider-track-height-md: #{$slider-track-height-md};
@@ -593,6 +620,18 @@
593
620
  --chip-remove-icon-size-lg: #{$chip-remove-icon-size-lg};
594
621
  --chip-border-radius: #{$chip-border-radius};
595
622
 
623
+ /* === INPUT NUMBER === */
624
+ --input-number-height-sm: #{$input-number-height-sm};
625
+ --input-number-height-md: #{$input-number-height-md};
626
+ --input-number-height-lg: #{$input-number-height-lg};
627
+ --input-number-btn-size-sm: #{$input-number-btn-size-sm};
628
+ --input-number-btn-size-md: #{$input-number-btn-size-md};
629
+ --input-number-btn-size-lg: #{$input-number-btn-size-lg};
630
+ --input-number-btn-bg: #{$input-number-btn-bg};
631
+ --input-number-btn-hover: #{$input-number-btn-hover};
632
+ --input-number-btn-active: #{$input-number-btn-active};
633
+ --input-number-btn-disabled: #{$input-number-btn-disabled};
634
+
596
635
  /* === EMPTY === */
597
636
  --empty-padding-sm: #{$empty-padding-sm};
598
637
  --empty-padding-md: #{$empty-padding-md};
@@ -661,6 +700,196 @@
661
700
  --tree-indent: #{$tree-indent};
662
701
  --tree-max-height: #{$tree-max-height};
663
702
  --tree-border-radius: #{$tree-border-radius};
703
+
704
+ /* === PASSWORD STRENGTH === */
705
+ --password-strength-bar-height-sm: #{$password-strength-bar-height-sm};
706
+ --password-strength-bar-height-md: #{$password-strength-bar-height-md};
707
+ --password-strength-bar-height-lg: #{$password-strength-bar-height-lg};
708
+ --password-strength-bar-gap: #{$password-strength-bar-gap};
709
+ --password-strength-bar-radius: #{$password-strength-bar-radius};
710
+ --password-strength-label-font-size: #{$password-strength-label-font-size};
711
+ --password-strength-label-gap: #{$password-strength-label-gap};
712
+
713
+ /* === TIMELINE === */
714
+ --timeline-dot-size-sm: #{$timeline-dot-size-sm};
715
+ --timeline-dot-size-md: #{$timeline-dot-size-md};
716
+ --timeline-dot-size-lg: #{$timeline-dot-size-lg};
717
+ --timeline-dot-border-width: #{$timeline-dot-border-width};
718
+
719
+ --timeline-line-width-sm: #{$timeline-line-width-sm};
720
+ --timeline-line-width-md: #{$timeline-line-width-md};
721
+ --timeline-line-width-lg: #{$timeline-line-width-lg};
722
+
723
+ --timeline-item-gap-sm: #{$timeline-item-gap-sm};
724
+ --timeline-item-gap-md: #{$timeline-item-gap-md};
725
+ --timeline-item-gap-lg: #{$timeline-item-gap-lg};
726
+
727
+ --timeline-content-gap-sm: #{$timeline-content-gap-sm};
728
+ --timeline-content-gap-md: #{$timeline-content-gap-md};
729
+ --timeline-content-gap-lg: #{$timeline-content-gap-lg};
730
+
731
+ --timeline-content-inner-gap-sm: #{$timeline-content-inner-gap-sm};
732
+ --timeline-content-inner-gap-md: #{$timeline-content-inner-gap-md};
733
+ --timeline-content-inner-gap-lg: #{$timeline-content-inner-gap-lg};
734
+
735
+ --timeline-date-font-size-sm: #{$timeline-date-font-size-sm};
736
+ --timeline-date-font-size-md: #{$timeline-date-font-size-md};
737
+ --timeline-date-font-size-lg: #{$timeline-date-font-size-lg};
738
+
739
+ --timeline-text-font-size-sm: #{$timeline-text-font-size-sm};
740
+ --timeline-text-font-size-md: #{$timeline-text-font-size-md};
741
+ --timeline-text-font-size-lg: #{$timeline-text-font-size-lg};
742
+
743
+ --timeline-icon-size-sm: #{$timeline-icon-size-sm};
744
+ --timeline-icon-size-md: #{$timeline-icon-size-md};
745
+ --timeline-icon-size-lg: #{$timeline-icon-size-lg};
746
+
747
+ /* === TRANSFER === */
748
+ --transfer-gap: #{$transfer-gap};
749
+ --transfer-border-radius: #{$transfer-border-radius};
750
+
751
+ --transfer-header-padding: #{$transfer-header-padding};
752
+ --transfer-search-padding: #{$transfer-search-padding};
753
+ --transfer-search-input-padding: #{$transfer-search-input-padding};
754
+ --transfer-search-input-radius: #{$transfer-search-input-radius};
755
+
756
+ --transfer-list-min-height: #{$transfer-list-min-height};
757
+ --transfer-list-max-height: #{$transfer-list-max-height};
758
+
759
+ --transfer-item-padding: #{$transfer-item-padding};
760
+ --transfer-title-font-size: #{$transfer-title-font-size};
761
+ --transfer-item-font-size: #{$transfer-item-font-size};
762
+ --transfer-actions-gap: #{$transfer-actions-gap};
763
+
764
+ /* === CAROUSEL === */
765
+ --carousel-container-height: #{$carousel-container-height};
766
+ --carousel-radius: #{$carousel-radius};
767
+ --carousel-content-padding: #{$carousel-content-padding};
768
+ --carousel-title-size: #{$carousel-title-size};
769
+ --carousel-description-size: #{$carousel-description-size};
770
+ --carousel-arrow-size: #{$carousel-arrow-size};
771
+ --carousel-arrow-radius: #{$carousel-arrow-radius};
772
+ --carousel-arrow-offset: #{$carousel-arrow-offset};
773
+ --carousel-arrow-icon-size: #{$carousel-arrow-icon-size};
774
+ --carousel-dot-size: #{$carousel-dot-size};
775
+ --carousel-dot-size-active: #{$carousel-dot-size-active};
776
+ --carousel-dots-gap: #{$carousel-dots-gap};
777
+ --carousel-dots-padding: #{$carousel-dots-padding};
778
+
779
+ /* === NOTIFICATION === */
780
+ --notification-z-index: #{$notification-z-index};
781
+ --notification-max-width: #{$notification-max-width};
782
+ --notification-gap: #{$notification-gap};
783
+
784
+ --notification-offset-x: #{$notification-offset-x};
785
+ --notification-offset-y: #{$notification-offset-y};
786
+
787
+ --notification-padding: #{$notification-padding};
788
+ --notification-gap-inner: #{$notification-gap-inner};
789
+
790
+ --notification-border-width: #{$notification-border-width};
791
+ --notification-radius: #{$notification-radius};
792
+
793
+ --notification-icon-size: #{$notification-icon-size};
794
+ --notification-icon-gap: #{$notification-icon-gap};
795
+
796
+ --notification-title-size: #{$notification-title-size};
797
+ --notification-title-weight: #{$notification-title-weight};
798
+
799
+ --notification-message-size: #{$notification-message-size};
800
+
801
+ /* === CALENDAR === */
802
+
803
+ --calendar-radius: #{$calendar-radius};
804
+
805
+ --calendar-header-padding: #{$calendar-header-padding};
806
+ --calendar-header-padding-sm: #{$calendar-header-padding-sm};
807
+ --calendar-header-padding-lg: #{$calendar-header-padding-lg};
808
+
809
+ --calendar-nav-gap: #{$calendar-nav-gap};
810
+ --calendar-nav-btn-size: #{$calendar-nav-btn-size};
811
+ --calendar-nav-btn-radius: #{$calendar-nav-btn-radius};
812
+ --calendar-nav-btn-font-size: #{$calendar-nav-btn-font-size};
813
+
814
+ --calendar-title-padding: #{$calendar-title-padding};
815
+ --calendar-title-radius: #{$calendar-title-radius};
816
+ --calendar-title-font-size: #{$calendar-title-font-size};
817
+ --calendar-title-font-size-sm: #{$calendar-title-font-size-sm};
818
+ --calendar-title-font-size-lg: #{$calendar-title-font-size-lg};
819
+ --calendar-title-font-weight: #{$calendar-title-font-weight};
820
+
821
+ --calendar-mode-gap: #{$calendar-mode-gap};
822
+ --calendar-mode-radius: #{$calendar-mode-radius};
823
+ --calendar-mode-padding: #{$calendar-mode-padding};
824
+ --calendar-mode-btn-padding: #{$calendar-mode-btn-padding};
825
+ --calendar-mode-btn-radius: #{$calendar-mode-btn-radius};
826
+ --calendar-mode-btn-font-size: #{$calendar-mode-btn-font-size};
827
+
828
+ --calendar-month-view-padding: #{$calendar-month-view-padding};
829
+
830
+ --calendar-weekday-gap: #{$calendar-weekday-gap};
831
+ --calendar-weekday-margin: #{$calendar-weekday-margin};
832
+ --calendar-weekday-padding: #{$calendar-weekday-padding};
833
+ --calendar-weekday-font-size: #{$calendar-weekday-font-size};
834
+ --calendar-weekday-font-size-sm: #{$calendar-weekday-font-size-sm};
835
+ --calendar-weekday-font-size-lg: #{$calendar-weekday-font-size-lg};
836
+ --calendar-weekday-font-weight: #{$calendar-weekday-font-weight};
837
+
838
+ --calendar-grid-gap: #{$calendar-grid-gap};
839
+
840
+ --calendar-day-padding: #{$calendar-day-padding};
841
+ --calendar-day-padding-sm: #{$calendar-day-padding-sm};
842
+ --calendar-day-padding-lg: #{$calendar-day-padding-lg};
843
+ --calendar-day-radius: #{$calendar-day-radius};
844
+ --calendar-day-font-size: #{$calendar-day-font-size};
845
+ --calendar-day-font-size-sm: #{$calendar-day-font-size-sm};
846
+ --calendar-day-font-size-lg: #{$calendar-day-font-size-lg};
847
+
848
+ --calendar-day-number-margin: #{$calendar-day-number-margin};
849
+
850
+ --calendar-events-gap: #{$calendar-events-gap};
851
+
852
+ --calendar-event-gap: #{$calendar-event-gap};
853
+ --calendar-event-padding: #{$calendar-event-padding};
854
+ --calendar-event-radius: #{$calendar-event-radius};
855
+
856
+ --calendar-event-dot-size: #{$calendar-event-dot-size};
857
+
858
+ --calendar-event-title-font-size: #{$calendar-event-title-font-size};
859
+
860
+ --calendar-year-view-padding: #{$calendar-year-view-padding};
861
+
862
+ --calendar-months-gap: #{$calendar-months-gap};
863
+
864
+ --calendar-month-padding: #{$calendar-month-padding};
865
+ --calendar-month-padding-sm: #{$calendar-month-padding-sm};
866
+ --calendar-month-padding-lg: #{$calendar-month-padding-lg};
867
+ --calendar-month-radius: #{$calendar-month-radius};
868
+ --calendar-month-font-size: #{$calendar-month-font-size};
869
+ --calendar-month-font-size-sm: #{$calendar-month-font-size-sm};
870
+ --calendar-month-font-size-lg: #{$calendar-month-font-size-lg};
871
+
872
+ /* === SEGMENTED CONTROL === */
873
+ --segmented-height-sm: #{$segmented-height-sm};
874
+ --segmented-height-md: #{$segmented-height-md};
875
+ --segmented-height-lg: #{$segmented-height-lg};
876
+
877
+ --segmented-padding-sm: #{$segmented-padding-sm};
878
+ --segmented-padding-md: #{$segmented-padding-md};
879
+ --segmented-padding-lg: #{$segmented-padding-lg};
880
+
881
+ --segmented-font-size-sm: #{$segmented-font-size-sm};
882
+ --segmented-font-size-md: #{$segmented-font-size-md};
883
+ --segmented-font-size-lg: #{$segmented-font-size-lg};
884
+
885
+ --segmented-icon-size-sm: #{$segmented-icon-size-sm};
886
+ --segmented-icon-size-md: #{$segmented-icon-size-md};
887
+ --segmented-icon-size-lg: #{$segmented-icon-size-lg};
888
+
889
+ --segmented-gap: #{$segmented-gap};
890
+ --segmented-segment-gap: #{$segmented-segment-gap};
891
+ --segmented-border-radius: #{$segmented-border-radius};
892
+ --segmented-active-shadow: #{$segmented-active-shadow};
664
893
  }
665
894
 
666
895
  /* === ACCESSIBILITY: REDUCED MOTION === */