@apptimate/ui 5.1.0 → 5.3.0
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/package.json +3 -2
- package/src/base-components/ChartOfAccountPicker.tsx +203 -0
- package/src/base-components/ColorPicker.tsx +204 -0
- package/src/base-components/Modal.tsx +17 -7
- package/src/base-components/RichEmailEditor.tsx +137 -0
- package/src/common-components/DashboardLayout.tsx +17 -1
- package/src/common-components/attendance-shifts/AttendanceTimesheets.tsx +43 -0
- package/src/common-components/attendance-shifts/CalendarLegend.tsx +27 -0
- package/src/common-components/attendance-shifts/CancelShiftModal.tsx +148 -0
- package/src/common-components/attendance-shifts/DailyOverview.tsx +198 -0
- package/src/common-components/attendance-shifts/DailySchedulePanel.tsx +139 -0
- package/src/common-components/attendance-shifts/ExchangeShiftModal.tsx +132 -0
- package/src/common-components/attendance-shifts/ImportExcelModal.tsx +183 -0
- package/src/common-components/attendance-shifts/ManualPunchModal.tsx +139 -0
- package/src/common-components/attendance-shifts/PendingActionsPanel.tsx +321 -0
- package/src/common-components/attendance-shifts/ShiftCalendar.tsx +451 -0
- package/src/common-components/attendance-shifts/ShiftTemplateForm.tsx +249 -0
- package/src/common-components/attendance-shifts/SummaryStrip.tsx +81 -0
- package/src/common-components/item-wizard/ItemFormWizard.tsx +8 -1
- package/src/common-components/item-wizard/SkuConfigModal.tsx +6 -1
- package/src/common-components/pickers/BrandPicker.tsx +5 -1
- package/src/common-components/pickers/CategoryPicker.tsx +5 -1
- package/src/common-components/pickers/EmployeePicker.tsx +120 -0
- package/src/common-components/pickers/EntityPickerModal.tsx +10 -5
- package/src/common-components/pickers/PartyPicker.tsx +5 -1
- package/src/common-components/pickers/UomGroupPicker.tsx +5 -1
- package/src/common-components/pickers/UomPicker.tsx +6 -1
- package/src/common-components/pickers/WarehousePicker.tsx +5 -1
- package/src/components/shared/CustomerSelectorComponent.tsx +7 -1
- package/src/components/shared/ImageUploadComponent.tsx +4 -1
- package/src/components/shared/PaymentModeComponent.tsx +6 -1
- package/src/components/shared/ProductSelectorComponent.tsx +7 -1
- package/src/index.tsx +19 -0
package/src/index.tsx
CHANGED
|
@@ -19,6 +19,8 @@ export * from './base-components/TableMobileOptions';
|
|
|
19
19
|
export * from './base-components/DesktopSearchPopover';
|
|
20
20
|
export * from './base-components/DesktopFilterPopover';
|
|
21
21
|
export * from './base-components/Input';
|
|
22
|
+
export * from './base-components/RichEmailEditor';
|
|
23
|
+
export * from './base-components/ColorPicker';
|
|
22
24
|
export * from './base-components/Textarea';
|
|
23
25
|
export * from './base-components/Label';
|
|
24
26
|
export * from './base-components/Modal';
|
|
@@ -41,6 +43,7 @@ export * from './base-components/WizardModal';
|
|
|
41
43
|
// Pickers
|
|
42
44
|
export * from './common-components/pickers/BrandPicker';
|
|
43
45
|
export * from './common-components/pickers/CategoryPicker';
|
|
46
|
+
export * from './common-components/pickers/EmployeePicker';
|
|
44
47
|
export * from './common-components/pickers/EntityPickerModal';
|
|
45
48
|
export * from './common-components/pickers/UomGroupPicker';
|
|
46
49
|
export * from './common-components/pickers/UomPicker';
|
|
@@ -56,3 +59,19 @@ export * from './common-components/item-wizard/SkuConfigModal';
|
|
|
56
59
|
// Transaction
|
|
57
60
|
export * from './common-components/transaction';
|
|
58
61
|
export * from './finance-components/PaymentForm';
|
|
62
|
+
|
|
63
|
+
// Attendance & Shifts
|
|
64
|
+
export { default as ShiftCalendar } from './common-components/attendance-shifts/ShiftCalendar';
|
|
65
|
+
export * from './common-components/attendance-shifts/ShiftCalendar';
|
|
66
|
+
export { default as ShiftTemplateForm } from './common-components/attendance-shifts/ShiftTemplateForm';
|
|
67
|
+
export * from './common-components/attendance-shifts/ShiftTemplateForm';
|
|
68
|
+
export { default as DailyOverview } from './common-components/attendance-shifts/DailyOverview';
|
|
69
|
+
export * from './common-components/attendance-shifts/DailyOverview';
|
|
70
|
+
export { default as PendingActionsPanel } from './common-components/attendance-shifts/PendingActionsPanel';
|
|
71
|
+
export * from './common-components/attendance-shifts/PendingActionsPanel';
|
|
72
|
+
export * from './common-components/attendance-shifts/ManualPunchModal';
|
|
73
|
+
export * from './common-components/attendance-shifts/ImportExcelModal';
|
|
74
|
+
export { default as AttendanceTimesheets } from './common-components/attendance-shifts/AttendanceTimesheets';
|
|
75
|
+
export * from './common-components/attendance-shifts/AttendanceTimesheets';
|
|
76
|
+
|
|
77
|
+
export * from "./base-components/ChartOfAccountPicker";
|