aq-fe-framework 0.1.318 → 0.1.320

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.
@@ -0,0 +1,20 @@
1
+ import {
2
+ utils_date_dateToDDMMYYYString
3
+ } from "./chunk-I2XIN2R3.mjs";
4
+
5
+ // src/columns/baseColumns.ts
6
+ var baseColumns = [
7
+ {
8
+ header: "Ng\xE0y c\u1EADp nh\u1EADt",
9
+ accessorKey: "modifiedWhen",
10
+ Cell: ({ cell }) => utils_date_dateToDDMMYYYString(new Date(cell.getValue()))
11
+ },
12
+ {
13
+ header: "Ng\u01B0\u1EDDi c\u1EADp nh\u1EADt",
14
+ accessorKey: "modifiedFullName"
15
+ }
16
+ ];
17
+
18
+ export {
19
+ baseColumns
20
+ };
@@ -0,0 +1,13 @@
1
+ // src/const/object/const_object_documentTypes.ts
2
+ var const_object_documentTypes = {
3
+ Security: 1,
4
+ Refinement: 2,
5
+ Guideline: 3,
6
+ Regulations: 4,
7
+ Workflow: 5,
8
+ Form: 6
9
+ };
10
+
11
+ export {
12
+ const_object_documentTypes
13
+ };