@pnkx-lib/ui 1.9.452 → 1.9.456
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/style.css +2 -2
- package/es/chunks/{bundle-mjs-BBFHkixS.js → bundle-mjs-BME7zF0Z.js} +1 -1
- package/es/chunks/{index.esm-o4O8pXMN.js → index.esm-Dr5ZHcf7.js} +135 -79
- package/es/constants/index.js +37 -1
- package/es/fields/CascaderField.js +1 -1
- package/es/fields/Checkbox.js +1 -1
- package/es/fields/DatePicker.js +1 -1
- package/es/fields/DateRangePicker.js +1 -1
- package/es/fields/Input.js +3 -3
- package/es/fields/InputRangePicker.js +1 -1
- package/es/fields/PnkxField.js +1 -1
- package/es/fields/Select.js +1 -1
- package/es/fields/SliderRanger.js +1 -1
- package/es/fields/SliderSingle.js +1 -1
- package/es/fields/Switch.js +1 -1
- package/es/fields/Textarea.js +1 -1
- package/es/fields/TimePicker.js +1 -1
- package/es/fields/TimeRangePicker.js +1 -1
- package/es/fields/TinyMCE.js +12 -48
- package/es/index.js +1 -1
- package/es/ui/Button.js +1 -1
- package/es/ui/Cascader.js +1 -1
- package/es/ui/CategoryStatus.js +2 -2
- package/es/ui/Container.js +1 -1
- package/es/ui/Label.js +1 -1
- package/es/ui/Layout.js +29 -32
- package/es/ui/Modal.js +1 -1
- package/es/ui/SearchFilterForm.js +1 -1
- package/es/ui/SelectSingleTable.js +1 -1
- package/es/ui/SelectTable.js +1 -1
- package/es/ui/Sidebar/index.js +1 -1
- package/es/ui/Tabs.js +2 -2
- package/es/ui/UploadComponent.js +1 -1
- package/es/ui/UploadImage.js +1 -1
- package/es/ui/index.js +3 -3
- package/package.json +4 -3
- package/types/components/ui/CategoryStatus.d.ts +2 -1
- package/types/constants/table.d.ts +0 -6
- package/es/chunks/table-DAdT33TE.js +0 -43
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
const START_PAGE = 1;
|
|
2
|
-
const START_PAGE_SIZE = 10;
|
|
3
|
-
const PAGE_NUMBER = "page";
|
|
4
|
-
const PAGE_SIZE = "size";
|
|
5
|
-
const SORT = "sort";
|
|
6
|
-
var TypeActionRowTable = /* @__PURE__ */ ((TypeActionRowTable2) => {
|
|
7
|
-
TypeActionRowTable2["DELETE"] = "DELETE";
|
|
8
|
-
TypeActionRowTable2["EDIT"] = "EDIT";
|
|
9
|
-
TypeActionRowTable2["UNDO"] = "UNDO";
|
|
10
|
-
TypeActionRowTable2["CANCELUNDO"] = "CANCELUNDO";
|
|
11
|
-
TypeActionRowTable2["CHECKIN"] = "CHECKIN";
|
|
12
|
-
TypeActionRowTable2["PRINT"] = "PRINT";
|
|
13
|
-
TypeActionRowTable2["PAYMENT"] = "PAYMENT";
|
|
14
|
-
TypeActionRowTable2["PLAY"] = "PLAY";
|
|
15
|
-
TypeActionRowTable2["PAUSE"] = "PAUSE";
|
|
16
|
-
TypeActionRowTable2["DOWNLOAD"] = "DOWNLOAD";
|
|
17
|
-
TypeActionRowTable2["VIEW"] = "VIEW";
|
|
18
|
-
return TypeActionRowTable2;
|
|
19
|
-
})(TypeActionRowTable || {});
|
|
20
|
-
var TypeBulkActions = /* @__PURE__ */ ((TypeBulkActions2) => {
|
|
21
|
-
TypeBulkActions2["BULKACTION"] = "bulkaction";
|
|
22
|
-
TypeBulkActions2["DROPLIST"] = "droplist";
|
|
23
|
-
return TypeBulkActions2;
|
|
24
|
-
})(TypeBulkActions || {});
|
|
25
|
-
var TypeStatusTable = /* @__PURE__ */ ((TypeStatusTable2) => {
|
|
26
|
-
TypeStatusTable2["ALL"] = "ALL";
|
|
27
|
-
TypeStatusTable2[TypeStatusTable2["DRAFT"] = 0] = "DRAFT";
|
|
28
|
-
TypeStatusTable2[TypeStatusTable2["WAITING_APPROVAL"] = 1] = "WAITING_APPROVAL";
|
|
29
|
-
TypeStatusTable2[TypeStatusTable2["ACTIVE"] = 2] = "ACTIVE";
|
|
30
|
-
TypeStatusTable2[TypeStatusTable2["INACTIVE"] = 3] = "INACTIVE";
|
|
31
|
-
TypeStatusTable2[TypeStatusTable2["REJECTED"] = 4] = "REJECTED";
|
|
32
|
-
TypeStatusTable2[TypeStatusTable2["DELETED"] = 5] = "DELETED";
|
|
33
|
-
return TypeStatusTable2;
|
|
34
|
-
})(TypeStatusTable || {});
|
|
35
|
-
var CategoryAccountStatus = /* @__PURE__ */ ((CategoryAccountStatus2) => {
|
|
36
|
-
CategoryAccountStatus2["ALL"] = "ALL";
|
|
37
|
-
CategoryAccountStatus2[CategoryAccountStatus2["ACTIVE"] = 1] = "ACTIVE";
|
|
38
|
-
CategoryAccountStatus2[CategoryAccountStatus2["INACTIVE"] = 2] = "INACTIVE";
|
|
39
|
-
CategoryAccountStatus2[CategoryAccountStatus2["DELETED"] = 3] = "DELETED";
|
|
40
|
-
return CategoryAccountStatus2;
|
|
41
|
-
})(CategoryAccountStatus || {});
|
|
42
|
-
|
|
43
|
-
export { CategoryAccountStatus as C, PAGE_NUMBER as P, START_PAGE as S, TypeActionRowTable as T, START_PAGE_SIZE as a, PAGE_SIZE as b, SORT as c, TypeBulkActions as d, TypeStatusTable as e };
|