entangle-ui 0.8.1 → 0.8.2
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/CHANGELOG.md +6 -0
- package/dist/esm/components/Icons/ArchiveIcon.js +30 -0
- package/dist/esm/components/Icons/ArchiveIcon.js.map +1 -0
- package/dist/esm/components/Icons/BugIcon.js +30 -0
- package/dist/esm/components/Icons/BugIcon.js.map +1 -0
- package/dist/esm/components/Icons/BuildingIcon.js +30 -0
- package/dist/esm/components/Icons/BuildingIcon.js.map +1 -0
- package/dist/esm/components/Icons/ChevronLeftIcon.js +30 -0
- package/dist/esm/components/Icons/ChevronLeftIcon.js.map +1 -0
- package/dist/esm/components/Icons/ChevronRightIcon.js +30 -0
- package/dist/esm/components/Icons/ChevronRightIcon.js.map +1 -0
- package/dist/esm/components/Icons/DotsHorizontalIcon.js +30 -0
- package/dist/esm/components/Icons/DotsHorizontalIcon.js.map +1 -0
- package/dist/esm/components/Icons/DotsVerticalIcon.js +30 -0
- package/dist/esm/components/Icons/DotsVerticalIcon.js.map +1 -0
- package/dist/esm/components/Icons/FileTextIcon.js +30 -0
- package/dist/esm/components/Icons/FileTextIcon.js.map +1 -0
- package/dist/esm/components/Icons/FolderCogIcon.js +30 -0
- package/dist/esm/components/Icons/FolderCogIcon.js.map +1 -0
- package/dist/esm/components/Icons/FolderOpenIcon.js +30 -0
- package/dist/esm/components/Icons/FolderOpenIcon.js.map +1 -0
- package/dist/esm/components/Icons/GitBranchIcon.js +30 -0
- package/dist/esm/components/Icons/GitBranchIcon.js.map +1 -0
- package/dist/esm/components/Icons/MinusIcon.js +30 -0
- package/dist/esm/components/Icons/MinusIcon.js.map +1 -0
- package/dist/esm/components/Icons/PauseIcon.js +30 -0
- package/dist/esm/components/Icons/PauseIcon.js.map +1 -0
- package/dist/esm/components/Icons/PinIcon.js +31 -0
- package/dist/esm/components/Icons/PinIcon.js.map +1 -0
- package/dist/esm/components/Icons/SendIcon.js +30 -0
- package/dist/esm/components/Icons/SendIcon.js.map +1 -0
- package/dist/esm/components/Icons/StopIcon.js +30 -0
- package/dist/esm/components/Icons/StopIcon.js.map +1 -0
- package/dist/esm/components/Icons/TerminalIcon.js +30 -0
- package/dist/esm/components/Icons/TerminalIcon.js.map +1 -0
- package/dist/esm/components/Icons/UsersIcon.js +31 -0
- package/dist/esm/components/Icons/UsersIcon.js.map +1 -0
- package/dist/esm/components/navigation/Breadcrumbs/Breadcrumbs.js +18 -0
- package/dist/esm/components/navigation/Breadcrumbs/Breadcrumbs.js.map +1 -1
- package/dist/esm/index.js +18 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/tokens/tokens.dark.css +1 -1
- package/dist/tokens/tokens.json +1 -1
- package/dist/tokens/tokens.light.css +1 -1
- package/dist/types/components/Icons/ArchiveIcon.d.ts +33 -0
- package/dist/types/components/Icons/BugIcon.d.ts +33 -0
- package/dist/types/components/Icons/BuildingIcon.d.ts +33 -0
- package/dist/types/components/Icons/ChevronLeftIcon.d.ts +33 -0
- package/dist/types/components/Icons/ChevronRightIcon.d.ts +33 -0
- package/dist/types/components/Icons/DotsHorizontalIcon.d.ts +33 -0
- package/dist/types/components/Icons/DotsVerticalIcon.d.ts +33 -0
- package/dist/types/components/Icons/FileTextIcon.d.ts +33 -0
- package/dist/types/components/Icons/FolderCogIcon.d.ts +33 -0
- package/dist/types/components/Icons/FolderOpenIcon.d.ts +33 -0
- package/dist/types/components/Icons/GitBranchIcon.d.ts +33 -0
- package/dist/types/components/Icons/MinusIcon.d.ts +33 -0
- package/dist/types/components/Icons/PauseIcon.d.ts +33 -0
- package/dist/types/components/Icons/PinIcon.d.ts +34 -0
- package/dist/types/components/Icons/SendIcon.d.ts +33 -0
- package/dist/types/components/Icons/StopIcon.d.ts +33 -0
- package/dist/types/components/Icons/TerminalIcon.d.ts +33 -0
- package/dist/types/components/Icons/UsersIcon.d.ts +34 -0
- package/dist/types/components/editor/ChatPanel/ChatAttachment.d.ts +1 -1
- package/dist/types/components/editor/ChatPanel/ChatInput.d.ts +1 -1
- package/dist/types/components/feedback/EmptyState/EmptyState.d.ts +1 -1
- package/dist/types/components/layout/PageHeader/PageHeader.d.ts +1 -1
- package/dist/types/components/primitives/Button/Button.d.ts +1 -1
- package/dist/types/components/primitives/IconButton/IconButton.d.ts +1 -1
- package/dist/types/components/primitives/Radio/Radio.d.ts +1 -1
- package/dist/types/index.d.ts +18 -0
- package/package.json +1 -1
|
@@ -64,6 +64,24 @@ import '../../Icons/TangentMirroredIcon.js';
|
|
|
64
64
|
import '../../Icons/TangentAutoIcon.js';
|
|
65
65
|
import '../../Icons/TangentLinearIcon.js';
|
|
66
66
|
import '../../Icons/TangentStepIcon.js';
|
|
67
|
+
import '../../Icons/ArchiveIcon.js';
|
|
68
|
+
import '../../Icons/DotsVerticalIcon.js';
|
|
69
|
+
import '../../Icons/DotsHorizontalIcon.js';
|
|
70
|
+
import '../../Icons/ChevronLeftIcon.js';
|
|
71
|
+
import '../../Icons/ChevronRightIcon.js';
|
|
72
|
+
import '../../Icons/FolderOpenIcon.js';
|
|
73
|
+
import '../../Icons/FolderCogIcon.js';
|
|
74
|
+
import '../../Icons/UsersIcon.js';
|
|
75
|
+
import '../../Icons/BuildingIcon.js';
|
|
76
|
+
import '../../Icons/FileTextIcon.js';
|
|
77
|
+
import '../../Icons/PauseIcon.js';
|
|
78
|
+
import '../../Icons/StopIcon.js';
|
|
79
|
+
import '../../Icons/SendIcon.js';
|
|
80
|
+
import '../../Icons/TerminalIcon.js';
|
|
81
|
+
import '../../Icons/GitBranchIcon.js';
|
|
82
|
+
import '../../Icons/BugIcon.js';
|
|
83
|
+
import '../../Icons/MinusIcon.js';
|
|
84
|
+
import '../../Icons/PinIcon.js';
|
|
67
85
|
import { cx } from '../../../utils/cx.js';
|
|
68
86
|
import { BreadcrumbEllipsis } from './BreadcrumbEllipsis.js';
|
|
69
87
|
import { BreadcrumbItem } from './BreadcrumbItem.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Breadcrumbs.js","sources":["../../../../../../src/components/navigation/Breadcrumbs/Breadcrumbs.tsx"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Breadcrumbs.js","sources":["../../../../../../src/components/navigation/Breadcrumbs/Breadcrumbs.tsx"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAcA;AAIE;AACF;AAEA;AACE;;AAIE;;AAGF;AACF;AAEA;AAIE;;AAGI;AACI;;AAID;AAET;AAEA;;;;;;;;;;;;;;;AAeG;AACI;;AAiBH;;AAEE;;AAQE;AACE;AACA;;AAGJ;AAOA;AACE;AACE;AACA;;;;;AAMJ;AAEA;;;;;AAUA;AACE;;AAMA;;AAGF;AACF;;;;;;;;AAQC;;AAcH;AAGF;;"}
|
package/dist/esm/index.js
CHANGED
|
@@ -195,6 +195,24 @@ export { TangentMirroredIcon } from './components/Icons/TangentMirroredIcon.js';
|
|
|
195
195
|
export { TangentAutoIcon } from './components/Icons/TangentAutoIcon.js';
|
|
196
196
|
export { TangentLinearIcon } from './components/Icons/TangentLinearIcon.js';
|
|
197
197
|
export { TangentStepIcon } from './components/Icons/TangentStepIcon.js';
|
|
198
|
+
export { ArchiveIcon } from './components/Icons/ArchiveIcon.js';
|
|
199
|
+
export { DotsVerticalIcon } from './components/Icons/DotsVerticalIcon.js';
|
|
200
|
+
export { DotsHorizontalIcon } from './components/Icons/DotsHorizontalIcon.js';
|
|
201
|
+
export { ChevronLeftIcon } from './components/Icons/ChevronLeftIcon.js';
|
|
202
|
+
export { ChevronRightIcon } from './components/Icons/ChevronRightIcon.js';
|
|
203
|
+
export { FolderOpenIcon } from './components/Icons/FolderOpenIcon.js';
|
|
204
|
+
export { FolderCogIcon } from './components/Icons/FolderCogIcon.js';
|
|
205
|
+
export { UsersIcon } from './components/Icons/UsersIcon.js';
|
|
206
|
+
export { BuildingIcon } from './components/Icons/BuildingIcon.js';
|
|
207
|
+
export { FileTextIcon } from './components/Icons/FileTextIcon.js';
|
|
208
|
+
export { PauseIcon } from './components/Icons/PauseIcon.js';
|
|
209
|
+
export { StopIcon } from './components/Icons/StopIcon.js';
|
|
210
|
+
export { SendIcon } from './components/Icons/SendIcon.js';
|
|
211
|
+
export { TerminalIcon } from './components/Icons/TerminalIcon.js';
|
|
212
|
+
export { GitBranchIcon } from './components/Icons/GitBranchIcon.js';
|
|
213
|
+
export { BugIcon } from './components/Icons/BugIcon.js';
|
|
214
|
+
export { MinusIcon } from './components/Icons/MinusIcon.js';
|
|
215
|
+
export { PinIcon } from './components/Icons/PinIcon.js';
|
|
198
216
|
export { useKeyboard } from './hooks/useKeyboard/useKeyboard.js';
|
|
199
217
|
export { useControlledState } from './hooks/useControlledState/useControlledState.js';
|
|
200
218
|
export { useFocusTrap } from './hooks/useFocusTrap/useFocusTrap.js';
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/tokens/tokens.json
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Archive icon component for archiving and storing items.
|
|
6
|
+
*
|
|
7
|
+
* A box with a lid commonly used for archiving content,
|
|
8
|
+
* moving items out of active views, and long-term storage actions.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <ArchiveIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <ArchiveIcon size="md" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // In an archive action
|
|
19
|
+
* <Button icon={<ArchiveIcon />}>Archive</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const ArchiveIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { ArchiveIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Bug icon component for debugging and issue reporting.
|
|
6
|
+
*
|
|
7
|
+
* A symmetrical insect silhouette commonly used for debugger panels,
|
|
8
|
+
* "Report bug" actions, and error severity indicators.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <BugIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <BugIcon size="md" color="error" />
|
|
17
|
+
*
|
|
18
|
+
* // In a debugger panel toggle
|
|
19
|
+
* <IconButton icon={<BugIcon />} label="Toggle debugger" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const BugIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { BugIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Building icon component for organizations and architectural contexts.
|
|
6
|
+
*
|
|
7
|
+
* A multi-story building with windows, commonly used for company entries,
|
|
8
|
+
* workspaces, and architecture-related personas or sections.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <BuildingIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <BuildingIcon size="md" color="secondary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a company picker
|
|
19
|
+
* <Button icon={<BuildingIcon />}>Organization</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const BuildingIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { BuildingIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Chevron Left icon component for backward navigation and collapse.
|
|
6
|
+
*
|
|
7
|
+
* A subtle leftward chevron commonly used for previous-page navigation,
|
|
8
|
+
* collapsing side panels, and breadcrumb separators.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <ChevronLeftIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <ChevronLeftIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // In a sidebar collapse button
|
|
19
|
+
* <IconButton icon={<ChevronLeftIcon />} label="Collapse sidebar" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const ChevronLeftIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { ChevronLeftIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Chevron Right icon component for forward navigation and expand.
|
|
6
|
+
*
|
|
7
|
+
* A subtle rightward chevron commonly used for next-page navigation,
|
|
8
|
+
* expanding side panels, and disclosure indicators.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <ChevronRightIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <ChevronRightIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // In a sidebar expand button
|
|
19
|
+
* <IconButton icon={<ChevronRightIcon />} label="Expand sidebar" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const ChevronRightIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { ChevronRightIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Dots Horizontal icon component for inline overflow menus.
|
|
6
|
+
*
|
|
7
|
+
* Three dots arranged horizontally, commonly used as a more-actions
|
|
8
|
+
* affordance in toolbars, card headers, and badge ends.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <DotsHorizontalIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <DotsHorizontalIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // As an overflow menu trigger
|
|
19
|
+
* <IconButton icon={<DotsHorizontalIcon />} label="More" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const DotsHorizontalIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { DotsHorizontalIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Dots Vertical icon component for contextual action menus.
|
|
6
|
+
*
|
|
7
|
+
* Three dots stacked vertically, typically used as the trigger
|
|
8
|
+
* for item-level action menus on cards, list rows, and table cells.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <DotsVerticalIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <DotsVerticalIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // As a menu trigger
|
|
19
|
+
* <IconButton icon={<DotsVerticalIcon />} label="Actions" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const DotsVerticalIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { DotsVerticalIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* File Text icon component for documents and text content.
|
|
6
|
+
*
|
|
7
|
+
* A document page with horizontal text lines, commonly used for
|
|
8
|
+
* documentation, notes, write-ups, and scribe-style personas.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <FileTextIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <FileTextIcon size="md" color="secondary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a documentation entry
|
|
19
|
+
* <Button icon={<FileTextIcon />}>Open Document</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const FileTextIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { FileTextIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Folder Cog icon component for project-scoped settings.
|
|
6
|
+
*
|
|
7
|
+
* A folder with a small gear overlay, commonly used to distinguish
|
|
8
|
+
* project-level settings from general application settings.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <FolderCogIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <FolderCogIcon size="md" color="secondary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a settings sidebar entry
|
|
19
|
+
* <Button icon={<FolderCogIcon />}>Project Settings</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const FolderCogIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { FolderCogIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Folder Open icon component for opened directory states.
|
|
6
|
+
*
|
|
7
|
+
* An open folder with an angled front flap, commonly paired with the closed
|
|
8
|
+
* `FolderIcon` for project switchers, file explorer reveals, and breadcrumbs.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <FolderOpenIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <FolderOpenIcon size="lg" color="primary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a switch project action
|
|
19
|
+
* <Button icon={<FolderOpenIcon />}>Switch Project</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const FolderOpenIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { FolderOpenIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Git Branch icon component for version-control branch contexts.
|
|
6
|
+
*
|
|
7
|
+
* A trunk line with a fork to a side node, commonly used for branch
|
|
8
|
+
* indicators in status bars, branch pickers, and VCS-related actions.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <GitBranchIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <GitBranchIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // In a status bar
|
|
19
|
+
* <Button icon={<GitBranchIcon />}>main</Button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const GitBranchIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { GitBranchIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Minus icon component for remove/decrement actions.
|
|
6
|
+
*
|
|
7
|
+
* A single horizontal stroke commonly used to remove items, decrement
|
|
8
|
+
* counters, and zoom out. Pairs with `AddIcon` for [+/-] controls.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <MinusIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <MinusIcon size="sm" color="muted" />
|
|
17
|
+
*
|
|
18
|
+
* // In a counter control
|
|
19
|
+
* <IconButton icon={<MinusIcon />} label="Decrease" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const MinusIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { MinusIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Pause icon component for pausing playback and processes.
|
|
6
|
+
*
|
|
7
|
+
* Two parallel vertical bars commonly used to pause animations, video,
|
|
8
|
+
* preview playback, and long-running operations. Pairs with `PlayIcon`.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <PauseIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <PauseIcon size="lg" color="primary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a transport bar
|
|
19
|
+
* <IconButton icon={<PauseIcon />} label="Pause" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const PauseIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { PauseIcon };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Pin icon component for pinning items to keep them visible.
|
|
6
|
+
*
|
|
7
|
+
* A push-pin silhouette commonly used to pin tabs, conversations,
|
|
8
|
+
* or list items so they stay in view. A filled visual variant could
|
|
9
|
+
* indicate the pinned state.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* // Basic usage
|
|
14
|
+
* <PinIcon />
|
|
15
|
+
*
|
|
16
|
+
* // With custom size and color
|
|
17
|
+
* <PinIcon size="sm" color="accent" />
|
|
18
|
+
*
|
|
19
|
+
* // In a pin/unpin toggle
|
|
20
|
+
* <IconButton icon={<PinIcon />} label="Pin item" />
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
declare const PinIcon: React.NamedExoticComponent<Omit<{
|
|
24
|
+
children: React.ReactNode;
|
|
25
|
+
size?: IconSize | undefined;
|
|
26
|
+
color?: IconColor | undefined;
|
|
27
|
+
className?: string | undefined;
|
|
28
|
+
title?: string | undefined;
|
|
29
|
+
decorative?: boolean | undefined;
|
|
30
|
+
testId?: string | undefined;
|
|
31
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
32
|
+
}, "children">>;
|
|
33
|
+
|
|
34
|
+
export { PinIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Send icon component for submitting messages and forms.
|
|
6
|
+
*
|
|
7
|
+
* A paper plane silhouette commonly used as the trigger for
|
|
8
|
+
* sending chat messages, dispatching commands, and form submissions.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <SendIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <SendIcon size="md" color="accent" />
|
|
17
|
+
*
|
|
18
|
+
* // In a chat input
|
|
19
|
+
* <IconButton icon={<SendIcon />} label="Send message" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const SendIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { SendIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Stop icon component for halting playback and streams.
|
|
6
|
+
*
|
|
7
|
+
* A solid square commonly used to stop transport playback, abort
|
|
8
|
+
* generations, and cancel long-running streaming operations.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <StopIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <StopIcon size="md" color="error" />
|
|
17
|
+
*
|
|
18
|
+
* // In a stop streaming button
|
|
19
|
+
* <IconButton icon={<StopIcon />} label="Stop" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const StopIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { StopIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Terminal icon component for shells, command palettes, and CLI panels.
|
|
6
|
+
*
|
|
7
|
+
* A prompt caret with an underscore line, commonly used for terminal
|
|
8
|
+
* panels, command palette triggers, and shell-related actions.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* // Basic usage
|
|
13
|
+
* <TerminalIcon />
|
|
14
|
+
*
|
|
15
|
+
* // With custom size and color
|
|
16
|
+
* <TerminalIcon size="md" color="secondary" />
|
|
17
|
+
*
|
|
18
|
+
* // In a command palette trigger
|
|
19
|
+
* <IconButton icon={<TerminalIcon />} label="Open terminal" />
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
declare const TerminalIcon: React.NamedExoticComponent<Omit<{
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
size?: IconSize | undefined;
|
|
25
|
+
color?: IconColor | undefined;
|
|
26
|
+
className?: string | undefined;
|
|
27
|
+
title?: string | undefined;
|
|
28
|
+
decorative?: boolean | undefined;
|
|
29
|
+
testId?: string | undefined;
|
|
30
|
+
ref?: React.Ref<SVGSVGElement> | undefined;
|
|
31
|
+
}, "children">>;
|
|
32
|
+
|
|
33
|
+
export { TerminalIcon };
|