@designcrowd/fe-shared-lib 1.1.2-rte-icons-1 → 1.1.2-rte-icons-2
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
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
:classes="buttonStyle"
|
|
9
9
|
:rounded="false"
|
|
10
10
|
:rounded-left="true"
|
|
11
|
-
:full-height="
|
|
11
|
+
:full-height="fullHeight"
|
|
12
12
|
:disabled="disabled"
|
|
13
13
|
@mousedown.left="onMouseDown('down')"
|
|
14
14
|
@mousedown.right="clearLongPressTimers"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
/>
|
|
22
22
|
<input
|
|
23
23
|
:ref="numberStepperRef"
|
|
24
|
-
class="tw-w-full tw-text-center tw-border tw-border-solid tw-border-
|
|
24
|
+
class="tw-w-full tw-text-center tw-border tw-border-solid tw-border-grayscale-500 tw-border-l-0 tw-border-r-0"
|
|
25
25
|
:class="inputClasses"
|
|
26
26
|
type="text"
|
|
27
27
|
:value="number"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
variant="flat"
|
|
40
40
|
:rounded="false"
|
|
41
41
|
:rounded-right="true"
|
|
42
|
-
:full-height="
|
|
42
|
+
:full-height="fullHeight"
|
|
43
43
|
icon="plus"
|
|
44
44
|
:icon-size="buttonIconSize"
|
|
45
45
|
class="tw-rounded-l-none"
|
|
@@ -104,6 +104,10 @@ export default {
|
|
|
104
104
|
type: String,
|
|
105
105
|
default: undefined,
|
|
106
106
|
},
|
|
107
|
+
fullHeight: {
|
|
108
|
+
type: Boolean,
|
|
109
|
+
default: false,
|
|
110
|
+
},
|
|
107
111
|
},
|
|
108
112
|
setup(props) {
|
|
109
113
|
const numberStepperRef = `js-number-stepper-${props.id}`;
|