@orianatech/pire 0.5.0 → 0.7.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/core/Heading.d.cts +15 -0
- package/dist/components/core/Heading.d.ts +16 -0
- package/dist/components/core/Heading.d.ts.map +1 -0
- package/dist/components/core/IconButton.d.cts +12 -0
- package/dist/components/core/IconButton.d.ts +12 -0
- package/dist/components/core/IconButton.d.ts.map +1 -1
- package/dist/components/core/Link.d.cts +13 -0
- package/dist/components/core/Link.d.ts +14 -0
- package/dist/components/core/Link.d.ts.map +1 -0
- package/dist/components/core/Separator.d.cts +12 -0
- package/dist/components/core/Separator.d.ts +13 -0
- package/dist/components/core/Separator.d.ts.map +1 -0
- package/dist/components/core/Text.d.cts +29 -0
- package/dist/components/core/Text.d.ts +30 -0
- package/dist/components/core/Text.d.ts.map +1 -0
- package/dist/components/data/DataTable.d.cts +7 -1
- package/dist/components/data/DataTable.d.ts +7 -1
- package/dist/components/data/DataTable.d.ts.map +1 -1
- package/dist/components/data/FilterBar.d.cts +7 -1
- package/dist/components/data/FilterBar.d.ts +7 -1
- package/dist/components/data/FilterBar.d.ts.map +1 -1
- package/dist/components/feedback/Dialog.d.ts.map +1 -1
- package/dist/components/feedback/InlineMessage.d.ts.map +1 -1
- package/dist/components/feedback/Toast.d.ts.map +1 -1
- package/dist/components/forms/ComboBox.d.ts.map +1 -1
- package/dist/components/forms/DatePicker.d.ts.map +1 -1
- package/dist/components/forms/MultiComboBox.d.ts.map +1 -1
- package/dist/components/forms/NumberField.d.ts.map +1 -1
- package/dist/components/forms/ValueHelpField.d.ts.map +1 -1
- package/dist/components/layout/PageBand.d.cts +15 -0
- package/dist/components/layout/PageBand.d.ts +16 -0
- package/dist/components/layout/PageBand.d.ts.map +1 -0
- package/dist/components/navigation/Menu.d.cts +39 -0
- package/dist/components/navigation/Menu.d.ts +40 -0
- package/dist/components/navigation/Menu.d.ts.map +1 -0
- package/dist/components/navigation/Pagination.d.ts.map +1 -1
- package/dist/components/navigation/SideNav.d.ts.map +1 -1
- package/dist/components/patterns/SidePanel.d.ts.map +1 -1
- package/dist/components/patterns/ValueHelpDialog.d.ts.map +1 -1
- package/dist/components.css +85 -0
- package/dist/i18n/PireIntlProvider.d.cts +21 -0
- package/dist/i18n/PireIntlProvider.d.ts +22 -0
- package/dist/i18n/PireIntlProvider.d.ts.map +1 -0
- package/dist/i18n/messages.d.cts +66 -0
- package/dist/i18n/messages.d.ts +67 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/index.cjs +830 -488
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +797 -462
- package/dist/index.js.map +1 -1
- package/dist/tokens/base.css +3 -0
- package/dist/tokens/typography.css +5 -0
- package/package.json +1 -1
package/dist/components.css
CHANGED
|
@@ -414,6 +414,91 @@
|
|
|
414
414
|
.pire-calendar-cell[data-disabled],.pire-calendar-cell[data-unavailable]{color:var(--text-disabled);cursor:not-allowed;text-decoration:line-through}
|
|
415
415
|
.pire-calendar-cell[data-focus-visible]{outline:var(--focus-w) solid var(--focus-color);outline-offset:-1px}
|
|
416
416
|
|
|
417
|
+
/* ---- Text / Strong ------------------------------------------------------ */
|
|
418
|
+
.pire-text{margin:0;font:var(--type-body);letter-spacing:var(--ls-body);color:var(--text-primary)}
|
|
419
|
+
.pire-text[data-size="body-lg"]{font:var(--type-body-lg)}
|
|
420
|
+
.pire-text[data-size="caption"]{font:var(--type-caption)}
|
|
421
|
+
.pire-text[data-size="micro"]{font:var(--type-micro)}
|
|
422
|
+
.pire-text[data-weight="strong"]{font-weight:var(--fw-semibold)}
|
|
423
|
+
.pire-text[data-color="secondary"]{color:var(--text-secondary)}
|
|
424
|
+
.pire-text[data-color="tertiary"]{color:var(--text-tertiary)}
|
|
425
|
+
.pire-text[data-color="disabled"]{color:var(--text-disabled)}
|
|
426
|
+
.pire-text[data-color="inverse"]{color:var(--text-inverse)}
|
|
427
|
+
.pire-text[data-numeric="true"]{font:var(--type-numeric);letter-spacing:var(--ls-numeric);font-variant-numeric:tabular-nums}
|
|
428
|
+
.pire-text[data-eyebrow="true"]{font:var(--type-label);letter-spacing:var(--ls-caps);text-transform:uppercase;color:var(--text-secondary)}
|
|
429
|
+
/* Shared clamp for Text and Heading; `--pire-text-clamp` carries the line count. */
|
|
430
|
+
.pire-text[data-truncate="true"],.pire-heading[data-truncate="true"]{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:var(--pire-text-clamp,1);line-clamp:var(--pire-text-clamp,1);overflow:hidden}
|
|
431
|
+
|
|
432
|
+
/* ---- Heading ------------------------------------------------------------ */
|
|
433
|
+
.pire-heading{margin:0;font:var(--type-h2);letter-spacing:var(--ls-heading);color:var(--text-primary)}
|
|
434
|
+
.pire-heading[data-size="display"]{font:var(--type-display);letter-spacing:var(--ls-display)}
|
|
435
|
+
.pire-heading[data-size="h1"]{font:var(--type-h1)}
|
|
436
|
+
.pire-heading[data-size="h2"]{font:var(--type-h2)}
|
|
437
|
+
.pire-heading[data-size="h3"]{font:var(--type-h3)}
|
|
438
|
+
.pire-heading[data-size="h4"]{font:var(--type-h4)}
|
|
439
|
+
.pire-heading[data-color="secondary"]{color:var(--text-secondary)}
|
|
440
|
+
.pire-heading[data-color="tertiary"]{color:var(--text-tertiary)}
|
|
441
|
+
.pire-heading[data-color="disabled"]{color:var(--text-disabled)}
|
|
442
|
+
.pire-heading[data-color="inverse"]{color:var(--text-inverse)}
|
|
443
|
+
|
|
444
|
+
/* ---- Link --------------------------------------------------------------- */
|
|
445
|
+
.pire-link{display:inline-flex;align-items:baseline;gap:var(--sp-1);color:var(--text-link);text-decoration:underline;text-underline-offset:2px;cursor:pointer;transition:var(--transition-control)}
|
|
446
|
+
.pire-link[data-size="body-lg"]{font:var(--type-body-lg)}
|
|
447
|
+
.pire-link[data-size="body"]{font:var(--type-body)}
|
|
448
|
+
.pire-link[data-size="caption"]{font:var(--type-caption)}
|
|
449
|
+
.pire-link[data-size="micro"]{font:var(--type-micro)}
|
|
450
|
+
.pire-link[data-hovered]{color:var(--text-link-hover)}
|
|
451
|
+
.pire-link[data-disabled]{color:var(--text-disabled);text-decoration:none;cursor:not-allowed}
|
|
452
|
+
.pire-link[data-focus-visible]{outline:var(--focus-w) solid var(--focus-color);outline-offset:var(--focus-offset);border-radius:var(--radius-1)}
|
|
453
|
+
.pire-link-external{flex:0 0 auto;align-self:center}
|
|
454
|
+
|
|
455
|
+
/* ---- Separator ---------------------------------------------------------- */
|
|
456
|
+
.pire-separator{border:0;border-top:var(--border-w-hairline) solid var(--border-default);margin:var(--sp-4) 0}
|
|
457
|
+
.pire-separator[data-emphasis="subtle"]{border-color:var(--border-subtle)}
|
|
458
|
+
.pire-separator[data-spacing="none"]{margin:0}
|
|
459
|
+
.pire-separator[data-spacing="sm"]{margin:var(--sp-2) 0}
|
|
460
|
+
.pire-separator[data-orientation="vertical"]{border-top:0;border-left:var(--border-w-hairline) solid var(--border-default);align-self:stretch;margin:0 var(--sp-3)}
|
|
461
|
+
.pire-separator[data-orientation="vertical"][data-emphasis="subtle"]{border-color:var(--border-subtle)}
|
|
462
|
+
.pire-separator[data-orientation="vertical"][data-spacing="none"]{margin:0}
|
|
463
|
+
.pire-separator[data-orientation="vertical"][data-spacing="sm"]{margin:0 var(--sp-2)}
|
|
464
|
+
|
|
465
|
+
/* ---- Menu --------------------------------------------------------------- */
|
|
466
|
+
/* Its own surface, not .pire-popover: that sizes from --trigger-width, which is wrong for a
|
|
467
|
+
menu hung off a 32px IconButton. Here the content sets the width. */
|
|
468
|
+
.pire-menu{outline:none;padding:var(--sp-1) 0;min-width:var(--pire-menu-min-w,180px);max-width:calc(100vw - 24px);display:flex;flex-direction:column}
|
|
469
|
+
.pire-menu-item{display:flex;align-items:flex-start;gap:var(--sp-2);min-height:var(--row-h-condensed);padding:var(--sp-1) var(--sp-3);font:var(--type-body);color:var(--text-primary);cursor:pointer;outline:none;text-decoration:none}
|
|
470
|
+
.pire-menu-item[data-focused]{background:var(--surface-hover)}
|
|
471
|
+
.pire-menu-item[data-disabled]{color:var(--text-disabled);cursor:not-allowed}
|
|
472
|
+
.pire-menu-item[data-tone="danger"]{color:var(--status-negative-fg)}
|
|
473
|
+
.pire-menu-item[data-tone="danger"][data-focused]{background:var(--status-negative-bg)}
|
|
474
|
+
.pire-menu-item-icon{flex:0 0 auto;margin-top:2px;color:var(--text-secondary)}
|
|
475
|
+
.pire-menu-item[data-tone="danger"] .pire-menu-item-icon{color:inherit}
|
|
476
|
+
.pire-menu-item-body{flex:1;min-width:0;display:flex;flex-direction:column}
|
|
477
|
+
.pire-menu-item-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
|
478
|
+
.pire-menu-item-desc{font:var(--type-caption);color:var(--text-secondary)}
|
|
479
|
+
.pire-menu-item[data-disabled] .pire-menu-item-desc{color:var(--text-disabled)}
|
|
480
|
+
.pire-menu-item-shortcut{flex:0 0 auto;align-self:center;font:var(--type-code);color:var(--text-tertiary)}
|
|
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
|
+
.pire-menu-separator{border:0;border-top:var(--border-w-hairline) solid var(--border-subtle);margin:var(--sp-1) 0}
|
|
483
|
+
|
|
484
|
+
/* ---- PageBand ------------------------------------------------------------ */
|
|
485
|
+
.pire-pageband{display:flex;flex-direction:column;gap:var(--sp-3);padding:var(--sp-4) var(--page-pad-x);background:var(--surface-card)}
|
|
486
|
+
.pire-pageband[data-surface="page"]{background:var(--surface-page)}
|
|
487
|
+
.pire-pageband[data-border="true"]{border-bottom:1px solid var(--border-subtle)}
|
|
488
|
+
|
|
489
|
+
/* ---- IconButton count ---------------------------------------------------- */
|
|
490
|
+
/* Sits over the icon's top-right. The button is position:relative only when a count is present,
|
|
491
|
+
so nothing else about its layout changes for the common case. */
|
|
492
|
+
.pire-iconbtn[data-has-count="true"]{position:relative}
|
|
493
|
+
.pire-iconbtn-count{position:absolute;top:2px;right:2px;display:inline-flex;align-items:center;justify-content:center;min-width:16px;height:16px;padding:0 var(--sp-1);border-radius:var(--radius-pill);background:var(--status-negative-fg);color:var(--text-inverse);font:var(--type-micro);font-weight:var(--fw-semibold);line-height:1;pointer-events:none}
|
|
494
|
+
.pire-iconbtn-count[data-variant="dot"]{min-width:8px;width:8px;height:8px;padding:0;top:4px;right:4px}
|
|
495
|
+
.pire-iconbtn[data-variant="inverse"] .pire-iconbtn-count{box-shadow:0 0 0 2px var(--surface-shell)}
|
|
496
|
+
|
|
497
|
+
/* ---- DataTable loading --------------------------------------------------- */
|
|
498
|
+
/* renderEmptyState gives one node for the whole body, so the skeleton rows stack inside it while
|
|
499
|
+
the real header stays mounted above — which is what stops the grid resizing mid-reload. */
|
|
500
|
+
.pire-table-loading{display:flex;flex-direction:column}
|
|
501
|
+
|
|
417
502
|
/* ---- Reduced motion --------------------------------------------------- */
|
|
418
503
|
@media (prefers-reduced-motion: reduce){.pire-modal,.pire-toast,.pire-popover,.pire-tooltip,.pire-sidepanel{animation:none}
|
|
419
504
|
/* The skeleton also drops its background sweep, not just the animation: an infinite shimmer is
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { type PireMessages } from './messages.cjs';
|
|
3
|
+
export interface PireIntlProviderProps {
|
|
4
|
+
/** Overrides merged over the English defaults, so a partial dictionary is enough. */
|
|
5
|
+
messages?: Partial<PireMessages>;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Supplies the strings Pire renders itself. Mount once near the app root, alongside React Aria's
|
|
10
|
+
* `I18nProvider` — that one localises React Aria's internals, this one localises Pire's.
|
|
11
|
+
*/
|
|
12
|
+
export declare function PireIntlProvider({ messages, children }: PireIntlProviderProps): React.JSX.Element;
|
|
13
|
+
/** Reads the active dictionary. Without a provider this returns the English defaults. */
|
|
14
|
+
export declare function usePireMessages(): PireMessages;
|
|
15
|
+
/**
|
|
16
|
+
* Resolves one string, letting an explicit prop win over the dictionary.
|
|
17
|
+
*
|
|
18
|
+
* Components call this so a per-instance override is always available — a screen with two navs
|
|
19
|
+
* needs to name them differently even when the dictionary is correct.
|
|
20
|
+
*/
|
|
21
|
+
export declare function useMessage(key: keyof PireMessages, override?: string): string;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { type PireMessages } from './messages.js';
|
|
3
|
+
export interface PireIntlProviderProps {
|
|
4
|
+
/** Overrides merged over the English defaults, so a partial dictionary is enough. */
|
|
5
|
+
messages?: Partial<PireMessages>;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Supplies the strings Pire renders itself. Mount once near the app root, alongside React Aria's
|
|
10
|
+
* `I18nProvider` — that one localises React Aria's internals, this one localises Pire's.
|
|
11
|
+
*/
|
|
12
|
+
export declare function PireIntlProvider({ messages, children }: PireIntlProviderProps): React.JSX.Element;
|
|
13
|
+
/** Reads the active dictionary. Without a provider this returns the English defaults. */
|
|
14
|
+
export declare function usePireMessages(): PireMessages;
|
|
15
|
+
/**
|
|
16
|
+
* Resolves one string, letting an explicit prop win over the dictionary.
|
|
17
|
+
*
|
|
18
|
+
* Components call this so a per-instance override is always available — a screen with two navs
|
|
19
|
+
* needs to name them differently even when the dictionary is correct.
|
|
20
|
+
*/
|
|
21
|
+
export declare function useMessage(key: keyof PireMessages, override?: string): string;
|
|
22
|
+
//# sourceMappingURL=PireIntlProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PireIntlProvider.d.ts","sourceRoot":"","sources":["../../src/i18n/PireIntlProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,KAAK,YAAY,EAAc,MAAM,YAAY,CAAC;AAI3D,MAAM,WAAW,qBAAqB;IACpC,qFAAqF;IACrF,QAAQ,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,qBAAqB,qBAO7E;AAED,yFAAyF;AACzF,wBAAgB,eAAe,IAAI,YAAY,CAE9C;AAED;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,YAAY,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAK7E"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Every string Pire renders that the consumer did not supply.
|
|
3
|
+
*
|
|
4
|
+
* Keys are `<component><thing>`. Values are the English defaults, so a consumer that installs
|
|
5
|
+
* nothing keeps working exactly as before.
|
|
6
|
+
*
|
|
7
|
+
* React Aria localises its own internals (date field segments, table sort announcements) through
|
|
8
|
+
* `I18nProvider`, which Pire re-exports. This dictionary is the parallel for Pire's own strings —
|
|
9
|
+
* install both to fully translate the UI.
|
|
10
|
+
*/
|
|
11
|
+
export interface PireMessages {
|
|
12
|
+
/** FilterBar's landmark name. */
|
|
13
|
+
filterBarLabel: string;
|
|
14
|
+
/** Visible text of the apply button. Filters apply explicitly, never live. */
|
|
15
|
+
filterBarGo: string;
|
|
16
|
+
/** Visible text of the button that removes every active filter. */
|
|
17
|
+
filterBarClearAll: string;
|
|
18
|
+
/** Accessible name of the header checkbox that selects every row. */
|
|
19
|
+
dataTableSelectAll: string;
|
|
20
|
+
/** Accessible name of a row's selection checkbox. */
|
|
21
|
+
dataTableSelectRow: string;
|
|
22
|
+
/** Announced while the table body is a skeleton. */
|
|
23
|
+
dataTableLoading: string;
|
|
24
|
+
/** Accessible name of the dialog's close affordance. */
|
|
25
|
+
dialogClose: string;
|
|
26
|
+
/** Accessible name of SidePanel's close affordance. */
|
|
27
|
+
sidePanelClose: string;
|
|
28
|
+
/** Accessible name of InlineMessage's dismiss affordance. */
|
|
29
|
+
inlineMessageDismiss: string;
|
|
30
|
+
/** Accessible name of a toast's dismiss affordance. */
|
|
31
|
+
toastDismiss: string;
|
|
32
|
+
/** Landmark name of the toast live region. */
|
|
33
|
+
toastRegionLabel: string;
|
|
34
|
+
/** Accessible name of the button that opens a ComboBox's list. */
|
|
35
|
+
comboBoxShowSuggestions: string;
|
|
36
|
+
/** Accessible name of the button that opens the calendar popover. */
|
|
37
|
+
datePickerOpenCalendar: string;
|
|
38
|
+
datePickerPreviousMonth: string;
|
|
39
|
+
datePickerNextMonth: string;
|
|
40
|
+
/** Accessible names of the NumberField steppers. */
|
|
41
|
+
numberFieldIncrease: string;
|
|
42
|
+
numberFieldDecrease: string;
|
|
43
|
+
/** Accessible name of the button that clears a ValueHelpField. */
|
|
44
|
+
valueHelpFieldClear: string;
|
|
45
|
+
/** Opens the value-help dialog. `{label}` is replaced with the field's own label. */
|
|
46
|
+
valueHelpFieldOpenNamed: string;
|
|
47
|
+
/** Same button, when the field has no string label to name it with. */
|
|
48
|
+
valueHelpFieldOpen: string;
|
|
49
|
+
/** Accessible name of ValueHelpDialog's search field. */
|
|
50
|
+
valueHelpDialogSearch: string;
|
|
51
|
+
/** Visible text of ValueHelpDialog's cancel button. */
|
|
52
|
+
valueHelpDialogCancel: string;
|
|
53
|
+
/** Pagination's landmark name and its controls. */
|
|
54
|
+
paginationLabel: string;
|
|
55
|
+
/** Record range. `{from}`, `{to}` and `{total}` are replaced with formatted numbers. */
|
|
56
|
+
paginationRange: string;
|
|
57
|
+
/** Current page. `{page}` and `{pages}` are replaced. */
|
|
58
|
+
paginationPageOf: string;
|
|
59
|
+
paginationPrevious: string;
|
|
60
|
+
paginationNext: string;
|
|
61
|
+
paginationRowsPerPage: string;
|
|
62
|
+
/** Landmark name of the main SideNav. Override it when a screen has more than one nav. */
|
|
63
|
+
sideNavLabel: string;
|
|
64
|
+
}
|
|
65
|
+
export declare const enMessages: PireMessages;
|
|
66
|
+
export declare const esMessages: PireMessages;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Every string Pire renders that the consumer did not supply.
|
|
3
|
+
*
|
|
4
|
+
* Keys are `<component><thing>`. Values are the English defaults, so a consumer that installs
|
|
5
|
+
* nothing keeps working exactly as before.
|
|
6
|
+
*
|
|
7
|
+
* React Aria localises its own internals (date field segments, table sort announcements) through
|
|
8
|
+
* `I18nProvider`, which Pire re-exports. This dictionary is the parallel for Pire's own strings —
|
|
9
|
+
* install both to fully translate the UI.
|
|
10
|
+
*/
|
|
11
|
+
export interface PireMessages {
|
|
12
|
+
/** FilterBar's landmark name. */
|
|
13
|
+
filterBarLabel: string;
|
|
14
|
+
/** Visible text of the apply button. Filters apply explicitly, never live. */
|
|
15
|
+
filterBarGo: string;
|
|
16
|
+
/** Visible text of the button that removes every active filter. */
|
|
17
|
+
filterBarClearAll: string;
|
|
18
|
+
/** Accessible name of the header checkbox that selects every row. */
|
|
19
|
+
dataTableSelectAll: string;
|
|
20
|
+
/** Accessible name of a row's selection checkbox. */
|
|
21
|
+
dataTableSelectRow: string;
|
|
22
|
+
/** Announced while the table body is a skeleton. */
|
|
23
|
+
dataTableLoading: string;
|
|
24
|
+
/** Accessible name of the dialog's close affordance. */
|
|
25
|
+
dialogClose: string;
|
|
26
|
+
/** Accessible name of SidePanel's close affordance. */
|
|
27
|
+
sidePanelClose: string;
|
|
28
|
+
/** Accessible name of InlineMessage's dismiss affordance. */
|
|
29
|
+
inlineMessageDismiss: string;
|
|
30
|
+
/** Accessible name of a toast's dismiss affordance. */
|
|
31
|
+
toastDismiss: string;
|
|
32
|
+
/** Landmark name of the toast live region. */
|
|
33
|
+
toastRegionLabel: string;
|
|
34
|
+
/** Accessible name of the button that opens a ComboBox's list. */
|
|
35
|
+
comboBoxShowSuggestions: string;
|
|
36
|
+
/** Accessible name of the button that opens the calendar popover. */
|
|
37
|
+
datePickerOpenCalendar: string;
|
|
38
|
+
datePickerPreviousMonth: string;
|
|
39
|
+
datePickerNextMonth: string;
|
|
40
|
+
/** Accessible names of the NumberField steppers. */
|
|
41
|
+
numberFieldIncrease: string;
|
|
42
|
+
numberFieldDecrease: string;
|
|
43
|
+
/** Accessible name of the button that clears a ValueHelpField. */
|
|
44
|
+
valueHelpFieldClear: string;
|
|
45
|
+
/** Opens the value-help dialog. `{label}` is replaced with the field's own label. */
|
|
46
|
+
valueHelpFieldOpenNamed: string;
|
|
47
|
+
/** Same button, when the field has no string label to name it with. */
|
|
48
|
+
valueHelpFieldOpen: string;
|
|
49
|
+
/** Accessible name of ValueHelpDialog's search field. */
|
|
50
|
+
valueHelpDialogSearch: string;
|
|
51
|
+
/** Visible text of ValueHelpDialog's cancel button. */
|
|
52
|
+
valueHelpDialogCancel: string;
|
|
53
|
+
/** Pagination's landmark name and its controls. */
|
|
54
|
+
paginationLabel: string;
|
|
55
|
+
/** Record range. `{from}`, `{to}` and `{total}` are replaced with formatted numbers. */
|
|
56
|
+
paginationRange: string;
|
|
57
|
+
/** Current page. `{page}` and `{pages}` are replaced. */
|
|
58
|
+
paginationPageOf: string;
|
|
59
|
+
paginationPrevious: string;
|
|
60
|
+
paginationNext: string;
|
|
61
|
+
paginationRowsPerPage: string;
|
|
62
|
+
/** Landmark name of the main SideNav. Override it when a screen has more than one nav. */
|
|
63
|
+
sideNavLabel: string;
|
|
64
|
+
}
|
|
65
|
+
export declare const enMessages: PireMessages;
|
|
66
|
+
export declare const esMessages: PireMessages;
|
|
67
|
+
//# sourceMappingURL=messages.d.ts.map
|
|
@@ -0,0 +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;IAEhC,qEAAqE;IACrE,sBAAsB,EAAE,MAAM,CAAC;IAC/B,uBAAuB,EAAE,MAAM,CAAC;IAChC,mBAAmB,EAAE,MAAM,CAAC;IAE5B,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;CACtB;AAED,eAAO,MAAM,UAAU,EAAE,YAuCxB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,YAuCxB,CAAC"}
|