@winchsa/ui 0.1.42 → 0.1.44
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/README.md
CHANGED
|
@@ -131,4 +131,8 @@ The `bump` command in `package.json` does the following:
|
|
|
131
131
|
|
|
132
132
|
After running `pnpm run bump`, go to **GitHub** → **Releases** and create a new release based on the commit generated. This will trigger the `publish.yaml` GitHub Actions workflow, which handles the actual publishing process
|
|
133
133
|
|
|
134
|
+
**Publish to npm **
|
|
135
|
+
|
|
136
|
+
``bash
|
|
134
137
|
npm publish --access public
|
|
138
|
+
```
|
|
@@ -885,7 +885,7 @@ $btn-hover-overlay-opacity: (
|
|
|
885
885
|
.app-textarea,
|
|
886
886
|
.app-picker-field {
|
|
887
887
|
.v-text-field .v-input__details {
|
|
888
|
-
padding-inline-start: 0;
|
|
888
|
+
padding-inline-start: 0 !important;
|
|
889
889
|
}
|
|
890
890
|
|
|
891
891
|
.v-field--variant-outlined.v-field--focused .v-field__outline {
|
|
@@ -18616,7 +18616,7 @@ body {
|
|
|
18616
18616
|
.v-application .app-combobox .v-text-field .v-input__details,
|
|
18617
18617
|
.v-application .app-textarea .v-text-field .v-input__details,
|
|
18618
18618
|
.v-application .app-picker-field .v-text-field .v-input__details {
|
|
18619
|
-
padding-inline-start: 0;
|
|
18619
|
+
padding-inline-start: 0 !important;
|
|
18620
18620
|
}
|
|
18621
18621
|
.v-application .app-text-field .v-field--variant-outlined.v-field--focused .v-field__outline,
|
|
18622
18622
|
.v-application .app-select .v-field--variant-outlined.v-field--focused .v-field__outline,
|
|
@@ -194,11 +194,14 @@ const useFormValidation = () => {
|
|
|
194
194
|
const scrollToError = async () => {
|
|
195
195
|
validationType.value = "input";
|
|
196
196
|
await (0, _vue.nextTick)(() => {
|
|
197
|
-
const
|
|
198
|
-
el?.
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
197
|
+
const elements = document.querySelectorAll(".v-messages__message");
|
|
198
|
+
const el = Array.from(elements).find(element => element.textContent?.trim());
|
|
199
|
+
if (el) {
|
|
200
|
+
el.scrollIntoView({
|
|
201
|
+
behavior: "smooth",
|
|
202
|
+
block: "center"
|
|
203
|
+
});
|
|
204
|
+
}
|
|
202
205
|
});
|
|
203
206
|
};
|
|
204
207
|
return {
|
|
@@ -180,11 +180,14 @@ export const useFormValidation = () => {
|
|
|
180
180
|
const scrollToError = async () => {
|
|
181
181
|
validationType.value = "input";
|
|
182
182
|
await nextTick(() => {
|
|
183
|
-
const
|
|
184
|
-
el?.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
183
|
+
const elements = document.querySelectorAll(".v-messages__message");
|
|
184
|
+
const el = Array.from(elements).find((element) => element.textContent?.trim());
|
|
185
|
+
if (el) {
|
|
186
|
+
el.scrollIntoView({
|
|
187
|
+
behavior: "smooth",
|
|
188
|
+
block: "center"
|
|
189
|
+
});
|
|
190
|
+
}
|
|
188
191
|
});
|
|
189
192
|
};
|
|
190
193
|
return {
|