rez-table-listing-mui 1.2.14 → 1.2.15
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 +8 -110
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/kanban/components/LeadCard.tsx +1 -1
- package/src/kanban/hooks/hooks.ts +2 -2
- package/src/kanban/index.tsx +50 -41
- package/src/kanban/services/service.ts +1 -1
- package/src/kanban/types/types.ts +22 -95
- package/src/listing/components/table-head-dnd-cell.tsx +5 -5
- package/src/listing/components/table-head.tsx +5 -5
- package/src/listing/components/table-settings/components/group-by.tsx +513 -0
- package/src/listing/components/table-settings/components/lane.tsx +512 -0
- package/src/listing/components/table-settings/constants.ts +12 -0
- package/src/listing/components/table-settings/index.tsx +61 -29
- package/src/listing/libs/hooks/useDefaultColumns.tsx +0 -1
- package/src/listing/libs/utils/common.ts +1 -4
- package/src/listing/types/filter-settings.ts +1 -0
- package/src/view/KanbanView.tsx +58 -6
- package/src/view/ListingView.tsx +1 -3
package/dist/index.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ interface FilterMasterStateProps {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
interface QuickFilterModalProps {
|
|
93
|
+
view?: string;
|
|
93
94
|
show?: boolean;
|
|
94
95
|
filterSettingStates: craftTableFilterSettingsOptionsProps;
|
|
95
96
|
onClose?: () => void;
|
|
@@ -329,7 +330,7 @@ declare function TableTabs({ loading, tabsData, activeTab, onClick, tableStates,
|
|
|
329
330
|
|
|
330
331
|
declare function TableFilter({ onClose, columnsData, tableStates, onDeleteFilter, onSaveFilter, onUpdateFilter, dropdownData, }: FilterDrawerProps): react_jsx_runtime.JSX.Element;
|
|
331
332
|
|
|
332
|
-
declare function QuickFilterSettings({ show, filterSettingStates, onClose, columnsData, columnsDataLoading, tabsApiData, tabsApiDataLoading, onSaveSettingsData, }: QuickFilterModalProps): react_jsx_runtime.JSX.Element;
|
|
333
|
+
declare function QuickFilterSettings({ view, show, filterSettingStates, onClose, columnsData, columnsDataLoading, tabsApiData, tabsApiDataLoading, onSaveSettingsData, }: QuickFilterModalProps): react_jsx_runtime.JSX.Element;
|
|
333
334
|
|
|
334
335
|
interface TableSearchProps {
|
|
335
336
|
value: string;
|
|
@@ -337,119 +338,16 @@ interface TableSearchProps {
|
|
|
337
338
|
}
|
|
338
339
|
declare const TableSearch: ({ value, onChange, }: TableSearchProps) => JSX.Element;
|
|
339
340
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
name: string | null;
|
|
344
|
-
status: string;
|
|
345
|
-
parent_type: string | null;
|
|
346
|
-
parent_id: string | null;
|
|
347
|
-
primary_email: string | null;
|
|
348
|
-
primary_mobile: string | null;
|
|
349
|
-
code: string;
|
|
350
|
-
created_by: string;
|
|
351
|
-
created_date: string;
|
|
352
|
-
modified_by: string | null;
|
|
353
|
-
modified_date: string | null;
|
|
354
|
-
enterprise_id: number;
|
|
355
|
-
organization_id: number;
|
|
356
|
-
appcode: string | null;
|
|
357
|
-
level_id: string;
|
|
358
|
-
level_type: string;
|
|
359
|
-
campus: string | null;
|
|
360
|
-
first_name: string | null;
|
|
361
|
-
last_name: string | null;
|
|
362
|
-
relationship_student: string | null;
|
|
363
|
-
phone_number: string | null;
|
|
364
|
-
email: string | null;
|
|
365
|
-
pin_code: string | null;
|
|
366
|
-
first_name_std: string | null;
|
|
367
|
-
last_name_std: string | null;
|
|
368
|
-
gender: string | null;
|
|
369
|
-
academic_year: string | null;
|
|
370
|
-
curr_grade: string | null;
|
|
371
|
-
source: string | null;
|
|
372
|
-
stage: string | null;
|
|
373
|
-
lead_owner: string | null;
|
|
374
|
-
lead_owner_name: string | null;
|
|
375
|
-
profile: {
|
|
376
|
-
signedUrl: string;
|
|
377
|
-
fileName: string;
|
|
378
|
-
id: string | number;
|
|
379
|
-
};
|
|
380
|
-
lead_source: string | null;
|
|
381
|
-
school_code: string | null;
|
|
382
|
-
source_details: string | null;
|
|
383
|
-
lead_status: string;
|
|
384
|
-
assigned_counselor: string | null;
|
|
385
|
-
lead_priority: string | null;
|
|
386
|
-
lead_score: string | null;
|
|
387
|
-
conversion_probability: string | null;
|
|
388
|
-
expected_admission_year: string | null;
|
|
389
|
-
budget_range: string | null;
|
|
390
|
-
enrollment_timeline: string | null;
|
|
391
|
-
lead_temperature: string | null;
|
|
392
|
-
utm_source: string | null;
|
|
393
|
-
student_first_name: string;
|
|
394
|
-
student_middle_name: string;
|
|
395
|
-
student_last_name: string;
|
|
396
|
-
student_gender: string;
|
|
397
|
-
student_age: string | null;
|
|
398
|
-
current_grade: string;
|
|
399
|
-
admission_grade: string;
|
|
400
|
-
current_school: string | null;
|
|
401
|
-
number_input: string | null;
|
|
402
|
-
current_board: string | null;
|
|
403
|
-
special_needs: string | null;
|
|
404
|
-
special_needs_details: string | null;
|
|
405
|
-
previous_school_reason: string | null;
|
|
406
|
-
academic_performance: string | null;
|
|
407
|
-
interested_academic_year: string | null;
|
|
408
|
-
father_salutation: string | null;
|
|
409
|
-
father_first_name: string | null;
|
|
410
|
-
father_last_name: string | null;
|
|
411
|
-
father_mobile: string | null;
|
|
412
|
-
father_email: string | null;
|
|
413
|
-
father_qualification: string | null;
|
|
414
|
-
father_occupation: string | null;
|
|
415
|
-
father_designation: string | null;
|
|
416
|
-
father_company: string | null;
|
|
417
|
-
father_annual_income: string | null;
|
|
418
|
-
father_office_address: string | null;
|
|
419
|
-
mother_salutation: string | null;
|
|
420
|
-
mother_first_name: string | null;
|
|
421
|
-
mother_last_name: string | null;
|
|
422
|
-
mother_email: string | null;
|
|
423
|
-
mother_mobile: string | null;
|
|
424
|
-
mother_qualification: string | null;
|
|
425
|
-
mother_designation: string | null;
|
|
426
|
-
mother_company: string | null;
|
|
427
|
-
mother_annual_income: string | null;
|
|
428
|
-
mother_office_address: string | null;
|
|
429
|
-
mother_occupation: string | null;
|
|
430
|
-
how_did_you_hear: string | null;
|
|
431
|
-
specific_requirements: string | null;
|
|
432
|
-
parent_questions: string | null;
|
|
433
|
-
special_requirements: string | null;
|
|
434
|
-
comments: string | null;
|
|
435
|
-
lead_reasons: string | null;
|
|
436
|
-
referral_source: string | null;
|
|
437
|
-
campaign_code: string | null;
|
|
438
|
-
DOB: string | null;
|
|
439
|
-
date: string | null;
|
|
440
|
-
enquiry_date: string;
|
|
441
|
-
student_dob: string | null;
|
|
442
|
-
date_input: string | null;
|
|
443
|
-
sub_lane_id: number;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
declare const Kanban: ({ rawData, isLoading, KanbanCardComponent, }: {
|
|
447
|
-
rawData: any;
|
|
341
|
+
declare const Kanban: ({ metaData, data, isLoading, KanbanCardComponent, showSettings, onOpenSettings, }: {
|
|
342
|
+
metaData: any;
|
|
343
|
+
data: any;
|
|
448
344
|
isLoading?: boolean;
|
|
449
345
|
KanbanCardComponent: React.ComponentType<{
|
|
450
346
|
key: string | number;
|
|
451
|
-
|
|
347
|
+
cardData: any;
|
|
452
348
|
}>;
|
|
349
|
+
showSettings: boolean;
|
|
350
|
+
onOpenSettings?: () => void;
|
|
453
351
|
}) => react_jsx_runtime.JSX.Element;
|
|
454
352
|
|
|
455
353
|
export { TableFilter as CraftTableFilter, TableSearch as CraftTableSearch, QuickFilterSettings as CraftTableSettings, TableTabs as CraftTableTabs, Kanban as KanbanWrapper, TableWrapper, useCraftTable, useCraftTableFilterSettings };
|