@orianatech/pire 0.13.0 → 0.15.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/Icon.d.ts.map +1 -1
- package/dist/components/core/Kbd.d.cts +17 -0
- package/dist/components/core/Kbd.d.ts +18 -0
- package/dist/components/core/Kbd.d.ts.map +1 -0
- package/dist/components/core/icon-data.generated.d.ts.map +1 -1
- package/dist/components/core/icon-map.d.cts +9 -0
- package/dist/components/core/icon-map.d.ts +9 -0
- package/dist/components/core/icon-map.d.ts.map +1 -1
- package/dist/components/forms/ValueHelpField.d.cts +12 -1
- package/dist/components/forms/ValueHelpField.d.ts +12 -1
- package/dist/components/forms/ValueHelpField.d.ts.map +1 -1
- package/dist/components/navigation/Menu.d.cts +7 -2
- package/dist/components/navigation/Menu.d.ts +7 -2
- package/dist/components/navigation/Menu.d.ts.map +1 -1
- package/dist/components/navigation/ShellBar.d.cts +13 -1
- package/dist/components/navigation/ShellBar.d.ts +13 -1
- package/dist/components/navigation/ShellBar.d.ts.map +1 -1
- package/dist/components/patterns/CommandPalette.d.cts +97 -0
- package/dist/components/patterns/CommandPalette.d.ts +98 -0
- package/dist/components/patterns/CommandPalette.d.ts.map +1 -0
- package/dist/components/patterns/ValueHelpDialog.d.cts +22 -1
- package/dist/components/patterns/ValueHelpDialog.d.ts +22 -1
- package/dist/components/patterns/ValueHelpDialog.d.ts.map +1 -1
- package/dist/components.css +76 -2
- package/dist/i18n/messages.d.cts +26 -0
- package/dist/i18n/messages.d.ts +26 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/index.cjs +909 -521
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +803 -408
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/i18n/messages.d.cts
CHANGED
|
@@ -48,6 +48,8 @@ export interface PireMessages {
|
|
|
48
48
|
numberFieldIncrease: string;
|
|
49
49
|
numberFieldDecrease: string;
|
|
50
50
|
/** Accessible name of the button that clears a ValueHelpField. */
|
|
51
|
+
/** Placeholder in the closed value-help field when nothing is picked. */
|
|
52
|
+
valueHelpFieldPlaceholder: string;
|
|
51
53
|
valueHelpFieldClear: string;
|
|
52
54
|
/** Opens the value-help dialog. `{label}` is replaced with the field's own label. */
|
|
53
55
|
valueHelpFieldOpenNamed: string;
|
|
@@ -55,6 +57,12 @@ export interface PireMessages {
|
|
|
55
57
|
valueHelpFieldOpen: string;
|
|
56
58
|
/** Accessible name of ValueHelpDialog's search field. */
|
|
57
59
|
valueHelpDialogSearch: string;
|
|
60
|
+
/** Default dialog heading when the field does not supply one. */
|
|
61
|
+
valueHelpDialogTitle: string;
|
|
62
|
+
/** Placeholder in the value-help search box. */
|
|
63
|
+
valueHelpDialogSearchPlaceholder: string;
|
|
64
|
+
/** Shown when the search returns nothing. */
|
|
65
|
+
valueHelpDialogEmpty: string;
|
|
58
66
|
/** Visible text of ValueHelpDialog's cancel button. */
|
|
59
67
|
valueHelpDialogCancel: string;
|
|
60
68
|
/** Pagination's landmark name and its controls. */
|
|
@@ -76,6 +84,24 @@ export interface PireMessages {
|
|
|
76
84
|
fileUploadUploading: string;
|
|
77
85
|
/** Instruction inside the drop surface. */
|
|
78
86
|
fileDropZonePrompt: string;
|
|
87
|
+
/** Accessible name of the ShellBar avatar once it opens a menu. `{user}` is the person's name. */
|
|
88
|
+
shellBarUserMenu: string;
|
|
89
|
+
/** Names the command palette dialog. */
|
|
90
|
+
commandPaletteLabel: string;
|
|
91
|
+
/** Accessible name of the palette's search input. */
|
|
92
|
+
commandPaletteSearchLabel: string;
|
|
93
|
+
/** Placeholder in the palette's input. */
|
|
94
|
+
commandPalettePlaceholder: string;
|
|
95
|
+
/** Shown when nothing matches what was typed. */
|
|
96
|
+
commandPaletteEmpty: string;
|
|
97
|
+
/** Shown while a server-backed search is in flight. */
|
|
98
|
+
commandPaletteLoading: string;
|
|
99
|
+
/** Footer hint beside the arrow-key glyphs. */
|
|
100
|
+
commandPaletteHintNavigate: string;
|
|
101
|
+
/** Footer hint beside the Enter glyph. */
|
|
102
|
+
commandPaletteHintSelect: string;
|
|
103
|
+
/** Footer hint beside the Esc glyph. */
|
|
104
|
+
commandPaletteHintClose: string;
|
|
79
105
|
/** Heading of the category column in a chart's data table. */
|
|
80
106
|
chartCategoryHeader: string;
|
|
81
107
|
/** Cell text where a chart series has no reading for a category. Never "0" — a gap is not a zero. */
|
package/dist/i18n/messages.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ export interface PireMessages {
|
|
|
48
48
|
numberFieldIncrease: string;
|
|
49
49
|
numberFieldDecrease: string;
|
|
50
50
|
/** Accessible name of the button that clears a ValueHelpField. */
|
|
51
|
+
/** Placeholder in the closed value-help field when nothing is picked. */
|
|
52
|
+
valueHelpFieldPlaceholder: string;
|
|
51
53
|
valueHelpFieldClear: string;
|
|
52
54
|
/** Opens the value-help dialog. `{label}` is replaced with the field's own label. */
|
|
53
55
|
valueHelpFieldOpenNamed: string;
|
|
@@ -55,6 +57,12 @@ export interface PireMessages {
|
|
|
55
57
|
valueHelpFieldOpen: string;
|
|
56
58
|
/** Accessible name of ValueHelpDialog's search field. */
|
|
57
59
|
valueHelpDialogSearch: string;
|
|
60
|
+
/** Default dialog heading when the field does not supply one. */
|
|
61
|
+
valueHelpDialogTitle: string;
|
|
62
|
+
/** Placeholder in the value-help search box. */
|
|
63
|
+
valueHelpDialogSearchPlaceholder: string;
|
|
64
|
+
/** Shown when the search returns nothing. */
|
|
65
|
+
valueHelpDialogEmpty: string;
|
|
58
66
|
/** Visible text of ValueHelpDialog's cancel button. */
|
|
59
67
|
valueHelpDialogCancel: string;
|
|
60
68
|
/** Pagination's landmark name and its controls. */
|
|
@@ -76,6 +84,24 @@ export interface PireMessages {
|
|
|
76
84
|
fileUploadUploading: string;
|
|
77
85
|
/** Instruction inside the drop surface. */
|
|
78
86
|
fileDropZonePrompt: string;
|
|
87
|
+
/** Accessible name of the ShellBar avatar once it opens a menu. `{user}` is the person's name. */
|
|
88
|
+
shellBarUserMenu: string;
|
|
89
|
+
/** Names the command palette dialog. */
|
|
90
|
+
commandPaletteLabel: string;
|
|
91
|
+
/** Accessible name of the palette's search input. */
|
|
92
|
+
commandPaletteSearchLabel: string;
|
|
93
|
+
/** Placeholder in the palette's input. */
|
|
94
|
+
commandPalettePlaceholder: string;
|
|
95
|
+
/** Shown when nothing matches what was typed. */
|
|
96
|
+
commandPaletteEmpty: string;
|
|
97
|
+
/** Shown while a server-backed search is in flight. */
|
|
98
|
+
commandPaletteLoading: string;
|
|
99
|
+
/** Footer hint beside the arrow-key glyphs. */
|
|
100
|
+
commandPaletteHintNavigate: string;
|
|
101
|
+
/** Footer hint beside the Enter glyph. */
|
|
102
|
+
commandPaletteHintSelect: string;
|
|
103
|
+
/** Footer hint beside the Esc glyph. */
|
|
104
|
+
commandPaletteHintClose: string;
|
|
79
105
|
/** Heading of the category column in a chart's data table. */
|
|
80
106
|
chartCategoryHeader: string;
|
|
81
107
|
/** Cell text where a chart series has no reading for a category. Never "0" — a gap is not a zero. */
|
|
@@ -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;oGACgG;IAChG,WAAW,EAAE,MAAM,CAAC;IAEpB,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;IAE3B,8DAA8D;IAC9D,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qGAAqG;IACrG,YAAY,EAAE,MAAM,CAAC;IACrB,mEAAmE;IACnE,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"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"}
|