@yahoo/uds-mobile 2.20.2 → 2.21.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.
@@ -1911,7 +1911,7 @@ const buttonStyles = StyleSheet.create((theme) => ({
1911
1911
  pressed: true,
1912
1912
  styles: theme.components['button/variant/warning/root/pressed'],
1913
1913
  },
1914
- ],
1914
+ ].filter((cv) => cv.styles != null),
1915
1915
  },
1916
1916
  text: {
1917
1917
  variants: {
@@ -2158,7 +2158,7 @@ const buttonStyles = StyleSheet.create((theme) => ({
2158
2158
  pressed: true,
2159
2159
  styles: theme.components['button/variant/warning/rootText/pressed'],
2160
2160
  },
2161
- ],
2161
+ ].filter((cv) => cv.styles != null),
2162
2162
  },
2163
2163
  icon: {
2164
2164
  variants: {
@@ -2405,7 +2405,7 @@ const buttonStyles = StyleSheet.create((theme) => ({
2405
2405
  pressed: true,
2406
2406
  styles: theme.components['button/variant/warning/icon/pressed'],
2407
2407
  },
2408
- ],
2408
+ ].filter((cv) => cv.styles != null),
2409
2409
  },
2410
2410
  }));
2411
2411
 
@@ -2664,7 +2664,7 @@ const checkboxStyles = StyleSheet.create((theme) => ({
2664
2664
  value: 'unchecked',
2665
2665
  styles: theme.components['checkbox/variant/secondary/value/unchecked/rootText/rest'],
2666
2666
  },
2667
- ],
2667
+ ].filter((cv) => cv.styles != null),
2668
2668
  },
2669
2669
  checkbox: {
2670
2670
  variants: {
@@ -2897,7 +2897,7 @@ const checkboxStyles = StyleSheet.create((theme) => ({
2897
2897
  value: 'unchecked',
2898
2898
  styles: theme.components['checkbox/variant/secondary/value/unchecked/checkbox/rest'],
2899
2899
  },
2900
- ],
2900
+ ].filter((cv) => cv.styles != null),
2901
2901
  },
2902
2902
  checkboxIcon: {
2903
2903
  variants: {
@@ -3141,7 +3141,7 @@ const checkboxStyles = StyleSheet.create((theme) => ({
3141
3141
  value: 'unchecked',
3142
3142
  styles: theme.components['checkbox/variant/secondary/value/unchecked/checkboxIcon/rest'],
3143
3143
  },
3144
- ],
3144
+ ].filter((cv) => cv.styles != null),
3145
3145
  },
3146
3146
  }));
3147
3147
 
@@ -3266,7 +3266,7 @@ const chipStyles = StyleSheet.create((theme) => ({
3266
3266
  pressed: true,
3267
3267
  styles: theme.components['chip/toggle/variant/secondary/active/on/root/pressed'],
3268
3268
  },
3269
- ],
3269
+ ].filter((cv) => cv.styles != null),
3270
3270
  },
3271
3271
  text: {
3272
3272
  variants: {
@@ -3374,7 +3374,7 @@ const chipStyles = StyleSheet.create((theme) => ({
3374
3374
  pressed: true,
3375
3375
  styles: theme.components['chip/toggle/variant/secondary/active/on/rootText/pressed'],
3376
3376
  },
3377
- ],
3377
+ ].filter((cv) => cv.styles != null),
3378
3378
  },
3379
3379
  icon: {
3380
3380
  variants: {
@@ -3481,7 +3481,7 @@ const chipStyles = StyleSheet.create((theme) => ({
3481
3481
  pressed: true,
3482
3482
  styles: theme.components['chip/toggle/variant/secondary/active/on/icon/pressed'],
3483
3483
  },
3484
- ],
3484
+ ].filter((cv) => cv.styles != null),
3485
3485
  },
3486
3486
  }));
3487
3487
 
@@ -3595,8 +3595,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3595
3595
  lg: theme.components['input/size/lg/endIcon/rest'],
3596
3596
  md: theme.components['input/size/md/endIcon/rest'],
3597
3597
  },
3598
- variant: { default: theme.components['input/variant/default/value/empty/endIcon/rest'] },
3599
- disabled: { true: {} },
3598
+ variant: { default: theme.components['input/variant/default/endIcon/rest'] },
3600
3599
  pressed: { true: {} },
3601
3600
  readonly: { true: {} },
3602
3601
  invalid: { true: {} },
@@ -3606,11 +3605,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3606
3605
  },
3607
3606
  },
3608
3607
  compoundVariants: [
3609
- {
3610
- value: 'empty',
3611
- disabled: true,
3612
- styles: theme.components['input/variant/default/value/empty/endIcon/disabled'],
3613
- },
3608
+ { invalid: true, styles: theme.components['input/variant/default/endIcon/invalid'] },
3609
+ { pressed: true, styles: theme.components['input/variant/default/endIcon/pressed'] },
3610
+ { readonly: true, styles: theme.components['input/variant/default/endIcon/readonly'] },
3614
3611
  {
3615
3612
  value: 'empty',
3616
3613
  invalid: true,
@@ -3626,11 +3623,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3626
3623
  readonly: true,
3627
3624
  styles: theme.components['input/variant/default/value/empty/endIcon/readonly'],
3628
3625
  },
3629
- {
3630
- value: 'filled',
3631
- disabled: true,
3632
- styles: theme.components['input/variant/default/value/filled/endIcon/disabled'],
3633
- },
3634
3626
  {
3635
3627
  value: 'filled',
3636
3628
  invalid: true,
@@ -3646,7 +3638,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3646
3638
  readonly: true,
3647
3639
  styles: theme.components['input/variant/default/value/filled/endIcon/readonly'],
3648
3640
  },
3649
- ],
3641
+ ].filter((cv) => cv.styles != null),
3650
3642
  },
3651
3643
  helperIcon: {
3652
3644
  variants: {
@@ -3654,8 +3646,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3654
3646
  lg: theme.components['input/size/lg/helperIcon/rest'],
3655
3647
  md: theme.components['input/size/md/helperIcon/rest'],
3656
3648
  },
3657
- variant: { default: theme.components['input/variant/default/value/empty/helperIcon/rest'] },
3658
- disabled: { true: {} },
3649
+ variant: { default: theme.components['input/variant/default/helperIcon/rest'] },
3659
3650
  pressed: { true: {} },
3660
3651
  readonly: { true: {} },
3661
3652
  invalid: { true: {} },
@@ -3665,11 +3656,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3665
3656
  },
3666
3657
  },
3667
3658
  compoundVariants: [
3668
- {
3669
- value: 'empty',
3670
- disabled: true,
3671
- styles: theme.components['input/variant/default/value/empty/helperIcon/disabled'],
3672
- },
3659
+ { invalid: true, styles: theme.components['input/variant/default/helperIcon/invalid'] },
3660
+ { pressed: true, styles: theme.components['input/variant/default/helperIcon/pressed'] },
3661
+ { readonly: true, styles: theme.components['input/variant/default/helperIcon/readonly'] },
3673
3662
  {
3674
3663
  value: 'empty',
3675
3664
  invalid: true,
@@ -3685,11 +3674,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3685
3674
  readonly: true,
3686
3675
  styles: theme.components['input/variant/default/value/empty/helperIcon/readonly'],
3687
3676
  },
3688
- {
3689
- value: 'filled',
3690
- disabled: true,
3691
- styles: theme.components['input/variant/default/value/filled/helperIcon/disabled'],
3692
- },
3693
3677
  {
3694
3678
  value: 'filled',
3695
3679
  invalid: true,
@@ -3705,7 +3689,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3705
3689
  readonly: true,
3706
3690
  styles: theme.components['input/variant/default/value/filled/helperIcon/readonly'],
3707
3691
  },
3708
- ],
3692
+ ].filter((cv) => cv.styles != null),
3709
3693
  },
3710
3694
  helperText: {
3711
3695
  variants: {
@@ -3713,8 +3697,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3713
3697
  lg: theme.components['input/size/lg/helperText/rest'],
3714
3698
  md: theme.components['input/size/md/helperText/rest'],
3715
3699
  },
3716
- variant: { default: theme.components['input/variant/default/value/empty/helperText/rest'] },
3717
- disabled: { true: {} },
3700
+ variant: { default: theme.components['input/variant/default/helperText/rest'] },
3718
3701
  pressed: { true: {} },
3719
3702
  readonly: { true: {} },
3720
3703
  invalid: { true: {} },
@@ -3724,11 +3707,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3724
3707
  },
3725
3708
  },
3726
3709
  compoundVariants: [
3727
- {
3728
- value: 'empty',
3729
- disabled: true,
3730
- styles: theme.components['input/variant/default/value/empty/helperText/disabled'],
3731
- },
3710
+ { invalid: true, styles: theme.components['input/variant/default/helperText/invalid'] },
3711
+ { pressed: true, styles: theme.components['input/variant/default/helperText/pressed'] },
3712
+ { readonly: true, styles: theme.components['input/variant/default/helperText/readonly'] },
3732
3713
  {
3733
3714
  value: 'empty',
3734
3715
  invalid: true,
@@ -3744,11 +3725,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3744
3725
  readonly: true,
3745
3726
  styles: theme.components['input/variant/default/value/empty/helperText/readonly'],
3746
3727
  },
3747
- {
3748
- value: 'filled',
3749
- disabled: true,
3750
- styles: theme.components['input/variant/default/value/filled/helperText/disabled'],
3751
- },
3752
3728
  {
3753
3729
  value: 'filled',
3754
3730
  invalid: true,
@@ -3764,7 +3740,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3764
3740
  readonly: true,
3765
3741
  styles: theme.components['input/variant/default/value/filled/helperText/readonly'],
3766
3742
  },
3767
- ],
3743
+ ].filter((cv) => cv.styles != null),
3768
3744
  },
3769
3745
  input: {
3770
3746
  variants: {
@@ -3772,8 +3748,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3772
3748
  lg: theme.components['input/size/lg/input/rest'],
3773
3749
  md: theme.components['input/size/md/input/rest'],
3774
3750
  },
3775
- variant: { default: theme.components['input/variant/default/value/empty/input/rest'] },
3776
- disabled: { true: {} },
3751
+ variant: { default: theme.components['input/variant/default/input/rest'] },
3777
3752
  pressed: { true: {} },
3778
3753
  readonly: { true: {} },
3779
3754
  invalid: { true: {} },
@@ -3783,11 +3758,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3783
3758
  },
3784
3759
  },
3785
3760
  compoundVariants: [
3786
- {
3787
- value: 'empty',
3788
- disabled: true,
3789
- styles: theme.components['input/variant/default/value/empty/input/disabled'],
3790
- },
3761
+ { invalid: true, styles: theme.components['input/variant/default/input/invalid'] },
3762
+ { pressed: true, styles: theme.components['input/variant/default/input/pressed'] },
3763
+ { readonly: true, styles: theme.components['input/variant/default/input/readonly'] },
3791
3764
  {
3792
3765
  value: 'empty',
3793
3766
  invalid: true,
@@ -3803,11 +3776,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3803
3776
  readonly: true,
3804
3777
  styles: theme.components['input/variant/default/value/empty/input/readonly'],
3805
3778
  },
3806
- {
3807
- value: 'filled',
3808
- disabled: true,
3809
- styles: theme.components['input/variant/default/value/filled/input/disabled'],
3810
- },
3811
3779
  {
3812
3780
  value: 'filled',
3813
3781
  invalid: true,
@@ -3823,14 +3791,11 @@ const inputStyles = StyleSheet.create((theme) => ({
3823
3791
  readonly: true,
3824
3792
  styles: theme.components['input/variant/default/value/filled/input/readonly'],
3825
3793
  },
3826
- ],
3794
+ ].filter((cv) => cv.styles != null),
3827
3795
  },
3828
3796
  inputPlaceholder: {
3829
3797
  variants: {
3830
- variant: {
3831
- default: theme.components['input/variant/default/value/empty/inputPlaceholder/rest'],
3832
- },
3833
- disabled: { true: {} },
3798
+ variant: { default: theme.components['input/variant/default/inputPlaceholder/rest'] },
3834
3799
  pressed: { true: {} },
3835
3800
  readonly: { true: {} },
3836
3801
  invalid: { true: {} },
@@ -3840,10 +3805,11 @@ const inputStyles = StyleSheet.create((theme) => ({
3840
3805
  },
3841
3806
  },
3842
3807
  compoundVariants: [
3808
+ { invalid: true, styles: theme.components['input/variant/default/inputPlaceholder/invalid'] },
3809
+ { pressed: true, styles: theme.components['input/variant/default/inputPlaceholder/pressed'] },
3843
3810
  {
3844
- value: 'empty',
3845
- disabled: true,
3846
- styles: theme.components['input/variant/default/value/empty/inputPlaceholder/disabled'],
3811
+ readonly: true,
3812
+ styles: theme.components['input/variant/default/inputPlaceholder/readonly'],
3847
3813
  },
3848
3814
  {
3849
3815
  value: 'empty',
@@ -3860,11 +3826,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3860
3826
  readonly: true,
3861
3827
  styles: theme.components['input/variant/default/value/empty/inputPlaceholder/readonly'],
3862
3828
  },
3863
- {
3864
- value: 'filled',
3865
- disabled: true,
3866
- styles: theme.components['input/variant/default/value/filled/inputPlaceholder/disabled'],
3867
- },
3868
3829
  {
3869
3830
  value: 'filled',
3870
3831
  invalid: true,
@@ -3880,16 +3841,11 @@ const inputStyles = StyleSheet.create((theme) => ({
3880
3841
  readonly: true,
3881
3842
  styles: theme.components['input/variant/default/value/filled/inputPlaceholder/readonly'],
3882
3843
  },
3883
- ],
3844
+ ].filter((cv) => cv.styles != null),
3884
3845
  },
3885
3846
  inputWrapper: {
3886
3847
  variants: {
3887
- size: {
3888
- lg: theme.components['input/size/lg/inputWrapper/rest'],
3889
- md: theme.components['input/size/md/inputWrapper/rest'],
3890
- },
3891
- variant: { default: theme.components['input/variant/default/value/empty/inputWrapper/rest'] },
3892
- disabled: { true: {} },
3848
+ variant: { default: theme.components['input/variant/default/inputWrapper/rest'] },
3893
3849
  pressed: { true: {} },
3894
3850
  readonly: { true: {} },
3895
3851
  invalid: { true: {} },
@@ -3899,11 +3855,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3899
3855
  },
3900
3856
  },
3901
3857
  compoundVariants: [
3902
- {
3903
- value: 'empty',
3904
- disabled: true,
3905
- styles: theme.components['input/variant/default/value/empty/inputWrapper/disabled'],
3906
- },
3858
+ { invalid: true, styles: theme.components['input/variant/default/inputWrapper/invalid'] },
3859
+ { pressed: true, styles: theme.components['input/variant/default/inputWrapper/pressed'] },
3860
+ { readonly: true, styles: theme.components['input/variant/default/inputWrapper/readonly'] },
3907
3861
  {
3908
3862
  value: 'empty',
3909
3863
  invalid: true,
@@ -3919,11 +3873,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3919
3873
  readonly: true,
3920
3874
  styles: theme.components['input/variant/default/value/empty/inputWrapper/readonly'],
3921
3875
  },
3922
- {
3923
- value: 'filled',
3924
- disabled: true,
3925
- styles: theme.components['input/variant/default/value/filled/inputWrapper/disabled'],
3926
- },
3927
3876
  {
3928
3877
  value: 'filled',
3929
3878
  invalid: true,
@@ -3939,7 +3888,23 @@ const inputStyles = StyleSheet.create((theme) => ({
3939
3888
  readonly: true,
3940
3889
  styles: theme.components['input/variant/default/value/filled/inputWrapper/readonly'],
3941
3890
  },
3942
- ],
3891
+ ].filter((cv) => cv.styles != null),
3892
+ },
3893
+ inputWrapperDynamic: {
3894
+ variants: {
3895
+ size: {
3896
+ lg: theme.components['input/size/lg/inputWrapperDynamic/rest'],
3897
+ md: theme.components['input/size/md/inputWrapperDynamic/rest'],
3898
+ },
3899
+ },
3900
+ },
3901
+ inputWrapperStatic: {
3902
+ variants: {
3903
+ size: {
3904
+ lg: theme.components['input/size/lg/inputWrapperStatic/rest'],
3905
+ md: theme.components['input/size/md/inputWrapperStatic/rest'],
3906
+ },
3907
+ },
3943
3908
  },
3944
3909
  label: {
3945
3910
  variants: {
@@ -3947,8 +3912,7 @@ const inputStyles = StyleSheet.create((theme) => ({
3947
3912
  lg: theme.components['input/size/lg/label/rest'],
3948
3913
  md: theme.components['input/size/md/label/rest'],
3949
3914
  },
3950
- variant: { default: theme.components['input/variant/default/value/empty/label/rest'] },
3951
- disabled: { true: {} },
3915
+ variant: { default: theme.components['input/variant/default/label/rest'] },
3952
3916
  pressed: { true: {} },
3953
3917
  readonly: { true: {} },
3954
3918
  invalid: { true: {} },
@@ -3958,11 +3922,9 @@ const inputStyles = StyleSheet.create((theme) => ({
3958
3922
  },
3959
3923
  },
3960
3924
  compoundVariants: [
3961
- {
3962
- value: 'empty',
3963
- disabled: true,
3964
- styles: theme.components['input/variant/default/value/empty/label/disabled'],
3965
- },
3925
+ { invalid: true, styles: theme.components['input/variant/default/label/invalid'] },
3926
+ { pressed: true, styles: theme.components['input/variant/default/label/pressed'] },
3927
+ { readonly: true, styles: theme.components['input/variant/default/label/readonly'] },
3966
3928
  {
3967
3929
  value: 'empty',
3968
3930
  invalid: true,
@@ -3978,11 +3940,6 @@ const inputStyles = StyleSheet.create((theme) => ({
3978
3940
  readonly: true,
3979
3941
  styles: theme.components['input/variant/default/value/empty/label/readonly'],
3980
3942
  },
3981
- {
3982
- value: 'filled',
3983
- disabled: true,
3984
- styles: theme.components['input/variant/default/value/filled/label/disabled'],
3985
- },
3986
3943
  {
3987
3944
  value: 'filled',
3988
3945
  invalid: true,
@@ -3998,14 +3955,11 @@ const inputStyles = StyleSheet.create((theme) => ({
3998
3955
  readonly: true,
3999
3956
  styles: theme.components['input/variant/default/value/filled/label/readonly'],
4000
3957
  },
4001
- ],
3958
+ ].filter((cv) => cv.styles != null),
4002
3959
  },
4003
3960
  labelRequired: {
4004
3961
  variants: {
4005
- variant: {
4006
- default: theme.components['input/variant/default/value/empty/labelRequired/rest'],
4007
- },
4008
- disabled: { true: {} },
3962
+ variant: { default: theme.components['input/variant/default/labelRequired/rest'] },
4009
3963
  pressed: { true: {} },
4010
3964
  readonly: { true: {} },
4011
3965
  invalid: { true: {} },
@@ -4015,11 +3969,9 @@ const inputStyles = StyleSheet.create((theme) => ({
4015
3969
  },
4016
3970
  },
4017
3971
  compoundVariants: [
4018
- {
4019
- value: 'empty',
4020
- disabled: true,
4021
- styles: theme.components['input/variant/default/value/empty/labelRequired/disabled'],
4022
- },
3972
+ { invalid: true, styles: theme.components['input/variant/default/labelRequired/invalid'] },
3973
+ { pressed: true, styles: theme.components['input/variant/default/labelRequired/pressed'] },
3974
+ { readonly: true, styles: theme.components['input/variant/default/labelRequired/readonly'] },
4023
3975
  {
4024
3976
  value: 'empty',
4025
3977
  invalid: true,
@@ -4035,11 +3987,6 @@ const inputStyles = StyleSheet.create((theme) => ({
4035
3987
  readonly: true,
4036
3988
  styles: theme.components['input/variant/default/value/empty/labelRequired/readonly'],
4037
3989
  },
4038
- {
4039
- value: 'filled',
4040
- disabled: true,
4041
- styles: theme.components['input/variant/default/value/filled/labelRequired/disabled'],
4042
- },
4043
3990
  {
4044
3991
  value: 'filled',
4045
3992
  invalid: true,
@@ -4055,7 +4002,7 @@ const inputStyles = StyleSheet.create((theme) => ({
4055
4002
  readonly: true,
4056
4003
  styles: theme.components['input/variant/default/value/filled/labelRequired/readonly'],
4057
4004
  },
4058
- ],
4005
+ ].filter((cv) => cv.styles != null),
4059
4006
  },
4060
4007
  startIcon: {
4061
4008
  variants: {
@@ -4063,8 +4010,7 @@ const inputStyles = StyleSheet.create((theme) => ({
4063
4010
  lg: theme.components['input/size/lg/startIcon/rest'],
4064
4011
  md: theme.components['input/size/md/startIcon/rest'],
4065
4012
  },
4066
- variant: { default: theme.components['input/variant/default/value/empty/startIcon/rest'] },
4067
- disabled: { true: {} },
4013
+ variant: { default: theme.components['input/variant/default/startIcon/rest'] },
4068
4014
  pressed: { true: {} },
4069
4015
  readonly: { true: {} },
4070
4016
  invalid: { true: {} },
@@ -4074,11 +4020,9 @@ const inputStyles = StyleSheet.create((theme) => ({
4074
4020
  },
4075
4021
  },
4076
4022
  compoundVariants: [
4077
- {
4078
- value: 'empty',
4079
- disabled: true,
4080
- styles: theme.components['input/variant/default/value/empty/startIcon/disabled'],
4081
- },
4023
+ { invalid: true, styles: theme.components['input/variant/default/startIcon/invalid'] },
4024
+ { pressed: true, styles: theme.components['input/variant/default/startIcon/pressed'] },
4025
+ { readonly: true, styles: theme.components['input/variant/default/startIcon/readonly'] },
4082
4026
  {
4083
4027
  value: 'empty',
4084
4028
  invalid: true,
@@ -4094,11 +4038,6 @@ const inputStyles = StyleSheet.create((theme) => ({
4094
4038
  readonly: true,
4095
4039
  styles: theme.components['input/variant/default/value/empty/startIcon/readonly'],
4096
4040
  },
4097
- {
4098
- value: 'filled',
4099
- disabled: true,
4100
- styles: theme.components['input/variant/default/value/filled/startIcon/disabled'],
4101
- },
4102
4041
  {
4103
4042
  value: 'filled',
4104
4043
  invalid: true,
@@ -4114,7 +4053,7 @@ const inputStyles = StyleSheet.create((theme) => ({
4114
4053
  readonly: true,
4115
4054
  styles: theme.components['input/variant/default/value/filled/startIcon/readonly'],
4116
4055
  },
4117
- ],
4056
+ ].filter((cv) => cv.styles != null),
4118
4057
  },
4119
4058
  }));
4120
4059
 
@@ -4193,7 +4132,7 @@ const linkStyles = StyleSheet.create((theme) => ({
4193
4132
  pressed: true,
4194
4133
  styles: theme.components['link/variant/tertiary/rootText/pressed'],
4195
4134
  },
4196
- ],
4135
+ ].filter((cv) => cv.styles != null),
4197
4136
  },
4198
4137
  icon: {
4199
4138
  variants: {
@@ -4254,7 +4193,7 @@ const linkStyles = StyleSheet.create((theme) => ({
4254
4193
  pressed: true,
4255
4194
  styles: theme.components['link/variant/tertiary/iconEnd/pressed'],
4256
4195
  },
4257
- ],
4196
+ ].filter((cv) => cv.styles != null),
4258
4197
  },
4259
4198
  iconStart: {
4260
4199
  variants: {
@@ -4287,7 +4226,7 @@ const linkStyles = StyleSheet.create((theme) => ({
4287
4226
  pressed: true,
4288
4227
  styles: theme.components['link/variant/tertiary/iconStart/pressed'],
4289
4228
  },
4290
- ],
4229
+ ].filter((cv) => cv.styles != null),
4291
4230
  },
4292
4231
  }));
4293
4232
 
@@ -4504,7 +4443,7 @@ const paddleNavStyles = StyleSheet.create((theme) => ({
4504
4443
  pressed: true,
4505
4444
  styles: theme.components['paddleNav/variant/tertiary/root/pressed'],
4506
4445
  },
4507
- ],
4446
+ ].filter((cv) => cv.styles != null),
4508
4447
  },
4509
4448
  icon: {
4510
4449
  variants: {
@@ -4538,7 +4477,7 @@ const paddleNavStyles = StyleSheet.create((theme) => ({
4538
4477
  pressed: true,
4539
4478
  styles: theme.components['paddleNav/variant/tertiary/icon/pressed'],
4540
4479
  },
4541
- ],
4480
+ ].filter((cv) => cv.styles != null),
4542
4481
  },
4543
4482
  background: {
4544
4483
  variants: {
@@ -4565,7 +4504,7 @@ const paddleNavStyles = StyleSheet.create((theme) => ({
4565
4504
  pressed: true,
4566
4505
  styles: theme.components['paddleNav/variant/tertiary/background/pressed'],
4567
4506
  },
4568
- ],
4507
+ ].filter((cv) => cv.styles != null),
4569
4508
  },
4570
4509
  }));
4571
4510
 
@@ -4603,7 +4542,7 @@ const paginationStyles = StyleSheet.create((theme) => ({
4603
4542
  pressed: true,
4604
4543
  styles: theme.components['pagination/variant/default/active/off/root/pressed'],
4605
4544
  },
4606
- ],
4545
+ ].filter((cv) => cv.styles != null),
4607
4546
  },
4608
4547
  text: {
4609
4548
  variants: {
@@ -4623,7 +4562,7 @@ const paginationStyles = StyleSheet.create((theme) => ({
4623
4562
  pressed: true,
4624
4563
  styles: theme.components['pagination/variant/default/active/off/rootText/pressed'],
4625
4564
  },
4626
- ],
4565
+ ].filter((cv) => cv.styles != null),
4627
4566
  },
4628
4567
  icon: {
4629
4568
  variants: {
@@ -4828,7 +4767,7 @@ const radioStyles = StyleSheet.create((theme) => ({
4828
4767
  value: 'unchecked',
4829
4768
  styles: theme.components['radio/variant/secondary/value/unchecked/rootText/rest'],
4830
4769
  },
4831
- ],
4770
+ ].filter((cv) => cv.styles != null),
4832
4771
  },
4833
4772
  radio: {
4834
4773
  variants: {
@@ -4935,7 +4874,7 @@ const radioStyles = StyleSheet.create((theme) => ({
4935
4874
  value: 'unchecked',
4936
4875
  styles: theme.components['radio/variant/secondary/value/unchecked/radio/rest'],
4937
4876
  },
4938
- ],
4877
+ ].filter((cv) => cv.styles != null),
4939
4878
  },
4940
4879
  radioCircle: {
4941
4880
  variants: {
@@ -5039,7 +4978,7 @@ const radioStyles = StyleSheet.create((theme) => ({
5039
4978
  value: 'unchecked',
5040
4979
  styles: theme.components['radio/variant/secondary/value/unchecked/radioCircle/rest'],
5041
4980
  },
5042
- ],
4981
+ ].filter((cv) => cv.styles != null),
5043
4982
  },
5044
4983
  }));
5045
4984
 
@@ -5186,7 +5125,7 @@ const tabStyles = StyleSheet.create((theme) => ({
5186
5125
  pressed: true,
5187
5126
  styles: theme.components['tab/variant/secondary/active/on/root/pressed'],
5188
5127
  },
5189
- ],
5128
+ ].filter((cv) => cv.styles != null),
5190
5129
  },
5191
5130
  text: {
5192
5131
  variants: {
@@ -5218,7 +5157,7 @@ const tabStyles = StyleSheet.create((theme) => ({
5218
5157
  pressed: true,
5219
5158
  styles: theme.components['tab/variant/secondary/active/on/rootText/pressed'],
5220
5159
  },
5221
- ],
5160
+ ].filter((cv) => cv.styles != null),
5222
5161
  },
5223
5162
  icon: {
5224
5163
  variants: {
@@ -5250,7 +5189,7 @@ const tabStyles = StyleSheet.create((theme) => ({
5250
5189
  pressed: true,
5251
5190
  styles: theme.components['tab/variant/secondary/active/on/icon/pressed'],
5252
5191
  },
5253
- ],
5192
+ ].filter((cv) => cv.styles != null),
5254
5193
  },
5255
5194
  }));
5256
5195