@dataloop-ai/components 0.17.121 → 0.17.122

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.121",
3
+ "version": "0.17.122",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -22,7 +22,7 @@
22
22
  <div
23
23
  v-else
24
24
  :id="uuid"
25
- style="display: inline"
25
+ :style="[inlineStyles, computedStyles]"
26
26
  @click="$emit('click', $event)"
27
27
  @mousedown="$emit('mousedown', $event)"
28
28
  @mouseup="$emit('mouseup', $event)"
@@ -156,7 +156,7 @@ export default defineComponent({
156
156
 
157
157
  <style scoped lang="scss">
158
158
  .dl-icon {
159
- display: inline-block;
159
+ display: inline-flex;
160
160
  color: var(--dl-icon-color);
161
161
  font-size: var(--dl-icon-font-size);
162
162
  }