@orianatech/pire 0.5.0 → 0.6.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/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.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/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 +67 -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 +64 -0
- package/dist/i18n/messages.d.ts +65 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/index.cjs +673 -399
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +627 -359
- package/dist/index.js.map +1 -1
- package/dist/tokens/typography.css +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,65 @@
|
|
|
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
|
+
/** Accessible name of the dialog's close affordance. */
|
|
23
|
+
dialogClose: string;
|
|
24
|
+
/** Accessible name of SidePanel's close affordance. */
|
|
25
|
+
sidePanelClose: string;
|
|
26
|
+
/** Accessible name of InlineMessage's dismiss affordance. */
|
|
27
|
+
inlineMessageDismiss: string;
|
|
28
|
+
/** Accessible name of a toast's dismiss affordance. */
|
|
29
|
+
toastDismiss: string;
|
|
30
|
+
/** Landmark name of the toast live region. */
|
|
31
|
+
toastRegionLabel: string;
|
|
32
|
+
/** Accessible name of the button that opens a ComboBox's list. */
|
|
33
|
+
comboBoxShowSuggestions: string;
|
|
34
|
+
/** Accessible name of the button that opens the calendar popover. */
|
|
35
|
+
datePickerOpenCalendar: string;
|
|
36
|
+
datePickerPreviousMonth: string;
|
|
37
|
+
datePickerNextMonth: string;
|
|
38
|
+
/** Accessible names of the NumberField steppers. */
|
|
39
|
+
numberFieldIncrease: string;
|
|
40
|
+
numberFieldDecrease: string;
|
|
41
|
+
/** Accessible name of the button that clears a ValueHelpField. */
|
|
42
|
+
valueHelpFieldClear: string;
|
|
43
|
+
/** Opens the value-help dialog. `{label}` is replaced with the field's own label. */
|
|
44
|
+
valueHelpFieldOpenNamed: string;
|
|
45
|
+
/** Same button, when the field has no string label to name it with. */
|
|
46
|
+
valueHelpFieldOpen: string;
|
|
47
|
+
/** Accessible name of ValueHelpDialog's search field. */
|
|
48
|
+
valueHelpDialogSearch: string;
|
|
49
|
+
/** Visible text of ValueHelpDialog's cancel button. */
|
|
50
|
+
valueHelpDialogCancel: string;
|
|
51
|
+
/** Pagination's landmark name and its controls. */
|
|
52
|
+
paginationLabel: string;
|
|
53
|
+
/** Record range. `{from}`, `{to}` and `{total}` are replaced with formatted numbers. */
|
|
54
|
+
paginationRange: string;
|
|
55
|
+
/** Current page. `{page}` and `{pages}` are replaced. */
|
|
56
|
+
paginationPageOf: string;
|
|
57
|
+
paginationPrevious: string;
|
|
58
|
+
paginationNext: string;
|
|
59
|
+
paginationRowsPerPage: string;
|
|
60
|
+
/** Landmark name of the main SideNav. Override it when a screen has more than one nav. */
|
|
61
|
+
sideNavLabel: string;
|
|
62
|
+
}
|
|
63
|
+
export declare const enMessages: PireMessages;
|
|
64
|
+
export declare const esMessages: PireMessages;
|
|
65
|
+
//# 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;IAE3B,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,YAsCxB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,YAsCxB,CAAC"}
|