@pisell/materials 6.11.25 → 6.11.26
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/package.json +3 -3
- package/es/components/PisellTabbar/PisellTabbar.d.ts +0 -20
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +0 -5
- package/es/components/pisellCardList/index.d.ts +0 -107
- package/es/components/pisellGoodPassCard/index.d.ts +0 -50
- package/es/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
- package/es/components/pisellWalletPassCard/index.d.ts +0 -146
- package/es/components/productCard/index.d.ts +0 -7
- package/es/index.d.ts +0 -251
- package/lib/components/PisellTabbar/PisellTabbar.d.ts +0 -20
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +0 -5
- package/lib/components/pisellCardList/index.d.ts +0 -107
- package/lib/components/pisellGoodPassCard/index.d.ts +0 -50
- package/lib/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
- package/lib/components/pisellWalletPassCard/index.d.ts +0 -146
- package/lib/components/productCard/index.d.ts +0 -7
- package/lib/index.d.ts +0 -251
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PisellCheckboxGroupProps } from '../pisellCheckboxGroup';
|
|
3
|
-
import { PisellContextType } from '../pisell-config-provider/context';
|
|
4
|
-
import { PisellWalletPassCardProps, FormatOption } from '../pisellWalletPassCard';
|
|
5
|
-
import './index.less';
|
|
6
|
-
export interface PisellCardListProps extends Omit<PisellCheckboxGroupProps, 'options'> {
|
|
7
|
-
platform?: PisellContextType['platform'];
|
|
8
|
-
/** 当用户查看完所有记录时,底部会显示此消息 */
|
|
9
|
-
endMessage?: React.ReactNode;
|
|
10
|
-
/** 加载下次数据时的加载站位 */
|
|
11
|
-
loader?: React.ReactNode;
|
|
12
|
-
/** 是否有更多数据 */
|
|
13
|
-
hasMore: boolean;
|
|
14
|
-
/** 加载更多数据回调 */
|
|
15
|
-
loadMoreData?: () => Promise<void>;
|
|
16
|
-
/** 当前list数据 */
|
|
17
|
-
data: PisellWalletPassCardProps[];
|
|
18
|
-
/** list空数据时展示内容 */
|
|
19
|
-
empty?: React.ReactNode;
|
|
20
|
-
/** 是否展示空状态 */
|
|
21
|
-
showEmpty?: boolean;
|
|
22
|
-
/** 是否展示卡片名称 */
|
|
23
|
-
showName?: boolean;
|
|
24
|
-
/** 是否展示店铺名称 */
|
|
25
|
-
showStoreName?: boolean;
|
|
26
|
-
/** 是否展示核销金额 */
|
|
27
|
-
showRedeem?: boolean;
|
|
28
|
-
/** 是否展示余额 */
|
|
29
|
-
showBalance?: boolean;
|
|
30
|
-
/** 是否展示编码 */
|
|
31
|
-
showCode?: boolean;
|
|
32
|
-
/** 是否展示到期时间 */
|
|
33
|
-
showValidDate?: boolean;
|
|
34
|
-
/** 使用日程信息计算有效期 */
|
|
35
|
-
validDateBySchedule?: boolean;
|
|
36
|
-
/** 日程列表 */
|
|
37
|
-
scheduleList?: any[];
|
|
38
|
-
/** 是否展示详情按钮 */
|
|
39
|
-
showDetail?: boolean;
|
|
40
|
-
/** 是否展示二维码 */
|
|
41
|
-
showQrCode?: boolean;
|
|
42
|
-
/** 是否展示封面图 */
|
|
43
|
-
showCover?: boolean;
|
|
44
|
-
/** 是否余额货币单位 */
|
|
45
|
-
showBalanceSymbol?: boolean;
|
|
46
|
-
/** 卡片大小 */
|
|
47
|
-
type?: 'default' | 'mini';
|
|
48
|
-
/** 展示操作按钮 */
|
|
49
|
-
showActions?: boolean;
|
|
50
|
-
/** 操作按钮配置 */
|
|
51
|
-
actions?: {
|
|
52
|
-
/** 按钮展示方式 */
|
|
53
|
-
layout: 'expanded' | 'collapsed';
|
|
54
|
-
/** detail 按钮配置 */
|
|
55
|
-
detail?: {
|
|
56
|
-
visible: boolean;
|
|
57
|
-
iconColor: string;
|
|
58
|
-
};
|
|
59
|
-
/** edit按钮配置 */
|
|
60
|
-
edit?: {
|
|
61
|
-
visible: boolean;
|
|
62
|
-
iconColor: string;
|
|
63
|
-
dialogTitle: string;
|
|
64
|
-
enableDialog: boolean;
|
|
65
|
-
fields: {
|
|
66
|
-
name: string;
|
|
67
|
-
label: string;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
/** 编辑编辑按钮后,弹窗展示之前 */
|
|
72
|
-
beforeEdit?: (value: any, index: number) => Promise<any> | boolean | void;
|
|
73
|
-
/** 编辑弹窗点击提交 */
|
|
74
|
-
onConfirmEdit?: (value: any, index: number, data: any) => void;
|
|
75
|
-
/** 是否展示状态标识 */
|
|
76
|
-
showStatus?: boolean;
|
|
77
|
-
/** 名称标题字号字重颜色配置 */
|
|
78
|
-
nameTitleStyle?: {
|
|
79
|
-
fontSize: number;
|
|
80
|
-
fontWeight: number;
|
|
81
|
-
color: string;
|
|
82
|
-
};
|
|
83
|
-
/** 开启编辑金额 */
|
|
84
|
-
enableEditAmount?: boolean;
|
|
85
|
-
/** 编辑金额事件 */
|
|
86
|
-
onConfirmEditAmount?: (value: number, index: number, data: any) => void;
|
|
87
|
-
/** 是否使用外部详情处理 */
|
|
88
|
-
useExternalDetail?: boolean;
|
|
89
|
-
/** 详情事件 */
|
|
90
|
-
onDetail?: (value: any, index: number) => void;
|
|
91
|
-
/** 自定义余额格式化函数,如果提供则优先使用 */
|
|
92
|
-
formatBalance?: (balance?: number, option?: FormatOption) => React.ReactNode;
|
|
93
|
-
/** 自定义余额标题格式化函数,如果提供则优先使用 */
|
|
94
|
-
formatBalanceTitle?: (balanceTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
95
|
-
/** 自定义使用金额格式化函数,如果提供则优先使用 */
|
|
96
|
-
formatRedeem?: (redeem?: number, option?: FormatOption) => React.ReactNode;
|
|
97
|
-
/** 自定义使用金额标题格式化函数,如果提供则优先使用 */
|
|
98
|
-
formatRedeemTitle?: (redeemTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
99
|
-
/** 编辑金额前事件 */
|
|
100
|
-
onBeforeEditAmount?: (value: any, index: number, data: any) => Promise<any> | boolean | void;
|
|
101
|
-
/** 选项点击事件 */
|
|
102
|
-
onItemClick?: (e: React.MouseEvent<HTMLDivElement>, option: any) => void;
|
|
103
|
-
/** 是否展示选中状态的背景色 */
|
|
104
|
-
showActiveBackground?: boolean;
|
|
105
|
-
}
|
|
106
|
-
declare const _default: React.NamedExoticComponent<PisellCardListProps>;
|
|
107
|
-
export default _default;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
interface ApplicableProductDetails {
|
|
4
|
-
amount: string;
|
|
5
|
-
type: string;
|
|
6
|
-
resource_id: number;
|
|
7
|
-
title: string;
|
|
8
|
-
original_amount: string;
|
|
9
|
-
}
|
|
10
|
-
interface Discount {
|
|
11
|
-
id: number;
|
|
12
|
-
product_name: string;
|
|
13
|
-
encoded: string;
|
|
14
|
-
code: string;
|
|
15
|
-
tag: string;
|
|
16
|
-
expire_time?: string;
|
|
17
|
-
product_id: number;
|
|
18
|
-
relation_type: string;
|
|
19
|
-
par_value: string;
|
|
20
|
-
used_par_value: string;
|
|
21
|
-
limit_status: string;
|
|
22
|
-
limited_relation_product_data: any;
|
|
23
|
-
balance: string;
|
|
24
|
-
format_title: any;
|
|
25
|
-
product: any;
|
|
26
|
-
savedAmount: number;
|
|
27
|
-
isDisabled: boolean;
|
|
28
|
-
isSelected?: boolean;
|
|
29
|
-
isAvailable?: boolean;
|
|
30
|
-
isUsed?: boolean;
|
|
31
|
-
applicableProductIds?: number[];
|
|
32
|
-
applicableProductDetails: ApplicableProductDetails[];
|
|
33
|
-
appliedProductDetails: any[];
|
|
34
|
-
}
|
|
35
|
-
export interface PisellGoodPassCardProps {
|
|
36
|
-
/**数据源 */
|
|
37
|
-
dataSource: Array<Discount>;
|
|
38
|
-
/**事件 */
|
|
39
|
-
onChange?: (current: {
|
|
40
|
-
id: string | number;
|
|
41
|
-
isSelected: boolean;
|
|
42
|
-
}) => void;
|
|
43
|
-
/**样式 */
|
|
44
|
-
style: React.CSSProperties;
|
|
45
|
-
/**快捷展示排序 */
|
|
46
|
-
mixedSort?: (val: Discount[]) => Discount[];
|
|
47
|
-
isInModal: boolean;
|
|
48
|
-
}
|
|
49
|
-
declare const index: (props: PisellGoodPassCardProps) => React.JSX.Element;
|
|
50
|
-
export default index;
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
export interface FormatOption {
|
|
4
|
-
/** 原始 DOM 元素 */
|
|
5
|
-
originDom: React.ReactNode;
|
|
6
|
-
/** 是否选中状态 */
|
|
7
|
-
active: boolean;
|
|
8
|
-
/** 完整的组件数据 */
|
|
9
|
-
data: PisellWalletPassCardProps;
|
|
10
|
-
}
|
|
11
|
-
export interface PisellWalletPassCardProps {
|
|
12
|
-
id: number;
|
|
13
|
-
/** 卡片样式 */
|
|
14
|
-
type: 'default' | 'mini';
|
|
15
|
-
/** 商品名称 */
|
|
16
|
-
name: string;
|
|
17
|
-
/** 二维码 */
|
|
18
|
-
qrCode: string;
|
|
19
|
-
/** 共享店铺名称 */
|
|
20
|
-
storeName: string;
|
|
21
|
-
/** 余额 */
|
|
22
|
-
balance?: number;
|
|
23
|
-
/** 识别码编号 */
|
|
24
|
-
code: string;
|
|
25
|
-
/** 有效期 */
|
|
26
|
-
validDate: string;
|
|
27
|
-
/** 使用金额 */
|
|
28
|
-
redeem?: number;
|
|
29
|
-
/** 是否禁用 */
|
|
30
|
-
disabled?: boolean;
|
|
31
|
-
/** 禁用原因 */
|
|
32
|
-
disabledReason?: string;
|
|
33
|
-
/** 是否展示禁用原因 */
|
|
34
|
-
showDisabledReason?: boolean;
|
|
35
|
-
/** 封面图 */
|
|
36
|
-
cover?: string;
|
|
37
|
-
/** 余额标题文案 */
|
|
38
|
-
balanceTitle?: string;
|
|
39
|
-
/** 使用金额标题文案 */
|
|
40
|
-
redeemTitle?: string;
|
|
41
|
-
/** 是否选中 */
|
|
42
|
-
active?: boolean;
|
|
43
|
-
/** 是否展示商品名称 */
|
|
44
|
-
showName?: boolean;
|
|
45
|
-
/** 是否展示共享店铺名称 */
|
|
46
|
-
showStoreName?: boolean | ((data: any) => boolean);
|
|
47
|
-
/** 是否展示使用金额 */
|
|
48
|
-
showRedeem?: boolean;
|
|
49
|
-
/** 是否展示余额 */
|
|
50
|
-
showBalance?: boolean;
|
|
51
|
-
/** 是否展示识别码编号 */
|
|
52
|
-
showCode?: boolean;
|
|
53
|
-
/** 是否展示有效期 */
|
|
54
|
-
showValidDate?: boolean;
|
|
55
|
-
/** 使用日程信息计算有效期 */
|
|
56
|
-
validDateBySchedule?: boolean;
|
|
57
|
-
/** 日程列表 */
|
|
58
|
-
scheduleList?: any[];
|
|
59
|
-
/** 是否展示右上角详情按钮 */
|
|
60
|
-
showDetail?: boolean;
|
|
61
|
-
/** 是否展示qrCode */
|
|
62
|
-
showQrCode?: boolean;
|
|
63
|
-
/** 是否展示封面 */
|
|
64
|
-
showCover?: boolean;
|
|
65
|
-
/** 是否展示余额货币符号 */
|
|
66
|
-
showBalanceSymbol?: boolean;
|
|
67
|
-
/** 展示操作按钮 */
|
|
68
|
-
showActions?: boolean;
|
|
69
|
-
/** 操作按钮配置 */
|
|
70
|
-
actions?: {
|
|
71
|
-
/** 按钮展示方式 */
|
|
72
|
-
layout: 'expanded' | 'collapsed';
|
|
73
|
-
/** detail 按钮配置 */
|
|
74
|
-
detail?: {
|
|
75
|
-
visible: boolean;
|
|
76
|
-
iconColor: string;
|
|
77
|
-
};
|
|
78
|
-
/** edit按钮配置 */
|
|
79
|
-
edit?: {
|
|
80
|
-
visible: boolean;
|
|
81
|
-
iconColor: string;
|
|
82
|
-
dialogTitle: string;
|
|
83
|
-
enableDialog: boolean;
|
|
84
|
-
fields: {
|
|
85
|
-
name: string;
|
|
86
|
-
label: string;
|
|
87
|
-
};
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
/** 编辑编辑按钮后,弹窗展示之前 */
|
|
91
|
-
beforeEdit?: (value: any) => Promise<any> | boolean | void;
|
|
92
|
-
/** 编辑弹窗点击提交 */
|
|
93
|
-
onConfirmEdit?: (value: any) => void;
|
|
94
|
-
/** 编辑金额事件 */
|
|
95
|
-
onConfirmEditAmount?: (value: number) => void;
|
|
96
|
-
/** 详情按钮点击事件 */
|
|
97
|
-
onDetail?: (data: {
|
|
98
|
-
id: number;
|
|
99
|
-
name: string;
|
|
100
|
-
storeName: string;
|
|
101
|
-
balance?: number;
|
|
102
|
-
redeem?: number;
|
|
103
|
-
code: string;
|
|
104
|
-
validDate: string;
|
|
105
|
-
originData?: any;
|
|
106
|
-
}) => void;
|
|
107
|
-
/** 是否使用外部详情处理(当为 true 且提供了 onDetail 时,不显示内部模态框) */
|
|
108
|
-
useExternalDetail?: boolean;
|
|
109
|
-
/** 单选或者多选 */
|
|
110
|
-
mode?: 'multiple' | 'single';
|
|
111
|
-
/** 是否展示选中图标 */
|
|
112
|
-
showActiveIcon?: boolean;
|
|
113
|
-
/** 开启编辑金额 */
|
|
114
|
-
enableEditAmount?: boolean;
|
|
115
|
-
/** 显示状态标识 */
|
|
116
|
-
showStatus?: boolean;
|
|
117
|
-
/** 名称标题字号字重颜色配置 */
|
|
118
|
-
nameTitleStyle?: {
|
|
119
|
-
fontSize: number;
|
|
120
|
-
fontWeight: number;
|
|
121
|
-
color: string;
|
|
122
|
-
};
|
|
123
|
-
/** 卡片状态 */
|
|
124
|
-
cardStatus?: 'used' | 'expired' | 'disabled' | 'conflict' | 'lastPayment';
|
|
125
|
-
/** 自定义余额格式化函数,如果提供则优先使用 */
|
|
126
|
-
formatBalance?: (balance?: number, option?: FormatOption) => React.ReactNode;
|
|
127
|
-
/** 自定义余额标题格式化函数,如果提供则优先使用 */
|
|
128
|
-
formatBalanceTitle?: (balanceTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
129
|
-
/** 自定义使用金额格式化函数,如果提供则优先使用 */
|
|
130
|
-
formatRedeem?: (redeem?: number, option?: FormatOption) => React.ReactNode;
|
|
131
|
-
/** 自定义使用金额标题格式化函数,如果提供则优先使用 */
|
|
132
|
-
formatRedeemTitle?: (redeemTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
133
|
-
/** 最大使用金额 */
|
|
134
|
-
maxRedeem?: number;
|
|
135
|
-
/** 编辑金额前事件 */
|
|
136
|
-
onBeforeEditAmount?: (value: any) => Promise<any> | boolean | void;
|
|
137
|
-
/** 是否显示持有人 */
|
|
138
|
-
showHolderName?: boolean;
|
|
139
|
-
/** 持有人, 表单记录,展示时一般取main_field */
|
|
140
|
-
holder?: any;
|
|
141
|
-
/** 持有人点击回调 */
|
|
142
|
-
onSetHolder?: (currentValue?: any) => void;
|
|
143
|
-
[key: string]: any;
|
|
144
|
-
}
|
|
145
|
-
declare const PisellWalletPassCard: (props: PisellWalletPassCardProps) => React.JSX.Element;
|
|
146
|
-
export default PisellWalletPassCard;
|
package/lib/index.d.ts
DELETED
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* PisellFields - 字段组件命名空间
|
|
3
|
-
* @example
|
|
4
|
-
* import { PisellFields } from '@pisell/materials';
|
|
5
|
-
* <PisellFields.SingleLineText value="hello" />
|
|
6
|
-
* <PisellFields.Currency value={1000} currencySymbol="$" />
|
|
7
|
-
*/
|
|
8
|
-
export { default as PisellFields } from './components/PisellFields';
|
|
9
|
-
export type { PisellSingleLineTextProps, PisellLongTextProps, PisellNumberProps, PisellCurrencyProps, PisellPercentProps, PisellPhoneProps, CountryCode, PisellEmailProps, MailtoOptions, PisellUrlProps, PisellRatingProps, PisellSingleSelectProps, SingleSelectRef, PisellMultipleSelectProps, MultipleSelectRef, } from './components/PisellFields';
|
|
10
|
-
/**
|
|
11
|
-
* PisellMetrics - 指标展示组件命名空间
|
|
12
|
-
* @example
|
|
13
|
-
* import { PisellMetrics } from '@pisell/materials';
|
|
14
|
-
* <PisellMetrics.MetricCard title="Total Sales" value={1580} />
|
|
15
|
-
*/
|
|
16
|
-
export { default as PisellMetrics } from './components/PisellMetrics';
|
|
17
|
-
export type { PisellMetricCardProps, PisellStatisticProps, } from './components/PisellMetrics';
|
|
18
|
-
/**
|
|
19
|
-
* PisellLayouts - 布局组件命名空间
|
|
20
|
-
* @example
|
|
21
|
-
* import { PisellLayouts } from '@pisell/materials';
|
|
22
|
-
* <PisellLayouts.BasicGrid columns={3}>{children}</PisellLayouts.BasicGrid>
|
|
23
|
-
*/
|
|
24
|
-
export { default as PisellLayouts } from './components/PisellLayouts';
|
|
25
|
-
export type { PisellBasicGridProps, PisellScrollViewProps, PisellFloorMapLayoutProps, PisellFloorMapLayoutRef, FloorMapFullscreenMode, FloorMapLayoutContextValue, FloorMapLayoutProviderProps, PisellLayoutProps, CompoundedComponent, PisellRowProps, } from './components/PisellLayouts';
|
|
26
|
-
export { Affix, Alert, Anchor, Avatar, Breadcrumb, Card, Carousel, Col, ColorPicker, Descriptions, Divider, Empty, Grid, InputNumber, Mentions, Menu, Pagination, Popconfirm, Popover, Progress, Rate, Result, Row, Space, Spin, Statistic, Steps, Switch, Tag, Timeline, Tooltip, Transfer, Tree, message, notification, version, } from 'antd';
|
|
27
|
-
export { default as PisellCards } from './components/PisellCards';
|
|
28
|
-
export type { BadgeConfig, PisellBasicCardProps, TabCardProps, } from './components/PisellCards';
|
|
29
|
-
export { default as GraphicTextCard } from './components/PisellCards/components/GraphicTextCard';
|
|
30
|
-
export type { GraphicTextCardProps, GraphicTextCardSize, GraphicTextCardVariant, } from './components/PisellCards/components/GraphicTextCard';
|
|
31
|
-
export { default as MultilevelCard } from './components/PisellCards/components/MultilevelCard';
|
|
32
|
-
export type { MultilevelCardProps } from './components/PisellCards/components/MultilevelCard';
|
|
33
|
-
export { default as PisellImageCard } from './components/PisellCards/components/PisellImageCard';
|
|
34
|
-
export type { ImageDataSource, ImageFillMode, PisellImageCardProps, } from './components/PisellCards/components/PisellImageCard';
|
|
35
|
-
export { default as TabCard } from './components/PisellCards/components/TabCard';
|
|
36
|
-
export { default as TextCard } from './components/PisellCards/components/TextCard';
|
|
37
|
-
export { default as PisellProcedure } from './components/PisellProcedure';
|
|
38
|
-
export type { PisellProcedureProps, PisellProcedureRef, ProcedureBodyProps, ProcedureFooterProps, ProcedureHeaderProps, } from './components/PisellProcedure/types';
|
|
39
|
-
export { default as PisellSteps } from './components/PisellSteps';
|
|
40
|
-
export type { PisellStepItem, PisellStepsProps, } from './components/PisellSteps/types';
|
|
41
|
-
export { default as PisellSuperTabs } from './components/PisellSuperTabs';
|
|
42
|
-
export type { PisellSuperTabsProps, TabDataItem, } from './components/PisellSuperTabs';
|
|
43
|
-
export { default as PisellTabbar } from './components/PisellTabbar';
|
|
44
|
-
export type { LevelType, PisellTabbarProps, TabbarDataSource, } from './components/PisellTabbar';
|
|
45
|
-
export { default as PisellTabbarTemplate1 } from './components/PisellTabbar/template/Template1';
|
|
46
|
-
export { default as PisellTabbar2 } from './components/PisellTabbar2';
|
|
47
|
-
export { default as AppVersionControl } from './components/appVersionControl';
|
|
48
|
-
export { default as AutoComplete } from './components/auto-complete';
|
|
49
|
-
export { default as AutoCompleteNumber } from './components/auto-complete-number';
|
|
50
|
-
export { default as Badge } from './components/badge';
|
|
51
|
-
export { default as BatchEditor } from './components/batch-editor';
|
|
52
|
-
export { default as Button } from './components/button';
|
|
53
|
-
export { default as ButtonGroupEdit } from './components/buttonGroupEdit';
|
|
54
|
-
export { default as ButtonGroupPreview } from './components/buttonGroupPreview';
|
|
55
|
-
export { default as Calendar } from './components/calendar';
|
|
56
|
-
export { default as CardMetricItem } from './components/cardMetricItem';
|
|
57
|
-
export type { PisellStatisticProps as CardMetricItemProps } from './components/cardMetricItem';
|
|
58
|
-
export { default as CardPro } from './components/cardPro';
|
|
59
|
-
export { default as Cascader } from './components/cascader';
|
|
60
|
-
export { default as Checkbox } from './components/checkbox';
|
|
61
|
-
export { PisellHierarchicalSummaryList, HIERARCHICAL_SUMMARY_LIST_PREFIX_CLS, } from './components/pisellHierarchicalSummaryList';
|
|
62
|
-
export type { PisellHierarchicalSummaryListProps, PisellHierarchicalSummaryListItem, PisellHierarchicalSummaryListKey, PisellHierarchicalSummaryListLevelConfig, PisellHierarchicalSummaryListAggregateConfig, PisellHierarchicalSummaryListAggregateMode, } from './components/pisellHierarchicalSummaryList';
|
|
63
|
-
export { default as PisellDateTimeDisplay } from './components/pisellDateTimeDisplay';
|
|
64
|
-
export type { PisellDateTimeDisplayProps } from './components/pisellDateTimeDisplay';
|
|
65
|
-
export { PisellTimeRangeDisplay } from './components/pisellTimeRangeDisplay';
|
|
66
|
-
export type { PisellTimeRangeDisplayProps } from './components/pisellTimeRangeDisplay';
|
|
67
|
-
export { PisellTimeNavigator, getHorizontalAxisSlotCount, getRangeBounds, } from './components/pisellTimeNavigator';
|
|
68
|
-
export type { PisellTimeNavigatorProps, TimeNavigatorValue, TimeRangeOption, CursorMode, TimeNavigatorOrientation, } from './components/pisellTimeNavigator';
|
|
69
|
-
export { PisellReservationSchedule } from './components/pisellReservationSchedule';
|
|
70
|
-
export type { PisellReservationScheduleProps, ReservationScheduleValue, } from './components/pisellReservationSchedule';
|
|
71
|
-
export { PisellReservationScheduleBand } from './components/pisellReservationScheduleBand';
|
|
72
|
-
export type { PisellReservationScheduleBandProps, ReservationScheduleBandValue, TimeNavigatorPassthroughProps, } from './components/pisellReservationScheduleBand';
|
|
73
|
-
export { pisellTimeNavigatorLocales } from './components/pisellTimeNavigator';
|
|
74
|
-
export { default as PisellStatisticList } from './components/pisellStatisticList';
|
|
75
|
-
export { default as PisellEmpty } from './components/pisellEmpty';
|
|
76
|
-
export { default as PisellText } from './components/pisellText';
|
|
77
|
-
export { default as PisellTags } from './components/pisellTags';
|
|
78
|
-
export { default as PisellAvatar } from './components/pisellAvatar';
|
|
79
|
-
export { default as PisellCountdown } from './components/pisellCountdown';
|
|
80
|
-
export { default as AutoResizeText } from './components/auto-resize-text';
|
|
81
|
-
export { default as ClassicLayout } from './components/classicLayout';
|
|
82
|
-
export { default as Collapse } from './components/collapse';
|
|
83
|
-
export { default as Component } from './components/component';
|
|
84
|
-
export { default as ConfigProvider } from './components/config-provider';
|
|
85
|
-
export { default as CropPhoto } from './components/cropPhoto';
|
|
86
|
-
export { default as PisellContainer } from './components/pisellContainer';
|
|
87
|
-
export { default as PisellRow } from './components/pisellRow';
|
|
88
|
-
export { default as PisellBasicGrid } from './components/PisellBasicGrid';
|
|
89
|
-
export { default as PisellScrollView } from './components/PisellScrollView';
|
|
90
|
-
export { PisellFloorMapLayout, FloorMapLayoutProvider, useFloorMapLayoutContext, EMPTY_FLOOR_MAP_LAYOUT_CONTEXT, mergeFloorMapLayoutPropsFromContext, getFigmaTableCardFromMerged, renderFigmaStyleTableCard, renderFigmaStyleRoundTableCard, getRenderItemByKindTable, getRenderItemByKindRoundTable, FloorMapImageElement, FLOOR_MAP_IMAGE_ELEMENT_KIND, FLOOR_MAP_STAGE_ELEMENT_KIND, renderFloorMapFallbackPlaceholder, isFloorMapImageElementKind, findFloorMapRowByDataBinding, getFloorMapBindingPlaceholderReason, createShopFloorPlanClient, useShopFloorPlanSubscription, wrapFloorMapOnSaveWithRemotePersist, pickFloorPlanDetail, mergeFloorPlanViewRemote, shopLayoutToSceneElements, sceneElementsToShopLayout, buildFloorPlanPutBody, floorMapSavedConfigToRemotePatch, viewConfigToLayoutPayload, inferCanvasSizeFromScene, isShopFloorPlanNotFoundResponse, isHttpNotFoundError, isFloorPlanDuplicateCodeError, parseLayoutFieldToViewConfigPatch, SHOP_FLOOR_PLAN_DUPLICATE_CODE, } from './components/pisellFloorMapLayout';
|
|
91
|
-
export type { FloorMapViewConfig, FloorMapSceneElement, FloorMapCanvasNameI18n, FloorMapMergedItem, FloorMapDataSources, FloorMapItemBase, FloorMapRenderOptions, FloorMapViewportOverlayRenderArgs, FloorMapElementKindCategory, FloorMapElementKindConfig, FloorMapDataSourceRow, FloorMapBindingPlaceholderReason, ShopFloorPlanDetail, ShopFloorPlanLayoutItem, ShopFloorPlanHttpAdapter, CreateShopFloorPlanClientOptions, WrapFloorMapOnSaveWithRemotePersistParams, PostShopFloorPlanBody, PutShopFloorPlanBody, ShopFloorPlanByCodeRequestOptions, EnsureShopFloorPlanByCodeOptions, } from './components/pisellFloorMapLayout';
|
|
92
|
-
export { default as PisellViewGrid } from './components/pisellViewGrid';
|
|
93
|
-
export { default as Table } from './components/table';
|
|
94
|
-
export { default as PisellGridView } from './components/pisellGridPro/GridView';
|
|
95
|
-
export type { GridViewProps } from './components/pisellGridPro/GridView';
|
|
96
|
-
export { default as PisellToolBar } from './components/pisellGridPro/ToolBar';
|
|
97
|
-
export type { ToolBarProps } from './components/pisellGridPro/ToolBar';
|
|
98
|
-
export { default as PisellGridPro } from './components/pisellGridPro';
|
|
99
|
-
export type { GridProProps } from './components/pisellGridPro';
|
|
100
|
-
export { default as RecordView } from './components/record-view';
|
|
101
|
-
export { default as PisellInput } from './components/pisellInput';
|
|
102
|
-
export { getBankCardTypeImg } from './components/pisellInput/components/BankCard/utils';
|
|
103
|
-
export { default as PisellDatePicker } from './components/pisellDatePicker';
|
|
104
|
-
export { default as PisellCheckboxGroup } from './components/pisellCheckboxGroup';
|
|
105
|
-
export { default as PisellCustomCheckboxGroup } from './components/pisellCustomCheckboxGroup';
|
|
106
|
-
export { default as PisellInformationEntry } from './components/pisellInformationEntry';
|
|
107
|
-
export { default as PisellAdjustPrice } from './components/pisellAdjustPrice';
|
|
108
|
-
export { default as PisellAdjustPriceInputNumber } from './components/pisellAdjustPrice/PisellAdjustPriceInputNumber';
|
|
109
|
-
export { default as CustomSelect } from './components/customSelect';
|
|
110
|
-
export { default as PisellUpload } from './components/pisellUpload';
|
|
111
|
-
export { default as Translation } from './components/translation';
|
|
112
|
-
export { PisellLookup } from './components/pisellLookup';
|
|
113
|
-
export type { PisellLookupProps, PisellLookupRef, } from './components/pisellLookup';
|
|
114
|
-
export { PisellFind } from './components/pisellFind';
|
|
115
|
-
export type { PisellFindProps, PisellFindRef } from './components/pisellFind';
|
|
116
|
-
export { default as DataSourceForm } from './components/dataSourceComponents/dataSourceForm';
|
|
117
|
-
export { default as FormGroup } from './components/dataSourceComponents/dataSourceForm/group';
|
|
118
|
-
export { default as JsonWrapper } from './components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider';
|
|
119
|
-
export { default as SubmitButton } from './components/dataSourceComponents/dataSourceForm/submitButton';
|
|
120
|
-
export { default as DataSourceMenu } from './components/dataSourceComponents/dataSourceMenu';
|
|
121
|
-
export { default as DataSourceImage } from './components/dataSourceComponents/dataSourceShow/dataSourceImage';
|
|
122
|
-
export { default as DataSourceQRCode } from './components/dataSourceComponents/dataSourceShow/dataSourceQRCode';
|
|
123
|
-
export { default as DataSourceTypography } from './components/dataSourceComponents/dataSourceShow/dataSourceTypography';
|
|
124
|
-
export { default as DataSourceTable } from './components/dataSourceComponents/dataSourceTable';
|
|
125
|
-
export { default as DataSourceWrapper } from './components/dataSourceComponents/dataSourceWrapper';
|
|
126
|
-
export { default as PisellDataSourceContainer } from './components/pisellDataSourceContainer';
|
|
127
|
-
export { default as PisellRecordBoard, useRecordBoardContext, } from './components/pisellRecordBoard';
|
|
128
|
-
export { useRecordBoardShellBodyMeta } from './components/pisellRecordBoard/shellFrame';
|
|
129
|
-
export type { RecordBoardContextValue, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardProps, RecordBoardToolBarProps, RecordBoardBodyView, } from './components/pisellRecordBoard';
|
|
130
|
-
export { PisellShellFrame } from './components/pisellShellFrame';
|
|
131
|
-
export type { PisellShellFrameProps, PisellShellFrameConfig, PisellShellFrameScrollConfig, } from './components/pisellShellFrame';
|
|
132
|
-
export type { DataSourceContainerProps } from './components/pisellDataSourceContainer';
|
|
133
|
-
export { default as FormItemCheckbox } from './components/dataSourceComponents/fields/Checkbox';
|
|
134
|
-
export { default as FormItemColorPicker } from './components/dataSourceComponents/fields/ColorPicker';
|
|
135
|
-
export { default as FormItemDatePicker } from './components/dataSourceComponents/fields/DatePicker';
|
|
136
|
-
export { default as FormItemIconSelect } from './components/dataSourceComponents/fields/IconSelect';
|
|
137
|
-
export { default as FormItemInput } from './components/dataSourceComponents/fields/Input';
|
|
138
|
-
export { default as FormItemInputNumber } from './components/dataSourceComponents/fields/InputNumber';
|
|
139
|
-
export { default as FormItemRadio } from './components/dataSourceComponents/fields/Radio';
|
|
140
|
-
export { default as FormItemSelect } from './components/dataSourceComponents/fields/Select';
|
|
141
|
-
export { default as FormItemSwitch } from './components/dataSourceComponents/fields/Switch';
|
|
142
|
-
export { default as FormItemTimePicker } from './components/dataSourceComponents/fields/TimePicker';
|
|
143
|
-
export { default as FormItemTranslation } from './components/dataSourceComponents/fields/Translation';
|
|
144
|
-
export { default as BaseTranslation } from './components/dataSourceComponents/fields/Translation/BaseTranslation';
|
|
145
|
-
export { default as FormItemUpload } from './components/dataSourceComponents/fields/Upload';
|
|
146
|
-
export { default as DatePicker } from './components/date-picker';
|
|
147
|
-
export { default as Div } from './components/div';
|
|
148
|
-
export { default as DragSortTree } from './components/drag-sort-tree';
|
|
149
|
-
export { default as Drawer } from './components/drawer';
|
|
150
|
-
export { default as Dropdown } from './components/dropdown';
|
|
151
|
-
export { default as Filter } from './components/filter';
|
|
152
|
-
export { default as Form } from './components/form';
|
|
153
|
-
export { default as Icon } from './components/icon';
|
|
154
|
-
export { default as IconSelect } from './components/iconSelect';
|
|
155
|
-
export { default as Iconfont } from './components/iconfont';
|
|
156
|
-
export { default as Image } from './components/image';
|
|
157
|
-
export { default as Input } from './components/input';
|
|
158
|
-
export { default as InputNumberRange } from './components/input-number-range';
|
|
159
|
-
export { default as Keyboard } from './components/keyboard';
|
|
160
|
-
export { default as List } from './components/list';
|
|
161
|
-
export { default as loginAndRegister } from './components/login-and-register';
|
|
162
|
-
export { default as LowCodePage } from './components/lowCodePage';
|
|
163
|
-
export { default as Modal } from './components/modal';
|
|
164
|
-
export { default as OrganizationTenantSwitcher } from './components/organizationTenantSwitcher';
|
|
165
|
-
export { default as Page } from './components/page';
|
|
166
|
-
export { default as PageHeader } from './components/page-header';
|
|
167
|
-
export { default as PisellConfigProvider } from './components/pisell-config-provider';
|
|
168
|
-
export { default as PisellContext, globalConfig, } from './components/pisell-config-provider/context';
|
|
169
|
-
export { default as usePisellConfig } from './components/pisell-config-provider/hooks/usePisellConfig';
|
|
170
|
-
export { default as PisellAlert } from './components/pisellAlert';
|
|
171
|
-
export { default as PisellAnchor } from './components/pisellAnchor';
|
|
172
|
-
export { default as PisellAppCard } from './components/pisellAppCard';
|
|
173
|
-
export type { PisellAppCardProps } from './components/pisellAppCard/types';
|
|
174
|
-
export { default as PisellBatchActionBar } from './components/pisellBatchActionBar';
|
|
175
|
-
export type { BatchActionBarPosition, BatchActionConfirmConfig, BatchActionItem, DefaultActionsConfig, PisellBatchActionBarProps, } from './components/pisellBatchActionBar';
|
|
176
|
-
export { default as PisellCard } from './components/pisellCard';
|
|
177
|
-
export { default as PisellCardList } from './components/pisellCardList';
|
|
178
|
-
export { PisellCurrency } from './components/pisellCurrency';
|
|
179
|
-
export { default as PisellDraggable } from './components/pisellDraggable';
|
|
180
|
-
export { default as PisellDropSort } from './components/pisellDropSort';
|
|
181
|
-
export { default as PisellDropdown } from './components/pisellDropdown';
|
|
182
|
-
export { PisellEmail } from './components/pisellEmail';
|
|
183
|
-
export { default as PisellFilter } from './components/pisellFilter';
|
|
184
|
-
export type { PisellFilterProps } from './components/pisellFilter/type';
|
|
185
|
-
export { default as PisellFloatingPanel } from './components/pisellFloatingPanel';
|
|
186
|
-
export { default as PisellGoodPassCard } from './components/pisellGoodPassCard';
|
|
187
|
-
export { default as PisellHeaderProgressBar } from './components/pisellHeaderProgressBar';
|
|
188
|
-
export { default as PisellImageCarousels } from './components/pisellImageCarousels';
|
|
189
|
-
export { default as PisellLayout } from './components/pisellLayout';
|
|
190
|
-
export { default as PisellContent } from './components/pisellLayout/content';
|
|
191
|
-
export { default as PisellFooter } from './components/pisellLayout/footer';
|
|
192
|
-
export { default as PisellHeader } from './components/pisellLayout/header';
|
|
193
|
-
export { default as PisellSider } from './components/pisellLayout/sider';
|
|
194
|
-
export { default as PisellList01 } from './components/pisellList01';
|
|
195
|
-
export { default as PisellLoading } from './components/pisellLoading';
|
|
196
|
-
export { PisellLongText } from './components/pisellLongText';
|
|
197
|
-
export { default as DataSourceSubForm } from './components/dataSourceComponents/dataSourceSubForm';
|
|
198
|
-
export type { DataSourceSubFormProps } from './components/dataSourceComponents/dataSourceSubForm/types';
|
|
199
|
-
export { default as FormItemRecordListWrapper } from './components/dataSourceComponents/fields/RecordListWrapper';
|
|
200
|
-
export { default as FormItemTabs } from './components/dataSourceComponents/fields/Tabs';
|
|
201
|
-
export { default as PisellMenu } from './components/pisellMenu';
|
|
202
|
-
export type { PisellMenuProps } from './components/pisellMenu/types';
|
|
203
|
-
export { default as PisellMetricCard } from './components/pisellMetricCard';
|
|
204
|
-
export { default as PisellModal } from './components/pisellModal';
|
|
205
|
-
export { PisellMultipleSelect } from './components/pisellMultipleSelect';
|
|
206
|
-
export { default as PisellNavigationMenu } from './components/pisellNavigationMenu';
|
|
207
|
-
export { PisellNumber } from './components/pisellNumber';
|
|
208
|
-
export { PisellPercent } from './components/pisellPercent';
|
|
209
|
-
export { PisellPhone } from './components/pisellPhone';
|
|
210
|
-
export { default as PisellQRScanner } from './components/pisellQRScanner';
|
|
211
|
-
export type { PisellQRScannerProps } from './components/pisellQRScanner';
|
|
212
|
-
export { default as PisellQrcode } from './components/pisellQrcode';
|
|
213
|
-
export { default as PisellQuickFilter } from './components/pisellQuickFilter';
|
|
214
|
-
export type { PisellQuickFilterProps } from './components/pisellQuickFilter/type';
|
|
215
|
-
export { PisellRating } from './components/pisellRating';
|
|
216
|
-
export { default as PisellScan } from './components/pisellScan';
|
|
217
|
-
export { default as PisellSectionHeaders } from './components/pisellSectionHeaders';
|
|
218
|
-
export { PisellSingleLineText } from './components/pisellSingleLineText';
|
|
219
|
-
export { PisellSingleSelect } from './components/pisellSingleSelect';
|
|
220
|
-
export { default as PisellSort } from './components/pisellSort';
|
|
221
|
-
export type { PisellSortProps } from './components/pisellSort/type';
|
|
222
|
-
export type { PisellTagsProps } from './components/pisellTags';
|
|
223
|
-
export { default as PisellToast, useToast } from './components/pisellToast';
|
|
224
|
-
export { default as PisellTooltip } from './components/pisellTooltip';
|
|
225
|
-
export { PisellUrl } from './components/pisellUrl';
|
|
226
|
-
export { default as PisellWalletPassCard } from './components/pisellWalletPassCard';
|
|
227
|
-
export type { PisellWalletPassCardProps } from './components/pisellWalletPassCard';
|
|
228
|
-
export { default as ProductCard } from './components/productCard';
|
|
229
|
-
export { default as ProfileMenu } from './components/profileMenu';
|
|
230
|
-
export { default as QRCode } from './components/qrcode';
|
|
231
|
-
export { default as Radio } from './components/radio';
|
|
232
|
-
export { default as SectionFooters } from './components/section-footers';
|
|
233
|
-
export { default as Segmented } from './components/segmented';
|
|
234
|
-
export { default as Select } from './components/select';
|
|
235
|
-
export { default as SelectTime } from './components/select-time';
|
|
236
|
-
export { default as Skeleton } from './components/skeleton';
|
|
237
|
-
export { default as Slider } from './components/slider';
|
|
238
|
-
export { default as Sort } from './components/sort';
|
|
239
|
-
export { default as SortableList } from './components/sortableList';
|
|
240
|
-
export { default as Tabs } from './components/tabs';
|
|
241
|
-
export { default as TimePicker } from './components/time-picker';
|
|
242
|
-
export { default as TreeSelect } from './components/tree-select';
|
|
243
|
-
export { default as Typography } from './components/typography';
|
|
244
|
-
export { default as Upload } from './components/upload';
|
|
245
|
-
export { default as PublishVersionModal } from './components/versionModal';
|
|
246
|
-
export { default as VirtualKeyboard } from './components/virtual-keyboard';
|
|
247
|
-
export { default as PisellPriceKeyboard } from './components/virtual-keyboard/Amount';
|
|
248
|
-
export { default as PisellNumberKeyboard } from './components/virtual-keyboard/Number';
|
|
249
|
-
export { default as VirtualKeyboardTime } from './components/virtual-keyboard/Time';
|
|
250
|
-
export { default as VirtualInput } from './components/virtualInput';
|
|
251
|
-
export { default as WalletCard } from './components/walletCard';
|