@cloudbase/weda-ui 3.14.0 → 3.14.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/dist/configs/components/wd-store-product.d.ts +1 -0
- package/dist/configs/components/wd-store-product.js +1 -0
- package/dist/configs/index.d.ts +2 -0
- package/dist/style/index.css +11 -3
- package/dist/style/index.scss +1 -1
- package/dist/style/weda-ui.min.css +4 -4
- package/dist/web/components/form/location/common/mapChoose.js +27 -16
- package/dist/web/components/wd-store-home/index.css +3 -1
- package/dist/web/components/wd-store-product/index.d.ts +1 -1
- package/dist/web/components/wd-store-product/index.js +3 -2
- package/package.json +1 -1
package/dist/configs/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export declare const components: {
|
|
|
48
48
|
}>;
|
|
49
49
|
readonly 'x-platforms': readonly ["MP"];
|
|
50
50
|
}];
|
|
51
|
+
readonly isContainer: true;
|
|
51
52
|
readonly meta: {
|
|
52
53
|
readonly title: "小店商品";
|
|
53
54
|
readonly name: "WdStoreProduct";
|
|
@@ -19165,6 +19166,7 @@ declare const _default: {
|
|
|
19165
19166
|
}>;
|
|
19166
19167
|
readonly 'x-platforms': readonly ["MP"];
|
|
19167
19168
|
}];
|
|
19169
|
+
readonly isContainer: true;
|
|
19168
19170
|
readonly meta: {
|
|
19169
19171
|
readonly title: "小店商品";
|
|
19170
19172
|
readonly name: "WdStoreProduct";
|
package/dist/style/index.css
CHANGED
|
@@ -4036,7 +4036,6 @@ _:-ms-lang(x)::backdrop,
|
|
|
4036
4036
|
.wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.is-focused:not(.is-disabled), .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5:focus:not(.is-disabled) {
|
|
4037
4037
|
border-color: var(--wd-form-input-wrap-border-hover);
|
|
4038
4038
|
background-color: var(--wd-form-input-wrap-bg-focus);
|
|
4039
|
-
color: var(--wd-form-input-wrap-text-focus);
|
|
4040
4039
|
box-shadow: 0px 0px 0px 0px;
|
|
4041
4040
|
}
|
|
4042
4041
|
.wd-form-item.is-borderless .wd-form-item-wrap {
|
|
@@ -4424,7 +4423,6 @@ textarea {
|
|
|
4424
4423
|
.wd-form-item--weui .wd-form-input-wrap.is-not-h5:focus:not(.is-disabled) {
|
|
4425
4424
|
border-color: var(--wd-form-input-wrap-border-hover);
|
|
4426
4425
|
background-color: var(--wd-form-input-wrap-bg-focus);
|
|
4427
|
-
color: var(--wd-form-input-wrap-text-focus);
|
|
4428
4426
|
box-shadow: 0px 0px 0px 0px;
|
|
4429
4427
|
}
|
|
4430
4428
|
.wd-form.wd-form--weui .wd-upload__control,
|
|
@@ -4929,7 +4927,6 @@ textarea {
|
|
|
4929
4927
|
.wd-form-input-wrap.is-focused:not(.is-disabled), .wd-form-input-wrap:focus:not(.is-disabled) {
|
|
4930
4928
|
border-color: var(--wd-form-input-wrap-border-hover);
|
|
4931
4929
|
background-color: var(--wd-form-input-wrap-bg-focus);
|
|
4932
|
-
color: var(--wd-form-input-wrap-text-focus);
|
|
4933
4930
|
box-shadow: 0px 0px 0px 0px;
|
|
4934
4931
|
}
|
|
4935
4932
|
.wd-form-input-wrap.is-disabled {
|
|
@@ -9909,6 +9906,17 @@ page,
|
|
|
9909
9906
|
overflow: auto;
|
|
9910
9907
|
height: 100%;
|
|
9911
9908
|
}
|
|
9909
|
+
.wd-menulayout-body__left-menu::-webkit-scrollbar {
|
|
9910
|
+
width: 4px;
|
|
9911
|
+
height: 4px;
|
|
9912
|
+
}
|
|
9913
|
+
.wd-menulayout-body__left-menu::-webkit-scrollbar-thumb {
|
|
9914
|
+
border-radius: var(--wd-space-base-xs, 4px);
|
|
9915
|
+
background: var(--wd-color-text-disabled, rgba(0, 0, 0, 0.26));
|
|
9916
|
+
}
|
|
9917
|
+
.wd-menulayout-body__left-menu::-webkit-scrollbar-track {
|
|
9918
|
+
background-color: transparent;
|
|
9919
|
+
}
|
|
9912
9920
|
.wd-menulayout-body__left-menu .wedatea2td-menu__item {
|
|
9913
9921
|
padding: 7px 24px 7px 8px;
|
|
9914
9922
|
}
|