@orianatech/pire 0.15.0 → 0.16.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/Input.d.cts +20 -2
- package/dist/components/forms/Input.d.ts +20 -2
- package/dist/components/forms/Input.d.ts.map +1 -1
- package/dist/components/patterns/ValueHelpDialog.d.ts.map +1 -1
- package/dist/components.css +28 -10
- 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 +207 -188
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +252 -225
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface InputProps {
|
|
3
3
|
label?: React.ReactNode;
|
|
4
4
|
value?: string;
|
|
@@ -16,6 +16,24 @@ export interface InputProps {
|
|
|
16
16
|
icon?: string;
|
|
17
17
|
/** Trailing static text: unit, currency, "of 40". */
|
|
18
18
|
suffix?: React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* Adds a clear affordance once the field has a value.
|
|
21
|
+
*
|
|
22
|
+
* Use it on every search field. `type="search"` gets one from the browser for free, but only in
|
|
23
|
+
* Chrome and Safari, and it cannot be styled or sized — Pire hides that one so a search box does
|
|
24
|
+
* not look different per browser. This is the replacement, and it is a real button: focusable,
|
|
25
|
+
* labelled, and the same shape everywhere.
|
|
26
|
+
*
|
|
27
|
+
* Works controlled or uncontrolled.
|
|
28
|
+
*/
|
|
29
|
+
isClearable?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* The clear button's visible text. Defaults to the dictionary's `inputClear`.
|
|
32
|
+
*
|
|
33
|
+
* Deliberately a word rather than an icon: an "x" beside a dialog's own close "x" reads as a
|
|
34
|
+
* second way to dismiss the dialog. Keep it short — it sits inside the field.
|
|
35
|
+
*/
|
|
36
|
+
clearLabel?: string;
|
|
19
37
|
/** Help text below the field. Replaced by errorMessage when invalid. */
|
|
20
38
|
description?: React.ReactNode;
|
|
21
39
|
errorMessage?: React.ReactNode;
|
|
@@ -35,4 +53,4 @@ export interface InputProps {
|
|
|
35
53
|
}
|
|
36
54
|
/** Single-line text entry. Labels, descriptions and errors are wired to the input by React Aria,
|
|
37
55
|
* so no manual aria-describedby is ever needed. */
|
|
38
|
-
export declare function Input({ label, icon, suffix, description, errorMessage, size, numeric, fullWidth, className, style, inputRef, onChange, ...rest }: InputProps): React.JSX.Element;
|
|
56
|
+
export declare function Input({ label, icon, suffix, description, errorMessage, size, numeric, isClearable, clearLabel, fullWidth, className, style, inputRef, onChange, ...rest }: InputProps): React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface InputProps {
|
|
3
3
|
label?: React.ReactNode;
|
|
4
4
|
value?: string;
|
|
@@ -16,6 +16,24 @@ export interface InputProps {
|
|
|
16
16
|
icon?: string;
|
|
17
17
|
/** Trailing static text: unit, currency, "of 40". */
|
|
18
18
|
suffix?: React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* Adds a clear affordance once the field has a value.
|
|
21
|
+
*
|
|
22
|
+
* Use it on every search field. `type="search"` gets one from the browser for free, but only in
|
|
23
|
+
* Chrome and Safari, and it cannot be styled or sized — Pire hides that one so a search box does
|
|
24
|
+
* not look different per browser. This is the replacement, and it is a real button: focusable,
|
|
25
|
+
* labelled, and the same shape everywhere.
|
|
26
|
+
*
|
|
27
|
+
* Works controlled or uncontrolled.
|
|
28
|
+
*/
|
|
29
|
+
isClearable?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* The clear button's visible text. Defaults to the dictionary's `inputClear`.
|
|
32
|
+
*
|
|
33
|
+
* Deliberately a word rather than an icon: an "x" beside a dialog's own close "x" reads as a
|
|
34
|
+
* second way to dismiss the dialog. Keep it short — it sits inside the field.
|
|
35
|
+
*/
|
|
36
|
+
clearLabel?: string;
|
|
19
37
|
/** Help text below the field. Replaced by errorMessage when invalid. */
|
|
20
38
|
description?: React.ReactNode;
|
|
21
39
|
errorMessage?: React.ReactNode;
|
|
@@ -35,5 +53,5 @@ export interface InputProps {
|
|
|
35
53
|
}
|
|
36
54
|
/** Single-line text entry. Labels, descriptions and errors are wired to the input by React Aria,
|
|
37
55
|
* so no manual aria-describedby is ever needed. */
|
|
38
|
-
export declare function Input({ label, icon, suffix, description, errorMessage, size, numeric, fullWidth, className, style, inputRef, onChange, ...rest }: InputProps): React.JSX.Element;
|
|
56
|
+
export declare function Input({ label, icon, suffix, description, errorMessage, size, numeric, isClearable, clearLabel, fullWidth, className, style, inputRef, onChange, ...rest }: InputProps): React.JSX.Element;
|
|
39
57
|
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,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;;;;;;;;;OASG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,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,WAAW,EAAE,UAAU,EAAE,SAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,UAAU,qBAyCvG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ValueHelpDialog.d.ts","sourceRoot":"","sources":["../../../src/components/patterns/ValueHelpDialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAa,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAIpE,MAAM,WAAW,oBAAoB,CAAC,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,GAAG,GAAG;IAC3E,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,sDAAsD;IACtD,OAAO,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC;IACX,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC;;;;;;;;OAQG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kGAAkG;IAClG,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6EAA6E;IAC7E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,+BAA+B;IAC/B,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,2FAA2F;AAC3F,wBAAgB,eAAe,CAAC,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAChF,OAAY,EAAE,IAAS,EAAE,iBAAiB,EAAE,UAAU,EAAE,QAAQ,EAAE,oBAAoB,EACtF,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,oBAAoB,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"ValueHelpDialog.d.ts","sourceRoot":"","sources":["../../../src/components/patterns/ValueHelpDialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAa,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAIpE,MAAM,WAAW,oBAAoB,CAAC,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,GAAG,GAAG;IAC3E,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,sDAAsD;IACtD,OAAO,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC;IACX,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC;;;;;;;;OAQG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kGAAkG;IAClG,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6EAA6E;IAC7E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,+BAA+B;IAC/B,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,2FAA2F;AAC3F,wBAAgB,eAAe,CAAC,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAChF,OAAY,EAAE,IAAS,EAAE,iBAAiB,EAAE,UAAU,EAAE,QAAQ,EAAE,oBAAoB,EACtF,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,oBAAoB,CAAC,CAAC,CAAC,qBAmCpE"}
|
package/dist/components.css
CHANGED
|
@@ -105,6 +105,19 @@
|
|
|
105
105
|
.pire-input[data-numeric="true"]{font:var(--type-numeric);text-align:right;font-variant-numeric:tabular-nums}
|
|
106
106
|
.pire-input::placeholder{color:var(--text-tertiary)}
|
|
107
107
|
.pire-affix{font:var(--type-caption);color:var(--text-secondary);flex:0 0 auto}
|
|
108
|
+
/* Chrome and Safari decorate type="search" with their own clear button. It cannot be styled or
|
|
109
|
+
sized, Firefox does not draw one at all, and it ignores every token here — so a search box would
|
|
110
|
+
look different per browser. Hidden everywhere; `isClearable` is the replacement, and it is a real
|
|
111
|
+
labelled button rather than a browser affordance. */
|
|
112
|
+
.pire-input::-webkit-search-cancel-button{display:none}
|
|
113
|
+
/* A word, not an icon. An icon-only "x" inside a dialog sits beside the dialog's own close "x" and
|
|
114
|
+
reads as a second way to dismiss it; the label says what is being cleared. Sized down so it
|
|
115
|
+
belongs to the field rather than competing with it. */
|
|
116
|
+
.pire-input-clear{flex:0 0 auto;border:0;background:transparent;padding:0 var(--sp-1);font:var(--type-caption);color:var(--text-link);cursor:pointer;border-radius:var(--radius-1);white-space:nowrap;transition:var(--transition-control)}
|
|
117
|
+
.pire-input-clear[data-hovered]{color:var(--text-link-hover);text-decoration:underline}
|
|
118
|
+
/* `.pire-control :focus-visible` clears inner rings so the control shows a single one. This button
|
|
119
|
+
is a separate target inside it, so it keeps its own. */
|
|
120
|
+
.pire-input-clear[data-focus-visible]{outline:var(--focus-w) solid var(--focus-color);outline-offset:1px}
|
|
108
121
|
.pire-leading-icon{color:var(--text-tertiary);flex:0 0 auto}
|
|
109
122
|
/* The shell is fixed-height by default because every single-line control is. Controls whose
|
|
110
123
|
content sets the height (TextArea, MultiComboBox's chips) opt out with data-multiline and
|
|
@@ -678,14 +691,20 @@
|
|
|
678
691
|
/* The triggers sit inside .pire-control, flush with its trailing edge. `stretch` makes them the
|
|
679
692
|
control's full height whatever the size, and the negative margins cancel the control's own
|
|
680
693
|
padding and gap so there is no seam between the input and the first button. */
|
|
681
|
-
.pire-
|
|
694
|
+
/* Two things have to give for the buttons to fill the control. `.pire-affix` is a block whose
|
|
695
|
+
default alignment centres it — right for the unit strings it usually holds, wrong here — so it
|
|
696
|
+
stretches and becomes a flex parent; without both, the buttons collapse to their 20px content
|
|
697
|
+
height and float in the middle of a 40px control. */
|
|
698
|
+
.pire-control:has(.pire-valuehelp-actions) .pire-affix{align-self:stretch;display:flex}
|
|
699
|
+
.pire-valuehelp-actions{display:flex;align-items:stretch;margin-inline-start:calc(var(--sp-2) * -1);margin-inline-end:calc(var(--control-pad-x) * -1)}
|
|
682
700
|
.pire-valuehelp-actions .pire-iconbtn{height:auto;border-radius:0;border-inline-start:1px solid var(--border-field)}
|
|
683
|
-
/*
|
|
684
|
-
.
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
is
|
|
688
|
-
|
|
701
|
+
/* The control's *inner* corner is its radius less its border, so matching --radius-1 exactly would
|
|
702
|
+
leave the button proud of the curve by a pixel. Only the last button rounds. */
|
|
703
|
+
.pire-valuehelp-actions .pire-iconbtn:last-child{border-start-end-radius:calc(var(--radius-1) - 1px);border-end-end-radius:calc(var(--radius-1) - 1px)}
|
|
704
|
+
/* A tint rather than a ring. The control already rings on focus-within, so focus is visible; what
|
|
705
|
+
that ring cannot say is *which* of two buttons has it. An inset outline said so but collided
|
|
706
|
+
with the control's own border and read as a doubled edge. */
|
|
707
|
+
.pire-valuehelp-actions .pire-iconbtn[data-focus-visible]{outline:none;background:var(--surface-selected);color:var(--accent-subtle-fg)}
|
|
689
708
|
|
|
690
709
|
/* ---- Icon --------------------------------------------------------------- */
|
|
691
710
|
/* Development-only marker for a name that resolved to no glyph. Rendered by Icon in dev builds
|
|
@@ -722,9 +741,8 @@
|
|
|
722
741
|
sitting among other controls, the ring is what says which one is live. */
|
|
723
742
|
.pire-cp-input:focus-visible{outline:none}
|
|
724
743
|
.pire-cp-input::placeholder{font:var(--type-body);color:var(--text-tertiary)}
|
|
725
|
-
/*
|
|
726
|
-
|
|
727
|
-
design system is better off without it. Escape closes the palette. */
|
|
744
|
+
/* Same reasoning as `.pire-input`'s rule: the browser's own search decoration is unstyleable and
|
|
745
|
+
Chrome/Safari-only. The palette needs no replacement — Escape closes it outright. */
|
|
728
746
|
.pire-cp-input::-webkit-search-cancel-button{display:none}
|
|
729
747
|
.pire-cp-list{flex:1;min-height:0;overflow:auto;padding:var(--sp-1) 0;outline:none;display:flex;flex-direction:column}
|
|
730
748
|
/* Explicitly a column: the section is a flex child of .pire-cp-list, and leaving it as a block
|
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
|
+
/** Accessible name of the clear affordance on a clearable Input. */
|
|
52
|
+
inputClear: string;
|
|
51
53
|
/** Placeholder in the closed value-help field when nothing is picked. */
|
|
52
54
|
valueHelpFieldPlaceholder: string;
|
|
53
55
|
valueHelpFieldClear: string;
|
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
|
+
/** Accessible name of the clear affordance on a clearable Input. */
|
|
52
|
+
inputClear: string;
|
|
51
53
|
/** Placeholder in the closed value-help field when nothing is picked. */
|
|
52
54
|
valueHelpFieldPlaceholder: string;
|
|
53
55
|
valueHelpFieldClear: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"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"}
|