@bfrs/agentic-components 0.2.8 → 0.3.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/BFRS_AGENTIC_COMPONENTS.md +331 -7
- package/README.md +19 -1
- package/dist/components/ui/feedback/InfoCard/InfoCard.d.ts +16 -0
- package/dist/components/ui/feedback/InfoCard/index.d.ts +2 -0
- package/dist/components/ui/feedback/Tip/Tip.d.ts +8 -0
- package/dist/components/ui/feedback/Tip/index.d.ts +2 -0
- package/dist/components/ui/forms/FileDropzone/FileDropzone.d.ts +21 -0
- package/dist/components/ui/forms/FileDropzone/index.d.ts +2 -0
- package/dist/components/ui/forms/MultiSelect/MultiSelect.d.ts +20 -0
- package/dist/components/ui/forms/MultiSelect/index.d.ts +1 -0
- package/dist/components/ui/forms/NumberStepper/NumberStepper.d.ts +21 -0
- package/dist/components/ui/forms/NumberStepper/index.d.ts +2 -0
- package/dist/components/ui/forms/OptionCardGroup/OptionCardGroup.d.ts +20 -0
- package/dist/components/ui/forms/OptionCardGroup/index.d.ts +2 -0
- package/dist/components/ui/forms/RevealField/RevealField.d.ts +16 -0
- package/dist/components/ui/forms/RevealField/index.d.ts +2 -0
- package/dist/components/ui/forms/SelectableChipGroup/SelectableChipGroup.d.ts +23 -0
- package/dist/components/ui/forms/SelectableChipGroup/index.d.ts +2 -0
- package/dist/components/ui/forms/SuggestInput/SuggestInput.d.ts +25 -0
- package/dist/components/ui/forms/SuggestInput/index.d.ts +2 -0
- package/dist/components/ui/index.d.ts +13 -0
- package/dist/components/ui/overlays/Tooltip/Tooltip.d.ts +3 -1
- package/dist/components/ui/patterns/Accordion/Accordion.d.ts +33 -0
- package/dist/components/ui/patterns/Accordion/index.d.ts +2 -0
- package/dist/components/ui/patterns/Collapsible/Collapsible.d.ts +15 -0
- package/dist/components/ui/patterns/Collapsible/index.d.ts +2 -0
- package/dist/components/ui/patterns/EntityDisplayCard/EntityDisplayCard.d.ts +33 -0
- package/dist/components/ui/patterns/EntityDisplayCard/index.d.ts +2 -0
- package/dist/components/ui/patterns/SummaryBar/SummaryBar.d.ts +17 -0
- package/dist/components/ui/patterns/SummaryBar/index.d.ts +2 -0
- package/dist/components/ui/patterns/WorkspaceHeader/WorkspaceHeader.d.ts +13 -3
- package/dist/components/ui/primitives/Grid/Grid.d.ts +6 -2
- package/dist/custom-elements.d.ts +113 -0
- package/dist/custom-elements.js +20971 -19657
- package/dist/custom-elements.js.map +1 -1
- package/dist/index.js +5670 -4980
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/theme/overrides.d.ts +10 -0
- package/dist/theme.js +62 -50
- package/dist/theme.js.map +1 -1
- package/dist/tokens/colors.d.ts +6 -1
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export type SuggestInputItem = {
|
|
3
|
+
value: string;
|
|
4
|
+
label: ReactNode;
|
|
5
|
+
description?: ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export type SuggestInputProps = {
|
|
9
|
+
suggestions: SuggestInputItem[];
|
|
10
|
+
value?: string;
|
|
11
|
+
defaultValue?: string;
|
|
12
|
+
onValueChange?: (value: string) => void;
|
|
13
|
+
onSuggestionSelect?: (item: SuggestInputItem) => void;
|
|
14
|
+
renderItem?: (item: SuggestInputItem) => ReactNode;
|
|
15
|
+
placeholder?: string;
|
|
16
|
+
emptyText?: string;
|
|
17
|
+
loading?: boolean;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
error?: boolean;
|
|
20
|
+
className?: string;
|
|
21
|
+
id?: string;
|
|
22
|
+
"aria-describedby"?: string;
|
|
23
|
+
"aria-invalid"?: boolean;
|
|
24
|
+
};
|
|
25
|
+
export declare const SuggestInput: import('react').ForwardRefExoticComponent<SuggestInputProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -16,6 +16,13 @@ export * from './forms/Textarea';
|
|
|
16
16
|
export * from './forms/FormField';
|
|
17
17
|
export * from './forms/Select';
|
|
18
18
|
export * from './forms/SearchableSelect';
|
|
19
|
+
export * from './forms/MultiSelect';
|
|
20
|
+
export * from './forms/SuggestInput';
|
|
21
|
+
export * from './forms/OptionCardGroup';
|
|
22
|
+
export * from './forms/SelectableChipGroup';
|
|
23
|
+
export * from './forms/NumberStepper';
|
|
24
|
+
export * from './forms/FileDropzone';
|
|
25
|
+
export * from './forms/RevealField';
|
|
19
26
|
export * from './forms/Checkbox';
|
|
20
27
|
export * from './forms/Radio';
|
|
21
28
|
export * from './forms/Switch';
|
|
@@ -25,6 +32,8 @@ export * from './forms/ColorSwatchGroup';
|
|
|
25
32
|
export * from './feedback/Chip';
|
|
26
33
|
export * from './feedback/Badge';
|
|
27
34
|
export * from './feedback/Alert';
|
|
35
|
+
export * from './feedback/InfoCard';
|
|
36
|
+
export * from './feedback/Tip';
|
|
28
37
|
export * from './feedback/Skeleton';
|
|
29
38
|
export * from './feedback/Spinner';
|
|
30
39
|
export * from './feedback/ProgressBar';
|
|
@@ -59,6 +68,10 @@ export * from './patterns/FullPageLoader';
|
|
|
59
68
|
export * from './patterns/BusinessInfoDisplayCard';
|
|
60
69
|
export * from './patterns/StepProgressCard';
|
|
61
70
|
export * from './patterns/RevealAndCopy';
|
|
71
|
+
export * from './patterns/Collapsible';
|
|
72
|
+
export * from './patterns/Accordion';
|
|
73
|
+
export * from './patterns/SummaryBar';
|
|
74
|
+
export * from './patterns/EntityDisplayCard';
|
|
62
75
|
export * from './patterns/CommandMenu';
|
|
63
76
|
export * from './patterns/WorkspaceHeader';
|
|
64
77
|
export * from './patterns/SideNav';
|
|
@@ -4,5 +4,7 @@ export type TooltipProps = {
|
|
|
4
4
|
children: ReactNode;
|
|
5
5
|
side?: "top" | "right" | "bottom" | "left";
|
|
6
6
|
delayDuration?: number;
|
|
7
|
+
/** When true, the tooltip never opens but the trigger stays mounted unchanged. */
|
|
8
|
+
disabled?: boolean;
|
|
7
9
|
};
|
|
8
|
-
export declare function Tooltip({ content, children, side, delayDuration }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare function Tooltip({ content, children, side, delayDuration, disabled }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
export type AccordionItem = {
|
|
3
|
+
value: string;
|
|
4
|
+
title: ReactNode;
|
|
5
|
+
description?: ReactNode;
|
|
6
|
+
content: ReactNode;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
};
|
|
9
|
+
export type AccordionType = "single" | "multiple";
|
|
10
|
+
export type AccordionProps = Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & {
|
|
11
|
+
items: AccordionItem[];
|
|
12
|
+
/** `"single"` keeps one panel open at a time; `"multiple"` allows several. */
|
|
13
|
+
type?: AccordionType;
|
|
14
|
+
/** Controlled open value(s): a string for `single`, a string array for `multiple`. */
|
|
15
|
+
value?: string | string[];
|
|
16
|
+
/** Uncontrolled initial open value(s). */
|
|
17
|
+
defaultValue?: string | string[];
|
|
18
|
+
onValueChange?: (value: string | string[]) => void;
|
|
19
|
+
/** When `type="single"`, allow closing the open panel by clicking it again. */
|
|
20
|
+
collapsible?: boolean;
|
|
21
|
+
};
|
|
22
|
+
export declare const Accordion: import('react').ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & {
|
|
23
|
+
items: AccordionItem[];
|
|
24
|
+
/** `"single"` keeps one panel open at a time; `"multiple"` allows several. */
|
|
25
|
+
type?: AccordionType;
|
|
26
|
+
/** Controlled open value(s): a string for `single`, a string array for `multiple`. */
|
|
27
|
+
value?: string | string[];
|
|
28
|
+
/** Uncontrolled initial open value(s). */
|
|
29
|
+
defaultValue?: string | string[];
|
|
30
|
+
onValueChange?: (value: string | string[]) => void;
|
|
31
|
+
/** When `type="single"`, allow closing the open panel by clicking it again. */
|
|
32
|
+
collapsible?: boolean;
|
|
33
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
export type CollapsibleProps = Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
3
|
+
title: ReactNode;
|
|
4
|
+
description?: ReactNode;
|
|
5
|
+
open?: boolean;
|
|
6
|
+
defaultOpen?: boolean;
|
|
7
|
+
onOpenChange?: (open: boolean) => void;
|
|
8
|
+
};
|
|
9
|
+
export declare const Collapsible: import('react').ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
10
|
+
title: ReactNode;
|
|
11
|
+
description?: ReactNode;
|
|
12
|
+
open?: boolean;
|
|
13
|
+
defaultOpen?: boolean;
|
|
14
|
+
onOpenChange?: (open: boolean) => void;
|
|
15
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
import { BadgeProps } from '../../../primitives/Badge';
|
|
3
|
+
import { ButtonProps } from '../../../primitives/Button';
|
|
4
|
+
export type EntityDisplayCardMetadata = {
|
|
5
|
+
label: ReactNode;
|
|
6
|
+
value: ReactNode;
|
|
7
|
+
};
|
|
8
|
+
export type EntityDisplayCardAction = {
|
|
9
|
+
id: string;
|
|
10
|
+
label: ReactNode;
|
|
11
|
+
ariaLabel?: string;
|
|
12
|
+
icon?: ReactNode;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
variant?: ButtonProps["variant"];
|
|
15
|
+
};
|
|
16
|
+
export type EntityDisplayCardProps = Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
17
|
+
title: ReactNode;
|
|
18
|
+
description?: ReactNode;
|
|
19
|
+
status?: ReactNode;
|
|
20
|
+
statusTone?: BadgeProps["tone"];
|
|
21
|
+
metadata?: EntityDisplayCardMetadata[];
|
|
22
|
+
actions?: EntityDisplayCardAction[];
|
|
23
|
+
onAction?: (action: EntityDisplayCardAction) => void;
|
|
24
|
+
};
|
|
25
|
+
export declare const EntityDisplayCard: import('react').ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
26
|
+
title: ReactNode;
|
|
27
|
+
description?: ReactNode;
|
|
28
|
+
status?: ReactNode;
|
|
29
|
+
statusTone?: BadgeProps["tone"];
|
|
30
|
+
metadata?: EntityDisplayCardMetadata[];
|
|
31
|
+
actions?: EntityDisplayCardAction[];
|
|
32
|
+
onAction?: (action: EntityDisplayCardAction) => void;
|
|
33
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
export type SummaryBarItem = {
|
|
3
|
+
label: ReactNode;
|
|
4
|
+
value: ReactNode;
|
|
5
|
+
};
|
|
6
|
+
export type SummaryBarProps = HTMLAttributes<HTMLDivElement> & {
|
|
7
|
+
items?: SummaryBarItem[];
|
|
8
|
+
totalLabel: ReactNode;
|
|
9
|
+
totalValue: ReactNode;
|
|
10
|
+
note?: ReactNode;
|
|
11
|
+
};
|
|
12
|
+
export declare const SummaryBar: import('react').ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
13
|
+
items?: SummaryBarItem[];
|
|
14
|
+
totalLabel: ReactNode;
|
|
15
|
+
totalValue: ReactNode;
|
|
16
|
+
note?: ReactNode;
|
|
17
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -2,18 +2,28 @@ import { CSSProperties, ReactNode } from 'react';
|
|
|
2
2
|
export type WorkspaceHeaderProps = {
|
|
3
3
|
/** Brand block (logo + product name) rendered at the far left. */
|
|
4
4
|
brand?: ReactNode;
|
|
5
|
-
/** Fixed width (px) for the brand rail, e.g. to align with a sidebar.
|
|
5
|
+
/** Fixed width (px) for the brand rail, e.g. to align with a sidebar. Defaults to 216. */
|
|
6
6
|
brandWidth?: number;
|
|
7
|
+
/** Collapses the brand rail to the sidebar-toggle column and hides the brand slot. */
|
|
8
|
+
brandCollapsed?: boolean;
|
|
9
|
+
/** Fixed width (px) for the collapsed brand rail. Defaults to 56. */
|
|
10
|
+
collapsedBrandWidth?: number;
|
|
7
11
|
/** When provided, renders a sidebar-toggle button next to the brand. */
|
|
8
12
|
onToggleSidebar?: () => void;
|
|
9
13
|
/** Accessible label for the sidebar-toggle button. */
|
|
10
14
|
toggleLabel?: string;
|
|
11
15
|
/** Optional tab strip, rendered as its own bordered column after the brand. */
|
|
12
16
|
tabs?: ReactNode;
|
|
13
|
-
/** Fixed width (px) for the tabs column, e.g. to align with a secondary pane.
|
|
17
|
+
/** Fixed width (px) for the tabs column, e.g. to align with a secondary pane. Defaults to 380. */
|
|
14
18
|
tabsWidth?: number;
|
|
19
|
+
/** Collapses the tabs rail to a compact centered column. */
|
|
20
|
+
tabsCollapsed?: boolean;
|
|
21
|
+
/** Fixed width (px) for the collapsed tabs rail. Defaults to 40. */
|
|
22
|
+
collapsedTabsWidth?: number;
|
|
15
23
|
/** Search control, placed at the start of the trailing actions area. */
|
|
16
24
|
search?: ReactNode;
|
|
25
|
+
/** Fixed width (px) for the search slot wrapper. Defaults to 300. */
|
|
26
|
+
searchWidth?: number;
|
|
17
27
|
/** Trailing action controls (wallet, apps, avatar, …). */
|
|
18
28
|
actions?: ReactNode;
|
|
19
29
|
/** Free-form content placed in the main (flex) region before the spacer. */
|
|
@@ -29,7 +39,7 @@ export type WorkspaceHeaderProps = {
|
|
|
29
39
|
* actions. All product-specific logic (which tabs exist, wallet balance, etc.)
|
|
30
40
|
* stays in the consuming app — this component only owns layout and chrome.
|
|
31
41
|
*/
|
|
32
|
-
export declare function WorkspaceHeader({ brand, brandWidth, onToggleSidebar, toggleLabel, tabs, tabsWidth, search, actions, children, height, className, style }: WorkspaceHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
42
|
+
export declare function WorkspaceHeader({ brand, brandWidth, brandCollapsed, collapsedBrandWidth, onToggleSidebar, toggleLabel, tabs, tabsWidth, tabsCollapsed, collapsedTabsWidth, search, searchWidth, actions, children, height, className, style }: WorkspaceHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
33
43
|
export declare namespace WorkspaceHeader {
|
|
34
44
|
var displayName: string;
|
|
35
45
|
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type GridProps = HTMLAttributes<HTMLDivElement> & {
|
|
3
|
-
columns?: 1 | 2 | 3 | 4;
|
|
3
|
+
columns?: 1 | 2 | 3 | 4 | string;
|
|
4
|
+
templateColumns?: string;
|
|
5
|
+
minColumnWidth?: string;
|
|
4
6
|
gap?: "sm" | "md" | "lg";
|
|
5
7
|
};
|
|
6
8
|
export declare const Grid: import('react').ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
7
|
-
columns?: 1 | 2 | 3 | 4;
|
|
9
|
+
columns?: 1 | 2 | 3 | 4 | string;
|
|
10
|
+
templateColumns?: string;
|
|
11
|
+
minColumnWidth?: string;
|
|
8
12
|
gap?: "sm" | "md" | "lg";
|
|
9
13
|
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -99,6 +99,17 @@ export declare class BfrsAlertElement extends ReactCustomElement {
|
|
|
99
99
|
protected defaultDisplay(): string;
|
|
100
100
|
protected renderElement(): unknown;
|
|
101
101
|
}
|
|
102
|
+
export declare class BfrsInfoCardElement extends ReactCustomElement {
|
|
103
|
+
static readonly tagName = "info-card";
|
|
104
|
+
static get observedAttributes(): string[];
|
|
105
|
+
protected defaultDisplay(): string;
|
|
106
|
+
protected renderElement(): unknown;
|
|
107
|
+
}
|
|
108
|
+
export declare class BfrsTipElement extends ReactCustomElement {
|
|
109
|
+
static readonly tagName = "tip";
|
|
110
|
+
static get observedAttributes(): string[];
|
|
111
|
+
protected renderElement(): unknown;
|
|
112
|
+
}
|
|
102
113
|
export declare class BfrsSkeletonElement extends ReactCustomElement {
|
|
103
114
|
static readonly tagName = "skeleton";
|
|
104
115
|
static get observedAttributes(): string[];
|
|
@@ -222,6 +233,63 @@ export declare class BfrsSearchableSelectElement extends ValueCustomElement {
|
|
|
222
233
|
static get observedAttributes(): string[];
|
|
223
234
|
protected renderElement(): unknown;
|
|
224
235
|
}
|
|
236
|
+
export declare class BfrsMultiSelectElement extends ReactCustomElement {
|
|
237
|
+
static readonly tagName = "multi-select";
|
|
238
|
+
static get observedAttributes(): string[];
|
|
239
|
+
private controlledValues;
|
|
240
|
+
get values(): string[] | undefined;
|
|
241
|
+
set values(values: string[] | undefined);
|
|
242
|
+
get value(): string[] | string | undefined;
|
|
243
|
+
set value(value: string[] | string | undefined);
|
|
244
|
+
attributeChangedCallback(name?: string, oldValue?: string | null, newValue?: string | null): void;
|
|
245
|
+
protected renderElement(): unknown;
|
|
246
|
+
private propsValues;
|
|
247
|
+
private attributeValues;
|
|
248
|
+
}
|
|
249
|
+
export declare class BfrsSuggestInputElement extends ValueCustomElement {
|
|
250
|
+
static readonly tagName = "suggest-input";
|
|
251
|
+
static get observedAttributes(): string[];
|
|
252
|
+
protected defaultDisplay(): string;
|
|
253
|
+
protected renderElement(): unknown;
|
|
254
|
+
}
|
|
255
|
+
export declare class BfrsOptionCardGroupElement extends ValueCustomElement {
|
|
256
|
+
static readonly tagName = "option-card-group";
|
|
257
|
+
static get observedAttributes(): string[];
|
|
258
|
+
protected defaultDisplay(): string;
|
|
259
|
+
protected renderElement(): unknown;
|
|
260
|
+
}
|
|
261
|
+
export declare class BfrsSelectableChipGroupElement extends ReactCustomElement {
|
|
262
|
+
static readonly tagName = "selectable-chip-group";
|
|
263
|
+
static get observedAttributes(): string[];
|
|
264
|
+
private controlledValue;
|
|
265
|
+
get selectedValue(): string | string[] | undefined;
|
|
266
|
+
set selectedValue(value: string | string[] | undefined);
|
|
267
|
+
attributeChangedCallback(name?: string, oldValue?: string | null, newValue?: string | null): void;
|
|
268
|
+
protected defaultDisplay(): string;
|
|
269
|
+
protected renderElement(): unknown;
|
|
270
|
+
private attributeValues;
|
|
271
|
+
}
|
|
272
|
+
export declare class BfrsNumberStepperElement extends ReactCustomElement {
|
|
273
|
+
static readonly tagName = "number-stepper";
|
|
274
|
+
static get observedAttributes(): string[];
|
|
275
|
+
private controlledValue;
|
|
276
|
+
get value(): number | undefined;
|
|
277
|
+
set value(value: number | undefined);
|
|
278
|
+
attributeChangedCallback(name?: string, oldValue?: string | null, newValue?: string | null): void;
|
|
279
|
+
protected renderElement(): unknown;
|
|
280
|
+
}
|
|
281
|
+
export declare class BfrsFileDropzoneElement extends ReactCustomElement {
|
|
282
|
+
static readonly tagName = "file-dropzone";
|
|
283
|
+
static get observedAttributes(): string[];
|
|
284
|
+
protected defaultDisplay(): string;
|
|
285
|
+
protected renderElement(): unknown;
|
|
286
|
+
}
|
|
287
|
+
export declare class BfrsRevealFieldElement extends ReactCustomElement {
|
|
288
|
+
static readonly tagName = "reveal-field";
|
|
289
|
+
static get observedAttributes(): string[];
|
|
290
|
+
protected defaultDisplay(): string;
|
|
291
|
+
protected renderElement(): unknown;
|
|
292
|
+
}
|
|
225
293
|
export declare class BfrsCheckboxElement extends ReactCustomElement {
|
|
226
294
|
static readonly tagName = "checkbox";
|
|
227
295
|
static get observedAttributes(): string[];
|
|
@@ -354,6 +422,13 @@ export declare class BfrsDataTableElement extends ReactCustomElement {
|
|
|
354
422
|
static get observedAttributes(): string[];
|
|
355
423
|
protected defaultDisplay(): string;
|
|
356
424
|
protected renderElement(): unknown;
|
|
425
|
+
private normalizeColumn;
|
|
426
|
+
private dataTableRowId;
|
|
427
|
+
private actionDisabled;
|
|
428
|
+
private emitCellAction;
|
|
429
|
+
private renderButtonCell;
|
|
430
|
+
private renderButtonGroupCell;
|
|
431
|
+
private renderActionMenuCell;
|
|
357
432
|
}
|
|
358
433
|
export declare class BfrsTabsElement extends ValueCustomElement {
|
|
359
434
|
static readonly tagName = "tabs";
|
|
@@ -456,6 +531,31 @@ export declare class BfrsBusinessInfoDisplayCardSkeletonElement extends ReactCus
|
|
|
456
531
|
static get observedAttributes(): string[];
|
|
457
532
|
protected renderElement(): unknown;
|
|
458
533
|
}
|
|
534
|
+
export declare class BfrsCollapsibleElement extends OpenCustomElement {
|
|
535
|
+
static readonly tagName = "collapsible";
|
|
536
|
+
static get observedAttributes(): string[];
|
|
537
|
+
protected defaultDisplay(): string;
|
|
538
|
+
protected renderElement(): unknown;
|
|
539
|
+
}
|
|
540
|
+
export declare class BfrsAccordionElement extends ReactCustomElement {
|
|
541
|
+
static readonly tagName = "accordion";
|
|
542
|
+
static get observedAttributes(): string[];
|
|
543
|
+
protected defaultDisplay(): string;
|
|
544
|
+
private accordionDefaultValue;
|
|
545
|
+
protected renderElement(): unknown;
|
|
546
|
+
}
|
|
547
|
+
export declare class BfrsSummaryBarElement extends ReactCustomElement {
|
|
548
|
+
static readonly tagName = "summary-bar";
|
|
549
|
+
static get observedAttributes(): string[];
|
|
550
|
+
protected defaultDisplay(): string;
|
|
551
|
+
protected renderElement(): unknown;
|
|
552
|
+
}
|
|
553
|
+
export declare class BfrsEntityDisplayCardElement extends ReactCustomElement {
|
|
554
|
+
static readonly tagName = "entity-display-card";
|
|
555
|
+
static get observedAttributes(): string[];
|
|
556
|
+
protected defaultDisplay(): string;
|
|
557
|
+
protected renderElement(): unknown;
|
|
558
|
+
}
|
|
459
559
|
export declare class BfrsRevealAndCopyElement extends ReactCustomElement {
|
|
460
560
|
static readonly tagName = "reveal-and-copy";
|
|
461
561
|
static get observedAttributes(): string[];
|
|
@@ -493,6 +593,7 @@ export declare class BfrsSideNavElement extends ReactCustomElement {
|
|
|
493
593
|
export declare function defineBfrsAgenticElements(options?: BfrsCustomElementRegistryOptions): void;
|
|
494
594
|
declare global {
|
|
495
595
|
interface HTMLElementTagNameMap {
|
|
596
|
+
"bfrs-accordion": BfrsAccordionElement;
|
|
496
597
|
"bfrs-action-menu": BfrsActionMenuElement;
|
|
497
598
|
"bfrs-alert": BfrsAlertElement;
|
|
498
599
|
"bfrs-avatar": BfrsAvatarElement;
|
|
@@ -510,6 +611,7 @@ declare global {
|
|
|
510
611
|
"bfrs-chat-composer": BfrsChatComposerElement;
|
|
511
612
|
"bfrs-checkbox": BfrsCheckboxElement;
|
|
512
613
|
"bfrs-chip": BfrsChipElement;
|
|
614
|
+
"bfrs-collapsible": BfrsCollapsibleElement;
|
|
513
615
|
"bfrs-color-picker": BfrsColorPickerElement;
|
|
514
616
|
"bfrs-color-swatch-group": BfrsColorSwatchGroupElement;
|
|
515
617
|
"bfrs-command-menu": BfrsCommandMenuElement;
|
|
@@ -521,7 +623,9 @@ declare global {
|
|
|
521
623
|
"bfrs-dropdown": BfrsDropdownElement;
|
|
522
624
|
"bfrs-empty-state": BfrsEmptyStateElement;
|
|
523
625
|
"bfrs-error-state": BfrsErrorStateElement;
|
|
626
|
+
"bfrs-entity-display-card": BfrsEntityDisplayCardElement;
|
|
524
627
|
"bfrs-field-label": BfrsFieldLabelElement;
|
|
628
|
+
"bfrs-file-dropzone": BfrsFileDropzoneElement;
|
|
525
629
|
"bfrs-filter-bar": BfrsFilterBarElement;
|
|
526
630
|
"bfrs-filter-drawer": BfrsFilterDrawerElement;
|
|
527
631
|
"bfrs-form-field": BfrsFormFieldElement;
|
|
@@ -531,6 +635,7 @@ declare global {
|
|
|
531
635
|
"bfrs-helper-text": BfrsHelperTextElement;
|
|
532
636
|
"bfrs-icon": BfrsIconElement;
|
|
533
637
|
"bfrs-icon-button": BfrsIconButtonElement;
|
|
638
|
+
"bfrs-info-card": BfrsInfoCardElement;
|
|
534
639
|
"bfrs-inline-error": BfrsInlineErrorElement;
|
|
535
640
|
"bfrs-input": BfrsInputElement;
|
|
536
641
|
"bfrs-kpi-card": BfrsKpiCardElement;
|
|
@@ -539,14 +644,19 @@ declare global {
|
|
|
539
644
|
"bfrs-loading-state": BfrsLoadingStateElement;
|
|
540
645
|
"bfrs-metric-card": BfrsMetricCardElement;
|
|
541
646
|
"bfrs-modal": BfrsModalElement;
|
|
647
|
+
"bfrs-multi-select": BfrsMultiSelectElement;
|
|
648
|
+
"bfrs-number-stepper": BfrsNumberStepperElement;
|
|
649
|
+
"bfrs-option-card-group": BfrsOptionCardGroupElement;
|
|
542
650
|
"bfrs-page-header": BfrsPageHeaderElement;
|
|
543
651
|
"bfrs-paper": BfrsPaperElement;
|
|
544
652
|
"bfrs-popover": BfrsPopoverElement;
|
|
545
653
|
"bfrs-progress-bar": BfrsProgressBarElement;
|
|
546
654
|
"bfrs-radio": BfrsRadioElement;
|
|
547
655
|
"bfrs-reveal-and-copy": BfrsRevealAndCopyElement;
|
|
656
|
+
"bfrs-reveal-field": BfrsRevealFieldElement;
|
|
548
657
|
"bfrs-searchable-select": BfrsSearchableSelectElement;
|
|
549
658
|
"bfrs-section-header": BfrsSectionHeaderElement;
|
|
659
|
+
"bfrs-selectable-chip-group": BfrsSelectableChipGroupElement;
|
|
550
660
|
"bfrs-select": BfrsSelectElement;
|
|
551
661
|
"bfrs-side-nav": BfrsSideNavElement;
|
|
552
662
|
"bfrs-slider": BfrsSliderElement;
|
|
@@ -555,12 +665,15 @@ declare global {
|
|
|
555
665
|
"bfrs-stack": BfrsStackElement;
|
|
556
666
|
"bfrs-step-progress-card": BfrsStepProgressCardElement;
|
|
557
667
|
"bfrs-step-progress-card-skeleton": BfrsStepProgressCardSkeletonElement;
|
|
668
|
+
"bfrs-suggest-input": BfrsSuggestInputElement;
|
|
669
|
+
"bfrs-summary-bar": BfrsSummaryBarElement;
|
|
558
670
|
"bfrs-switch": BfrsSwitchElement;
|
|
559
671
|
"bfrs-table-pagination": BfrsTablePaginationElement;
|
|
560
672
|
"bfrs-tabs": BfrsTabsElement;
|
|
561
673
|
"bfrs-text": BfrsTextElement;
|
|
562
674
|
"bfrs-textarea": BfrsTextareaElement;
|
|
563
675
|
"bfrs-toast-manager": BfrsToastManagerElement;
|
|
676
|
+
"bfrs-tip": BfrsTipElement;
|
|
564
677
|
"bfrs-tooltip": BfrsTooltipElement;
|
|
565
678
|
"bfrs-workspace-header": BfrsWorkspaceHeaderElement;
|
|
566
679
|
}
|