@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.17.98",
3
+ "version": "0.17.100",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -190,6 +190,7 @@ export default defineComponent({
190
190
  new CustomDate(value.toString())
191
191
  )
192
192
  ) {
193
+ style.cursor = 'not-allowed'
193
194
  if (isToday && this.disabled) {
194
195
  style.color = 'var(--dl-color-secondary)'
195
196
  style.opacity = disabledOpacity
@@ -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: center;
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: 220px;
141
+ min-width: 130px;
142
142
 
143
143
  span {
144
144
  font-size: 12px;