@xfe-repo/web-components 1.7.4 → 1.7.6
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +181 -190
- package/dist/index.mjs +129 -138
- package/package.json +2 -2
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
|
@@ -719,6 +719,8 @@ type CurrencyUnit = 'yuan' | 'jiao' | 'fen';
|
|
|
719
719
|
interface CurrencyProps {
|
|
720
720
|
/** 单位 'yuan' | 'jiao' | 'fen',默认分 */
|
|
721
721
|
unit?: CurrencyUnit;
|
|
722
|
+
/** 金额展示单位,默认人民币 */
|
|
723
|
+
priceUnit?: string;
|
|
722
724
|
/** 保留的小数位,默认 2 位 */
|
|
723
725
|
toFixed?: number;
|
|
724
726
|
/** 具体金额字段 */
|
|
@@ -888,7 +890,7 @@ type Option$1 = {
|
|
|
888
890
|
value: number;
|
|
889
891
|
};
|
|
890
892
|
type BrandOptions = Option$1[];
|
|
891
|
-
|
|
893
|
+
interface Props$7 {
|
|
892
894
|
className?: string;
|
|
893
895
|
onChange?: (value?: BrandValueType, label?: string) => void;
|
|
894
896
|
value?: BrandValueType;
|
|
@@ -896,11 +898,12 @@ type Props$7 = {
|
|
|
896
898
|
disabled?: boolean;
|
|
897
899
|
categoryId?: number;
|
|
898
900
|
mode?: 'multiple' | 'tags';
|
|
901
|
+
/** 业务品牌 */
|
|
899
902
|
sysBizTypeId?: InQueryBrandComboBox['sysBizTypeId'];
|
|
900
903
|
/** 是否显示其他品牌,默认易奢堂不露出,如需露出请慎重 */
|
|
901
904
|
showOtherBrand?: boolean;
|
|
902
905
|
style?: React__default.CSSProperties;
|
|
903
|
-
}
|
|
906
|
+
}
|
|
904
907
|
declare const EffectBrandSelect: React__default.MemoExoticComponent<(props: Props$7) => react_jsx_runtime.JSX.Element>;
|
|
905
908
|
|
|
906
909
|
type TransferValueType = string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -719,6 +719,8 @@ type CurrencyUnit = 'yuan' | 'jiao' | 'fen';
|
|
|
719
719
|
interface CurrencyProps {
|
|
720
720
|
/** 单位 'yuan' | 'jiao' | 'fen',默认分 */
|
|
721
721
|
unit?: CurrencyUnit;
|
|
722
|
+
/** 金额展示单位,默认人民币 */
|
|
723
|
+
priceUnit?: string;
|
|
722
724
|
/** 保留的小数位,默认 2 位 */
|
|
723
725
|
toFixed?: number;
|
|
724
726
|
/** 具体金额字段 */
|
|
@@ -888,7 +890,7 @@ type Option$1 = {
|
|
|
888
890
|
value: number;
|
|
889
891
|
};
|
|
890
892
|
type BrandOptions = Option$1[];
|
|
891
|
-
|
|
893
|
+
interface Props$7 {
|
|
892
894
|
className?: string;
|
|
893
895
|
onChange?: (value?: BrandValueType, label?: string) => void;
|
|
894
896
|
value?: BrandValueType;
|
|
@@ -896,11 +898,12 @@ type Props$7 = {
|
|
|
896
898
|
disabled?: boolean;
|
|
897
899
|
categoryId?: number;
|
|
898
900
|
mode?: 'multiple' | 'tags';
|
|
901
|
+
/** 业务品牌 */
|
|
899
902
|
sysBizTypeId?: InQueryBrandComboBox['sysBizTypeId'];
|
|
900
903
|
/** 是否显示其他品牌,默认易奢堂不露出,如需露出请慎重 */
|
|
901
904
|
showOtherBrand?: boolean;
|
|
902
905
|
style?: React__default.CSSProperties;
|
|
903
|
-
}
|
|
906
|
+
}
|
|
904
907
|
declare const EffectBrandSelect: React__default.MemoExoticComponent<(props: Props$7) => react_jsx_runtime.JSX.Element>;
|
|
905
908
|
|
|
906
909
|
type TransferValueType = string[];
|