aq-fe-framework 0.1.259 → 0.1.260

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,25 @@
1
+ // src/const/array/const_array_daysOfWeek.ts
2
+ var const_array_daysOfWeek = [
3
+ "Th\u1EE9 Hai",
4
+ "Th\u1EE9 Ba",
5
+ "Th\u1EE9 T\u01B0",
6
+ "Th\u1EE9 N\u0103m",
7
+ "Th\u1EE9 S\xE1u",
8
+ "Th\u1EE9 B\u1EA3y",
9
+ "Ch\u1EE7 Nh\u1EADt"
10
+ ];
11
+
12
+ // src/const/object/const_object_documentTypes.ts
13
+ var const_object_documentTypes = {
14
+ Security: 1,
15
+ Refinement: 2,
16
+ Guideline: 3,
17
+ Regulations: 4,
18
+ Workflow: 5,
19
+ Form: 6
20
+ };
21
+
22
+ export {
23
+ const_array_daysOfWeek,
24
+ const_object_documentTypes
25
+ };
@@ -1,21 +1,11 @@
1
1
  import {
2
+ const_array_daysOfWeek,
2
3
  const_object_documentTypes
3
- } from "../chunk-BZMQOGL6.mjs";
4
+ } from "../chunk-GFEMKKFH.mjs";
4
5
  import {
5
6
  const_object_colors
6
7
  } from "../chunk-NWBLJ3W3.mjs";
7
8
  import "../chunk-FWCSY2DS.mjs";
8
-
9
- // src/const/array/const_array_daysOfWeek.ts
10
- var const_array_daysOfWeek = [
11
- "Th\u1EE9 Hai",
12
- "Th\u1EE9 Ba",
13
- "Th\u1EE9 T\u01B0",
14
- "Th\u1EE9 N\u0103m",
15
- "Th\u1EE9 S\xE1u",
16
- "Th\u1EE9 B\u1EA3y",
17
- "Ch\u1EE7 Nh\u1EADt"
18
- ];
19
9
  export {
20
10
  const_array_daysOfWeek,
21
11
  const_object_colors,
@@ -27,7 +27,7 @@ import {
27
27
  } from "../chunk-IE2L2KGO.mjs";
28
28
  import {
29
29
  const_object_documentTypes
30
- } from "../chunk-BZMQOGL6.mjs";
30
+ } from "../chunk-GFEMKKFH.mjs";
31
31
  import {
32
32
  const_object_colors
33
33
  } from "../chunk-NWBLJ3W3.mjs";
@@ -1471,7 +1471,7 @@ function F_core38677_ReadUser() {
1471
1471
  onClick: () => handleRowClick(row.id),
1472
1472
  style: {
1473
1473
  cursor: "pointer",
1474
- backgroundColor: rowSelection[row.id] ? "var(--mantine-color-blue-light)" : "transparent"
1474
+ backgroundColor: rowSelection[row.id] ? const_object_colors.mantineBackgroundTealLight : "transparent"
1475
1475
  }
1476
1476
  }),
1477
1477
  state: rowSelection
@@ -3151,7 +3151,7 @@ function F_core83092_ReadUser() {
3151
3151
  onClick: () => handleRowClick(row.id),
3152
3152
  style: {
3153
3153
  cursor: "pointer",
3154
- backgroundColor: rowSelection[row.id] ? "var(--mantine-color-blue-light)" : "transparent"
3154
+ backgroundColor: rowSelection[row.id] ? const_object_colors.mantineBackgroundTealLight : "transparent"
3155
3155
  }
3156
3156
  }),
3157
3157
  state: rowSelection
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "types": "./dist/enum/index.d.mts"
35
35
  }
36
36
  },
37
- "version": "0.1.259",
37
+ "version": "0.1.260",
38
38
  "private": false,
39
39
  "files": [
40
40
  "dist"
@@ -1,13 +0,0 @@
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
- };