bj-web-components 0.2.33 → 0.2.34

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.d.ts CHANGED
@@ -5,13 +5,14 @@ import { FocusEventHandler } from 'react';
5
5
  import { ForwardRefExoticComponent } from 'react';
6
6
  import { HTMLAttributes } from 'react';
7
7
  import { InputHTMLAttributes } from 'react';
8
- import { JSX } from 'react';
8
+ import { JSX as JSX_2 } from 'react';
9
9
  import { Key } from 'react';
10
10
  import { KeyboardEvent as KeyboardEvent_2 } from 'react';
11
11
  import { KeyboardEventHandler } from 'react';
12
12
  import { MouseEventHandler } from 'react';
13
13
  import { ReactElement } from 'react';
14
14
  import { ReactNode } from 'react';
15
+ import { ReactPortal } from 'react';
15
16
  import { Ref } from 'react';
16
17
  import { RefAttributes } from 'react';
17
18
  import { RefObject } from 'react';
@@ -47,6 +48,7 @@ export declare interface BCheckBoxGroupProps {
47
48
  children?: ReactNode;
48
49
  direction?: 'ltr' | 'rtl';
49
50
  variant?: BCheckBoxVariant;
51
+ shape?: BCheckBoxShape;
50
52
  }
51
53
 
52
54
  export declare interface BCheckBoxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'checked' | 'children' | 'defaultChecked' | 'onChange' | 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'style' | 'type' | 'value'> {
@@ -70,11 +72,15 @@ export declare interface BCheckBoxProps extends Omit<InputHTMLAttributes<HTMLInp
70
72
  skipGroup?: boolean;
71
73
  direction?: 'ltr' | 'rtl';
72
74
  variant?: BCheckBoxVariant;
75
+ shape?: BCheckBoxShape;
73
76
  }
74
77
 
78
+ /** 勾选框形状:方框(默认)或圆形 */
79
+ export declare type BCheckBoxShape = 'square' | 'circle';
80
+
75
81
  export declare type BCheckBoxVariant = 'dark' | 'white';
76
82
 
77
- export declare function BDropdown({ className, style, options, value, defaultValue, multiple, optionMode, searchable, searchValue, searchPlaceholder, onSearch, filterOption, emptyText, labels, t, optionRender, onChange, footer, showReset, showConfirm, resetText, confirmText, onReset, onConfirm, }: BDropdownProps): JSX.Element;
83
+ export declare function BDropdown({ className, style, options, value, defaultValue, multiple, optionMode, searchable, searchValue, searchPlaceholder, onSearch, filterOption, emptyText, labels, t, optionRender, onChange, footer, showReset, showConfirm, resetText, confirmText, onReset, onConfirm, }: BDropdownProps): JSX_2.Element;
78
84
 
79
85
  export declare interface BDropdownOption {
80
86
  label: ReactNode;
@@ -221,7 +227,59 @@ export declare type BInputSize = 'small' | 'middle' | 'large';
221
227
 
222
228
  export declare type BInputStatus = 'error' | 'warning';
223
229
 
224
- export declare function BOverlayScrollbar({ containerRef, targetRef, selector, direction, size, gap, background, showOnHover, showOnScroll, hoverSelector, horizontalInsetStart, horizontalInsetEnd, horizontalThumbLength, className, }: BOverlayScrollbarProps): JSX.Element;
230
+ export declare function BMobileDrawer({ visible, defaultVisible, title, options, value, defaultValue, onChange, onOK, onCancel, onClose, footer, t, okText, cancelText, emptyText, closable, maskClosable, maxHeight, zIndex, className, style, getContainer, }: BMobileDrawerProps): ReactPortal | null;
231
+
232
+ export declare interface BMobileDrawerOption {
233
+ /** 选项文案,单行展示,超出宽度时省略 */
234
+ label: ReactNode;
235
+ value: BMobileDrawerValue;
236
+ disabled?: boolean;
237
+ }
238
+
239
+ export declare interface BMobileDrawerProps {
240
+ /** 受控显隐;不传时由组件内部维护(defaultVisible) */
241
+ visible?: boolean;
242
+ defaultVisible?: boolean;
243
+ /** 标题,由父组件控制,例如「请选择材质」 */
244
+ title?: ReactNode;
245
+ /** 选项列表,左侧固定使用圆形 BCheckBox 多选 */
246
+ options: BMobileDrawerOption[];
247
+ /** 受控选中值 */
248
+ value?: BMobileDrawerValue[];
249
+ /** 非受控默认选中值 */
250
+ defaultValue?: BMobileDrawerValue[];
251
+ /** 勾选变化(草稿态),点击确定后才由父组件落地 */
252
+ onChange?: (value: BMobileDrawerValue[], option: BMobileDrawerOption) => void;
253
+ /** 点击确定,回传当前草稿值;关闭动作由父组件决定 */
254
+ onOK?: (value: BMobileDrawerValue[]) => void;
255
+ /** 点击取消 */
256
+ onCancel?: () => void;
257
+ /** 点击关闭图标或遮罩 */
258
+ onClose?: () => void;
259
+ /** 自定义底栏;传 false 时不渲染底栏 */
260
+ footer?: ReactNode | false;
261
+ okText?: string;
262
+ cancelText?: string;
263
+ /** 选项为空时的占位文案 */
264
+ emptyText?: ReactNode;
265
+ /** 国际化函数,用于关闭按钮 aria-label 与默认文案 */
266
+ t?: (text: string) => string;
267
+ /** 是否显示右上角关闭图标 */
268
+ closable?: boolean;
269
+ /** 点击遮罩是否关闭 */
270
+ maskClosable?: boolean;
271
+ /** 浮层高度上限,默认 86.21vh(设计稿 700 / 812) */
272
+ maxHeight?: number | string;
273
+ zIndex?: number;
274
+ className?: string;
275
+ style?: CSSProperties;
276
+ /** 挂载容器,默认 document.body */
277
+ getContainer?: () => HTMLElement;
278
+ }
279
+
280
+ export declare type BMobileDrawerValue = string | number;
281
+
282
+ export declare function BOverlayScrollbar({ containerRef, targetRef, selector, direction, size, gap, background, showOnHover, showOnScroll, hoverSelector, horizontalInsetStart, horizontalInsetEnd, horizontalThumbLength, className, }: BOverlayScrollbarProps): JSX_2.Element;
225
283
 
226
284
  export declare interface BOverlayScrollbarProps {
227
285
  containerRef: RefObject<HTMLElement | null>;
@@ -240,6 +298,63 @@ export declare interface BOverlayScrollbarProps {
240
298
  className?: string;
241
299
  }
242
300
 
301
+ export declare const BRadio: typeof BRadio_2 & {
302
+ Group: typeof Group_2;
303
+ Button: typeof Button;
304
+ __ANT_RADIO: boolean;
305
+ };
306
+
307
+ declare const BRadio_2: ForwardRefExoticComponent<BRadioProps & RefAttributes<HTMLInputElement>>;
308
+
309
+ export declare interface BRadioGroupProps {
310
+ className?: string;
311
+ style?: CSSProperties;
312
+ id?: string;
313
+ name?: string;
314
+ options?: Array<RadioOptionType | string | number>;
315
+ disabled?: boolean;
316
+ defaultValue?: RadioValueType;
317
+ value?: RadioValueType;
318
+ onChange?: (event: RadioChangeEvent) => void;
319
+ children?: ReactNode;
320
+ direction?: 'ltr' | 'rtl';
321
+ variant?: BRadioVariant;
322
+ /** 组内单选的呈现形态,缺省时回落到子项的 `BRadio.Button` 声明 */
323
+ optionType?: RadioGroupOptionType;
324
+ buttonStyle?: RadioGroupButtonStyle;
325
+ /** 仅作用于 `optionType="button"` 的按钮高度 */
326
+ size?: BRadioSize;
327
+ onMouseEnter?: MouseEventHandler<HTMLDivElement>;
328
+ onMouseLeave?: MouseEventHandler<HTMLDivElement>;
329
+ onFocus?: FocusEventHandler<HTMLDivElement>;
330
+ onBlur?: FocusEventHandler<HTMLDivElement>;
331
+ }
332
+
333
+ export declare interface BRadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'checked' | 'children' | 'defaultChecked' | 'onChange' | 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'size' | 'style' | 'type' | 'value'> {
334
+ className?: string;
335
+ style?: CSSProperties;
336
+ checked?: boolean;
337
+ defaultChecked?: boolean;
338
+ disabled?: boolean;
339
+ onChange?: (event: RadioChangeEvent) => void;
340
+ onClick?: MouseEventHandler<HTMLInputElement>;
341
+ onMouseEnter?: MouseEventHandler<HTMLLabelElement>;
342
+ onMouseLeave?: MouseEventHandler<HTMLLabelElement>;
343
+ onFocus?: FocusEventHandler<HTMLInputElement>;
344
+ onBlur?: FocusEventHandler<HTMLInputElement>;
345
+ onKeyDown?: KeyboardEventHandler<HTMLInputElement>;
346
+ onKeyPress?: KeyboardEventHandler<HTMLInputElement>;
347
+ onKeyUp?: KeyboardEventHandler<HTMLInputElement>;
348
+ value?: RadioValueType;
349
+ children?: ReactNode;
350
+ direction?: 'ltr' | 'rtl';
351
+ variant?: BRadioVariant;
352
+ }
353
+
354
+ export declare type BRadioSize = 'large' | 'middle' | 'small';
355
+
356
+ export declare type BRadioVariant = 'dark' | 'white' | 'primary';
357
+
243
358
  export declare type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
244
359
 
245
360
  export declare const BTable: typeof BTable_2 & {
@@ -247,9 +362,9 @@ export declare const BTable: typeof BTable_2 & {
247
362
  ColumnGroup: typeof ColumnGroup;
248
363
  };
249
364
 
250
- declare function BTable_2<RecordType extends object>({ columns, dataSource, rowKey, preserveSelectedRowKeys, rowSelection, pagination, loading, bordered, size, showHeader, emptyText, emptyImage, emptyHeight, t, className, style, rowClassName, sortDirections, onChange, children, title, footer, summary, tableLayout, components, onRow, onHeaderRow, id, scroll, locale, groupCollapse, }: TableProps<RecordType>): JSX.Element;
365
+ declare function BTable_2<RecordType extends object>({ columns, dataSource, rowKey, preserveSelectedRowKeys, rowSelection, pagination, loading, bordered, size, showHeader, emptyText, emptyImage, emptyHeight, t, className, style, rowClassName, sortDirections, onChange, children, title, footer, summary, tableLayout, components, onRow, onHeaderRow, id, scroll, locale, groupCollapse, }: TableProps<RecordType>): JSX_2.Element;
251
366
 
252
- export declare function BTabs({ activeKey, children, centered, className, defaultActiveKey, id, items, onChange, onTabClick, style, tabBarGutter, tabBarStyle, tabPosition, type, }: BTabsProps): JSX.Element;
367
+ export declare function BTabs({ activeKey, children, centered, className, defaultActiveKey, id, items, onChange, onTabClick, style, tabBarGutter, tabBarStyle, tabPosition, type, }: BTabsProps): JSX_2.Element;
253
368
 
254
369
  export declare namespace BTabs {
255
370
  var TabPane: TabPane;
@@ -291,11 +406,11 @@ export declare interface BTabsTabPaneProps extends Omit<BTabsItem, 'key' | 'labe
291
406
 
292
407
  export declare type BTabsType = 'line' | 'card';
293
408
 
294
- declare function BTooltip({ children, placement, content, variant, className, style, getPopupContainer, getAnchorElement, color, fontColor, autoAdjustOverflow, }: ContentTooltipProps): JSX.Element;
409
+ declare function BTooltip({ children, placement, content, variant, className, style, getPopupContainer, getAnchorElement, color, fontColor, autoAdjustOverflow, }: ContentTooltipProps): JSX_2.Element;
295
410
  export { BTooltip }
296
411
  export { BTooltip as ContentTooltip }
297
412
 
298
- export declare function BuCategoryDropdown({ data, value, onChange, placeholder, disabled, maxVisible, className, style, getPopupContainer, dropdownStyle: customDropdownStyle, }: BuCategoryDropdownProps): JSX.Element;
413
+ export declare function BuCategoryDropdown({ data, value, onChange, placeholder, disabled, maxVisible, className, style, getPopupContainer, dropdownStyle: customDropdownStyle, }: BuCategoryDropdownProps): JSX_2.Element;
299
414
 
300
415
  export declare interface BuCategoryDropdownProps {
301
416
  /** 分类树数据 */
@@ -351,7 +466,7 @@ export declare interface BuEmptyInputBoxProps {
351
466
  }
352
467
 
353
468
  export declare const BuIcon: {
354
- ({ type, style, onClick, className, ...rest }: BuIconProps): JSX.Element;
469
+ ({ type, style, onClick, className, ...rest }: BuIconProps): JSX_2.Element;
355
470
  displayName: string;
356
471
  };
357
472
 
@@ -426,7 +541,7 @@ export declare interface BuInputProps {
426
541
 
427
542
  export declare type BuInputType = 'input' | 'textarea' | 'number';
428
543
 
429
- export declare function BuModal({ open, title, mode, children, okText, cancelText, onOk, onCancel, onClose, activeLang, onLangChange, labels, hint, confirmLoading, width, className, style, }: BuModalProps): JSX.Element | null;
544
+ export declare function BuModal({ open, title, mode, children, okText, cancelText, onOk, onCancel, onClose, activeLang, onLangChange, labels, hint, confirmLoading, width, className, style, }: BuModalProps): JSX_2.Element | null;
430
545
 
431
546
  export declare interface BuModalProps {
432
547
  /** 是否显示弹窗 */
@@ -468,7 +583,7 @@ export declare interface BuModalProps {
468
583
  style?: CSSProperties;
469
584
  }
470
585
 
471
- export declare function BuProductField({ options, value, onChange, placeholder, emptyText, onManageField, multiple, showSearch, showSort, addButtonText, onAdd, labels, className, style, getPopupContainer, }: BuProductFieldProps): JSX.Element;
586
+ export declare function BuProductField({ options, value, onChange, placeholder, emptyText, onManageField, multiple, showSearch, showSort, addButtonText, onAdd, labels, className, style, getPopupContainer, }: BuProductFieldProps): JSX_2.Element;
472
587
 
473
588
  export declare interface BuProductFieldProps {
474
589
  /** 可选项列表 */
@@ -511,7 +626,7 @@ export declare interface BuProductFieldProps {
511
626
  }
512
627
 
513
628
  export declare const BuSwitch: {
514
- ({ checked: controlledChecked, defaultChecked, onChange, disabled, loading, checkedChildren, unCheckedChildren, theme, activeColor, inactiveColor, className, style, }: BuSwitchProps): JSX.Element;
629
+ ({ checked: controlledChecked, defaultChecked, onChange, disabled, loading, checkedChildren, unCheckedChildren, theme, activeColor, inactiveColor, className, style, }: BuSwitchProps): JSX_2.Element;
515
630
  displayName: string;
516
631
  };
517
632
 
@@ -545,6 +660,8 @@ export declare interface BuSwitchProps {
545
660
  /** 开关颜色主题 */
546
661
  export declare type BuSwitchTheme = 'light' | 'dark';
547
662
 
663
+ declare const Button: ForwardRefExoticComponent<BRadioProps & RefAttributes<HTMLInputElement>>;
664
+
548
665
  export declare interface CategoryItem {
549
666
  /** 唯一标识 */
550
667
  value: string;
@@ -685,7 +802,7 @@ export declare interface ColumnType<RecordType> extends ColumnSharedType<RecordT
685
802
 
686
803
  export declare type CompareFn<RecordType> = (first: RecordType, second: RecordType, sortOrder?: SortOrder) => number;
687
804
 
688
- export declare function ConfirmTooltip({ placement, title, okText, cancelText, onOk, onCancel, className, style, }: ConfirmTooltipProps): JSX.Element;
805
+ export declare function ConfirmTooltip({ placement, title, okText, cancelText, onOk, onCancel, className, style, }: ConfirmTooltipProps): JSX_2.Element;
689
806
 
690
807
  export declare interface ConfirmTooltipProps extends BaseTooltipProps {
691
808
  title?: string;
@@ -735,7 +852,7 @@ export declare interface ExpandableConfig<RecordType> {
735
852
  fixed?: FixedType;
736
853
  }
737
854
 
738
- export declare function FileCard(props: FileCardProps): JSX.Element;
855
+ export declare function FileCard(props: FileCardProps): JSX_2.Element;
739
856
 
740
857
  export declare interface FileCardProps {
741
858
  /** 文件名 */
@@ -788,6 +905,8 @@ export declare type GetRowKey<RecordType> = (record: RecordType, index?: number)
788
905
 
789
906
  declare const Group: ForwardRefExoticComponent<BCheckBoxGroupProps & RefAttributes<HTMLDivElement>>;
790
907
 
908
+ declare const Group_2: ForwardRefExoticComponent<BRadioGroupProps & RefAttributes<HTMLDivElement>>;
909
+
791
910
  export declare interface GroupCollapseConfig<RecordType> {
792
911
  /** Identify group header records. Defaults to `record.isGroup`. */
793
912
  isGroupRow?: (record: RecordType, index: number) => boolean;
@@ -813,7 +932,7 @@ export declare type ModalMode = 'standard' | 'bilingual' | 'single';
813
932
 
814
933
  export declare type OverlayScrollbarDirection = 'vertical' | 'horizontal' | 'both';
815
934
 
816
- export declare const Pagination: (props: PaginationProps) => JSX.Element | null;
935
+ export declare const Pagination: (props: PaginationProps) => JSX_2.Element | null;
817
936
 
818
937
  export declare type PaginationAlign = 'start' | 'center' | 'end';
819
938
 
@@ -878,6 +997,32 @@ export declare interface ProgressTooltipProps extends BaseTooltipProps {
878
997
  progress?: number;
879
998
  }
880
999
 
1000
+ export declare interface RadioChangeEvent {
1001
+ target: RadioChangeEventTarget;
1002
+ stopPropagation: () => void;
1003
+ preventDefault: () => void;
1004
+ nativeEvent: Event;
1005
+ }
1006
+
1007
+ export declare interface RadioChangeEventTarget extends BRadioProps {
1008
+ checked: boolean;
1009
+ value: RadioValueType;
1010
+ }
1011
+
1012
+ export declare type RadioGroupButtonStyle = 'outline' | 'solid';
1013
+
1014
+ export declare type RadioGroupOptionType = 'default' | 'button';
1015
+
1016
+ export declare interface RadioOptionType {
1017
+ label: ReactNode;
1018
+ value: RadioValueType;
1019
+ style?: CSSProperties;
1020
+ disabled?: boolean;
1021
+ onChange?: (event: RadioChangeEvent) => void;
1022
+ }
1023
+
1024
+ export declare type RadioValueType = string | number | boolean;
1025
+
881
1026
  export declare interface RenderedCell<RecordType> {
882
1027
  children?: ReactNode;
883
1028
  props?: CellType<RecordType>;
@@ -887,7 +1032,7 @@ declare type RowClassName<RecordType> = (record: RecordType, index: number, inde
887
1032
 
888
1033
  declare type RowSelectMethod = 'all' | 'none' | 'invert' | 'single' | 'multiple';
889
1034
 
890
- export declare function SkuInputCard({ id, name, onNameChange, mode, activeLang, onLangChange, showBody, error, onDelete, onPreviewImage, onDeleteImage, onUpload, onAssociate, images, labels, inputEvents, className, style, options, optionFilterProp, onSelect, onSearch, open: controlledOpen, onDropdownVisibleChange, }: SkuInputCardProps): JSX.Element;
1035
+ export declare function SkuInputCard({ id, name, onNameChange, mode, activeLang, onLangChange, showBody, error, onDelete, onPreviewImage, onDeleteImage, onUpload, onAssociate, images, labels, inputEvents, className, style, options, optionFilterProp, onSelect, onSearch, open: controlledOpen, onDropdownVisibleChange, }: SkuInputCardProps): JSX_2.Element;
891
1036
 
892
1037
  export declare interface SkuInputCardProps {
893
1038
  /** Drag handle id, for external DnD libraries */
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./web/Icon/Icon.js"),e=require("./web/Tooltip/ConfirmTooltip.js"),t=require("./web/Tooltip/ProgressTooltip.js"),r=require("./web/Tooltip/ContentTooltip.js"),n=require("./web/Tooltip/TooltipWrapper.js"),u=require("./web/SkuInputCard/SkuInputCard.js"),i=require("./web/Input/Input.js"),c=require("./web/BasicInput/BInput.js"),p=require("./web/Tabs/BTabs.js"),a=require("./web/Tabs/TabPane.js"),l=require("./web/EmptyInputBox/EmptyInputBox.js"),s=require("./web/Modal/Modal.js"),B=require("./web/ProductField/ProductField.js"),q=require("./web/CategoryDropdown/CategoryDropdown.js"),d=require("./web/Pagination/Pagination.js"),T=require("./web/FileCard/FileCard.js"),C=require("./web/Switch/Switch.js"),b=require("./web/InputNumber/BInputNumber.js"),I=require("./web/Table/BTable.js"),m=require("./web/Table/Column.js"),P=require("./web/Table/ColumnGroup.js"),g=require("./web/CheckBox/index.js"),y=require("./web/OverlayScrollbar/BOverlayScrollbar.js"),S=require("./web/Dropdown/BDropdown.js");exports.BuIcon=o;exports.ConfirmTooltip=e;exports.ProgressTooltip=t;exports.BTooltip=r;exports.ContentTooltip=r;exports.TooltipWrapper=n;exports.SkuInputCard=u;exports.BuInput=i;exports.BInput=c;exports.BTabs=p.default;exports.TabPane=a.TabPane;exports.BuEmptyInputBox=l;exports.BuModal=s;exports.BuProductField=B;exports.BuCategoryDropdown=q;exports.Pagination=d;exports.FileCard=T;exports.BuSwitch=C;exports.BInputNumber=b;exports.BTable=I.BTable;exports.Column=m;exports.ColumnGroup=P;exports.BCheckBox=g.BCheckBox;exports.BOverlayScrollbar=y;exports.BDropdown=S.BDropdown;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./web/Icon/Icon.js"),o=require("./web/Tooltip/ConfirmTooltip.js"),t=require("./web/Tooltip/ProgressTooltip.js"),r=require("./web/Tooltip/ContentTooltip.js"),n=require("./web/Tooltip/TooltipWrapper.js"),u=require("./web/SkuInputCard/SkuInputCard.js"),i=require("./web/Input/Input.js"),c=require("./web/BasicInput/BInput.js"),a=require("./web/Tabs/BTabs.js"),l=require("./web/Tabs/TabPane.js"),s=require("./web/EmptyInputBox/EmptyInputBox.js"),p=require("./web/Modal/Modal.js"),B=require("./web/ProductField/ProductField.js"),q=require("./web/CategoryDropdown/CategoryDropdown.js"),d=require("./web/Pagination/Pagination.js"),T=require("./web/FileCard/FileCard.js"),b=require("./web/Switch/Switch.js"),C=require("./web/InputNumber/BInputNumber.js"),I=require("./web/Table/BTable.js"),m=require("./web/Table/Column.js"),w=require("./web/Table/ColumnGroup.js"),P=require("./web/CheckBox/index.js"),g=require("./web/OverlayScrollbar/BOverlayScrollbar.js"),y=require("./web/Dropdown/BDropdown.js"),D=require("./web/MobileDrawer/BMobileDrawer.js"),S=require("./web/Radio/index.js");exports.BuIcon=e;exports.ConfirmTooltip=o;exports.ProgressTooltip=t;exports.BTooltip=r;exports.ContentTooltip=r;exports.TooltipWrapper=n;exports.SkuInputCard=u;exports.BuInput=i;exports.BInput=c;exports.BTabs=a.default;exports.TabPane=l.TabPane;exports.BuEmptyInputBox=s;exports.BuModal=p;exports.BuProductField=B;exports.BuCategoryDropdown=q;exports.Pagination=d;exports.FileCard=T;exports.BuSwitch=b;exports.BInputNumber=C;exports.BTable=I.BTable;exports.Column=m;exports.ColumnGroup=w;exports.BCheckBox=P.BCheckBox;exports.BOverlayScrollbar=g;exports.BDropdown=y.BDropdown;exports.BMobileDrawer=D.BMobileDrawer;exports.BRadio=S.BRadio;
package/dist/index.mjs CHANGED
@@ -6,46 +6,50 @@ import { default as x } from "./web/Tooltip/TooltipWrapper.mjs";
6
6
  import { default as B } from "./web/SkuInputCard/SkuInputCard.mjs";
7
7
  import { default as i } from "./web/Input/Input.mjs";
8
8
  import { default as T } from "./web/BasicInput/BInput.mjs";
9
- import { default as b } from "./web/Tabs/BTabs.mjs";
10
- import { TabPane as P } from "./web/Tabs/TabPane.mjs";
11
- import { default as w } from "./web/EmptyInputBox/EmptyInputBox.mjs";
12
- import { default as S } from "./web/Modal/Modal.mjs";
13
- import { default as k } from "./web/ProductField/ProductField.mjs";
9
+ import { default as I } from "./web/Tabs/BTabs.mjs";
10
+ import { TabPane as w } from "./web/Tabs/TabPane.mjs";
11
+ import { default as g } from "./web/EmptyInputBox/EmptyInputBox.mjs";
12
+ import { default as D } from "./web/Modal/Modal.mjs";
13
+ import { default as h } from "./web/ProductField/ProductField.mjs";
14
14
  import { default as F } from "./web/CategoryDropdown/CategoryDropdown.mjs";
15
- import { default as E } from "./web/Pagination/Pagination.mjs";
16
- import { default as M } from "./web/FileCard/FileCard.mjs";
15
+ import { default as v } from "./web/Pagination/Pagination.mjs";
16
+ import { default as G } from "./web/FileCard/FileCard.mjs";
17
17
  import { default as O } from "./web/Switch/Switch.mjs";
18
- import { default as j } from "./web/InputNumber/BInputNumber.mjs";
19
- import { BTable as z } from "./web/Table/BTable.mjs";
20
- import { default as H } from "./web/Table/Column.mjs";
21
- import { default as K } from "./web/Table/ColumnGroup.mjs";
22
- import { BCheckBox as Q } from "./web/CheckBox/index.mjs";
18
+ import { default as W } from "./web/InputNumber/BInputNumber.mjs";
19
+ import { BTable as q } from "./web/Table/BTable.mjs";
20
+ import { default as A } from "./web/Table/Column.mjs";
21
+ import { default as J } from "./web/Table/ColumnGroup.mjs";
22
+ import { BCheckBox as L } from "./web/CheckBox/index.mjs";
23
23
  import { default as U } from "./web/OverlayScrollbar/BOverlayScrollbar.mjs";
24
24
  import { BDropdown as X } from "./web/Dropdown/BDropdown.mjs";
25
+ import { BMobileDrawer as Z } from "./web/MobileDrawer/BMobileDrawer.mjs";
26
+ import { BRadio as $ } from "./web/Radio/index.mjs";
25
27
  export {
26
- Q as BCheckBox,
28
+ L as BCheckBox,
27
29
  X as BDropdown,
28
30
  T as BInput,
29
- j as BInputNumber,
31
+ W as BInputNumber,
32
+ Z as BMobileDrawer,
30
33
  U as BOverlayScrollbar,
31
- z as BTable,
32
- b as BTabs,
34
+ $ as BRadio,
35
+ q as BTable,
36
+ I as BTabs,
33
37
  l as BTooltip,
34
38
  F as BuCategoryDropdown,
35
- w as BuEmptyInputBox,
39
+ g as BuEmptyInputBox,
36
40
  t as BuIcon,
37
41
  i as BuInput,
38
- S as BuModal,
39
- k as BuProductField,
42
+ D as BuModal,
43
+ h as BuProductField,
40
44
  O as BuSwitch,
41
- H as Column,
42
- K as ColumnGroup,
45
+ A as Column,
46
+ J as ColumnGroup,
43
47
  a as ConfirmTooltip,
44
48
  m as ContentTooltip,
45
- M as FileCard,
46
- E as Pagination,
49
+ G as FileCard,
50
+ v as Pagination,
47
51
  p as ProgressTooltip,
48
52
  B as SkuInputCard,
49
- P as TabPane,
53
+ w as TabPane,
50
54
  x as TooltipWrapper
51
55
  };