@josephomills/esign 0.9.0 → 0.9.1
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/{ports--YsOnh8H.d.cts → ports-Cdml5OIu.d.cts} +1 -1
- package/dist/{ports--YsOnh8H.d.ts → ports-Cdml5OIu.d.ts} +1 -1
- package/dist/prisma/index.d.cts +1 -1
- package/dist/prisma/index.d.ts +1 -1
- package/dist/server/index.cjs +7 -7
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.cts +2 -2
- package/dist/server/index.d.ts +2 -2
- package/dist/server/index.js +7 -7
- package/dist/server/index.js.map +1 -1
- package/dist/ui/index.cjs +98 -35
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.js +98 -35
- package/dist/ui/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -29,7 +29,7 @@ declare const DATE_FORMATS: readonly DateFormat[];
|
|
|
29
29
|
declare const DEFAULT_DATE_FORMAT: DateFormat;
|
|
30
30
|
/** Render an ISO `yyyy-mm-dd` date in the chosen format. Parses the parts directly. */
|
|
31
31
|
declare function formatPickedDate(iso: string, format: DateFormat): string;
|
|
32
|
-
/**
|
|
32
|
+
/** Generic pattern label for each format, for pickers. */
|
|
33
33
|
declare const DATE_FORMAT_LABELS: Record<DateFormat, string>;
|
|
34
34
|
|
|
35
35
|
type EsignChannel = "EMAIL" | "TELEGRAM" | "SMS" | "WHATSAPP";
|
|
@@ -29,7 +29,7 @@ declare const DATE_FORMATS: readonly DateFormat[];
|
|
|
29
29
|
declare const DEFAULT_DATE_FORMAT: DateFormat;
|
|
30
30
|
/** Render an ISO `yyyy-mm-dd` date in the chosen format. Parses the parts directly. */
|
|
31
31
|
declare function formatPickedDate(iso: string, format: DateFormat): string;
|
|
32
|
-
/**
|
|
32
|
+
/** Generic pattern label for each format, for pickers. */
|
|
33
33
|
declare const DATE_FORMAT_LABELS: Record<DateFormat, string>;
|
|
34
34
|
|
|
35
35
|
type EsignChannel = "EMAIL" | "TELEGRAM" | "SMS" | "WHATSAPP";
|
package/dist/prisma/index.d.cts
CHANGED
package/dist/prisma/index.d.ts
CHANGED
package/dist/server/index.cjs
CHANGED
|
@@ -155,13 +155,13 @@ function formatPickedDate(iso, format) {
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
var DATE_FORMAT_LABELS = {
|
|
158
|
-
"DD/MM/YYYY": "
|
|
159
|
-
"MM/DD/YYYY": "
|
|
160
|
-
"YYYY-MM-DD": "
|
|
161
|
-
"D MMM YYYY": "
|
|
162
|
-
"Do MMM YYYY": "
|
|
163
|
-
"Do MMMM YYYY": "
|
|
164
|
-
"MMMM D, YYYY": "
|
|
158
|
+
"DD/MM/YYYY": "DD/MM/YYYY",
|
|
159
|
+
"MM/DD/YYYY": "MM/DD/YYYY",
|
|
160
|
+
"YYYY-MM-DD": "YYYY-MM-DD",
|
|
161
|
+
"D MMM YYYY": "D Mon YYYY",
|
|
162
|
+
"Do MMM YYYY": "Do Mon YYYY",
|
|
163
|
+
"Do MMMM YYYY": "Do Month YYYY",
|
|
164
|
+
"MMMM D, YYYY": "Month D, YYYY"
|
|
165
165
|
};
|
|
166
166
|
|
|
167
167
|
// src/server/types.ts
|