@oliasoft-open-source/react-ui-library 3.3.4 → 3.3.6
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.
- package/dist/global.css +80 -71
- package/dist/index.js +21 -21
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -3918,7 +3918,7 @@ html[data-theme='dark'] {
|
|
|
3918
3918
|
--color-border-button-hover: var(--color-border);
|
|
3919
3919
|
--color-text-button-muted: rgba(255, 255, 255, 0.4);
|
|
3920
3920
|
}
|
|
3921
|
-
.
|
|
3921
|
+
._button_q96hr_375 {
|
|
3922
3922
|
cursor: pointer;
|
|
3923
3923
|
display: inline-flex;
|
|
3924
3924
|
align-items: center;
|
|
@@ -3944,79 +3944,82 @@ html[data-theme='dark'] {
|
|
|
3944
3944
|
min-height: 38px;
|
|
3945
3945
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
3946
3946
|
}
|
|
3947
|
-
.
|
|
3947
|
+
._button_q96hr_375:hover {
|
|
3948
3948
|
background: var(--color-background-button-default-hover);
|
|
3949
3949
|
border-color: var(--color-border-button-hover);
|
|
3950
3950
|
}
|
|
3951
|
-
.
|
|
3951
|
+
._button_q96hr_375:focus {
|
|
3952
|
+
box-shadow: var(--shadow-focus);
|
|
3953
|
+
}
|
|
3954
|
+
._button_q96hr_375:active {
|
|
3952
3955
|
background: var(--color-background-button-default-active);
|
|
3953
3956
|
box-shadow: none;
|
|
3954
3957
|
}
|
|
3955
|
-
.
|
|
3958
|
+
._button_q96hr_375._active_q96hr_412:not(._green_q96hr_412):not(._red_q96hr_412):not(._orange_q96hr_412) {
|
|
3956
3959
|
border-color: var(--color-background-button-primary);
|
|
3957
3960
|
color: var(--color-text-primary);
|
|
3958
3961
|
position: relative;
|
|
3959
3962
|
z-index: 2;
|
|
3960
3963
|
}
|
|
3961
|
-
.
|
|
3962
|
-
.
|
|
3963
|
-
.
|
|
3964
|
+
._button_q96hr_375:hover,
|
|
3965
|
+
._button_q96hr_375:focus,
|
|
3966
|
+
._button_q96hr_375:active {
|
|
3964
3967
|
position: relative;
|
|
3965
3968
|
z-index: 1;
|
|
3966
3969
|
}
|
|
3967
|
-
.
|
|
3970
|
+
._button_q96hr_375 ._icon_q96hr_424 {
|
|
3968
3971
|
margin: 0 8px 0 -4px;
|
|
3969
3972
|
}
|
|
3970
|
-
.
|
|
3973
|
+
._button_q96hr_375 ._icon_q96hr_424 svg {
|
|
3971
3974
|
height: 14px;
|
|
3972
3975
|
width: 14px;
|
|
3973
3976
|
}
|
|
3974
|
-
.
|
|
3977
|
+
._iconOnly_q96hr_431 {
|
|
3975
3978
|
padding: 0.78571429em 0.78571429em 0.78571429em;
|
|
3976
3979
|
display: inline-flex;
|
|
3977
3980
|
align-items: center;
|
|
3978
3981
|
justify-content: center;
|
|
3979
3982
|
}
|
|
3980
|
-
.
|
|
3983
|
+
._iconOnly_q96hr_431 ._icon_q96hr_424 {
|
|
3981
3984
|
margin: 0;
|
|
3982
3985
|
line-height: 0;
|
|
3983
3986
|
}
|
|
3984
|
-
.
|
|
3987
|
+
._basic_q96hr_441 {
|
|
3985
3988
|
color: var(--color-text-primary);
|
|
3986
3989
|
background: transparent;
|
|
3987
3990
|
box-shadow: none !important;
|
|
3988
3991
|
border: none !important;
|
|
3989
3992
|
}
|
|
3990
|
-
.
|
|
3993
|
+
._basic_q96hr_441._muted_q96hr_447 {
|
|
3991
3994
|
color: var(--color-text-button-muted);
|
|
3992
3995
|
}
|
|
3993
|
-
.
|
|
3994
|
-
.
|
|
3996
|
+
._basic_q96hr_441:hover,
|
|
3997
|
+
._basic_q96hr_441:focus {
|
|
3995
3998
|
color: var(--color-text-primary-hover);
|
|
3996
3999
|
background: rgba(0, 0, 0, 0.05);
|
|
3997
4000
|
}
|
|
3998
|
-
.
|
|
3999
|
-
.
|
|
4001
|
+
._basic_q96hr_441:active,
|
|
4002
|
+
._basic_q96hr_441._active_q96hr_412 {
|
|
4000
4003
|
color: var(--color-text-primary-active);
|
|
4001
4004
|
background: rgba(0, 0, 0, 0.1);
|
|
4002
4005
|
}
|
|
4003
|
-
.
|
|
4006
|
+
._disabled_q96hr_460 {
|
|
4004
4007
|
cursor: default;
|
|
4005
4008
|
pointer-events: none !important;
|
|
4006
4009
|
color: var(--color-text-faint) !important;
|
|
4007
4010
|
box-shadow: none !important;
|
|
4008
4011
|
}
|
|
4009
|
-
.
|
|
4012
|
+
._disabled_q96hr_460:not(._active_q96hr_412):not(._basic_q96hr_441) {
|
|
4010
4013
|
background: var(--color-background-disabled) !important;
|
|
4011
4014
|
border: 1px solid var(--color-border) !important;
|
|
4012
4015
|
}
|
|
4013
|
-
.
|
|
4016
|
+
._small_q96hr_470 {
|
|
4014
4017
|
font-size: 12px;
|
|
4015
4018
|
min-height: 24px;
|
|
4016
4019
|
padding: 0 0.75rem;
|
|
4017
4020
|
}
|
|
4018
|
-
.
|
|
4019
|
-
.
|
|
4021
|
+
._pill_q96hr_475,
|
|
4022
|
+
._round_q96hr_476 {
|
|
4020
4023
|
text-transform: uppercase;
|
|
4021
4024
|
letter-spacing: 0.1em;
|
|
4022
4025
|
font-size: 13px;
|
|
@@ -4025,108 +4028,114 @@ html[data-theme='dark'] {
|
|
|
4025
4028
|
display: inline-flex;
|
|
4026
4029
|
align-items: center;
|
|
4027
4030
|
}
|
|
4028
|
-
.
|
|
4031
|
+
._round_q96hr_476 {
|
|
4029
4032
|
padding: 0;
|
|
4030
4033
|
width: 38px;
|
|
4031
4034
|
line-height: 1;
|
|
4032
4035
|
}
|
|
4033
|
-
.
|
|
4036
|
+
._round_q96hr_476._small_q96hr_470 {
|
|
4034
4037
|
width: 24px;
|
|
4035
4038
|
}
|
|
4036
|
-
.
|
|
4039
|
+
._orange_q96hr_412 {
|
|
4037
4040
|
background-color: var(--color-background-button-primary);
|
|
4038
4041
|
}
|
|
4039
|
-
.
|
|
4040
|
-
.
|
|
4042
|
+
._orange_q96hr_412:hover,
|
|
4043
|
+
._orange_q96hr_412:focus {
|
|
4041
4044
|
background-color: var(--color-background-button-primary-hover);
|
|
4042
4045
|
}
|
|
4043
|
-
.
|
|
4046
|
+
._orange_q96hr_412:active,
|
|
4047
|
+
._orange_q96hr_412._active_q96hr_412 {
|
|
4044
4048
|
background-color: var(--color-background-button-primary-active);
|
|
4045
4049
|
}
|
|
4046
|
-
.
|
|
4050
|
+
._red_q96hr_412 {
|
|
4047
4051
|
background-color: var(--color-background-button-error);
|
|
4048
4052
|
}
|
|
4049
|
-
.
|
|
4050
|
-
.
|
|
4053
|
+
._red_q96hr_412:hover,
|
|
4054
|
+
._red_q96hr_412:focus {
|
|
4051
4055
|
background-color: var(--color-background-button-error-hover);
|
|
4052
4056
|
}
|
|
4053
|
-
.
|
|
4057
|
+
._red_q96hr_412:active,
|
|
4058
|
+
._red_q96hr_412._active_q96hr_412 {
|
|
4054
4059
|
background-color: var(--color-background-button-error-active);
|
|
4055
4060
|
}
|
|
4056
|
-
.
|
|
4061
|
+
._green_q96hr_412 {
|
|
4057
4062
|
background-color: var(--color-background-button-success);
|
|
4058
4063
|
}
|
|
4059
|
-
.
|
|
4060
|
-
.
|
|
4064
|
+
._green_q96hr_412:hover,
|
|
4065
|
+
._green_q96hr_412:focus {
|
|
4061
4066
|
background-color: var(--color-background-button-success-hover);
|
|
4062
4067
|
}
|
|
4063
|
-
.
|
|
4068
|
+
._green_q96hr_412:active,
|
|
4069
|
+
._green_q96hr_412._active_q96hr_412 {
|
|
4064
4070
|
background-color: var(--color-background-button-success-active);
|
|
4065
4071
|
}
|
|
4066
|
-
.
|
|
4067
|
-
.
|
|
4068
|
-
.
|
|
4072
|
+
._orange_q96hr_412,
|
|
4073
|
+
._red_q96hr_412,
|
|
4074
|
+
._green_q96hr_412 {
|
|
4069
4075
|
color: #fff;
|
|
4070
4076
|
}
|
|
4071
|
-
.
|
|
4072
|
-
.
|
|
4073
|
-
.
|
|
4074
|
-
.
|
|
4075
|
-
.
|
|
4076
|
-
.
|
|
4077
|
+
._orange_q96hr_412:hover,
|
|
4078
|
+
._red_q96hr_412:hover,
|
|
4079
|
+
._green_q96hr_412:hover,
|
|
4080
|
+
._orange_q96hr_412:focus,
|
|
4081
|
+
._red_q96hr_412:focus,
|
|
4082
|
+
._green_q96hr_412:focus {
|
|
4077
4083
|
color: #fff;
|
|
4078
4084
|
}
|
|
4079
|
-
.
|
|
4080
|
-
.
|
|
4081
|
-
.
|
|
4085
|
+
._orange_q96hr_412:active,
|
|
4086
|
+
._red_q96hr_412:active,
|
|
4087
|
+
._green_q96hr_412:active,
|
|
4088
|
+
._orange_q96hr_412._active_q96hr_412,
|
|
4089
|
+
._red_q96hr_412._active_q96hr_412,
|
|
4090
|
+
._green_q96hr_412._active_q96hr_412 {
|
|
4082
4091
|
color: #fff;
|
|
4083
4092
|
}
|
|
4084
|
-
.
|
|
4093
|
+
._inverted_q96hr_547 {
|
|
4085
4094
|
background-color: transparent;
|
|
4086
4095
|
border-color: var(--color-text);
|
|
4087
4096
|
box-shadow: none;
|
|
4088
4097
|
}
|
|
4089
|
-
.
|
|
4090
|
-
.
|
|
4091
|
-
.
|
|
4098
|
+
._inverted_q96hr_547:hover,
|
|
4099
|
+
._inverted_q96hr_547:focus,
|
|
4100
|
+
._inverted_q96hr_547:active {
|
|
4092
4101
|
box-shadow: none;
|
|
4093
4102
|
}
|
|
4094
|
-
.
|
|
4103
|
+
._inverted_q96hr_547._orange_q96hr_412 {
|
|
4095
4104
|
color: var(--color-background-button-primary);
|
|
4096
4105
|
border-color: var(--color-background-button-primary);
|
|
4097
4106
|
}
|
|
4098
|
-
.
|
|
4107
|
+
._inverted_q96hr_547._red_q96hr_412 {
|
|
4099
4108
|
color: var(--color-background-button-error);
|
|
4100
4109
|
border-color: var(--color-background-button-error);
|
|
4101
4110
|
}
|
|
4102
|
-
.
|
|
4111
|
+
._inverted_q96hr_547._green_q96hr_412 {
|
|
4103
4112
|
color: var(--color-background-button-success);
|
|
4104
4113
|
border-color: var(--color-background-button-success);
|
|
4105
4114
|
}
|
|
4106
|
-
.
|
|
4107
|
-
.
|
|
4108
|
-
.
|
|
4109
|
-
.
|
|
4110
|
-
.
|
|
4111
|
-
.
|
|
4112
|
-
.
|
|
4113
|
-
.
|
|
4114
|
-
.
|
|
4115
|
+
._inverted_q96hr_547._orange_q96hr_412:hover,
|
|
4116
|
+
._inverted_q96hr_547._red_q96hr_412:hover,
|
|
4117
|
+
._inverted_q96hr_547._green_q96hr_412:hover,
|
|
4118
|
+
._inverted_q96hr_547._orange_q96hr_412:focus,
|
|
4119
|
+
._inverted_q96hr_547._red_q96hr_412:focus,
|
|
4120
|
+
._inverted_q96hr_547._green_q96hr_412:focus,
|
|
4121
|
+
._inverted_q96hr_547._orange_q96hr_412:active,
|
|
4122
|
+
._inverted_q96hr_547._red_q96hr_412:active,
|
|
4123
|
+
._inverted_q96hr_547._green_q96hr_412:active {
|
|
4115
4124
|
color: white;
|
|
4116
4125
|
box-shadow: none;
|
|
4117
4126
|
}
|
|
4118
|
-
.
|
|
4119
|
-
.
|
|
4120
|
-
.
|
|
4127
|
+
._groupOrderFirst_q96hr_581,
|
|
4128
|
+
._groupOrderMiddle_q96hr_582,
|
|
4129
|
+
._groupOrderLast_q96hr_583 {
|
|
4121
4130
|
margin-right: 0;
|
|
4122
4131
|
}
|
|
4123
|
-
.
|
|
4124
|
-
.
|
|
4132
|
+
._groupOrderFirst_q96hr_581,
|
|
4133
|
+
._groupOrderMiddle_q96hr_582 {
|
|
4125
4134
|
border-top-right-radius: 0 !important;
|
|
4126
4135
|
border-bottom-right-radius: 0 !important;
|
|
4127
4136
|
}
|
|
4128
|
-
.
|
|
4129
|
-
.
|
|
4137
|
+
._groupOrderLast_q96hr_583,
|
|
4138
|
+
._groupOrderMiddle_q96hr_582 {
|
|
4130
4139
|
border-top-left-radius: 0 !important;
|
|
4131
4140
|
border-bottom-left-radius: 0 !important;
|
|
4132
4141
|
}
|
package/dist/index.js
CHANGED
|
@@ -10018,26 +10018,29 @@ Badge.propTypes = {
|
|
|
10018
10018
|
margin: propTypes$1.exports.string,
|
|
10019
10019
|
small: propTypes$1.exports.bool
|
|
10020
10020
|
};
|
|
10021
|
-
const button$3 = "
|
|
10022
|
-
const active$8 = "
|
|
10023
|
-
const
|
|
10024
|
-
const
|
|
10025
|
-
const
|
|
10026
|
-
const
|
|
10027
|
-
const
|
|
10028
|
-
const
|
|
10029
|
-
const
|
|
10030
|
-
const
|
|
10031
|
-
const
|
|
10032
|
-
const
|
|
10033
|
-
const
|
|
10034
|
-
const inverted$1 = "
|
|
10035
|
-
const groupOrderFirst$4 = "
|
|
10036
|
-
const groupOrderMiddle$4 = "
|
|
10037
|
-
const groupOrderLast$4 = "
|
|
10021
|
+
const button$3 = "_button_q96hr_375";
|
|
10022
|
+
const active$8 = "_active_q96hr_412";
|
|
10023
|
+
const green$1 = "_green_q96hr_412";
|
|
10024
|
+
const red$1 = "_red_q96hr_412";
|
|
10025
|
+
const orange$1 = "_orange_q96hr_412";
|
|
10026
|
+
const icon$6 = "_icon_q96hr_424";
|
|
10027
|
+
const iconOnly = "_iconOnly_q96hr_431";
|
|
10028
|
+
const basic = "_basic_q96hr_441";
|
|
10029
|
+
const muted$1 = "_muted_q96hr_447";
|
|
10030
|
+
const disabled$8 = "_disabled_q96hr_460";
|
|
10031
|
+
const small$c = "_small_q96hr_470";
|
|
10032
|
+
const pill = "_pill_q96hr_475";
|
|
10033
|
+
const round = "_round_q96hr_476";
|
|
10034
|
+
const inverted$1 = "_inverted_q96hr_547";
|
|
10035
|
+
const groupOrderFirst$4 = "_groupOrderFirst_q96hr_581";
|
|
10036
|
+
const groupOrderMiddle$4 = "_groupOrderMiddle_q96hr_582";
|
|
10037
|
+
const groupOrderLast$4 = "_groupOrderLast_q96hr_583";
|
|
10038
10038
|
const buttonStyles = {
|
|
10039
10039
|
button: button$3,
|
|
10040
10040
|
active: active$8,
|
|
10041
|
+
green: green$1,
|
|
10042
|
+
red: red$1,
|
|
10043
|
+
orange: orange$1,
|
|
10041
10044
|
icon: icon$6,
|
|
10042
10045
|
iconOnly,
|
|
10043
10046
|
basic,
|
|
@@ -10046,9 +10049,6 @@ const buttonStyles = {
|
|
|
10046
10049
|
small: small$c,
|
|
10047
10050
|
pill,
|
|
10048
10051
|
round,
|
|
10049
|
-
orange: orange$1,
|
|
10050
|
-
red: red$1,
|
|
10051
|
-
green: green$1,
|
|
10052
10052
|
inverted: inverted$1,
|
|
10053
10053
|
groupOrderFirst: groupOrderFirst$4,
|
|
10054
10054
|
groupOrderMiddle: groupOrderMiddle$4,
|
|
@@ -27085,7 +27085,7 @@ const Input = ({
|
|
|
27085
27085
|
width: getMultiOptionsWidth()
|
|
27086
27086
|
}) : /* @__PURE__ */ jsx("span", {
|
|
27087
27087
|
className: styles$j.selectedSingleValue,
|
|
27088
|
-
children: selectedOptions.label
|
|
27088
|
+
children: !searchValue.length ? selectedOptions.label : ""
|
|
27089
27089
|
}), searchable ? /* @__PURE__ */ jsx("input", {
|
|
27090
27090
|
tabIndex: -1,
|
|
27091
27091
|
ref: inputRef,
|