cyc-type-def 5.1.2 → 5.1.3

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.cjs CHANGED
@@ -32,6 +32,7 @@ __export(index_exports, {
32
32
  ClickAction: () => ClickAction,
33
33
  Cluster: () => Cluster,
34
34
  Column: () => Column,
35
+ DialogAction: () => DialogAction,
35
36
  DisplayAttendance: () => DisplayAttendance,
36
37
  FollowUpStatus: () => FollowUpStatus,
37
38
  LIST_STATUS: () => LIST_STATUS,
@@ -606,6 +607,13 @@ var MsjJoinStatusInfo = {
606
607
  }
607
608
  };
608
609
 
610
+ // src/constants/dialog.constant.ts
611
+ var DialogAction = /* @__PURE__ */ ((DialogAction2) => {
612
+ DialogAction2["EDIT"] = "edit";
613
+ DialogAction2["ADD"] = "add";
614
+ return DialogAction2;
615
+ })(DialogAction || {});
616
+
609
617
  // src/util/common.util.ts
610
618
  function cgNum(cgName) {
611
619
  var num = cgName.match(/\d+/g);
@@ -674,6 +682,7 @@ function compareCG(a, b) {
674
682
  ClickAction,
675
683
  Cluster,
676
684
  Column,
685
+ DialogAction,
677
686
  DisplayAttendance,
678
687
  FollowUpStatus,
679
688
  LIST_STATUS,
package/dist/index.d.cts CHANGED
@@ -557,4 +557,4 @@ declare function getDayMonthSortKey(timestamp: number): number;
557
557
 
558
558
  declare function compareCG(a: CG, b: CG): number;
559
559
 
560
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
560
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DialogAction, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
package/dist/index.d.ts CHANGED
@@ -557,4 +557,4 @@ declare function getDayMonthSortKey(timestamp: number): number;
557
557
 
558
558
  declare function compareCG(a: CG, b: CG): number;
559
559
 
560
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
560
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DialogAction, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
package/dist/index.js CHANGED
@@ -547,6 +547,13 @@ var MsjJoinStatusInfo = {
547
547
  }
548
548
  };
549
549
 
550
+ // src/constants/dialog.constant.ts
551
+ var DialogAction = /* @__PURE__ */ ((DialogAction2) => {
552
+ DialogAction2["EDIT"] = "edit";
553
+ DialogAction2["ADD"] = "add";
554
+ return DialogAction2;
555
+ })(DialogAction || {});
556
+
550
557
  // src/util/common.util.ts
551
558
  function cgNum(cgName) {
552
559
  var num = cgName.match(/\d+/g);
@@ -614,6 +621,7 @@ export {
614
621
  ClickAction,
615
622
  Cluster,
616
623
  Column,
624
+ DialogAction,
617
625
  DisplayAttendance,
618
626
  FollowUpStatus,
619
627
  LIST_STATUS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "5.1.2",
3
+ "version": "5.1.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",