@designcrowd/fe-shared-lib 1.1.3-rte-icons-13 → 1.1.3-rte-icons-15
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
|
@@ -47,7 +47,7 @@ export const Primary = () => {
|
|
|
47
47
|
</div>
|
|
48
48
|
<div class="tw-h-8 tw-mt-4 tw-w-64">
|
|
49
49
|
<div> Outer size dependent</div>
|
|
50
|
-
<NumberStepper size="xs" :full-height="true" :input-classes="'tw-
|
|
50
|
+
<NumberStepper size="xs" :full-height="true" :input-classes="'tw-min-w-12'" v-model="numberValue" id="id2" :min="18" :max="25" :disabled="false" />
|
|
51
51
|
</div>
|
|
52
52
|
</div>
|
|
53
53
|
`,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="tw-flex tw-items-stretch">
|
|
2
|
+
<div class="tw-flex tw-items-stretch" :class="containerClass">
|
|
3
3
|
<Button
|
|
4
4
|
variant="flat"
|
|
5
5
|
icon="minus"
|
|
@@ -41,8 +41,10 @@
|
|
|
41
41
|
:min="min"
|
|
42
42
|
:max="max"
|
|
43
43
|
:model-value="number"
|
|
44
|
-
element-classes="
|
|
45
|
-
|
|
44
|
+
:element-classes="[
|
|
45
|
+
inputClasses,
|
|
46
|
+
'tw-w-full tw-text-center tw-border tw-border-solid tw-border-grayscale-500 tw-border-l-0 tw-border-r-0 tw-rounded-none',
|
|
47
|
+
]"
|
|
46
48
|
:rounded-corners="false"
|
|
47
49
|
@wheel="onMouseWheel"
|
|
48
50
|
@input="onSetInput"
|
|
@@ -121,6 +123,10 @@ export default {
|
|
|
121
123
|
type: String,
|
|
122
124
|
default: undefined,
|
|
123
125
|
},
|
|
126
|
+
containerClass: {
|
|
127
|
+
type: String,
|
|
128
|
+
default: undefined,
|
|
129
|
+
},
|
|
124
130
|
fullHeight: {
|
|
125
131
|
type: Boolean,
|
|
126
132
|
default: false,
|