@designcrowd/fe-shared-lib 1.0.4-ast-number-stepper → 1.0.4-ast-number-stepper-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
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
<div
|
|
22
22
|
v-show="isMenuVisible"
|
|
23
|
-
class="tw-origin-top-right tw-absolute tw-left-0 tw-mt-2 tw-w-full tw-rounded-md tw-shadow-lg tw-bg-white tw-ring-1 tw-ring-black tw-ring-opacity-5"
|
|
23
|
+
class="tw-origin-top-right tw-absolute tw-left-0 tw-mt-2 tw-w-full tw-rounded-md tw-shadow-lg tw-bg-white tw-ring-1 tw-ring-black tw-ring-opacity-5 tw-z-20"
|
|
24
24
|
:class="[
|
|
25
25
|
menuElementClasses,
|
|
26
26
|
{
|
|
@@ -21,9 +21,7 @@
|
|
|
21
21
|
<input
|
|
22
22
|
:ref="numberStepperRef"
|
|
23
23
|
class="tw-w-full tw-text-center tw-border tw-border-solid tw-border-secondary-200"
|
|
24
|
-
:class="
|
|
25
|
-
'tw-text-secondary-500': darkTextInput,
|
|
26
|
-
}"
|
|
24
|
+
:class="inputClasses"
|
|
27
25
|
type="text"
|
|
28
26
|
:value="number"
|
|
29
27
|
pattern="[0-9]"
|
|
@@ -100,8 +98,8 @@ export default {
|
|
|
100
98
|
type: String,
|
|
101
99
|
default: 'medium',
|
|
102
100
|
},
|
|
103
|
-
|
|
104
|
-
type:
|
|
101
|
+
inputClasses: {
|
|
102
|
+
type: String,
|
|
105
103
|
default: undefined,
|
|
106
104
|
},
|
|
107
105
|
},
|