@orianatech/pire 0.20.0 → 0.21.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/Badge.d.cts +14 -3
- package/dist/components/core/Badge.d.ts +14 -3
- package/dist/components/core/Badge.d.ts.map +1 -1
- package/dist/components/core/Tag.d.cts +8 -3
- package/dist/components/core/Tag.d.ts +8 -3
- package/dist/components/core/Tag.d.ts.map +1 -1
- package/dist/components/core/Text.d.cts +9 -4
- package/dist/components/core/Text.d.ts +9 -4
- package/dist/components/core/Text.d.ts.map +1 -1
- package/dist/components/data/DataTable.d.cts +9 -1
- package/dist/components/data/DataTable.d.ts +9 -1
- package/dist/components/data/DataTable.d.ts.map +1 -1
- package/dist/components/forms/ComboBox.d.cts +12 -2
- package/dist/components/forms/ComboBox.d.ts +12 -2
- package/dist/components/forms/ComboBox.d.ts.map +1 -1
- package/dist/components/forms/FileUpload.d.cts +10 -2
- package/dist/components/forms/FileUpload.d.ts +10 -2
- package/dist/components/forms/FileUpload.d.ts.map +1 -1
- package/dist/components/forms/NumberField.d.cts +17 -2
- package/dist/components/forms/NumberField.d.ts +17 -2
- package/dist/components/forms/NumberField.d.ts.map +1 -1
- package/dist/components/patterns/FileDropZone.d.cts +8 -1
- package/dist/components/patterns/FileDropZone.d.ts +8 -1
- package/dist/components/patterns/FileDropZone.d.ts.map +1 -1
- 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 +159 -92
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +181 -113
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export type BadgeStatus = 'positive' | 'critical' | 'negative' | 'informative' | 'neutral';
|
|
3
3
|
export interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
4
4
|
/** Semantic value state. Colour is never the only signal — the icon carries the same meaning. */
|
|
5
5
|
status?: BadgeStatus;
|
|
6
6
|
showIcon?: boolean;
|
|
7
7
|
}
|
|
8
|
-
/**
|
|
9
|
-
|
|
8
|
+
/**
|
|
9
|
+
* Value state on an object or row. Text is the label, never a bare colour dot.
|
|
10
|
+
*
|
|
11
|
+
* Takes a ref, which is what lets it be a `Tooltip` target: React Aria's `Focusable` clones its
|
|
12
|
+
* child and hands it one, and a component that cannot accept a ref leaves the tooltip **silently**
|
|
13
|
+
* dead — no error, and a screenshot identical to a working one.
|
|
14
|
+
*
|
|
15
|
+
* Worth stating why this was invisible for so long. Under React 19 `ref` is an ordinary prop, so it
|
|
16
|
+
* rode along in `...rest` and landed on the span by accident; under React 18 it is stripped before
|
|
17
|
+
* the component ever sees it. The library develops on 19 and had consumers on 18, so the failure
|
|
18
|
+
* existed only where nobody was testing.
|
|
19
|
+
*/
|
|
20
|
+
export declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1,10 +1,21 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export type BadgeStatus = 'positive' | 'critical' | 'negative' | 'informative' | 'neutral';
|
|
3
3
|
export interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
4
4
|
/** Semantic value state. Colour is never the only signal — the icon carries the same meaning. */
|
|
5
5
|
status?: BadgeStatus;
|
|
6
6
|
showIcon?: boolean;
|
|
7
7
|
}
|
|
8
|
-
/**
|
|
9
|
-
|
|
8
|
+
/**
|
|
9
|
+
* Value state on an object or row. Text is the label, never a bare colour dot.
|
|
10
|
+
*
|
|
11
|
+
* Takes a ref, which is what lets it be a `Tooltip` target: React Aria's `Focusable` clones its
|
|
12
|
+
* child and hands it one, and a component that cannot accept a ref leaves the tooltip **silently**
|
|
13
|
+
* dead — no error, and a screenshot identical to a working one.
|
|
14
|
+
*
|
|
15
|
+
* Worth stating why this was invisible for so long. Under React 19 `ref` is an ordinary prop, so it
|
|
16
|
+
* rode along in `...rest` and landed on the span by accident; under React 18 it is stripped before
|
|
17
|
+
* the component ever sees it. The library develops on 19 and had consumers on 18, so the failure
|
|
18
|
+
* existed only where nobody was testing.
|
|
19
|
+
*/
|
|
20
|
+
export declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
10
21
|
//# sourceMappingURL=Badge.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../src/components/core/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../src/components/core/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,SAAS,CAAC;AAO3F,MAAM,WAAW,UAAW,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IACvE,iGAAiG;IACjG,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,KAAK,oFAShB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
3
3
|
/** Provide to render the remove affordance — filter tokens, multi-select values. */
|
|
4
4
|
onRemove?: () => void;
|
|
@@ -19,5 +19,10 @@ export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
19
19
|
*/
|
|
20
20
|
category?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
21
21
|
}
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/**
|
|
23
|
+
* A removable token: applied filters, multi-select values.
|
|
24
|
+
*
|
|
25
|
+
* Takes a ref so it can be a `Tooltip` target — a truncated category label is a common reason to
|
|
26
|
+
* want one. See `Badge` for why the missing ref failed silently.
|
|
27
|
+
*/
|
|
28
|
+
export declare const Tag: React.ForwardRefExoticComponent<TagProps & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
3
3
|
/** Provide to render the remove affordance — filter tokens, multi-select values. */
|
|
4
4
|
onRemove?: () => void;
|
|
@@ -19,6 +19,11 @@ export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
19
19
|
*/
|
|
20
20
|
category?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
21
21
|
}
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/**
|
|
23
|
+
* A removable token: applied filters, multi-select values.
|
|
24
|
+
*
|
|
25
|
+
* Takes a ref so it can be a `Tooltip` target — a truncated category label is a common reason to
|
|
26
|
+
* want one. See `Badge` for why the missing ref failed silently.
|
|
27
|
+
*/
|
|
28
|
+
export declare const Tag: React.ForwardRefExoticComponent<TagProps & React.RefAttributes<HTMLSpanElement>>;
|
|
24
29
|
//# sourceMappingURL=Tag.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tag.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tag.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,MAAM,WAAW,QAAS,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IACrE,oFAAoF;IACpF,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;;;;;;;;;;OAaG;IACH,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CAClC;AAED;;;;;GAKG;AACH,eAAO,MAAM,GAAG,kFAiBd,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
/** Colour hierarchy, named after the `--text-*` token each value resolves to. */
|
|
3
3
|
export type TextColor = 'primary' | 'secondary' | 'tertiary' | 'disabled' | 'inverse';
|
|
4
4
|
/** Typographic scale, named after the `--type-*` tokens. */
|
|
@@ -20,10 +20,15 @@ export interface TextProps extends Omit<React.HTMLAttributes<HTMLElement>, 'colo
|
|
|
20
20
|
elementType?: 'p' | 'span' | 'div' | 'dd' | 'li';
|
|
21
21
|
className?: string;
|
|
22
22
|
}
|
|
23
|
-
/**
|
|
24
|
-
|
|
23
|
+
/**
|
|
24
|
+
* Body copy, captions, metadata and eyebrows — everything that is text but not a heading.
|
|
25
|
+
*
|
|
26
|
+
* Takes a ref so it can be a `Tooltip` target, and so a clamped line can be measured to decide
|
|
27
|
+
* whether a tooltip is warranted at all. See `Badge` for why the missing ref failed silently.
|
|
28
|
+
*/
|
|
29
|
+
export declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;
|
|
25
30
|
export interface StrongProps extends Omit<React.HTMLAttributes<HTMLElement>, 'color'> {
|
|
26
31
|
className?: string;
|
|
27
32
|
}
|
|
28
33
|
/** Inline emphasis. Sugar over `<Text weight="strong" elementType="span">`. */
|
|
29
|
-
export declare
|
|
34
|
+
export declare const Strong: React.ForwardRefExoticComponent<StrongProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
/** Colour hierarchy, named after the `--text-*` token each value resolves to. */
|
|
3
3
|
export type TextColor = 'primary' | 'secondary' | 'tertiary' | 'disabled' | 'inverse';
|
|
4
4
|
/** Typographic scale, named after the `--type-*` tokens. */
|
|
@@ -20,11 +20,16 @@ export interface TextProps extends Omit<React.HTMLAttributes<HTMLElement>, 'colo
|
|
|
20
20
|
elementType?: 'p' | 'span' | 'div' | 'dd' | 'li';
|
|
21
21
|
className?: string;
|
|
22
22
|
}
|
|
23
|
-
/**
|
|
24
|
-
|
|
23
|
+
/**
|
|
24
|
+
* Body copy, captions, metadata and eyebrows — everything that is text but not a heading.
|
|
25
|
+
*
|
|
26
|
+
* Takes a ref so it can be a `Tooltip` target, and so a clamped line can be measured to decide
|
|
27
|
+
* whether a tooltip is warranted at all. See `Badge` for why the missing ref failed silently.
|
|
28
|
+
*/
|
|
29
|
+
export declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;
|
|
25
30
|
export interface StrongProps extends Omit<React.HTMLAttributes<HTMLElement>, 'color'> {
|
|
26
31
|
className?: string;
|
|
27
32
|
}
|
|
28
33
|
/** Inline emphasis. Sugar over `<Text weight="strong" elementType="span">`. */
|
|
29
|
-
export declare
|
|
34
|
+
export declare const Strong: React.ForwardRefExoticComponent<StrongProps & React.RefAttributes<HTMLElement>>;
|
|
30
35
|
//# sourceMappingURL=Text.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../src/components/core/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../src/components/core/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,iFAAiF;AACjF,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,SAAS,CAAC;AAEtF,4DAA4D;AAC5D,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAGhE,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IACjF,kDAAkD;IAClD,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,gEAAgE;IAChE,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,kFAAkF;IAClF,MAAM,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC9B,0EAA0E;IAC1E,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wEAAwE;IACxE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC5B,uEAAuE;IACvE,WAAW,CAAC,EAAE,GAAG,GAAG,MAAM,GAAG,KAAK,GAAG,IAAI,GAAG,IAAI,CAAC;IACjD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;GAKG;AACH,eAAO,MAAM,IAAI,+EAuBf,CAAC;AAEH,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IACnF,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,+EAA+E;AAC/E,eAAO,MAAM,MAAM,iFAIjB,CAAC"}
|
|
@@ -38,7 +38,15 @@ export interface DataTableProps<T extends {
|
|
|
38
38
|
rows: T[];
|
|
39
39
|
/** Row height: 32 / 40 / 48px. Condensed is the analyst default. */
|
|
40
40
|
density?: 'condensed' | 'regular' | 'comfortable';
|
|
41
|
-
|
|
41
|
+
/**
|
|
42
|
+
* `true` / `'multiple'` gives a checkbox column and a select-all header box.
|
|
43
|
+
*
|
|
44
|
+
* `'single'` selects by pressing the row and renders **no** selection column. That is not a
|
|
45
|
+
* shortcut: a checkbox is a claim that more than one can be ticked, and a checkbox column that
|
|
46
|
+
* silently unticks the previous row reads as a bug. Prefer a master/detail list — the pattern
|
|
47
|
+
* `SplitPane` exists for — over a grid with one checkbox per row.
|
|
48
|
+
*/
|
|
49
|
+
selectable?: boolean | 'single' | 'multiple';
|
|
42
50
|
selected?: Array<string | number>;
|
|
43
51
|
onSelectionChange?: (ids: Array<string | number>) => void;
|
|
44
52
|
sort?: DataTableSort;
|
|
@@ -38,7 +38,15 @@ export interface DataTableProps<T extends {
|
|
|
38
38
|
rows: T[];
|
|
39
39
|
/** Row height: 32 / 40 / 48px. Condensed is the analyst default. */
|
|
40
40
|
density?: 'condensed' | 'regular' | 'comfortable';
|
|
41
|
-
|
|
41
|
+
/**
|
|
42
|
+
* `true` / `'multiple'` gives a checkbox column and a select-all header box.
|
|
43
|
+
*
|
|
44
|
+
* `'single'` selects by pressing the row and renders **no** selection column. That is not a
|
|
45
|
+
* shortcut: a checkbox is a claim that more than one can be ticked, and a checkbox column that
|
|
46
|
+
* silently unticks the previous row reads as a bug. Prefer a master/detail list — the pattern
|
|
47
|
+
* `SplitPane` exists for — over a grid with one checkbox per row.
|
|
48
|
+
*/
|
|
49
|
+
selectable?: boolean | 'single' | 'multiple';
|
|
42
50
|
selected?: Array<string | number>;
|
|
43
51
|
onSelectionChange?: (ids: Array<string | number>) => void;
|
|
44
52
|
sort?: DataTableSort;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/components/data/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AASpC,MAAM,WAAW,eAAe,CAAC,CAAC,GAAG,GAAG;IACtC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IACpC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,wFAAwF;IACxF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;CACtC;AAED,MAAM,WAAW,aAAa;IAAG,GAAG,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,KAAK,GAAG,MAAM,CAAA;CAAE;AAEnE,MAAM,WAAW,iBAAiB;IAChC,iCAAiC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,cAAc,CAAC,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,GAAG,GAAG;IACrE,+CAA+C;IAC/C,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9B,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,oEAAoE;IACpE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,GAAG,aAAa,CAAC;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/components/data/DataTable.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface ComboBoxOption {
|
|
3
3
|
value: string;
|
|
4
4
|
label: string;
|
|
@@ -27,6 +27,16 @@ export interface ComboBoxProps {
|
|
|
27
27
|
*/
|
|
28
28
|
inputValue?: string;
|
|
29
29
|
options?: Array<string | ComboBoxOption>;
|
|
30
|
+
/**
|
|
31
|
+
* Adds a button that empties the field — both the text and the selection.
|
|
32
|
+
*
|
|
33
|
+
* A required field still needs this whenever the choice is *changeable*: without it the only way
|
|
34
|
+
* back from a wrong pick is to select something else, so there is no way to say "not this one
|
|
35
|
+
* yet" short of reloading the screen.
|
|
36
|
+
*/
|
|
37
|
+
isClearable?: boolean;
|
|
38
|
+
/** Overrides the dictionary's `inputClear`. Say what is being cleared when the field is one of several. */
|
|
39
|
+
clearLabel?: string;
|
|
30
40
|
/**
|
|
31
41
|
* `options` is the final list and React Aria filters nothing locally. Required for server
|
|
32
42
|
* search: fuzzy matches, synonyms, code-to-description and server ranking do not survive a
|
|
@@ -70,4 +80,4 @@ export interface ComboBoxProps {
|
|
|
70
80
|
}
|
|
71
81
|
/** Type-ahead picker for lists too long to scroll — material, cost centre, G/L account.
|
|
72
82
|
* Below ~10 fixed options use Select; for master-data search with several columns use ValueHelpField. */
|
|
73
|
-
export declare function ComboBox({ label, value, defaultValue, onChange, onInputChange, inputValue, options, description, errorMessage, size, fullWidth, isFilteredExternally, isLoading, loadingLabel, emptyLabel, onLoadMore, className, style, ...rest }: ComboBoxProps): React.JSX.Element;
|
|
83
|
+
export declare function ComboBox({ label, value, defaultValue, onChange, onInputChange, inputValue, options, description, errorMessage, size, fullWidth, isFilteredExternally, isLoading, loadingLabel, emptyLabel, isClearable, clearLabel, onLoadMore, className, style, ...rest }: ComboBoxProps): React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
export interface ComboBoxOption {
|
|
3
3
|
value: string;
|
|
4
4
|
label: string;
|
|
@@ -27,6 +27,16 @@ export interface ComboBoxProps {
|
|
|
27
27
|
*/
|
|
28
28
|
inputValue?: string;
|
|
29
29
|
options?: Array<string | ComboBoxOption>;
|
|
30
|
+
/**
|
|
31
|
+
* Adds a button that empties the field — both the text and the selection.
|
|
32
|
+
*
|
|
33
|
+
* A required field still needs this whenever the choice is *changeable*: without it the only way
|
|
34
|
+
* back from a wrong pick is to select something else, so there is no way to say "not this one
|
|
35
|
+
* yet" short of reloading the screen.
|
|
36
|
+
*/
|
|
37
|
+
isClearable?: boolean;
|
|
38
|
+
/** Overrides the dictionary's `inputClear`. Say what is being cleared when the field is one of several. */
|
|
39
|
+
clearLabel?: string;
|
|
30
40
|
/**
|
|
31
41
|
* `options` is the final list and React Aria filters nothing locally. Required for server
|
|
32
42
|
* search: fuzzy matches, synonyms, code-to-description and server ranking do not survive a
|
|
@@ -70,5 +80,5 @@ export interface ComboBoxProps {
|
|
|
70
80
|
}
|
|
71
81
|
/** Type-ahead picker for lists too long to scroll — material, cost centre, G/L account.
|
|
72
82
|
* Below ~10 fixed options use Select; for master-data search with several columns use ValueHelpField. */
|
|
73
|
-
export declare function ComboBox({ label, value, defaultValue, onChange, onInputChange, inputValue, options, description, errorMessage, size, fullWidth, isFilteredExternally, isLoading, loadingLabel, emptyLabel, onLoadMore, className, style, ...rest }: ComboBoxProps): React.JSX.Element;
|
|
83
|
+
export declare function ComboBox({ label, value, defaultValue, onChange, onInputChange, inputValue, options, description, errorMessage, size, fullWidth, isFilteredExternally, isLoading, loadingLabel, emptyLabel, isClearable, clearLabel, onLoadMore, className, style, ...rest }: ComboBoxProps): React.JSX.Element;
|
|
74
84
|
//# sourceMappingURL=ComboBox.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComboBox.d.ts","sourceRoot":"","sources":["../../../src/components/forms/ComboBox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"ComboBox.d.ts","sourceRoot":"","sources":["../../../src/components/forms/ComboBox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,MAAM,WAAW,cAAc;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,OAAO,CAAA;CAAE;AAE1G,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IAC1C;;;;;OAKG;IACH,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACvC;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,cAAc,CAAC,CAAC;IACzC;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,2GAA2G;IAC3G,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;;;;OAOG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,oDAAoD;IACpD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,4EAA4E;IAC5E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,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,4GAA4G;IAC5G,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAKD;0GAC0G;AAC1G,wBAAgB,QAAQ,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,aAAa,EAAE,UAAU,EAAE,OAAY,EACtG,WAAW,EAAE,YAAY,EAAE,IAAW,EAAE,SAAgB,EAAE,oBAAoB,EAAE,SAAS,EACzF,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,aAAa,qBAgH1G"}
|
|
@@ -9,7 +9,15 @@ export interface FileRejection {
|
|
|
9
9
|
file: File;
|
|
10
10
|
reason: 'size' | 'type';
|
|
11
11
|
}
|
|
12
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Everything a caller can put on the wrapper: `id`, `data-*`, `aria-describedby`.
|
|
14
|
+
*
|
|
15
|
+
* The omissions are this component's own props under names the DOM also uses, and would otherwise
|
|
16
|
+
* collide: `onChange` and `onError` carry files and rejections rather than DOM events, and
|
|
17
|
+
* `defaultValue` a file list rather than a string.
|
|
18
|
+
*/
|
|
19
|
+
export type FileFieldPassthrough = Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onError' | 'defaultValue' | 'color'>;
|
|
20
|
+
export interface FileUploadProps extends FileFieldPassthrough {
|
|
13
21
|
label?: React.ReactNode;
|
|
14
22
|
/** Controlled / uncontrolled, the same pair as `Tabs` and `MultiComboBox`. */
|
|
15
23
|
value?: PireFile[];
|
|
@@ -54,4 +62,4 @@ export declare function screenFiles(files: File[], { maxSize, acceptedFileTypes
|
|
|
54
62
|
* uploads nothing: the app owns the `FormData`, the request and the progress it reports back
|
|
55
63
|
* through `uploadProgress`.
|
|
56
64
|
*/
|
|
57
|
-
export declare function FileUpload({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, chooseLabel, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, }: FileUploadProps): React.JSX.Element;
|
|
65
|
+
export declare function FileUpload({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, chooseLabel, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, ...rest }: FileUploadProps): React.JSX.Element;
|
|
@@ -9,7 +9,15 @@ export interface FileRejection {
|
|
|
9
9
|
file: File;
|
|
10
10
|
reason: 'size' | 'type';
|
|
11
11
|
}
|
|
12
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Everything a caller can put on the wrapper: `id`, `data-*`, `aria-describedby`.
|
|
14
|
+
*
|
|
15
|
+
* The omissions are this component's own props under names the DOM also uses, and would otherwise
|
|
16
|
+
* collide: `onChange` and `onError` carry files and rejections rather than DOM events, and
|
|
17
|
+
* `defaultValue` a file list rather than a string.
|
|
18
|
+
*/
|
|
19
|
+
export type FileFieldPassthrough = Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onError' | 'defaultValue' | 'color'>;
|
|
20
|
+
export interface FileUploadProps extends FileFieldPassthrough {
|
|
13
21
|
label?: React.ReactNode;
|
|
14
22
|
/** Controlled / uncontrolled, the same pair as `Tabs` and `MultiComboBox`. */
|
|
15
23
|
value?: PireFile[];
|
|
@@ -54,5 +62,5 @@ export declare function screenFiles(files: File[], { maxSize, acceptedFileTypes
|
|
|
54
62
|
* uploads nothing: the app owns the `FormData`, the request and the progress it reports back
|
|
55
63
|
* through `uploadProgress`.
|
|
56
64
|
*/
|
|
57
|
-
export declare function FileUpload({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, chooseLabel, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, }: FileUploadProps): React.JSX.Element;
|
|
65
|
+
export declare function FileUpload({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, chooseLabel, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, ...rest }: FileUploadProps): React.JSX.Element;
|
|
58
66
|
//# sourceMappingURL=FileUpload.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileUpload.d.ts","sourceRoot":"","sources":["../../../src/components/forms/FileUpload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,MAAM,WAAW,QAAQ;IACvB,0EAA0E;IAC1E,IAAI,EAAE,IAAI,CAAC;IACX,0EAA0E;IAC1E,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"FileUpload.d.ts","sourceRoot":"","sources":["../../../src/components/forms/FileUpload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,MAAM,WAAW,QAAQ;IACvB,0EAA0E;IAC1E,IAAI,EAAE,IAAI,CAAC;IACX,0EAA0E;IAC1E,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED;;;;;;GAMG;AACH,MAAM,MAAM,oBAAoB,GAAG,IAAI,CACrC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,GAAG,SAAS,GAAG,cAAc,GAAG,OAAO,CACxF,CAAC;AAEF,MAAM,WAAW,eAAgB,SAAQ,oBAAoB;IAC3D,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,8EAA8E;IAC9E,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,YAAY,CAAC,EAAE,QAAQ,EAAE,CAAC;IAC1B,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,IAAI,CAAC;IACvC,uFAAuF;IACvF,iBAAiB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACtC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,+EAA+E;IAC/E,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,uDAAuD;IACvD,OAAO,CAAC,EAAE,CAAC,UAAU,EAAE,aAAa,EAAE,KAAK,IAAI,CAAC;IAChD,kFAAkF;IAClF,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,mEAAmE;IACnE,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,qDAAqD;IACrD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,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,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAID,mGAAmG;AACnG,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAIpD;AAED,gGAAgG;AAChG,wBAAgB,WAAW,CACzB,KAAK,EAAE,IAAI,EAAE,EACb,EAAE,OAAO,EAAE,iBAAiB,EAAE,EAAE;IAAE,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,iBAAiB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAAE,GAC1F;IAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAAC,QAAQ,EAAE,aAAa,EAAE,CAAA;CAAE,CAwBjD;AAED;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,EACzB,KAAK,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EACzF,WAAkB,EAAE,cAAc,EAAE,WAAW,EAAE,WAAW,EAAE,YAAY,EAC1E,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,SAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,IAAI,EAC3F,EAAE,eAAe,qBA2EjB"}
|
|
@@ -28,6 +28,21 @@ export interface NumberFieldProps {
|
|
|
28
28
|
className?: string;
|
|
29
29
|
style?: React.CSSProperties;
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
31
|
+
/**
|
|
32
|
+
* Quantities, prices and any figure the user edits. Always right-aligned tabular mono, with
|
|
33
|
+
* arrow-key and scroll stepping supplied by React Aria.
|
|
34
|
+
*
|
|
35
|
+
* **`onChange` fires on commit — blur, Enter or a stepper press — never per keystroke.** That is
|
|
36
|
+
* React Aria's design and it is the right one: a formatted number field passes through states like
|
|
37
|
+
* `1,` and `-` that must not reach the form.
|
|
38
|
+
*
|
|
39
|
+
* The consequence is worth knowing before you hit it. **Do not disable an action on this field's
|
|
40
|
+
* value.** Typing `50000` and pressing an `isDisabled={amount <= 0}` button swallows the first
|
|
41
|
+
* press: the field has not committed yet, so the button is still disabled when the pointer goes
|
|
42
|
+
* down, and it takes a second click. It is not a race that can be tuned away — a test that clicks
|
|
43
|
+
* such a button deadlocks outright, waiting for an enabled state that only that click can produce.
|
|
44
|
+
*
|
|
45
|
+
* Enable the action and validate when it is pressed, surfacing the reason. A disabled control that
|
|
46
|
+
* does not say why is a worse affordance regardless, so the fix costs nothing.
|
|
47
|
+
*/
|
|
33
48
|
export declare function NumberField({ label, suffix, description, errorMessage, hideStepper, size, fullWidth, className, style, ...rest }: NumberFieldProps): React.JSX.Element;
|
|
@@ -28,7 +28,22 @@ export interface NumberFieldProps {
|
|
|
28
28
|
className?: string;
|
|
29
29
|
style?: React.CSSProperties;
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
31
|
+
/**
|
|
32
|
+
* Quantities, prices and any figure the user edits. Always right-aligned tabular mono, with
|
|
33
|
+
* arrow-key and scroll stepping supplied by React Aria.
|
|
34
|
+
*
|
|
35
|
+
* **`onChange` fires on commit — blur, Enter or a stepper press — never per keystroke.** That is
|
|
36
|
+
* React Aria's design and it is the right one: a formatted number field passes through states like
|
|
37
|
+
* `1,` and `-` that must not reach the form.
|
|
38
|
+
*
|
|
39
|
+
* The consequence is worth knowing before you hit it. **Do not disable an action on this field's
|
|
40
|
+
* value.** Typing `50000` and pressing an `isDisabled={amount <= 0}` button swallows the first
|
|
41
|
+
* press: the field has not committed yet, so the button is still disabled when the pointer goes
|
|
42
|
+
* down, and it takes a second click. It is not a race that can be tuned away — a test that clicks
|
|
43
|
+
* such a button deadlocks outright, waiting for an enabled state that only that click can produce.
|
|
44
|
+
*
|
|
45
|
+
* Enable the action and validate when it is pressed, surfacing the reason. A disabled control that
|
|
46
|
+
* does not say why is a worse affordance regardless, so the fix costs nothing.
|
|
47
|
+
*/
|
|
33
48
|
export declare function NumberField({ label, suffix, description, errorMessage, hideStepper, size, fullWidth, className, style, ...rest }: NumberFieldProps): React.JSX.Element;
|
|
34
49
|
//# sourceMappingURL=NumberField.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberField.d.ts","sourceRoot":"","sources":["../../../src/components/forms/NumberField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"NumberField.d.ts","sourceRoot":"","sources":["../../../src/components/forms/NumberField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAkCpC,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB;2FACuF;IACvF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sGAAsG;IACtG,aAAa,CAAC,EAAE,IAAI,CAAC,mBAAmB,CAAC;IACzC,uDAAuD;IACvD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,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,+EAA+E;IAC/E,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,IAAW,EAC9F,SAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,gBAAgB,qBA2DhE"}
|
|
@@ -5,6 +5,13 @@ export interface FileDropZoneProps extends Omit<FileUploadProps, 'chooseLabel'>
|
|
|
5
5
|
promptLabel?: React.ReactNode;
|
|
6
6
|
/** `compact` for an import modal, where the zone competes with a table for height. */
|
|
7
7
|
height?: 'compact' | 'regular';
|
|
8
|
+
/**
|
|
9
|
+
* Accessible name for the drop target when `label` is omitted.
|
|
10
|
+
*
|
|
11
|
+
* It lands on the `DropZone` rather than the wrapper, because the drop target is the thing
|
|
12
|
+
* being named — React Aria gives it a button role, and an unnamed one fails axe.
|
|
13
|
+
*/
|
|
14
|
+
'aria-label'?: string;
|
|
8
15
|
}
|
|
9
16
|
/**
|
|
10
17
|
* The large drop surface, for import screens and anywhere a file is the point of the page.
|
|
@@ -13,4 +20,4 @@ export interface FileDropZoneProps extends Omit<FileUploadProps, 'chooseLabel'>
|
|
|
13
20
|
* not a div with `onDragOver`. It still contains a `FileTrigger`, because drag-and-drop alone is
|
|
14
21
|
* not an accessible way to supply a file.
|
|
15
22
|
*/
|
|
16
|
-
export declare function FileDropZone({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, promptLabel, height, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, }: FileDropZoneProps): React.JSX.Element;
|
|
23
|
+
export declare function FileDropZone({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, promptLabel, height, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, 'aria-label': ariaLabel, ...rest }: FileDropZoneProps): React.JSX.Element;
|
|
@@ -5,6 +5,13 @@ export interface FileDropZoneProps extends Omit<FileUploadProps, 'chooseLabel'>
|
|
|
5
5
|
promptLabel?: React.ReactNode;
|
|
6
6
|
/** `compact` for an import modal, where the zone competes with a table for height. */
|
|
7
7
|
height?: 'compact' | 'regular';
|
|
8
|
+
/**
|
|
9
|
+
* Accessible name for the drop target when `label` is omitted.
|
|
10
|
+
*
|
|
11
|
+
* It lands on the `DropZone` rather than the wrapper, because the drop target is the thing
|
|
12
|
+
* being named — React Aria gives it a button role, and an unnamed one fails axe.
|
|
13
|
+
*/
|
|
14
|
+
'aria-label'?: string;
|
|
8
15
|
}
|
|
9
16
|
/**
|
|
10
17
|
* The large drop surface, for import screens and anywhere a file is the point of the page.
|
|
@@ -13,5 +20,5 @@ export interface FileDropZoneProps extends Omit<FileUploadProps, 'chooseLabel'>
|
|
|
13
20
|
* not a div with `onDragOver`. It still contains a `FileTrigger`, because drag-and-drop alone is
|
|
14
21
|
* not an accessible way to supply a file.
|
|
15
22
|
*/
|
|
16
|
-
export declare function FileDropZone({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, promptLabel, height, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, }: FileDropZoneProps): React.JSX.Element;
|
|
23
|
+
export declare function FileDropZone({ label, value, defaultValue, onChange, acceptedFileTypes, allowsMultiple, maxSize, onError, showPreview, uploadProgress, promptLabel, height, description, errorMessage, isInvalid, isDisabled, isReadOnly, isRequired, fullWidth, className, style, 'aria-label': ariaLabel, ...rest }: FileDropZoneProps): React.JSX.Element;
|
|
17
24
|
//# sourceMappingURL=FileDropZone.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileDropZone.d.ts","sourceRoot":"","sources":["../../../src/components/patterns/FileDropZone.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,EAA+B,KAAK,eAAe,EAAiB,MAAM,qBAAqB,CAAC;AAIvG,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,eAAe,EAAE,aAAa,CAAC;IAC7E,oFAAoF;IACpF,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,sFAAsF;IACtF,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"FileDropZone.d.ts","sourceRoot":"","sources":["../../../src/components/patterns/FileDropZone.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,EAA+B,KAAK,eAAe,EAAiB,MAAM,qBAAqB,CAAC;AAIvG,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,eAAe,EAAE,aAAa,CAAC;IAC7E,oFAAoF;IACpF,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,sFAAsF;IACtF,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IAC/B;;;;;OAKG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAID;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,EAC3B,KAAK,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EACzF,WAAkB,EAAE,cAAc,EAAE,WAAW,EAAE,MAAkB,EAAE,WAAW,EAAE,YAAY,EAC9F,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,SAAgB,EAAE,SAAS,EAAE,KAAK,EACjF,YAAY,EAAE,SAAS,EAAE,GAAG,IAAI,EACjC,EAAE,iBAAiB,qBA0FnB"}
|
package/dist/i18n/messages.d.cts
CHANGED
|
@@ -23,6 +23,8 @@ export interface PireMessages {
|
|
|
23
23
|
dataTableLoading: string;
|
|
24
24
|
/** Row header announced for the totals row when the first column carries no summary cell. */
|
|
25
25
|
dataTableSummaryRow: string;
|
|
26
|
+
/** Shown in place of the body when a table has no rows and is not loading. */
|
|
27
|
+
dataTableEmpty: string;
|
|
26
28
|
/** Accessible name of the dialog's close affordance. */
|
|
27
29
|
dialogClose: string;
|
|
28
30
|
/** Accessible name of SidePanel's close affordance. */
|
package/dist/i18n/messages.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export interface PireMessages {
|
|
|
23
23
|
dataTableLoading: string;
|
|
24
24
|
/** Row header announced for the totals row when the first column carries no summary cell. */
|
|
25
25
|
dataTableSummaryRow: string;
|
|
26
|
+
/** Shown in place of the body when a table has no rows and is not loading. */
|
|
27
|
+
dataTableEmpty: string;
|
|
26
28
|
/** Accessible name of the dialog's close affordance. */
|
|
27
29
|
dialogClose: string;
|
|
28
30
|
/** Accessible name of SidePanel's close affordance. */
|
|
@@ -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;IACzB,6FAA6F;IAC7F,mBAAmB,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"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"}
|