@designcrowd/fe-shared-lib 1.0.4-ast-number-stepper → 1.0.4-ast-number-stepper-1

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": "@designcrowd/fe-shared-lib",
3
- "version": "1.0.4-ast-number-stepper",
3
+ "version": "1.0.4-ast-number-stepper-1",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -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
- darkTextInput: {
104
- type: Boolean,
101
+ inputClasses: {
102
+ type: String,
105
103
  default: undefined,
106
104
  },
107
105
  },