@ledvance/ui-biz-bundle 1.0.88 → 1.0.89
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
|
@@ -173,6 +173,7 @@ const DynamicMoodEditorPage = () => {
|
|
|
173
173
|
onChangeText={text => {
|
|
174
174
|
state.mood.name = text
|
|
175
175
|
}}
|
|
176
|
+
maxLength={33}
|
|
176
177
|
showError={state.mood.name.length > 32 || nameRepeat}
|
|
177
178
|
tipColor={nameRepeat ? '#f00' : undefined}
|
|
178
179
|
tipIcon={nameRepeat ? res.ic_text_field_input_error : undefined}
|
|
@@ -175,6 +175,7 @@ const StaticMoodEditorPage = () => {
|
|
|
175
175
|
onChangeText={text => {
|
|
176
176
|
state.mood.name = text
|
|
177
177
|
}}
|
|
178
|
+
maxLength={33}
|
|
178
179
|
showError={state.mood.name.length > 32 || nameRepeat}
|
|
179
180
|
tipColor={nameRepeat ? '#f00' : undefined}
|
|
180
181
|
tipIcon={nameRepeat ? res.ic_text_field_input_error : undefined}
|