@dataloop-ai/components 0.19.254 → 0.19.256
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
|
@@ -109,6 +109,8 @@
|
|
|
109
109
|
:no-wrap="props.noWrap"
|
|
110
110
|
:tooltip="tooltip"
|
|
111
111
|
:max-width="maxWidth"
|
|
112
|
+
:hover-text-color="mainButtonHoverColor"
|
|
113
|
+
:size="mainButtonFontSize"
|
|
112
114
|
@click="onClick"
|
|
113
115
|
>
|
|
114
116
|
<div class="dl-button-dropdown--simple__title">
|
|
@@ -116,7 +118,7 @@
|
|
|
116
118
|
:class="{
|
|
117
119
|
'dl-button-no-wrap': noWrap
|
|
118
120
|
}"
|
|
119
|
-
style="margin-right:
|
|
121
|
+
style="margin-right: 6px"
|
|
120
122
|
>
|
|
121
123
|
{{ label }}
|
|
122
124
|
</span>
|
|
@@ -258,6 +260,11 @@ export default defineComponent({
|
|
|
258
260
|
type: String,
|
|
259
261
|
required: false,
|
|
260
262
|
default: null
|
|
263
|
+
},
|
|
264
|
+
mainButtonFontSize: {
|
|
265
|
+
type: String,
|
|
266
|
+
required: false,
|
|
267
|
+
default: 'm'
|
|
261
268
|
}
|
|
262
269
|
},
|
|
263
270
|
emits: [
|