@dataloop-ai/components 0.17.98 → 0.17.100
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/package.json
CHANGED
|
@@ -152,7 +152,8 @@ export default defineComponent({
|
|
|
152
152
|
if (!isInRange(this.availableRange, d)) {
|
|
153
153
|
style = {
|
|
154
154
|
'border-color': 'var(--dl-color-disabled)',
|
|
155
|
-
color: 'var(--dl-color-disabled)'
|
|
155
|
+
color: 'var(--dl-color-disabled)',
|
|
156
|
+
cursor: 'not-allowed'
|
|
156
157
|
}
|
|
157
158
|
} else if (this.modelValue !== null) {
|
|
158
159
|
const from = new CalendarDate(this.modelValue.from)
|
|
@@ -128,7 +128,7 @@ export default defineComponent({
|
|
|
128
128
|
<style lang="scss" scoped>
|
|
129
129
|
.dl-time-picker {
|
|
130
130
|
display: flex;
|
|
131
|
-
justify-content:
|
|
131
|
+
justify-content: flex-start;
|
|
132
132
|
align-items: center;
|
|
133
133
|
border-top: 1px solid var(--dl-color-separator);
|
|
134
134
|
padding: 15px 30px;
|
|
@@ -138,7 +138,7 @@ export default defineComponent({
|
|
|
138
138
|
display: flex;
|
|
139
139
|
justify-content: center;
|
|
140
140
|
align-items: center;
|
|
141
|
-
min-width:
|
|
141
|
+
min-width: 130px;
|
|
142
142
|
|
|
143
143
|
span {
|
|
144
144
|
font-size: 12px;
|