@orianatech/pire 0.9.0 → 0.10.0
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/components/forms/DateRangePicker.d.cts +55 -0
- package/dist/components/forms/DateRangePicker.d.ts +56 -0
- package/dist/components/forms/DateRangePicker.d.ts.map +1 -0
- package/dist/components/forms/Input.d.cts +5 -0
- package/dist/components/forms/Input.d.ts +5 -0
- package/dist/components/forms/Input.d.ts.map +1 -1
- package/dist/components.css +18 -0
- package/dist/i18n/messages.d.cts +2 -0
- package/dist/i18n/messages.d.ts +2 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/index.cjs +404 -284
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +396 -260
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type * as React from 'react';
|
|
2
|
+
import type { DateValue } from 'react-aria-components';
|
|
3
|
+
export interface DateRange {
|
|
4
|
+
start: DateValue;
|
|
5
|
+
end: DateValue;
|
|
6
|
+
}
|
|
7
|
+
export interface DateRangePreset {
|
|
8
|
+
id: string;
|
|
9
|
+
label: string;
|
|
10
|
+
/** The app computes the range: Pire cannot know when a customer's fiscal year starts. */
|
|
11
|
+
range: () => DateRange;
|
|
12
|
+
}
|
|
13
|
+
export interface DateRangePickerProps {
|
|
14
|
+
label?: React.ReactNode;
|
|
15
|
+
value?: DateRange | null;
|
|
16
|
+
defaultValue?: DateRange | null;
|
|
17
|
+
onChange?: (value: DateRange | null) => void;
|
|
18
|
+
minValue?: DateValue;
|
|
19
|
+
maxValue?: DateValue;
|
|
20
|
+
/** Return true for dates that cannot be picked — blocked periods, closed books. */
|
|
21
|
+
isDateUnavailable?: (date: DateValue) => boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Longest range the caller accepts, in days. Exceeding it marks the field invalid so
|
|
24
|
+
* `errorMessage` shows — the wording is the app's, since only it knows the limit's reason.
|
|
25
|
+
*
|
|
26
|
+
* Days rather than a duration: "12 months" is not a fixed number of days, so pick the bound
|
|
27
|
+
* that matches your rule rather than expecting a calendar-aware one.
|
|
28
|
+
*/
|
|
29
|
+
maxRangeDays?: number;
|
|
30
|
+
/** Shortcuts beside the calendar: "This month", "Last 30 days". */
|
|
31
|
+
presets?: DateRangePreset[];
|
|
32
|
+
description?: React.ReactNode;
|
|
33
|
+
errorMessage?: React.ReactNode;
|
|
34
|
+
isInvalid?: boolean;
|
|
35
|
+
isDisabled?: boolean;
|
|
36
|
+
isReadOnly?: boolean;
|
|
37
|
+
isRequired?: boolean;
|
|
38
|
+
size?: 'sm' | 'md' | 'lg';
|
|
39
|
+
fullWidth?: boolean;
|
|
40
|
+
/** HTML submit names for the two ends. */
|
|
41
|
+
startName?: string;
|
|
42
|
+
endName?: string;
|
|
43
|
+
className?: string;
|
|
44
|
+
style?: React.CSSProperties;
|
|
45
|
+
}
|
|
46
|
+
/** Whole days between the two ends, inclusive of both. */
|
|
47
|
+
export declare function rangeLengthInDays(range: DateRange): number;
|
|
48
|
+
/**
|
|
49
|
+
* Two dates that belong together — the default filter on 24 ERP screens.
|
|
50
|
+
*
|
|
51
|
+
* Built on React Aria's `DateRangePicker`, which supplies the segmented ends, the ordering rules
|
|
52
|
+
* between them, and locale-driven segment order. Wrap the app in `I18nProvider` to pin a locale:
|
|
53
|
+
* `es-PY` reads dd/mm/yyyy and `en-US` mm/dd/yyyy off the same value.
|
|
54
|
+
*/
|
|
55
|
+
export declare function DateRangePicker({ label, description, errorMessage, maxRangeDays, presets, size, fullWidth, startName, endName, className, style, ...rest }: DateRangePickerProps): React.JSX.Element;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type * as React from 'react';
|
|
2
|
+
import type { DateValue } from 'react-aria-components';
|
|
3
|
+
export interface DateRange {
|
|
4
|
+
start: DateValue;
|
|
5
|
+
end: DateValue;
|
|
6
|
+
}
|
|
7
|
+
export interface DateRangePreset {
|
|
8
|
+
id: string;
|
|
9
|
+
label: string;
|
|
10
|
+
/** The app computes the range: Pire cannot know when a customer's fiscal year starts. */
|
|
11
|
+
range: () => DateRange;
|
|
12
|
+
}
|
|
13
|
+
export interface DateRangePickerProps {
|
|
14
|
+
label?: React.ReactNode;
|
|
15
|
+
value?: DateRange | null;
|
|
16
|
+
defaultValue?: DateRange | null;
|
|
17
|
+
onChange?: (value: DateRange | null) => void;
|
|
18
|
+
minValue?: DateValue;
|
|
19
|
+
maxValue?: DateValue;
|
|
20
|
+
/** Return true for dates that cannot be picked — blocked periods, closed books. */
|
|
21
|
+
isDateUnavailable?: (date: DateValue) => boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Longest range the caller accepts, in days. Exceeding it marks the field invalid so
|
|
24
|
+
* `errorMessage` shows — the wording is the app's, since only it knows the limit's reason.
|
|
25
|
+
*
|
|
26
|
+
* Days rather than a duration: "12 months" is not a fixed number of days, so pick the bound
|
|
27
|
+
* that matches your rule rather than expecting a calendar-aware one.
|
|
28
|
+
*/
|
|
29
|
+
maxRangeDays?: number;
|
|
30
|
+
/** Shortcuts beside the calendar: "This month", "Last 30 days". */
|
|
31
|
+
presets?: DateRangePreset[];
|
|
32
|
+
description?: React.ReactNode;
|
|
33
|
+
errorMessage?: React.ReactNode;
|
|
34
|
+
isInvalid?: boolean;
|
|
35
|
+
isDisabled?: boolean;
|
|
36
|
+
isReadOnly?: boolean;
|
|
37
|
+
isRequired?: boolean;
|
|
38
|
+
size?: 'sm' | 'md' | 'lg';
|
|
39
|
+
fullWidth?: boolean;
|
|
40
|
+
/** HTML submit names for the two ends. */
|
|
41
|
+
startName?: string;
|
|
42
|
+
endName?: string;
|
|
43
|
+
className?: string;
|
|
44
|
+
style?: React.CSSProperties;
|
|
45
|
+
}
|
|
46
|
+
/** Whole days between the two ends, inclusive of both. */
|
|
47
|
+
export declare function rangeLengthInDays(range: DateRange): number;
|
|
48
|
+
/**
|
|
49
|
+
* Two dates that belong together — the default filter on 24 ERP screens.
|
|
50
|
+
*
|
|
51
|
+
* Built on React Aria's `DateRangePicker`, which supplies the segmented ends, the ordering rules
|
|
52
|
+
* between them, and locale-driven segment order. Wrap the app in `I18nProvider` to pin a locale:
|
|
53
|
+
* `es-PY` reads dd/mm/yyyy and `en-US` mm/dd/yyyy off the same value.
|
|
54
|
+
*/
|
|
55
|
+
export declare function DateRangePicker({ label, description, errorMessage, maxRangeDays, presets, size, fullWidth, startName, endName, className, style, ...rest }: DateRangePickerProps): React.JSX.Element;
|
|
56
|
+
//# sourceMappingURL=DateRangePicker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DateRangePicker.d.ts","sourceRoot":"","sources":["../../../src/components/forms/DateRangePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAMpC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAKvD,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,SAAS,CAAC;IACjB,GAAG,EAAE,SAAS,CAAC;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,yFAAyF;IACzF,KAAK,EAAE,MAAM,SAAS,CAAC;CACxB;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IACzB,YAAY,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IAChC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI,KAAK,IAAI,CAAC;IAC7C,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,mFAAmF;IACnF,iBAAiB,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,OAAO,CAAC;IACjD;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,mEAAmE;IACnE,OAAO,CAAC,EAAE,eAAe,EAAE,CAAC;IAC5B,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,0CAA0C;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAED,0DAA0D;AAC1D,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,CAG1D;AAED;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,EAC9B,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,OAAO,EAAE,IAAW,EAAE,SAAgB,EACtF,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,IAAI,EAC9C,EAAE,oBAAoB,qBAiFtB"}
|
|
@@ -6,6 +6,11 @@ export interface InputProps {
|
|
|
6
6
|
/** Receives the raw string value. */
|
|
7
7
|
onChange?: (value: string) => void;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
/**
|
|
10
|
+
* `date` is accepted for compatibility but reaches for the browser's native picker, which
|
|
11
|
+
* ignores the token palette and behaves differently per browser. Use `DatePicker`, or
|
|
12
|
+
* `DateRangePicker` for two ends.
|
|
13
|
+
*/
|
|
9
14
|
type?: 'text' | 'search' | 'email' | 'number' | 'date' | 'password' | 'tel' | 'url';
|
|
10
15
|
/** Leading icon slug — "search", "calendar", "hash". */
|
|
11
16
|
icon?: string;
|
|
@@ -6,6 +6,11 @@ export interface InputProps {
|
|
|
6
6
|
/** Receives the raw string value. */
|
|
7
7
|
onChange?: (value: string) => void;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
/**
|
|
10
|
+
* `date` is accepted for compatibility but reaches for the browser's native picker, which
|
|
11
|
+
* ignores the token palette and behaves differently per browser. Use `DatePicker`, or
|
|
12
|
+
* `DateRangePicker` for two ends.
|
|
13
|
+
*/
|
|
9
14
|
type?: 'text' | 'search' | 'email' | 'number' | 'date' | 'password' | 'tel' | 'url';
|
|
10
15
|
/** Leading icon slug — "search", "calendar", "hash". */
|
|
11
16
|
icon?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAKpC,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,KAAK,GAAG,KAAK,CAAC;IACpF,wDAAwD;IACxD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qDAAqD;IACrD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,wEAAwE;IACxE,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,0EAA0E;IAC1E,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;CACxC;AAED;oDACoD;AACpD,wBAAgB,KAAK,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,IAAW,EAAE,OAAO,EAC1F,SAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,UAAU,qBAmB9E"}
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAKpC,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,KAAK,GAAG,KAAK,CAAC;IACpF,wDAAwD;IACxD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qDAAqD;IACrD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,wEAAwE;IACxE,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,0EAA0E;IAC1E,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;CACxC;AAED;oDACoD;AACpD,wBAAgB,KAAK,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,IAAW,EAAE,OAAO,EAC1F,SAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,UAAU,qBAmB9E"}
|
package/dist/components.css
CHANGED
|
@@ -481,6 +481,24 @@
|
|
|
481
481
|
.pire-menu-section-title{display:block;padding:var(--sp-1) var(--sp-3);font:var(--type-label);letter-spacing:var(--ls-caps);text-transform:uppercase;color:var(--text-secondary)}
|
|
482
482
|
.pire-menu-separator{border:0;border-top:var(--border-w-hairline) solid var(--border-subtle);margin:var(--sp-1) 0}
|
|
483
483
|
|
|
484
|
+
/* ---- DateRangePicker ------------------------------------------------------ */
|
|
485
|
+
.pire-daterange-control{gap:var(--sp-1)}
|
|
486
|
+
.pire-daterange-dash{color:var(--text-tertiary);flex:0 0 auto}
|
|
487
|
+
/* Presets sit beside the calendar, and before it in the DOM so the keyboard reaches a shortcut
|
|
488
|
+
without arrowing through a month first. */
|
|
489
|
+
.pire-daterange-dialog{display:flex;align-items:stretch}
|
|
490
|
+
.pire-daterange-presets{display:flex;flex-direction:column;gap:var(--sp-0h);padding:var(--sp-2);border-right:1px solid var(--border-subtle);min-width:140px}
|
|
491
|
+
.pire-daterange-preset{display:flex;align-items:center;min-height:var(--row-h-condensed);padding:0 var(--sp-2);border:0;border-radius:var(--radius-1);background:transparent;color:var(--text-primary);font:var(--type-body);text-align:left;cursor:pointer}
|
|
492
|
+
.pire-daterange-preset[data-hovered]{background:var(--surface-hover)}
|
|
493
|
+
.pire-daterange-preset[data-focus-visible]{outline:var(--focus-w) solid var(--focus-color);outline-offset:calc(var(--focus-offset) * -1)}
|
|
494
|
+
/* Range highlighting comes off the data attributes React Aria puts on each cell. The two ends
|
|
495
|
+
carry the accent; the span between them uses the subtle pair so the ends stay legible as ends. */
|
|
496
|
+
.pire-calendar-cell[data-selected]{background:var(--accent-subtle-bg);color:var(--accent-subtle-fg);border-radius:0}
|
|
497
|
+
.pire-calendar-cell[data-selection-start]{background:var(--accent-bg);color:var(--text-on-accent);border-radius:var(--radius-1) 0 0 var(--radius-1)}
|
|
498
|
+
.pire-calendar-cell[data-selection-end]{background:var(--accent-bg);color:var(--text-on-accent);border-radius:0 var(--radius-1) var(--radius-1) 0}
|
|
499
|
+
.pire-calendar-cell[data-selection-start][data-selection-end]{border-radius:var(--radius-1)}
|
|
500
|
+
.pire-calendar-cell[data-outside-visible-range]{visibility:hidden}
|
|
501
|
+
|
|
484
502
|
/* ---- FileUpload / FileDropZone ------------------------------------------- */
|
|
485
503
|
.pire-fileupload-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:var(--sp-1)}
|
|
486
504
|
.pire-fileupload-item{display:flex;align-items:center;gap:var(--sp-2);min-height:var(--row-h-condensed);padding:0 var(--sp-2);border:1px solid var(--border-subtle);border-radius:var(--radius-1);background:var(--surface-card)}
|
package/dist/i18n/messages.d.cts
CHANGED
|
@@ -39,6 +39,8 @@ export interface PireMessages {
|
|
|
39
39
|
datePickerOpenCalendar: string;
|
|
40
40
|
datePickerPreviousMonth: string;
|
|
41
41
|
datePickerNextMonth: string;
|
|
42
|
+
/** Groups the shortcut buttons beside the range calendar. */
|
|
43
|
+
dateRangePresetsLabel: string;
|
|
42
44
|
/** Accessible names of the NumberField steppers. */
|
|
43
45
|
numberFieldIncrease: string;
|
|
44
46
|
numberFieldDecrease: string;
|
package/dist/i18n/messages.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export interface PireMessages {
|
|
|
39
39
|
datePickerOpenCalendar: string;
|
|
40
40
|
datePickerPreviousMonth: string;
|
|
41
41
|
datePickerNextMonth: string;
|
|
42
|
+
/** Groups the shortcut buttons beside the range calendar. */
|
|
43
|
+
dateRangePresetsLabel: string;
|
|
42
44
|
/** Accessible names of the NumberField steppers. */
|
|
43
45
|
numberFieldIncrease: string;
|
|
44
46
|
numberFieldDecrease: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,MAAM,WAAW,YAAY;IAC3B,iCAAiC;IACjC,cAAc,EAAE,MAAM,CAAC;IACvB,8EAA8E;IAC9E,WAAW,EAAE,MAAM,CAAC;IACpB,mEAAmE;IACnE,iBAAiB,EAAE,MAAM,CAAC;IAE1B,qEAAqE;IACrE,kBAAkB,EAAE,MAAM,CAAC;IAC3B,qDAAqD;IACrD,kBAAkB,EAAE,MAAM,CAAC;IAC3B,oDAAoD;IACpD,gBAAgB,EAAE,MAAM,CAAC;IAEzB,wDAAwD;IACxD,WAAW,EAAE,MAAM,CAAC;IACpB,uDAAuD;IACvD,cAAc,EAAE,MAAM,CAAC;IAEvB,6DAA6D;IAC7D,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uDAAuD;IACvD,YAAY,EAAE,MAAM,CAAC;IACrB,8CAA8C;IAC9C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,kEAAkE;IAClE,uBAAuB,EAAE,MAAM,CAAC;IAChC,mEAAmE;IACnE,eAAe,EAAE,MAAM,CAAC;IAExB,qEAAqE;IACrE,sBAAsB,EAAE,MAAM,CAAC;IAC/B,uBAAuB,EAAE,MAAM,CAAC;IAChC,mBAAmB,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,MAAM,WAAW,YAAY;IAC3B,iCAAiC;IACjC,cAAc,EAAE,MAAM,CAAC;IACvB,8EAA8E;IAC9E,WAAW,EAAE,MAAM,CAAC;IACpB,mEAAmE;IACnE,iBAAiB,EAAE,MAAM,CAAC;IAE1B,qEAAqE;IACrE,kBAAkB,EAAE,MAAM,CAAC;IAC3B,qDAAqD;IACrD,kBAAkB,EAAE,MAAM,CAAC;IAC3B,oDAAoD;IACpD,gBAAgB,EAAE,MAAM,CAAC;IAEzB,wDAAwD;IACxD,WAAW,EAAE,MAAM,CAAC;IACpB,uDAAuD;IACvD,cAAc,EAAE,MAAM,CAAC;IAEvB,6DAA6D;IAC7D,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uDAAuD;IACvD,YAAY,EAAE,MAAM,CAAC;IACrB,8CAA8C;IAC9C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,kEAAkE;IAClE,uBAAuB,EAAE,MAAM,CAAC;IAChC,mEAAmE;IACnE,eAAe,EAAE,MAAM,CAAC;IAExB,qEAAqE;IACrE,sBAAsB,EAAE,MAAM,CAAC;IAC/B,uBAAuB,EAAE,MAAM,CAAC;IAChC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,6DAA6D;IAC7D,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oDAAoD;IACpD,mBAAmB,EAAE,MAAM,CAAC;IAC5B,mBAAmB,EAAE,MAAM,CAAC;IAE5B,kEAAkE;IAClE,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qFAAqF;IACrF,uBAAuB,EAAE,MAAM,CAAC;IAChC,uEAAuE;IACvE,kBAAkB,EAAE,MAAM,CAAC;IAC3B,yDAAyD;IACzD,qBAAqB,EAAE,MAAM,CAAC;IAC9B,uDAAuD;IACvD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,mDAAmD;IACnD,eAAe,EAAE,MAAM,CAAC;IACxB,wFAAwF;IACxF,eAAe,EAAE,MAAM,CAAC;IACxB,yDAAyD;IACzD,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,qBAAqB,EAAE,MAAM,CAAC;IAE9B,0FAA0F;IAC1F,YAAY,EAAE,MAAM,CAAC;IAErB,4CAA4C;IAC5C,gBAAgB,EAAE,MAAM,CAAC;IACzB,wEAAwE;IACxE,qBAAqB,EAAE,MAAM,CAAC;IAC9B,uDAAuD;IACvD,mBAAmB,EAAE,MAAM,CAAC;IAC5B,2CAA2C;IAC3C,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,eAAO,MAAM,UAAU,EAAE,YA8CxB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,YA8CxB,CAAC"}
|