@pisell/materials 6.11.45 → 6.11.46
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/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +2 -2
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +2 -2
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.js +3 -31
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.less +5 -5
- package/es/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
- package/es/components/pisellFloorMapLayout/components/ViewControls.js +45 -64
- package/es/components/pisellFloorMapLayout/components/ViewControls.less +65 -131
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +1 -1
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.js +1 -25
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.less +5 -5
- package/lib/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControls.js +62 -107
- package/lib/components/pisellFloorMapLayout/components/ViewControls.less +65 -131
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +1 -1
- package/package.json +3 -3
- package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +0 -9
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +0 -8
- package/es/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +0 -14
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +0 -13
- package/es/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +0 -17
- package/es/components/pisellRecordBoard/shellFrame/index.d.ts +0 -30
- package/es/components/pisellRecordBoard/types.d.ts +0 -789
- package/es/index.d.ts +0 -265
- package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +0 -9
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +0 -8
- package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +0 -14
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +0 -13
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +0 -17
- package/lib/components/pisellRecordBoard/shellFrame/index.d.ts +0 -30
- package/lib/components/pisellRecordBoard/types.d.ts +0 -789
- package/lib/index.d.ts +0 -265
package/es/index.d.ts
DELETED
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
import './pisell-materials.tw.css';
|
|
2
|
-
/**
|
|
3
|
-
* PisellFields - 字段组件命名空间
|
|
4
|
-
* @example
|
|
5
|
-
* import { PisellFields } from '@pisell/materials';
|
|
6
|
-
* <PisellFields.SingleLineText value="hello" />
|
|
7
|
-
* <PisellFields.Currency value={1000} currencySymbol="$" />
|
|
8
|
-
*/
|
|
9
|
-
export { default as PisellFields } from './components/PisellFields';
|
|
10
|
-
export type { PisellSingleLineTextProps, PisellLongTextProps, PisellNumberProps, PisellCurrencyProps, PisellPercentProps, PisellPhoneProps, CountryCode, PisellEmailProps, MailtoOptions, PisellUrlProps, PisellRatingProps, PisellSingleSelectProps, SingleSelectRef, PisellMultipleSelectProps, MultipleSelectRef, } from './components/PisellFields';
|
|
11
|
-
/**
|
|
12
|
-
* PisellMetrics - 指标展示组件命名空间
|
|
13
|
-
* @example
|
|
14
|
-
* import { PisellMetrics } from '@pisell/materials';
|
|
15
|
-
* <PisellMetrics.MetricCard title="Total Sales" value={1580} />
|
|
16
|
-
*/
|
|
17
|
-
export { default as PisellMetrics } from './components/PisellMetrics';
|
|
18
|
-
export type { PisellMetricCardProps, PisellStatisticProps, } from './components/PisellMetrics';
|
|
19
|
-
/**
|
|
20
|
-
* PisellLayouts - 布局组件命名空间
|
|
21
|
-
* @example
|
|
22
|
-
* import { PisellLayouts } from '@pisell/materials';
|
|
23
|
-
* <PisellLayouts.BasicGrid columns={3}>{children}</PisellLayouts.BasicGrid>
|
|
24
|
-
*/
|
|
25
|
-
export { default as PisellLayouts } from './components/PisellLayouts';
|
|
26
|
-
export type { PisellBasicGridProps, PisellScrollViewProps, PisellFloorMapLayoutProps, PisellFloorMapLayoutRef, FloorMapFullscreenMode, FloorMapLayoutContextValue, FloorMapLayoutProviderProps, PisellLayoutProps, CompoundedComponent, PisellRowProps, } from './components/PisellLayouts';
|
|
27
|
-
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';
|
|
28
|
-
export { default as PisellCards } from './components/PisellCards';
|
|
29
|
-
export type { BadgeConfig, PisellBasicCardProps, TabCardProps, } from './components/PisellCards';
|
|
30
|
-
export { default as GraphicTextCard } from './components/PisellCards/components/GraphicTextCard';
|
|
31
|
-
export type { GraphicTextCardProps, GraphicTextCardSize, GraphicTextCardVariant, } from './components/PisellCards/components/GraphicTextCard';
|
|
32
|
-
export { default as MultilevelCard } from './components/PisellCards/components/MultilevelCard';
|
|
33
|
-
export type { MultilevelCardProps } from './components/PisellCards/components/MultilevelCard';
|
|
34
|
-
export { default as PisellImageCard } from './components/PisellCards/components/PisellImageCard';
|
|
35
|
-
export type { ImageDataSource, ImageFillMode, PisellImageCardProps, } from './components/PisellCards/components/PisellImageCard';
|
|
36
|
-
export { default as TabCard } from './components/PisellCards/components/TabCard';
|
|
37
|
-
export { default as TextCard } from './components/PisellCards/components/TextCard';
|
|
38
|
-
export { default as PisellProcedure } from './components/PisellProcedure';
|
|
39
|
-
export type { PisellProcedureProps, PisellProcedureRef, ProcedureBodyProps, ProcedureFooterProps, ProcedureHeaderProps, } from './components/PisellProcedure/types';
|
|
40
|
-
export { default as PisellSteps } from './components/PisellSteps';
|
|
41
|
-
export type { PisellStepItem, PisellStepsProps, } from './components/PisellSteps/types';
|
|
42
|
-
export { default as PisellSuperTabs } from './components/PisellSuperTabs';
|
|
43
|
-
export type { PisellSuperTabsProps, TabDataItem, } from './components/PisellSuperTabs';
|
|
44
|
-
export { default as PisellTabbar } from './components/PisellTabbar';
|
|
45
|
-
export type { LevelType, PisellTabbarProps, TabbarDataSource, } from './components/PisellTabbar';
|
|
46
|
-
export { default as PisellTabbarTemplate1 } from './components/PisellTabbar/template/Template1';
|
|
47
|
-
export { default as PisellTabbar2 } from './components/PisellTabbar2';
|
|
48
|
-
export { default as AppVersionControl } from './components/appVersionControl';
|
|
49
|
-
export { default as AutoComplete } from './components/auto-complete';
|
|
50
|
-
export { default as AutoCompleteNumber } from './components/auto-complete-number';
|
|
51
|
-
export { default as Badge } from './components/badge';
|
|
52
|
-
export { default as BatchEditor } from './components/batch-editor';
|
|
53
|
-
export { default as Button } from './components/button';
|
|
54
|
-
export { default as ButtonGroupEdit } from './components/buttonGroupEdit';
|
|
55
|
-
export { default as ButtonGroupPreview } from './components/buttonGroupPreview';
|
|
56
|
-
export { default as Calendar } from './components/calendar';
|
|
57
|
-
export { default as CardMetricItem } from './components/cardMetricItem';
|
|
58
|
-
export type { PisellStatisticProps as CardMetricItemProps } from './components/cardMetricItem';
|
|
59
|
-
export { default as CardPro } from './components/cardPro';
|
|
60
|
-
export { default as Cascader } from './components/cascader';
|
|
61
|
-
export { default as Checkbox } from './components/checkbox';
|
|
62
|
-
export { PisellHierarchicalSummaryList, HIERARCHICAL_SUMMARY_LIST_PREFIX_CLS, } from './components/pisellHierarchicalSummaryList';
|
|
63
|
-
export type { PisellHierarchicalSummaryListProps, PisellHierarchicalSummaryListItem, PisellHierarchicalSummaryListKey, PisellHierarchicalSummaryListLevelConfig, PisellHierarchicalSummaryListAggregateConfig, PisellHierarchicalSummaryListAggregateMode, } from './components/pisellHierarchicalSummaryList';
|
|
64
|
-
export { default as PisellDateTimeDisplay } from './components/pisellDateTimeDisplay';
|
|
65
|
-
export type { PisellDateTimeDisplayProps } from './components/pisellDateTimeDisplay';
|
|
66
|
-
export { PisellTimeRangeDisplay } from './components/pisellTimeRangeDisplay';
|
|
67
|
-
export type { PisellTimeRangeDisplayProps } from './components/pisellTimeRangeDisplay';
|
|
68
|
-
export { PisellTimeNavigator, getHorizontalAxisSlotCount, getRangeBounds, buildCalendarHourSlotsFromRange, buildCalendarTimelineSlotStartsFromRange, DEFAULT_CALENDAR_SLOT_STEP_MINUTES, } from './components/pisellTimeNavigator';
|
|
69
|
-
export type { PisellTimeNavigatorProps, TimeNavigatorValue, TimeRangeOption, CursorMode, TimeNavigatorOrientation, } from './components/pisellTimeNavigator';
|
|
70
|
-
export { PisellReservationSchedule } from './components/pisellReservationSchedule';
|
|
71
|
-
export type { PisellReservationScheduleProps, ReservationScheduleValue, } from './components/pisellReservationSchedule';
|
|
72
|
-
export { PisellReservationScheduleBand } from './components/pisellReservationScheduleBand';
|
|
73
|
-
export type { PisellReservationScheduleBandProps, ReservationScheduleBandValue, TimeNavigatorPassthroughProps, } from './components/pisellReservationScheduleBand';
|
|
74
|
-
export { pisellTimeNavigatorLocales } from './components/pisellTimeNavigator';
|
|
75
|
-
export { default as PisellStatisticList } from './components/pisellStatisticList';
|
|
76
|
-
export { default as PisellEmpty } from './components/pisellEmpty';
|
|
77
|
-
export { default as PisellText } from './components/pisellText';
|
|
78
|
-
export { default as PisellTags } from './components/pisellTags';
|
|
79
|
-
export { default as PisellAvatar } from './components/pisellAvatar';
|
|
80
|
-
export { default as PisellCountdown } from './components/pisellCountdown';
|
|
81
|
-
export { default as AutoResizeText } from './components/auto-resize-text';
|
|
82
|
-
export { default as ClassicLayout } from './components/classicLayout';
|
|
83
|
-
export { default as Collapse } from './components/collapse';
|
|
84
|
-
export { default as Component } from './components/component';
|
|
85
|
-
export { default as ConfigProvider } from './components/config-provider';
|
|
86
|
-
export { default as CropPhoto } from './components/cropPhoto';
|
|
87
|
-
export { default as PisellContainer } from './components/pisellContainer';
|
|
88
|
-
export { default as PisellRow } from './components/pisellRow';
|
|
89
|
-
export { default as PisellBasicGrid } from './components/PisellBasicGrid';
|
|
90
|
-
export { default as PisellScrollView } from './components/PisellScrollView';
|
|
91
|
-
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,
|
|
92
|
-
/**
|
|
93
|
-
* 「图元名作为资源标题」相关工具:业务方(如 private-materials 的预约模块)
|
|
94
|
-
* 通过包根 `@pisell/materials` 引用,必须在顶层 index 显式 re-export,
|
|
95
|
-
* 否则只在子模块 index 出现时,babel/swc 编译后会得到 `undefined`,
|
|
96
|
-
* 调用时报 "Object(...) is not a function"。
|
|
97
|
-
*/
|
|
98
|
-
NAME_AS_TITLE_EXT_KEY, isElementNameAsTitleEnabled, buildNameAsTitleExtensionsPatch, resolveSceneElementDisplayTitle, 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';
|
|
99
|
-
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';
|
|
100
|
-
export { default as PisellViewGrid } from './components/pisellViewGrid';
|
|
101
|
-
export { default as Table } from './components/table';
|
|
102
|
-
export { default as PisellGridView } from './components/pisellGridPro/GridView';
|
|
103
|
-
export type { GridViewProps } from './components/pisellGridPro/GridView';
|
|
104
|
-
export { default as PisellToolBar } from './components/pisellGridPro/ToolBar';
|
|
105
|
-
export type { ToolBarProps } from './components/pisellGridPro/ToolBar';
|
|
106
|
-
export { default as PisellGridPro } from './components/pisellGridPro';
|
|
107
|
-
export type { GridProProps } from './components/pisellGridPro';
|
|
108
|
-
export { default as RecordView } from './components/record-view';
|
|
109
|
-
export { default as PisellInput } from './components/pisellInput';
|
|
110
|
-
export { getBankCardTypeImg } from './components/pisellInput/components/BankCard/utils';
|
|
111
|
-
export { default as PisellDatePicker } from './components/pisellDatePicker';
|
|
112
|
-
export { default as PisellCheckboxGroup } from './components/pisellCheckboxGroup';
|
|
113
|
-
export { default as PisellCustomCheckboxGroup } from './components/pisellCustomCheckboxGroup';
|
|
114
|
-
export { default as PisellInformationEntry } from './components/pisellInformationEntry';
|
|
115
|
-
export { default as PisellAdjustPrice } from './components/pisellAdjustPrice';
|
|
116
|
-
export { default as PisellAdjustPriceInputNumber } from './components/pisellAdjustPrice/PisellAdjustPriceInputNumber';
|
|
117
|
-
export { default as CustomSelect } from './components/customSelect';
|
|
118
|
-
export { default as PisellUpload } from './components/pisellUpload';
|
|
119
|
-
export { default as Translation } from './components/translation';
|
|
120
|
-
export { PisellLookup } from './components/pisellLookup';
|
|
121
|
-
export type { PisellLookupProps, PisellLookupRef, } from './components/pisellLookup';
|
|
122
|
-
export { PisellFind } from './components/pisellFind';
|
|
123
|
-
export type { PisellFindProps, PisellFindRef } from './components/pisellFind';
|
|
124
|
-
export { default as DataSourceForm } from './components/dataSourceComponents/dataSourceForm';
|
|
125
|
-
export { default as FormGroup } from './components/dataSourceComponents/dataSourceForm/group';
|
|
126
|
-
export { default as JsonWrapper } from './components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider';
|
|
127
|
-
export { default as SubmitButton } from './components/dataSourceComponents/dataSourceForm/submitButton';
|
|
128
|
-
export { default as DataSourceMenu } from './components/dataSourceComponents/dataSourceMenu';
|
|
129
|
-
export { default as DataSourceImage } from './components/dataSourceComponents/dataSourceShow/dataSourceImage';
|
|
130
|
-
export { default as DataSourceQRCode } from './components/dataSourceComponents/dataSourceShow/dataSourceQRCode';
|
|
131
|
-
export { default as DataSourceTypography } from './components/dataSourceComponents/dataSourceShow/dataSourceTypography';
|
|
132
|
-
export { default as DataSourceTable } from './components/dataSourceComponents/dataSourceTable';
|
|
133
|
-
export { default as DataSourceWrapper } from './components/dataSourceComponents/dataSourceWrapper';
|
|
134
|
-
export { default as PisellDataSourceContainer } from './components/pisellDataSourceContainer';
|
|
135
|
-
export { default as PisellRecordBoard, useRecordBoardContext, } from './components/pisellRecordBoard';
|
|
136
|
-
export { useRecordBoardShellBodyMeta } from './components/pisellRecordBoard/shellFrame';
|
|
137
|
-
export { PisellRecordBoardCalendarView, CalendarPersistProvider, } from './components/pisellRecordBoard/shellFrame/Calendar';
|
|
138
|
-
export { PisellRecordBoardResourceWallView, DEFAULT_RESOURCE_WALL_FILTER_FIELD_KEY, } from './components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView';
|
|
139
|
-
export { getVenueWallStatusToneMap, diffVenueWallStatusToneOverrides, } from './components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils';
|
|
140
|
-
export type { VenueWallStatusKey, VenueWallStatusTone, VenueWallStatusToneOverrides, VenueWallAppearanceSlot, VenueWallAppearanceTheme, } from './components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils';
|
|
141
|
-
export type { RecordBoardContextValue, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardProps, RecordBoardToolBarProps, RecordBoardBodyView, RecordBoardCalendarProps, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarResource, RecordBoardCalendarBookingLike, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarBookingRenderArgs, RecordBoardBookingMoveDraft, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardCalendarSelectedFreeSlot, RecordBoardResourceWallProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, } from './components/pisellRecordBoard';
|
|
142
|
-
export { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST } from './components/pisellRecordBoard';
|
|
143
|
-
export type { CalendarPersistKind, CalendarPersistContextValue, PisellRecordBoardCalendarViewProps, } from './components/pisellRecordBoard/shellFrame/Calendar';
|
|
144
|
-
export { PisellShellFrame } from './components/pisellShellFrame';
|
|
145
|
-
export type { PisellShellFrameProps, PisellShellFrameConfig, PisellShellFrameScrollConfig, } from './components/pisellShellFrame';
|
|
146
|
-
export type { DataSourceContainerProps } from './components/pisellDataSourceContainer';
|
|
147
|
-
export { default as FormItemCheckbox } from './components/dataSourceComponents/fields/Checkbox';
|
|
148
|
-
export { default as FormItemColorPicker } from './components/dataSourceComponents/fields/ColorPicker';
|
|
149
|
-
export { default as FormItemDatePicker } from './components/dataSourceComponents/fields/DatePicker';
|
|
150
|
-
export { default as FormItemIconSelect } from './components/dataSourceComponents/fields/IconSelect';
|
|
151
|
-
export { default as FormItemInput } from './components/dataSourceComponents/fields/Input';
|
|
152
|
-
export { default as FormItemInputNumber } from './components/dataSourceComponents/fields/InputNumber';
|
|
153
|
-
export { default as FormItemRadio } from './components/dataSourceComponents/fields/Radio';
|
|
154
|
-
export { default as FormItemSelect } from './components/dataSourceComponents/fields/Select';
|
|
155
|
-
export { default as FormItemSwitch } from './components/dataSourceComponents/fields/Switch';
|
|
156
|
-
export { default as FormItemTimePicker } from './components/dataSourceComponents/fields/TimePicker';
|
|
157
|
-
export { default as FormItemTranslation } from './components/dataSourceComponents/fields/Translation';
|
|
158
|
-
export { default as BaseTranslation } from './components/dataSourceComponents/fields/Translation/BaseTranslation';
|
|
159
|
-
export { default as FormItemUpload } from './components/dataSourceComponents/fields/Upload';
|
|
160
|
-
export { default as DatePicker } from './components/date-picker';
|
|
161
|
-
export { default as Div } from './components/div';
|
|
162
|
-
export { default as DragSortTree } from './components/drag-sort-tree';
|
|
163
|
-
export { default as Drawer } from './components/drawer';
|
|
164
|
-
export { default as Dropdown } from './components/dropdown';
|
|
165
|
-
export { default as Filter } from './components/filter';
|
|
166
|
-
export { default as Form } from './components/form';
|
|
167
|
-
export { default as Icon } from './components/icon';
|
|
168
|
-
export { default as IconSelect } from './components/iconSelect';
|
|
169
|
-
export { default as Iconfont } from './components/iconfont';
|
|
170
|
-
export { default as Image } from './components/image';
|
|
171
|
-
export { default as Input } from './components/input';
|
|
172
|
-
export { default as InputNumberRange } from './components/input-number-range';
|
|
173
|
-
export { default as Keyboard } from './components/keyboard';
|
|
174
|
-
export { default as List } from './components/list';
|
|
175
|
-
export { default as loginAndRegister } from './components/login-and-register';
|
|
176
|
-
export { default as LowCodePage } from './components/lowCodePage';
|
|
177
|
-
export { default as Modal } from './components/modal';
|
|
178
|
-
export { default as OrganizationTenantSwitcher } from './components/organizationTenantSwitcher';
|
|
179
|
-
export { default as Page } from './components/page';
|
|
180
|
-
export { default as PageHeader } from './components/page-header';
|
|
181
|
-
export { default as PisellConfigProvider } from './components/pisell-config-provider';
|
|
182
|
-
export { default as PisellContext, globalConfig, } from './components/pisell-config-provider/context';
|
|
183
|
-
export { default as usePisellConfig } from './components/pisell-config-provider/hooks/usePisellConfig';
|
|
184
|
-
export { default as PisellAlert } from './components/pisellAlert';
|
|
185
|
-
export { default as PisellAnchor } from './components/pisellAnchor';
|
|
186
|
-
export { default as PisellAppCard } from './components/pisellAppCard';
|
|
187
|
-
export type { PisellAppCardProps } from './components/pisellAppCard/types';
|
|
188
|
-
export { default as PisellBatchActionBar } from './components/pisellBatchActionBar';
|
|
189
|
-
export type { BatchActionBarPosition, BatchActionConfirmConfig, BatchActionItem, DefaultActionsConfig, PisellBatchActionBarProps, } from './components/pisellBatchActionBar';
|
|
190
|
-
export { default as PisellCard } from './components/pisellCard';
|
|
191
|
-
export { default as PisellCardList } from './components/pisellCardList';
|
|
192
|
-
export { PisellCurrency } from './components/pisellCurrency';
|
|
193
|
-
export { default as PisellDraggable } from './components/pisellDraggable';
|
|
194
|
-
export { default as PisellDropSort } from './components/pisellDropSort';
|
|
195
|
-
export { default as PisellDropdown } from './components/pisellDropdown';
|
|
196
|
-
export { PisellEmail } from './components/pisellEmail';
|
|
197
|
-
export { default as PisellFilter } from './components/pisellFilter';
|
|
198
|
-
export type { PisellFilterProps } from './components/pisellFilter/type';
|
|
199
|
-
export { default as PisellFloatingPanel } from './components/pisellFloatingPanel';
|
|
200
|
-
export { default as PisellGoodPassCard } from './components/pisellGoodPassCard';
|
|
201
|
-
export { default as PisellHeaderProgressBar } from './components/pisellHeaderProgressBar';
|
|
202
|
-
export { default as PisellImageCarousels } from './components/pisellImageCarousels';
|
|
203
|
-
export { default as PisellLayout } from './components/pisellLayout';
|
|
204
|
-
export { default as PisellContent } from './components/pisellLayout/content';
|
|
205
|
-
export { default as PisellFooter } from './components/pisellLayout/footer';
|
|
206
|
-
export { default as PisellHeader } from './components/pisellLayout/header';
|
|
207
|
-
export { default as PisellSider } from './components/pisellLayout/sider';
|
|
208
|
-
export { default as PisellList01 } from './components/pisellList01';
|
|
209
|
-
export { default as PisellLoading } from './components/pisellLoading';
|
|
210
|
-
export { PisellLongText } from './components/pisellLongText';
|
|
211
|
-
export { default as DataSourceSubForm } from './components/dataSourceComponents/dataSourceSubForm';
|
|
212
|
-
export type { DataSourceSubFormProps } from './components/dataSourceComponents/dataSourceSubForm/types';
|
|
213
|
-
export { default as FormItemRecordListWrapper } from './components/dataSourceComponents/fields/RecordListWrapper';
|
|
214
|
-
export { default as FormItemTabs } from './components/dataSourceComponents/fields/Tabs';
|
|
215
|
-
export { default as PisellMenu } from './components/pisellMenu';
|
|
216
|
-
export type { PisellMenuProps } from './components/pisellMenu/types';
|
|
217
|
-
export { default as PisellMetricCard } from './components/pisellMetricCard';
|
|
218
|
-
export { default as PisellModal } from './components/pisellModal';
|
|
219
|
-
export { PisellMultipleSelect } from './components/pisellMultipleSelect';
|
|
220
|
-
export { default as PisellNavigationMenu } from './components/pisellNavigationMenu';
|
|
221
|
-
export { PisellNumber } from './components/pisellNumber';
|
|
222
|
-
export { PisellPercent } from './components/pisellPercent';
|
|
223
|
-
export { PisellPhone } from './components/pisellPhone';
|
|
224
|
-
export { default as PisellQRScanner } from './components/pisellQRScanner';
|
|
225
|
-
export type { PisellQRScannerProps } from './components/pisellQRScanner';
|
|
226
|
-
export { default as PisellQrcode } from './components/pisellQrcode';
|
|
227
|
-
export { default as PisellQuickFilter } from './components/pisellQuickFilter';
|
|
228
|
-
export type { PisellQuickFilterProps } from './components/pisellQuickFilter/type';
|
|
229
|
-
export { PisellRating } from './components/pisellRating';
|
|
230
|
-
export { default as PisellScan } from './components/pisellScan';
|
|
231
|
-
export { default as PisellSectionHeaders } from './components/pisellSectionHeaders';
|
|
232
|
-
export { PisellSingleLineText } from './components/pisellSingleLineText';
|
|
233
|
-
export { PisellSingleSelect } from './components/pisellSingleSelect';
|
|
234
|
-
export { default as PisellSort } from './components/pisellSort';
|
|
235
|
-
export type { PisellSortProps } from './components/pisellSort/type';
|
|
236
|
-
export type { PisellTagsProps } from './components/pisellTags';
|
|
237
|
-
export { default as PisellToast, useToast } from './components/pisellToast';
|
|
238
|
-
export { default as PisellTooltip } from './components/pisellTooltip';
|
|
239
|
-
export { PisellUrl } from './components/pisellUrl';
|
|
240
|
-
export { default as PisellWalletPassCard } from './components/pisellWalletPassCard';
|
|
241
|
-
export type { PisellWalletPassCardProps } from './components/pisellWalletPassCard';
|
|
242
|
-
export { default as ProductCard } from './components/productCard';
|
|
243
|
-
export { default as ProfileMenu } from './components/profileMenu';
|
|
244
|
-
export { default as QRCode } from './components/qrcode';
|
|
245
|
-
export { default as Radio } from './components/radio';
|
|
246
|
-
export { default as SectionFooters } from './components/section-footers';
|
|
247
|
-
export { default as Segmented } from './components/segmented';
|
|
248
|
-
export { default as Select } from './components/select';
|
|
249
|
-
export { default as SelectTime } from './components/select-time';
|
|
250
|
-
export { default as Skeleton } from './components/skeleton';
|
|
251
|
-
export { default as Slider } from './components/slider';
|
|
252
|
-
export { default as Sort } from './components/sort';
|
|
253
|
-
export { default as SortableList } from './components/sortableList';
|
|
254
|
-
export { default as Tabs } from './components/tabs';
|
|
255
|
-
export { default as TimePicker } from './components/time-picker';
|
|
256
|
-
export { default as TreeSelect } from './components/tree-select';
|
|
257
|
-
export { default as Typography } from './components/typography';
|
|
258
|
-
export { default as Upload } from './components/upload';
|
|
259
|
-
export { default as PublishVersionModal } from './components/versionModal';
|
|
260
|
-
export { default as VirtualKeyboard } from './components/virtual-keyboard';
|
|
261
|
-
export { default as PisellPriceKeyboard } from './components/virtual-keyboard/Amount';
|
|
262
|
-
export { default as PisellNumberKeyboard } from './components/virtual-keyboard/Number';
|
|
263
|
-
export { default as VirtualKeyboardTime } from './components/virtual-keyboard/Time';
|
|
264
|
-
export { default as VirtualInput } from './components/virtualInput';
|
|
265
|
-
export { default as WalletCard } from './components/walletCard';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { RecordBoardProps } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* RecordBoard 容器:提供统一的 data / pagination / search 上下文。
|
|
5
|
-
* 打散 props:列表/分页/搜索/多选、grid/toolBar/…;可选根级 **floorMap**(兼容透传)。
|
|
6
|
-
* 平面图推荐在 ShellFrame 内使用 **PisellRecordBoard.FloorMap** 声明,与根级 `floorMap` 合并(子优先)。
|
|
7
|
-
*/
|
|
8
|
-
declare const PisellRecordBoard: React.FC<RecordBoardProps>;
|
|
9
|
-
export default PisellRecordBoard;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
import type { RecordBoardContextValue } from '../../types';
|
|
4
|
-
export interface RecordBoardPaginationProps extends Partial<Pick<RecordBoardContextValue, 'pagination' | 'total' | 'onPageChange' | 'loading'>> {
|
|
5
|
-
className?: string;
|
|
6
|
-
style?: React.CSSProperties;
|
|
7
|
-
render?: (ctx: RecordBoardContextValue) => React.ReactNode;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* RecordBoard 下的分页:接入 packages/materials 的 Pagination,从 context 取 pagination / total / onPageChange;可透传 childComponentProps.pagination。
|
|
11
|
-
* 当 context 中 pagination 缺失时使用默认分页,避免在 Storybook 或未完整注入 context 时报错。
|
|
12
|
-
*/
|
|
13
|
-
declare const RecordBoardPagination: React.FC<RecordBoardPaginationProps>;
|
|
14
|
-
export default RecordBoardPagination;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { SortItemProps } from '../../../sort/types';
|
|
2
|
-
import type { FilterValueType } from '../../../filter/components/FilterButton/types';
|
|
3
|
-
/** 与 Quick Filter 同源:优先 utils,若 utils 返回 key(未命中)则用 materials 再回退 */
|
|
4
|
-
export declare function getSortButtonText(): string;
|
|
5
|
-
/** 资源墙无状态列派生项时注入:下拉仅「状态 → 空闲优先 / 占用优先」,仍渲染排序按钮 */
|
|
6
|
-
export declare function buildResourceWallStatusSortFallbackItem(sortConfig: unknown): SortItemProps;
|
|
7
|
-
export declare function getFilterButtonText(): string;
|
|
8
|
-
export declare function getViewGridLabel(): string;
|
|
9
|
-
export declare function getViewFloorMapLabel(): string;
|
|
10
|
-
export declare function getViewCalendarLabel(): string;
|
|
11
|
-
export declare function getViewResourceWallLabel(): string;
|
|
12
|
-
/** 筛选无值时使用的默认筛选项;业务可通过 childComponentProps.toolBar.filter.defaultFilterValue 覆盖 */
|
|
13
|
-
export declare function getDefaultFilterValue(): FilterValueType;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { FilterItemProps } from '../../../filter/types';
|
|
3
|
-
export interface ToolBarQuickFilterProps {
|
|
4
|
-
/** 快速筛选项列表(与 Filter 的 quickFilter 同结构),不传则从 columns 派生时由父级传入 */
|
|
5
|
-
filterList?: FilterItemProps[];
|
|
6
|
-
/** 表单字段前缀,与 PisellFilter 保持一致,默认 '' */
|
|
7
|
-
formFiltersPrefix?: string;
|
|
8
|
-
/** 表单项尺寸 */
|
|
9
|
-
size?: 'small' | 'middle' | 'large';
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* RecordBoard 工具栏左侧内联快速筛选:将 quickFilter 直接展示在 ToolBar 左侧,不放入 Filter 弹层。
|
|
13
|
-
* 与 searchParams.filter 联动,变更写入 searchParams.filter.values 并触发 onSearch。
|
|
14
|
-
* 启用时建议 ToolBar 对 PisellFilter 传 hiddenQuickFilter: true,仅保留高级筛选在弹层内。
|
|
15
|
-
*/
|
|
16
|
-
declare const ToolBarQuickFilter: React.FC<ToolBarQuickFilterProps>;
|
|
17
|
-
export default ToolBarQuickFilter;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import RecordBoardToolBar from './ToolBar';
|
|
3
|
-
import RecordBoardBatchActionBar from './BatchActionBar';
|
|
4
|
-
import RecordBoardPagination from './Pagination';
|
|
5
|
-
import RecordBoardSearch from './Search';
|
|
6
|
-
import './shellFrameFloorMap.less';
|
|
7
|
-
import ToolBarReset from './ToolBarReset';
|
|
8
|
-
import ToolBarQuickFilter from './ToolBarQuickFilter';
|
|
9
|
-
import RecordBoardFloorMap from './FloorMap';
|
|
10
|
-
import RecordBoardCalendar from './Calendar/RecordBoardCalendar';
|
|
11
|
-
import RecordBoardResourceWall from './ResourceWall/RecordBoardResourceWall';
|
|
12
|
-
/**
|
|
13
|
-
* Shell Frame:基于 PisellShellFrame 的 RecordBoard 壳层。
|
|
14
|
-
* 解析子节点:**GridLayout / CardLayout 等** 与可选 **FloorMap / Calendar / ResourceWall** 槽;
|
|
15
|
-
* 子视图组合与 Segmented 切换由子节点与根级 props 决定;根级 `floorMap` / `calendar` / `resourceWall` 与子槽合并时**子组件优先**。
|
|
16
|
-
*/
|
|
17
|
-
declare const RecordBoardShellFrame: React.FC<{
|
|
18
|
-
children?: React.ReactNode;
|
|
19
|
-
className?: string;
|
|
20
|
-
style?: React.CSSProperties;
|
|
21
|
-
/**
|
|
22
|
-
* 工具栏与表格主体之间的「附加条」插槽,透传给底层 PisellShellFrame.belowToolbar。
|
|
23
|
-
* 用于在不改 ToolBar 内部结构的前提下,紧贴 toolbar 下方插入轻量条目
|
|
24
|
-
* (例如 HUD 抽屉里的「当日总览」摘要栏)。
|
|
25
|
-
*/
|
|
26
|
-
belowToolbar?: React.ReactNode;
|
|
27
|
-
}>;
|
|
28
|
-
export default RecordBoardShellFrame;
|
|
29
|
-
export { RecordBoardToolBar, RecordBoardBatchActionBar, RecordBoardPagination, RecordBoardSearch, ToolBarReset, ToolBarQuickFilter, RecordBoardFloorMap, RecordBoardCalendar, RecordBoardResourceWall, };
|
|
30
|
-
export { useRecordBoardShellBodyMeta } from './ShellBodyMetaContext';
|