@quidgest/ui 0.16.34 → 0.16.36
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/json/api.json +1 -1
- package/dist/ui.css +24 -6
- package/dist/ui.esm.js +2940 -2872
- package/dist/ui.js +19 -19
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +774 -761
- package/dist/ui.scss +23 -5
- package/esm/components/QPropertyList/QPropertyList.d.ts.map +1 -1
- package/esm/components/QPropertyList/QPropertyList.vue.js +58 -60
- package/esm/composables/useColor/index.js +3 -3
- package/esm/index.d.ts +2 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +8 -6
- package/esm/utils/color/contrast.js +10 -3
- package/esm/utils/color/index.d.ts +3 -3
- package/esm/utils/color/index.d.ts.map +1 -1
- package/esm/utils/color/manipulate.js +16 -8
- package/esm/utils/color/merge.js +49 -0
- package/esm/utils/index.d.ts +2 -0
- package/esm/utils/index.d.ts.map +1 -0
- package/esm/utils/index.js +20 -0
- package/package.json +1 -1
package/dist/json/api.json
CHANGED
package/dist/ui.css
CHANGED
|
@@ -4047,32 +4047,45 @@ body *::-webkit-scrollbar-track {
|
|
|
4047
4047
|
.q-property-list {
|
|
4048
4048
|
margin: 0;
|
|
4049
4049
|
font-size: 0.9rem;
|
|
4050
|
-
display: flex;
|
|
4050
|
+
display: inline-flex;
|
|
4051
|
+
width: auto;
|
|
4051
4052
|
flex-direction: column;
|
|
4052
|
-
border: 1px solid
|
|
4053
|
+
border: 1px solid rgb(var(--q-theme-neutral-light-rgb)/50%);
|
|
4053
4054
|
}
|
|
4054
4055
|
.q-property-list-panel {
|
|
4055
4056
|
padding: 0.4rem;
|
|
4056
4057
|
display: flex;
|
|
4057
4058
|
flex-direction: column;
|
|
4059
|
+
overflow-y: auto;
|
|
4058
4060
|
min-height: 50px;
|
|
4061
|
+
max-height: 80px;
|
|
4059
4062
|
gap: 1rem;
|
|
4060
4063
|
}
|
|
4061
4064
|
.q-property-list--side-panel {
|
|
4062
4065
|
flex-direction: row;
|
|
4063
4066
|
}
|
|
4064
4067
|
.q-property-list--side-panel .q-property-list-panel {
|
|
4065
|
-
border-left: 1px solid
|
|
4066
|
-
width:
|
|
4068
|
+
border-left: 1px solid rgb(var(--q-theme-neutral-light-rgb)/50%);
|
|
4069
|
+
width: 250px;
|
|
4070
|
+
max-height: unset;
|
|
4067
4071
|
}
|
|
4068
4072
|
.q-property-list-panel__label {
|
|
4069
4073
|
font-weight: bold;
|
|
4070
4074
|
}
|
|
4071
4075
|
.q-property-list__table {
|
|
4072
|
-
width: 100%;
|
|
4073
4076
|
border-spacing: 0;
|
|
4077
|
+
table-layout: fixed;
|
|
4074
4078
|
margin: 0;
|
|
4075
4079
|
}
|
|
4080
|
+
.q-property-list--block {
|
|
4081
|
+
display: flex;
|
|
4082
|
+
width: 100%;
|
|
4083
|
+
max-width: 100%;
|
|
4084
|
+
flex: 1;
|
|
4085
|
+
}
|
|
4086
|
+
.q-property-list--block .q-property-list__table {
|
|
4087
|
+
width: 100%;
|
|
4088
|
+
}
|
|
4076
4089
|
.q-property-list__header {
|
|
4077
4090
|
background: rgb(var(--q-theme-neutral-light-rgb)/25%);
|
|
4078
4091
|
height: 25px;
|
|
@@ -4098,6 +4111,11 @@ body *::-webkit-scrollbar-track {
|
|
|
4098
4111
|
text-wrap: nowrap;
|
|
4099
4112
|
opacity: 0.8;
|
|
4100
4113
|
}
|
|
4114
|
+
.q-property-list__cell .q-field {
|
|
4115
|
+
max-width: 100%;
|
|
4116
|
+
width: 100%;
|
|
4117
|
+
box-sizing: border-box;
|
|
4118
|
+
}
|
|
4101
4119
|
.q-property-list-field__container {
|
|
4102
4120
|
display: flex;
|
|
4103
4121
|
align-items: center;
|
|
@@ -4122,7 +4140,7 @@ body *::-webkit-scrollbar-track {
|
|
|
4122
4140
|
padding: 0.5rem 1rem;
|
|
4123
4141
|
}
|
|
4124
4142
|
.q-property-list tbody td {
|
|
4125
|
-
border-bottom: 1px solid
|
|
4143
|
+
border-bottom: 1px solid rgb(var(--q-theme-neutral-light-rgb)/50%);
|
|
4126
4144
|
}
|
|
4127
4145
|
|
|
4128
4146
|
.q-radio-group {
|