orbcafe-ui 1.3.3 → 1.3.4
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.mts +15 -3
- package/dist/index.d.ts +15 -3
- package/dist/index.js +16 -16
- package/dist/index.mjs +16 -16
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2224,6 +2224,12 @@ interface CPlanningGanttProps {
|
|
|
2224
2224
|
columns?: PlanningGanttColumn[];
|
|
2225
2225
|
scale?: PlanningGanttScale;
|
|
2226
2226
|
onScaleChange?: (scale: PlanningGanttScale) => void;
|
|
2227
|
+
page?: number;
|
|
2228
|
+
rowsPerPage?: number;
|
|
2229
|
+
rowsPerPageOptions?: number[];
|
|
2230
|
+
count?: number;
|
|
2231
|
+
onPageChange?: (page: number) => void;
|
|
2232
|
+
onRowsPerPageChange?: (rowsPerPage: number) => void;
|
|
2227
2233
|
timelineStart?: string;
|
|
2228
2234
|
timelineEnd?: string;
|
|
2229
2235
|
selectedTaskId?: string;
|
|
@@ -2247,6 +2253,12 @@ interface UsePlanningGanttOptions {
|
|
|
2247
2253
|
filterAppId?: string;
|
|
2248
2254
|
filterTableKey?: string;
|
|
2249
2255
|
columns?: CPlanningGanttProps['columns'];
|
|
2256
|
+
page?: CPlanningGanttProps['page'];
|
|
2257
|
+
rowsPerPage?: CPlanningGanttProps['rowsPerPage'];
|
|
2258
|
+
rowsPerPageOptions?: CPlanningGanttProps['rowsPerPageOptions'];
|
|
2259
|
+
count?: CPlanningGanttProps['count'];
|
|
2260
|
+
onPageChange?: CPlanningGanttProps['onPageChange'];
|
|
2261
|
+
onRowsPerPageChange?: CPlanningGanttProps['onRowsPerPageChange'];
|
|
2250
2262
|
onFilterSearch?: () => void;
|
|
2251
2263
|
onFilterVariantLoad?: CSmartFilterProps['onVariantLoad'];
|
|
2252
2264
|
enableRowReorder?: CPlanningGanttProps['enableRowReorder'];
|
|
@@ -2261,9 +2273,9 @@ interface UsePlanningGanttResult {
|
|
|
2261
2273
|
setFilters: (filters: Record<string, FilterValue>) => void;
|
|
2262
2274
|
filteredTasks: PlanningTaskRecord[];
|
|
2263
2275
|
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
|
|
2264
|
-
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2276
|
+
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2265
2277
|
}
|
|
2266
|
-
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2278
|
+
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2267
2279
|
|
|
2268
2280
|
interface CPlanningLayoutProps {
|
|
2269
2281
|
filterProps: CSmartFilterProps;
|
|
@@ -2281,7 +2293,7 @@ interface UsePlanningLayoutResult extends UsePlanningGanttResult {
|
|
|
2281
2293
|
}
|
|
2282
2294
|
declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlanningLayoutResult;
|
|
2283
2295
|
|
|
2284
|
-
declare const CPlanningGantt: ({ title,
|
|
2296
|
+
declare const CPlanningGantt: ({ title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2285
2297
|
|
|
2286
2298
|
interface MarkdownRendererProps {
|
|
2287
2299
|
markdown?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2224,6 +2224,12 @@ interface CPlanningGanttProps {
|
|
|
2224
2224
|
columns?: PlanningGanttColumn[];
|
|
2225
2225
|
scale?: PlanningGanttScale;
|
|
2226
2226
|
onScaleChange?: (scale: PlanningGanttScale) => void;
|
|
2227
|
+
page?: number;
|
|
2228
|
+
rowsPerPage?: number;
|
|
2229
|
+
rowsPerPageOptions?: number[];
|
|
2230
|
+
count?: number;
|
|
2231
|
+
onPageChange?: (page: number) => void;
|
|
2232
|
+
onRowsPerPageChange?: (rowsPerPage: number) => void;
|
|
2227
2233
|
timelineStart?: string;
|
|
2228
2234
|
timelineEnd?: string;
|
|
2229
2235
|
selectedTaskId?: string;
|
|
@@ -2247,6 +2253,12 @@ interface UsePlanningGanttOptions {
|
|
|
2247
2253
|
filterAppId?: string;
|
|
2248
2254
|
filterTableKey?: string;
|
|
2249
2255
|
columns?: CPlanningGanttProps['columns'];
|
|
2256
|
+
page?: CPlanningGanttProps['page'];
|
|
2257
|
+
rowsPerPage?: CPlanningGanttProps['rowsPerPage'];
|
|
2258
|
+
rowsPerPageOptions?: CPlanningGanttProps['rowsPerPageOptions'];
|
|
2259
|
+
count?: CPlanningGanttProps['count'];
|
|
2260
|
+
onPageChange?: CPlanningGanttProps['onPageChange'];
|
|
2261
|
+
onRowsPerPageChange?: CPlanningGanttProps['onRowsPerPageChange'];
|
|
2250
2262
|
onFilterSearch?: () => void;
|
|
2251
2263
|
onFilterVariantLoad?: CSmartFilterProps['onVariantLoad'];
|
|
2252
2264
|
enableRowReorder?: CPlanningGanttProps['enableRowReorder'];
|
|
@@ -2261,9 +2273,9 @@ interface UsePlanningGanttResult {
|
|
|
2261
2273
|
setFilters: (filters: Record<string, FilterValue>) => void;
|
|
2262
2274
|
filteredTasks: PlanningTaskRecord[];
|
|
2263
2275
|
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
|
|
2264
|
-
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2276
|
+
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2265
2277
|
}
|
|
2266
|
-
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2278
|
+
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2267
2279
|
|
|
2268
2280
|
interface CPlanningLayoutProps {
|
|
2269
2281
|
filterProps: CSmartFilterProps;
|
|
@@ -2281,7 +2293,7 @@ interface UsePlanningLayoutResult extends UsePlanningGanttResult {
|
|
|
2281
2293
|
}
|
|
2282
2294
|
declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlanningLayoutResult;
|
|
2283
2295
|
|
|
2284
|
-
declare const CPlanningGantt: ({ title,
|
|
2296
|
+
declare const CPlanningGantt: ({ title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2285
2297
|
|
|
2286
2298
|
interface MarkdownRendererProps {
|
|
2287
2299
|
markdown?: string;
|