@xfe-repo/web-components 1.7.4 → 1.7.5
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/index.css +9 -9
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +177 -187
- package/dist/index.mjs +125 -135
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -348,16 +348,8 @@
|
|
|
348
348
|
min-width: 120px;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
/* src/EffectBrandSelect/index.module.less */
|
|
352
|
-
.index_module_input3 {
|
|
353
|
-
width: 100%;
|
|
354
|
-
}
|
|
355
|
-
.index_module_select2 {
|
|
356
|
-
width: auto;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
351
|
/* src/EffectSkuSelect/index.module.less */
|
|
360
|
-
.
|
|
352
|
+
.index_module_input3 {
|
|
361
353
|
width: 100%;
|
|
362
354
|
}
|
|
363
355
|
.index_module_image {
|
|
@@ -428,6 +420,14 @@
|
|
|
428
420
|
background-color: var(--ant-primary-1);
|
|
429
421
|
}
|
|
430
422
|
|
|
423
|
+
/* src/EffectBrandSelect/index.module.less */
|
|
424
|
+
.index_module_input4 {
|
|
425
|
+
width: 100%;
|
|
426
|
+
}
|
|
427
|
+
.index_module_select2 {
|
|
428
|
+
width: auto;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
431
|
/* src/EffectSeriesSelect/index.module.less */
|
|
432
432
|
.index_module_input5 {
|
|
433
433
|
width: 100%;
|
package/dist/index.d.mts
CHANGED
|
@@ -888,7 +888,7 @@ type Option$1 = {
|
|
|
888
888
|
value: number;
|
|
889
889
|
};
|
|
890
890
|
type BrandOptions = Option$1[];
|
|
891
|
-
|
|
891
|
+
interface Props$7 {
|
|
892
892
|
className?: string;
|
|
893
893
|
onChange?: (value?: BrandValueType, label?: string) => void;
|
|
894
894
|
value?: BrandValueType;
|
|
@@ -896,11 +896,12 @@ type Props$7 = {
|
|
|
896
896
|
disabled?: boolean;
|
|
897
897
|
categoryId?: number;
|
|
898
898
|
mode?: 'multiple' | 'tags';
|
|
899
|
+
/** 业务品牌 */
|
|
899
900
|
sysBizTypeId?: InQueryBrandComboBox['sysBizTypeId'];
|
|
900
901
|
/** 是否显示其他品牌,默认易奢堂不露出,如需露出请慎重 */
|
|
901
902
|
showOtherBrand?: boolean;
|
|
902
903
|
style?: React__default.CSSProperties;
|
|
903
|
-
}
|
|
904
|
+
}
|
|
904
905
|
declare const EffectBrandSelect: React__default.MemoExoticComponent<(props: Props$7) => react_jsx_runtime.JSX.Element>;
|
|
905
906
|
|
|
906
907
|
type TransferValueType = string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -888,7 +888,7 @@ type Option$1 = {
|
|
|
888
888
|
value: number;
|
|
889
889
|
};
|
|
890
890
|
type BrandOptions = Option$1[];
|
|
891
|
-
|
|
891
|
+
interface Props$7 {
|
|
892
892
|
className?: string;
|
|
893
893
|
onChange?: (value?: BrandValueType, label?: string) => void;
|
|
894
894
|
value?: BrandValueType;
|
|
@@ -896,11 +896,12 @@ type Props$7 = {
|
|
|
896
896
|
disabled?: boolean;
|
|
897
897
|
categoryId?: number;
|
|
898
898
|
mode?: 'multiple' | 'tags';
|
|
899
|
+
/** 业务品牌 */
|
|
899
900
|
sysBizTypeId?: InQueryBrandComboBox['sysBizTypeId'];
|
|
900
901
|
/** 是否显示其他品牌,默认易奢堂不露出,如需露出请慎重 */
|
|
901
902
|
showOtherBrand?: boolean;
|
|
902
903
|
style?: React__default.CSSProperties;
|
|
903
|
-
}
|
|
904
|
+
}
|
|
904
905
|
declare const EffectBrandSelect: React__default.MemoExoticComponent<(props: Props$7) => react_jsx_runtime.JSX.Element>;
|
|
905
906
|
|
|
906
907
|
type TransferValueType = string[];
|