@ttoss/fsl-ui 0.2.4 → 0.2.6
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/README.md +1 -1
- package/dist/components/AppShell/AppShell.cjs +124 -0
- package/dist/components/AppShell/AppShell.d.cts +74 -0
- package/dist/components/AppShell/AppShell.d.mts +74 -0
- package/dist/components/AppShell/AppShell.mjs +123 -0
- package/dist/components/Badge/Badge.cjs +61 -0
- package/dist/components/Badge/Badge.d.cts +56 -0
- package/dist/components/Badge/Badge.d.mts +56 -0
- package/dist/components/Badge/Badge.mjs +60 -0
- package/dist/components/Box/Box.cjs +114 -0
- package/dist/components/Box/Box.d.cts +115 -0
- package/dist/components/Box/Box.d.mts +115 -0
- package/dist/components/Box/Box.mjs +113 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.mjs +1 -1
- package/dist/components/Button/Button.cjs +2 -2
- package/dist/components/Button/Button.d.cts +2 -1
- package/dist/components/Button/Button.d.mts +2 -1
- package/dist/components/Button/Button.mjs +2 -2
- package/dist/components/Checkbox/Checkbox.cjs +2 -2
- package/dist/components/Checkbox/Checkbox.mjs +2 -2
- package/dist/components/CheckboxGroup/CheckboxGroup.cjs +1 -1
- package/dist/components/CheckboxGroup/CheckboxGroup.mjs +1 -1
- package/dist/components/Code/Code.cjs +69 -0
- package/dist/components/Code/Code.d.cts +53 -0
- package/dist/components/Code/Code.d.mts +53 -0
- package/dist/components/Code/Code.mjs +68 -0
- package/dist/components/Container/Container.cjs +65 -0
- package/dist/components/Container/Container.d.cts +61 -0
- package/dist/components/Container/Container.d.mts +61 -0
- package/dist/components/Container/Container.mjs +64 -0
- package/dist/components/FileTrigger/FileTrigger.cjs +1 -1
- package/dist/components/FileTrigger/FileTrigger.mjs +1 -1
- package/dist/components/Grid/Grid.cjs +88 -0
- package/dist/components/Grid/Grid.d.cts +87 -0
- package/dist/components/Grid/Grid.d.mts +87 -0
- package/dist/components/Grid/Grid.mjs +87 -0
- package/dist/components/GridList/GridList.cjs +2 -2
- package/dist/components/GridList/GridList.mjs +2 -2
- package/dist/components/Group/Group.cjs +1 -1
- package/dist/components/Group/Group.mjs +1 -1
- package/dist/components/Heading/Heading.cjs +78 -0
- package/dist/components/Heading/Heading.d.cts +63 -0
- package/dist/components/Heading/Heading.d.mts +63 -0
- package/dist/components/Heading/Heading.mjs +77 -0
- package/dist/components/Icon/Icon.cjs +2 -1
- package/dist/components/Icon/Icon.d.cts +59 -0
- package/dist/components/Icon/Icon.d.mts +59 -0
- package/dist/components/Icon/Icon.mjs +1 -1
- package/dist/components/Icon/glyphs.cjs +37 -10
- package/dist/components/Icon/glyphs.mjs +34 -10
- package/dist/components/Icon/intents.cjs +32 -0
- package/dist/components/Icon/intents.d.cts +33 -0
- package/dist/components/Icon/intents.d.mts +33 -0
- package/dist/components/Icon/intents.mjs +32 -0
- package/dist/components/Link/Link.cjs +1 -1
- package/dist/components/Link/Link.mjs +1 -1
- package/dist/components/ListBox/ListBox.cjs +1 -1
- package/dist/components/ListBox/ListBox.mjs +1 -1
- package/dist/components/Meter/Meter.cjs +11 -1
- package/dist/components/Meter/Meter.mjs +11 -1
- package/dist/components/NumberField/NumberField.cjs +2 -2
- package/dist/components/NumberField/NumberField.mjs +2 -2
- package/dist/components/ProgressBar/ProgressBar.cjs +1 -1
- package/dist/components/ProgressBar/ProgressBar.mjs +1 -1
- package/dist/components/RadioGroup/RadioGroup.cjs +2 -2
- package/dist/components/RadioGroup/RadioGroup.mjs +2 -2
- package/dist/components/Select/Select.cjs +2 -2
- package/dist/components/Select/Select.mjs +2 -2
- package/dist/components/Separator/Separator.cjs +1 -1
- package/dist/components/Separator/Separator.mjs +1 -1
- package/dist/components/Slider/Slider.cjs +1 -1
- package/dist/components/Slider/Slider.mjs +1 -1
- package/dist/components/Stack/Stack.cjs +89 -0
- package/dist/components/Stack/Stack.d.cts +75 -0
- package/dist/components/Stack/Stack.d.mts +75 -0
- package/dist/components/Stack/Stack.mjs +88 -0
- package/dist/components/Surface/Surface.cjs +84 -0
- package/dist/components/Surface/Surface.d.cts +72 -0
- package/dist/components/Surface/Surface.d.mts +72 -0
- package/dist/components/Surface/Surface.mjs +83 -0
- package/dist/components/Switch/Switch.cjs +3 -3
- package/dist/components/Switch/Switch.d.cts +1 -1
- package/dist/components/Switch/Switch.d.mts +1 -1
- package/dist/components/Switch/Switch.mjs +3 -3
- package/dist/components/Table/Table.cjs +248 -0
- package/dist/components/Table/Table.d.cts +128 -0
- package/dist/components/Table/Table.d.mts +128 -0
- package/dist/components/Table/Table.mjs +239 -0
- package/dist/components/Tabs/Tabs.cjs +71 -28
- package/dist/components/Tabs/Tabs.d.cts +0 -17
- package/dist/components/Tabs/Tabs.d.mts +0 -17
- package/dist/components/Tabs/Tabs.mjs +69 -28
- package/dist/components/Text/Text.cjs +70 -0
- package/dist/components/Text/Text.d.cts +89 -0
- package/dist/components/Text/Text.d.mts +89 -0
- package/dist/components/Text/Text.mjs +69 -0
- package/dist/components/Toast/Toast.cjs +1 -1
- package/dist/components/Toast/Toast.mjs +1 -1
- package/dist/components/ToggleButton/ToggleButton.cjs +2 -2
- package/dist/components/ToggleButton/ToggleButton.mjs +2 -2
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.cjs +1 -1
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.mjs +1 -1
- package/dist/components/Toolbar/Toolbar.cjs +1 -1
- package/dist/components/Toolbar/Toolbar.mjs +1 -1
- package/dist/composites/Accordion/Accordion.cjs +14 -9
- package/dist/composites/Accordion/Accordion.mjs +14 -9
- package/dist/composites/Dialog/Dialog.cjs +1 -1
- package/dist/composites/Dialog/Dialog.mjs +1 -1
- package/dist/composites/Disclosure/Disclosure.cjs +14 -9
- package/dist/composites/Disclosure/Disclosure.mjs +14 -9
- package/dist/composites/Form/Form.cjs +1 -1
- package/dist/composites/Form/Form.mjs +1 -1
- package/dist/composites/Menu/Menu.cjs +2 -2
- package/dist/composites/Menu/Menu.mjs +2 -2
- package/dist/composites/Popover/Popover.cjs +1 -1
- package/dist/composites/Popover/Popover.mjs +1 -1
- package/dist/composites/SearchField/SearchField.cjs +2 -2
- package/dist/composites/SearchField/SearchField.mjs +2 -2
- package/dist/composites/TagGroup/TagGroup.cjs +2 -2
- package/dist/composites/TagGroup/TagGroup.mjs +2 -2
- package/dist/composites/TextArea/TextArea.cjs +2 -2
- package/dist/composites/TextArea/TextArea.mjs +2 -2
- package/dist/composites/TextField/TextField.cjs +2 -2
- package/dist/composites/TextField/TextField.mjs +2 -2
- package/dist/composites/Tooltip/Tooltip.cjs +1 -1
- package/dist/composites/Tooltip/Tooltip.mjs +1 -1
- package/dist/index.cjs +46 -0
- package/dist/index.d.cts +14 -1
- package/dist/index.d.mts +14 -1
- package/dist/index.mjs +14 -1
- package/llms.txt +51 -8
- package/package.json +4 -4
- package/src/tokens/CONTRACT.md +28 -10
|
@@ -4,8 +4,8 @@ const require_resolveInteractiveStyle = require('../../tokens/resolveInteractive
|
|
|
4
4
|
const require_Icon = require('../../components/Icon/Icon.cjs');
|
|
5
5
|
const require_scope = require('../scope.cjs');
|
|
6
6
|
let _ttoss_fsl_theme_vars = require("@ttoss/fsl-theme/vars");
|
|
7
|
-
let react_aria_components = require("react-aria-components");
|
|
8
7
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
8
|
+
let react_aria_components = require("react-aria-components");
|
|
9
9
|
|
|
10
10
|
//#region src/composites/SearchField/SearchField.tsx
|
|
11
11
|
var searchFieldScope = require_scope.createCompositeScope("SearchField");
|
|
@@ -131,7 +131,7 @@ var SearchFieldControl = props => {
|
|
|
131
131
|
return {
|
|
132
132
|
boxSizing: "border-box",
|
|
133
133
|
inlineSize: "100%",
|
|
134
|
-
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit
|
|
134
|
+
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit,
|
|
135
135
|
paddingBlock: _ttoss_fsl_theme_vars.vars.spacing.inset.control.sm,
|
|
136
136
|
paddingInlineStart: ADORNMENT_INSET,
|
|
137
137
|
paddingInlineEnd: ADORNMENT_INSET,
|
|
@@ -4,8 +4,8 @@ import { resolveInteractiveStyle } from "../../tokens/resolveInteractiveStyle.mj
|
|
|
4
4
|
import { Icon } from "../../components/Icon/Icon.mjs";
|
|
5
5
|
import { createCompositeScope } from "../scope.mjs";
|
|
6
6
|
import { vars } from "@ttoss/fsl-theme/vars";
|
|
7
|
-
import { Button, Input, Label, SearchField } from "react-aria-components";
|
|
8
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
8
|
+
import { Button, Input, Label, SearchField } from "react-aria-components";
|
|
9
9
|
|
|
10
10
|
//#region src/composites/SearchField/SearchField.tsx
|
|
11
11
|
var searchFieldScope = createCompositeScope("SearchField");
|
|
@@ -131,7 +131,7 @@ var SearchFieldControl = props => {
|
|
|
131
131
|
return {
|
|
132
132
|
boxSizing: "border-box",
|
|
133
133
|
inlineSize: "100%",
|
|
134
|
-
minHeight: vars.sizing.hit
|
|
134
|
+
minHeight: vars.sizing.hit,
|
|
135
135
|
paddingBlock: vars.spacing.inset.control.sm,
|
|
136
136
|
paddingInlineStart: ADORNMENT_INSET,
|
|
137
137
|
paddingInlineEnd: ADORNMENT_INSET,
|
|
@@ -4,8 +4,8 @@ const require_resolveInteractiveStyle = require('../../tokens/resolveInteractive
|
|
|
4
4
|
const require_Icon = require('../../components/Icon/Icon.cjs');
|
|
5
5
|
const require_scope = require('../scope.cjs');
|
|
6
6
|
let _ttoss_fsl_theme_vars = require("@ttoss/fsl-theme/vars");
|
|
7
|
-
let react_aria_components = require("react-aria-components");
|
|
8
7
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
8
|
+
let react_aria_components = require("react-aria-components");
|
|
9
9
|
|
|
10
10
|
//#region src/composites/TagGroup/TagGroup.tsx
|
|
11
11
|
var tagGroupScope = require_scope.createCompositeScope("TagGroup");
|
|
@@ -35,7 +35,7 @@ var buildTagStyle = ({
|
|
|
35
35
|
display: "inline-flex",
|
|
36
36
|
alignItems: "center",
|
|
37
37
|
gap: _ttoss_fsl_theme_vars.vars.spacing.gap.inline.xs,
|
|
38
|
-
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit
|
|
38
|
+
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit,
|
|
39
39
|
paddingBlock: _ttoss_fsl_theme_vars.vars.spacing.inset.control.sm,
|
|
40
40
|
paddingInline: _ttoss_fsl_theme_vars.vars.spacing.inset.control.md,
|
|
41
41
|
borderRadius: _ttoss_fsl_theme_vars.vars.radii.control,
|
|
@@ -4,8 +4,8 @@ import { resolveInteractiveStyle } from "../../tokens/resolveInteractiveStyle.mj
|
|
|
4
4
|
import { Icon } from "../../components/Icon/Icon.mjs";
|
|
5
5
|
import { createCompositeScope } from "../scope.mjs";
|
|
6
6
|
import { vars } from "@ttoss/fsl-theme/vars";
|
|
7
|
-
import { Button, Label, Tag, TagGroup, TagList } from "react-aria-components";
|
|
8
7
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
8
|
+
import { Button, Label, Tag, TagGroup, TagList } from "react-aria-components";
|
|
9
9
|
|
|
10
10
|
//#region src/composites/TagGroup/TagGroup.tsx
|
|
11
11
|
var tagGroupScope = createCompositeScope("TagGroup");
|
|
@@ -35,7 +35,7 @@ var buildTagStyle = ({
|
|
|
35
35
|
display: "inline-flex",
|
|
36
36
|
alignItems: "center",
|
|
37
37
|
gap: vars.spacing.gap.inline.xs,
|
|
38
|
-
minHeight: vars.sizing.hit
|
|
38
|
+
minHeight: vars.sizing.hit,
|
|
39
39
|
paddingBlock: vars.spacing.inset.control.sm,
|
|
40
40
|
paddingInline: vars.spacing.inset.control.md,
|
|
41
41
|
borderRadius: vars.radii.control,
|
|
@@ -3,8 +3,8 @@ const require_focusRing = require('../../tokens/focusRing.cjs');
|
|
|
3
3
|
const require_resolveInteractiveStyle = require('../../tokens/resolveInteractiveStyle.cjs');
|
|
4
4
|
const require_scope = require('../scope.cjs');
|
|
5
5
|
let _ttoss_fsl_theme_vars = require("@ttoss/fsl-theme/vars");
|
|
6
|
-
let react_aria_components = require("react-aria-components");
|
|
7
6
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
7
|
+
let react_aria_components = require("react-aria-components");
|
|
8
8
|
|
|
9
9
|
//#region src/composites/TextArea/TextArea.tsx
|
|
10
10
|
var textAreaScope = require_scope.createPresenceScope("TextArea");
|
|
@@ -114,7 +114,7 @@ var TextAreaControl = props => {
|
|
|
114
114
|
return {
|
|
115
115
|
boxSizing: "border-box",
|
|
116
116
|
resize: "vertical",
|
|
117
|
-
minBlockSize: _ttoss_fsl_theme_vars.vars.sizing.hit
|
|
117
|
+
minBlockSize: _ttoss_fsl_theme_vars.vars.sizing.hit,
|
|
118
118
|
paddingBlock: _ttoss_fsl_theme_vars.vars.spacing.inset.control.sm,
|
|
119
119
|
paddingInline: _ttoss_fsl_theme_vars.vars.spacing.inset.control.md,
|
|
120
120
|
borderRadius: _ttoss_fsl_theme_vars.vars.radii.control,
|
|
@@ -3,8 +3,8 @@ import { focusRingOutline } from "../../tokens/focusRing.mjs";
|
|
|
3
3
|
import { resolveInteractiveStyle } from "../../tokens/resolveInteractiveStyle.mjs";
|
|
4
4
|
import { createPresenceScope } from "../scope.mjs";
|
|
5
5
|
import { vars } from "@ttoss/fsl-theme/vars";
|
|
6
|
-
import { FieldError, Label, Text, TextArea, TextField } from "react-aria-components";
|
|
7
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
|
+
import { FieldError, Label, Text, TextArea, TextField } from "react-aria-components";
|
|
8
8
|
|
|
9
9
|
//#region src/composites/TextArea/TextArea.tsx
|
|
10
10
|
var textAreaScope = createPresenceScope("TextArea");
|
|
@@ -114,7 +114,7 @@ var TextAreaControl = props => {
|
|
|
114
114
|
return {
|
|
115
115
|
boxSizing: "border-box",
|
|
116
116
|
resize: "vertical",
|
|
117
|
-
minBlockSize: vars.sizing.hit
|
|
117
|
+
minBlockSize: vars.sizing.hit,
|
|
118
118
|
paddingBlock: vars.spacing.inset.control.sm,
|
|
119
119
|
paddingInline: vars.spacing.inset.control.md,
|
|
120
120
|
borderRadius: vars.radii.control,
|
|
@@ -3,8 +3,8 @@ const require_focusRing = require('../../tokens/focusRing.cjs');
|
|
|
3
3
|
const require_resolveInteractiveStyle = require('../../tokens/resolveInteractiveStyle.cjs');
|
|
4
4
|
const require_scope = require('../scope.cjs');
|
|
5
5
|
let _ttoss_fsl_theme_vars = require("@ttoss/fsl-theme/vars");
|
|
6
|
-
let react_aria_components = require("react-aria-components");
|
|
7
6
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
7
|
+
let react_aria_components = require("react-aria-components");
|
|
8
8
|
|
|
9
9
|
//#region src/composites/TextField/TextField.tsx
|
|
10
10
|
var textFieldScope = require_scope.createPresenceScope("TextField");
|
|
@@ -120,7 +120,7 @@ var TextFieldControl = props => {
|
|
|
120
120
|
}) => {
|
|
121
121
|
return {
|
|
122
122
|
boxSizing: "border-box",
|
|
123
|
-
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit
|
|
123
|
+
minHeight: _ttoss_fsl_theme_vars.vars.sizing.hit,
|
|
124
124
|
paddingBlock: _ttoss_fsl_theme_vars.vars.spacing.inset.control.sm,
|
|
125
125
|
paddingInline: _ttoss_fsl_theme_vars.vars.spacing.inset.control.md,
|
|
126
126
|
borderRadius: _ttoss_fsl_theme_vars.vars.radii.control,
|
|
@@ -3,8 +3,8 @@ import { focusRingOutline } from "../../tokens/focusRing.mjs";
|
|
|
3
3
|
import { resolveInteractiveStyle } from "../../tokens/resolveInteractiveStyle.mjs";
|
|
4
4
|
import { createPresenceScope } from "../scope.mjs";
|
|
5
5
|
import { vars } from "@ttoss/fsl-theme/vars";
|
|
6
|
-
import { FieldError, Input, Label, Text, TextField } from "react-aria-components";
|
|
7
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
|
+
import { FieldError, Input, Label, Text, TextField } from "react-aria-components";
|
|
8
8
|
|
|
9
9
|
//#region src/composites/TextField/TextField.tsx
|
|
10
10
|
var textFieldScope = createPresenceScope("TextField");
|
|
@@ -120,7 +120,7 @@ var TextFieldControl = props => {
|
|
|
120
120
|
}) => {
|
|
121
121
|
return {
|
|
122
122
|
boxSizing: "border-box",
|
|
123
|
-
minHeight: vars.sizing.hit
|
|
123
|
+
minHeight: vars.sizing.hit,
|
|
124
124
|
paddingBlock: vars.spacing.inset.control.sm,
|
|
125
125
|
paddingInline: vars.spacing.inset.control.md,
|
|
126
126
|
borderRadius: vars.radii.control,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
2
|
const require_escapeHatch = require('../../tokens/escapeHatch.cjs');
|
|
3
3
|
let _ttoss_fsl_theme_vars = require("@ttoss/fsl-theme/vars");
|
|
4
|
-
let react_aria_components = require("react-aria-components");
|
|
5
4
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
5
|
+
let react_aria_components = require("react-aria-components");
|
|
6
6
|
|
|
7
7
|
//#region src/composites/Tooltip/Tooltip.tsx
|
|
8
8
|
var TOOLTIP_MAX_WIDTH_DEFAULT = "min(280px, 90vw)";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
2
|
import { fslVar } from "../../tokens/escapeHatch.mjs";
|
|
3
3
|
import { vars } from "@ttoss/fsl-theme/vars";
|
|
4
|
-
import { Tooltip, TooltipTrigger } from "react-aria-components";
|
|
5
4
|
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { Tooltip, TooltipTrigger } from "react-aria-components";
|
|
6
6
|
|
|
7
7
|
//#region src/composites/Tooltip/Tooltip.tsx
|
|
8
8
|
var TOOLTIP_MAX_WIDTH_DEFAULT = "min(280px, 90vw)";
|
package/dist/index.cjs
CHANGED
|
@@ -4,13 +4,22 @@
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
5
5
|
value: 'Module'
|
|
6
6
|
});
|
|
7
|
+
const require_AppShell = require('./components/AppShell/AppShell.cjs');
|
|
8
|
+
const require_Badge = require('./components/Badge/Badge.cjs');
|
|
9
|
+
const require_Box = require('./components/Box/Box.cjs');
|
|
7
10
|
const require_Breadcrumbs = require('./components/Breadcrumbs/Breadcrumbs.cjs');
|
|
8
11
|
const require_Button = require('./components/Button/Button.cjs');
|
|
12
|
+
const require_Icon = require('./components/Icon/Icon.cjs');
|
|
13
|
+
const require_intents = require('./components/Icon/intents.cjs');
|
|
9
14
|
const require_Checkbox = require('./components/Checkbox/Checkbox.cjs');
|
|
10
15
|
const require_CheckboxGroup = require('./components/CheckboxGroup/CheckboxGroup.cjs');
|
|
16
|
+
const require_Code = require('./components/Code/Code.cjs');
|
|
17
|
+
const require_Container = require('./components/Container/Container.cjs');
|
|
11
18
|
const require_FileTrigger = require('./components/FileTrigger/FileTrigger.cjs');
|
|
19
|
+
const require_Grid = require('./components/Grid/Grid.cjs');
|
|
12
20
|
const require_GridList = require('./components/GridList/GridList.cjs');
|
|
13
21
|
const require_Group = require('./components/Group/Group.cjs');
|
|
22
|
+
const require_Heading = require('./components/Heading/Heading.cjs');
|
|
14
23
|
const require_Link = require('./components/Link/Link.cjs');
|
|
15
24
|
const require_ListBox = require('./components/ListBox/ListBox.cjs');
|
|
16
25
|
const require_Meter = require('./components/Meter/Meter.cjs');
|
|
@@ -20,8 +29,12 @@ const require_RadioGroup = require('./components/RadioGroup/RadioGroup.cjs');
|
|
|
20
29
|
const require_Select = require('./components/Select/Select.cjs');
|
|
21
30
|
const require_Separator = require('./components/Separator/Separator.cjs');
|
|
22
31
|
const require_Slider = require('./components/Slider/Slider.cjs');
|
|
32
|
+
const require_Stack = require('./components/Stack/Stack.cjs');
|
|
33
|
+
const require_Surface = require('./components/Surface/Surface.cjs');
|
|
23
34
|
const require_Switch = require('./components/Switch/Switch.cjs');
|
|
35
|
+
const require_Table = require('./components/Table/Table.cjs');
|
|
24
36
|
const require_Tabs = require('./components/Tabs/Tabs.cjs');
|
|
37
|
+
const require_Text = require('./components/Text/Text.cjs');
|
|
25
38
|
const require_Toast = require('./components/Toast/Toast.cjs');
|
|
26
39
|
const require_ToggleButton = require('./components/ToggleButton/ToggleButton.cjs');
|
|
27
40
|
const require_ToggleButtonGroup = require('./components/ToggleButtonGroup/ToggleButtonGroup.cjs');
|
|
@@ -43,12 +56,17 @@ exports.Accordion = require_Accordion.Accordion;
|
|
|
43
56
|
exports.AccordionItem = require_Accordion.AccordionItem;
|
|
44
57
|
exports.AccordionPanel = require_Accordion.AccordionPanel;
|
|
45
58
|
exports.AccordionTrigger = require_Accordion.AccordionTrigger;
|
|
59
|
+
exports.AppShell = require_AppShell.AppShell;
|
|
60
|
+
exports.Badge = require_Badge.Badge;
|
|
61
|
+
exports.Box = require_Box.Box;
|
|
46
62
|
exports.Breadcrumb = require_Breadcrumbs.Breadcrumb;
|
|
47
63
|
exports.Breadcrumbs = require_Breadcrumbs.Breadcrumbs;
|
|
48
64
|
exports.Button = require_Button.Button;
|
|
49
65
|
exports.Checkbox = require_Checkbox.Checkbox;
|
|
50
66
|
exports.CheckboxGroup = require_CheckboxGroup.CheckboxGroup;
|
|
67
|
+
exports.Code = require_Code.Code;
|
|
51
68
|
exports.ConfirmationDialog = require_ConfirmationDialog.ConfirmationDialog;
|
|
69
|
+
exports.Container = require_Container.Container;
|
|
52
70
|
exports.Dialog = require_Dialog.Dialog;
|
|
53
71
|
exports.DialogActions = require_Dialog.DialogActions;
|
|
54
72
|
exports.DialogBody = require_Dialog.DialogBody;
|
|
@@ -62,9 +80,13 @@ exports.FileTrigger = require_FileTrigger.FileTrigger;
|
|
|
62
80
|
exports.Form = require_Form.Form;
|
|
63
81
|
exports.FormActions = require_Form.FormActions;
|
|
64
82
|
exports.FormSubmit = require_Form.FormSubmit;
|
|
83
|
+
exports.Grid = require_Grid.Grid;
|
|
65
84
|
exports.GridList = require_GridList.GridList;
|
|
66
85
|
exports.GridListItem = require_GridList.GridListItem;
|
|
67
86
|
exports.Group = require_Group.Group;
|
|
87
|
+
exports.Heading = require_Heading.Heading;
|
|
88
|
+
exports.ICON_INTENTS = require_intents.ICON_INTENTS;
|
|
89
|
+
exports.Icon = require_Icon.Icon;
|
|
68
90
|
exports.Link = require_Link.Link;
|
|
69
91
|
exports.ListBox = require_ListBox.ListBox;
|
|
70
92
|
exports.ListBoxItem = require_ListBox.ListBoxItem;
|
|
@@ -85,13 +107,22 @@ exports.Select = require_Select.Select;
|
|
|
85
107
|
exports.SelectItem = require_Select.SelectItem;
|
|
86
108
|
exports.Separator = require_Separator.Separator;
|
|
87
109
|
exports.Slider = require_Slider.Slider;
|
|
110
|
+
exports.Stack = require_Stack.Stack;
|
|
111
|
+
exports.Surface = require_Surface.Surface;
|
|
88
112
|
exports.Switch = require_Switch.Switch;
|
|
89
113
|
exports.Tab = require_Tabs.Tab;
|
|
90
114
|
exports.TabList = require_Tabs.TabList;
|
|
91
115
|
exports.TabPanel = require_Tabs.TabPanel;
|
|
116
|
+
exports.Table = require_Table.Table;
|
|
117
|
+
exports.TableBody = require_Table.TableBody;
|
|
118
|
+
exports.TableCell = require_Table.TableCell;
|
|
119
|
+
exports.TableColumn = require_Table.TableColumn;
|
|
120
|
+
exports.TableHeader = require_Table.TableHeader;
|
|
121
|
+
exports.TableRow = require_Table.TableRow;
|
|
92
122
|
exports.Tabs = require_Tabs.Tabs;
|
|
93
123
|
exports.Tag = require_TagGroup.Tag;
|
|
94
124
|
exports.TagGroup = require_TagGroup.TagGroup;
|
|
125
|
+
exports.Text = require_Text.Text;
|
|
95
126
|
exports.TextArea = require_TextArea.TextArea;
|
|
96
127
|
exports.TextAreaControl = require_TextArea.TextAreaControl;
|
|
97
128
|
exports.TextAreaDescription = require_TextArea.TextAreaDescription;
|
|
@@ -117,12 +148,17 @@ exports.accordionItemMeta = require_Accordion.accordionItemMeta;
|
|
|
117
148
|
exports.accordionMeta = require_Accordion.accordionMeta;
|
|
118
149
|
exports.accordionPanelMeta = require_Accordion.accordionPanelMeta;
|
|
119
150
|
exports.accordionTriggerMeta = require_Accordion.accordionTriggerMeta;
|
|
151
|
+
exports.appShellMeta = require_AppShell.appShellMeta;
|
|
152
|
+
exports.badgeMeta = require_Badge.badgeMeta;
|
|
153
|
+
exports.boxMeta = require_Box.boxMeta;
|
|
120
154
|
exports.breadcrumbMeta = require_Breadcrumbs.breadcrumbMeta;
|
|
121
155
|
exports.breadcrumbsMeta = require_Breadcrumbs.breadcrumbsMeta;
|
|
122
156
|
exports.buttonMeta = require_Button.buttonMeta;
|
|
123
157
|
exports.checkboxGroupMeta = require_CheckboxGroup.checkboxGroupMeta;
|
|
124
158
|
exports.checkboxMeta = require_Checkbox.checkboxMeta;
|
|
159
|
+
exports.codeMeta = require_Code.codeMeta;
|
|
125
160
|
exports.confirmationDialogMeta = require_ConfirmationDialog.confirmationDialogMeta;
|
|
161
|
+
exports.containerMeta = require_Container.containerMeta;
|
|
126
162
|
exports.createToastQueue = require_Toast.createToastQueue;
|
|
127
163
|
exports.dialogActionsMeta = require_Dialog.dialogActionsMeta;
|
|
128
164
|
exports.dialogBodyMeta = require_Dialog.dialogBodyMeta;
|
|
@@ -138,7 +174,10 @@ exports.formMeta = require_Form.formMeta;
|
|
|
138
174
|
exports.formSubmitMeta = require_Form.formSubmitMeta;
|
|
139
175
|
exports.gridListItemMeta = require_GridList.gridListItemMeta;
|
|
140
176
|
exports.gridListMeta = require_GridList.gridListMeta;
|
|
177
|
+
exports.gridMeta = require_Grid.gridMeta;
|
|
141
178
|
exports.groupMeta = require_Group.groupMeta;
|
|
179
|
+
exports.headingMeta = require_Heading.headingMeta;
|
|
180
|
+
exports.iconMeta = require_Icon.iconMeta;
|
|
142
181
|
exports.linkMeta = require_Link.linkMeta;
|
|
143
182
|
exports.listBoxItemMeta = require_ListBox.listBoxItemMeta;
|
|
144
183
|
exports.listBoxMeta = require_ListBox.listBoxMeta;
|
|
@@ -157,10 +196,16 @@ exports.selectItemMeta = require_Select.selectItemMeta;
|
|
|
157
196
|
exports.selectMeta = require_Select.selectMeta;
|
|
158
197
|
exports.separatorMeta = require_Separator.separatorMeta;
|
|
159
198
|
exports.sliderMeta = require_Slider.sliderMeta;
|
|
199
|
+
exports.stackMeta = require_Stack.stackMeta;
|
|
200
|
+
exports.surfaceMeta = require_Surface.surfaceMeta;
|
|
160
201
|
exports.switchMeta = require_Switch.switchMeta;
|
|
161
202
|
exports.tabListMeta = require_Tabs.tabListMeta;
|
|
162
203
|
exports.tabMeta = require_Tabs.tabMeta;
|
|
163
204
|
exports.tabPanelMeta = require_Tabs.tabPanelMeta;
|
|
205
|
+
exports.tableCellMeta = require_Table.tableCellMeta;
|
|
206
|
+
exports.tableColumnMeta = require_Table.tableColumnMeta;
|
|
207
|
+
exports.tableMeta = require_Table.tableMeta;
|
|
208
|
+
exports.tableRowMeta = require_Table.tableRowMeta;
|
|
164
209
|
exports.tabsMeta = require_Tabs.tabsMeta;
|
|
165
210
|
exports.tagGroupMeta = require_TagGroup.tagGroupMeta;
|
|
166
211
|
exports.tagMeta = require_TagGroup.tagMeta;
|
|
@@ -174,6 +219,7 @@ exports.textFieldDescriptionMeta = require_TextField.textFieldDescriptionMeta;
|
|
|
174
219
|
exports.textFieldErrorMeta = require_TextField.textFieldErrorMeta;
|
|
175
220
|
exports.textFieldLabelMeta = require_TextField.textFieldLabelMeta;
|
|
176
221
|
exports.textFieldMeta = require_TextField.textFieldMeta;
|
|
222
|
+
exports.textMeta = require_Text.textMeta;
|
|
177
223
|
exports.toastMeta = require_Toast.toastMeta;
|
|
178
224
|
exports.toastRegionMeta = require_Toast.toastRegionMeta;
|
|
179
225
|
exports.toggleButtonGroupMeta = require_ToggleButtonGroup.toggleButtonGroupMeta;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
import { AppShell, AppShellProps, AppShellSidebarWidth, appShellMeta } from "./components/AppShell/AppShell.cjs";
|
|
3
|
+
import { Badge, BadgeNumeric, BadgeProps, badgeMeta } from "./components/Badge/Badge.cjs";
|
|
4
|
+
import { Box, BoxBackground, BoxBorder, BoxMaxWidth, BoxPadding, BoxProps, BoxRadius, BoxWidth, boxMeta } from "./components/Box/Box.cjs";
|
|
2
5
|
import { Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, breadcrumbMeta, breadcrumbsMeta } from "./components/Breadcrumbs/Breadcrumbs.cjs";
|
|
3
6
|
import { Button, ButtonProps, buttonMeta } from "./components/Button/Button.cjs";
|
|
4
7
|
import { Checkbox, CheckboxProps, checkboxMeta } from "./components/Checkbox/Checkbox.cjs";
|
|
5
8
|
import { CheckboxGroup, CheckboxGroupProps, checkboxGroupMeta } from "./components/CheckboxGroup/CheckboxGroup.cjs";
|
|
9
|
+
import { Code, CodeProps, CodeSize, codeMeta } from "./components/Code/Code.cjs";
|
|
10
|
+
import { Container, ContainerGutter, ContainerProps, ContainerSize, containerMeta } from "./components/Container/Container.cjs";
|
|
6
11
|
import { FileTrigger, FileTriggerProps, fileTriggerMeta } from "./components/FileTrigger/FileTrigger.cjs";
|
|
12
|
+
import { Grid, GridAlign, GridGap, GridMinColumnWidth, GridProps, gridMeta } from "./components/Grid/Grid.cjs";
|
|
7
13
|
import { GridList, GridListItem, GridListItemProps, GridListProps, gridListItemMeta, gridListMeta } from "./components/GridList/GridList.cjs";
|
|
8
14
|
import { Group, GroupProps, groupMeta } from "./components/Group/Group.cjs";
|
|
15
|
+
import { Heading, HeadingAlign, HeadingLevel, HeadingProps, HeadingSize, headingMeta } from "./components/Heading/Heading.cjs";
|
|
16
|
+
import { ICON_INTENTS, IconIntent } from "./components/Icon/intents.cjs";
|
|
17
|
+
import { Icon, IconProps, IconSize, iconMeta } from "./components/Icon/Icon.cjs";
|
|
9
18
|
import { Link, LinkProps, linkMeta } from "./components/Link/Link.cjs";
|
|
10
19
|
import { ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, listBoxItemMeta, listBoxMeta } from "./components/ListBox/ListBox.cjs";
|
|
11
20
|
import { Meter, MeterProps, meterMeta } from "./components/Meter/Meter.cjs";
|
|
@@ -15,8 +24,12 @@ import { Radio, RadioGroup, RadioGroupProps, RadioProps, radioGroupMeta, radioMe
|
|
|
15
24
|
import { Select, SelectItem, SelectItemProps, SelectProps, selectItemMeta, selectMeta } from "./components/Select/Select.cjs";
|
|
16
25
|
import { Separator, SeparatorProps, separatorMeta } from "./components/Separator/Separator.cjs";
|
|
17
26
|
import { Slider, SliderProps, sliderMeta } from "./components/Slider/Slider.cjs";
|
|
27
|
+
import { Stack, StackAlign, StackDirection, StackGap, StackJustify, StackProps, stackMeta } from "./components/Stack/Stack.cjs";
|
|
28
|
+
import { Surface, SurfaceLevel, SurfacePadding, SurfaceProps, surfaceMeta } from "./components/Surface/Surface.cjs";
|
|
18
29
|
import { Switch, SwitchProps, switchMeta } from "./components/Switch/Switch.cjs";
|
|
30
|
+
import { SortDescriptor, SortDirection, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableColumn, TableColumnProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta } from "./components/Table/Table.cjs";
|
|
19
31
|
import { Tab, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsProps, tabListMeta, tabMeta, tabPanelMeta, tabsMeta } from "./components/Tabs/Tabs.cjs";
|
|
32
|
+
import { Text, TextAlign, TextAs, TextNumeric, TextProps, TextTone, TextVariant, textMeta } from "./components/Text/Text.cjs";
|
|
20
33
|
import { Toast, ToastContent, ToastProps, ToastQueue, ToastRegion, ToastRegionProps, createToastQueue, toastMeta, toastRegionMeta } from "./components/Toast/Toast.cjs";
|
|
21
34
|
import { ToggleButton, ToggleButtonProps, toggleButtonMeta } from "./components/ToggleButton/ToggleButton.cjs";
|
|
22
35
|
import { ToggleButtonGroup, ToggleButtonGroupProps, toggleButtonGroupMeta } from "./components/ToggleButtonGroup/ToggleButtonGroup.cjs";
|
|
@@ -34,4 +47,4 @@ import { TextArea, TextAreaControl, TextAreaControlProps, TextAreaDescription, T
|
|
|
34
47
|
import { TextField, TextFieldControl, TextFieldControlProps, TextFieldDescription, TextFieldDescriptionProps, TextFieldError, TextFieldErrorProps, TextFieldLabel, TextFieldLabelProps, TextFieldProps, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta } from "./composites/TextField/TextField.cjs";
|
|
35
48
|
import { Tooltip, TooltipProps, TooltipTrigger, tooltipMeta } from "./composites/Tooltip/Tooltip.cjs";
|
|
36
49
|
import { Wizard, WizardNavigation, WizardNavigationProps, WizardProps, WizardStep, WizardStepProps, WizardSummary, WizardSummaryProps, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta } from "./composites/Wizard/Wizard.cjs";
|
|
37
|
-
export { Accordion, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, ConfirmationDialog, type ConfirmationDialogProps, Dialog, DialogActions, type DialogActionsPlatform, type DialogActionsProps, DialogBody, type DialogBodyProps, DialogHeading, type DialogHeadingProps, DialogModal, type DialogModalProps, type DialogProps, DialogTrigger, Disclosure, DisclosurePanel, type DisclosurePanelProps, type DisclosureProps, DisclosureTrigger, type DisclosureTriggerProps, FileTrigger, type FileTriggerProps, Form, FormActions, type FormActionsProps, type FormProps, FormSubmit, type FormSubmitProps, GridList, GridListItem, type GridListItemProps, type GridListProps, Group, type GroupProps, Link, type LinkProps, ListBox, ListBoxItem, type ListBoxItemProps, type ListBoxProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MenuTrigger, Meter, type MeterProps, NumberField, type NumberFieldProps, Popover, type PopoverProps, PopoverTrigger, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchField, SearchFieldControl, type SearchFieldControlProps, SearchFieldLabel, type SearchFieldLabelProps, type SearchFieldProps, Select, SelectItem, type SelectItemProps, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, TextArea, TextAreaControl, type TextAreaControlProps, TextAreaDescription, type TextAreaDescriptionProps, TextAreaError, type TextAreaErrorProps, TextAreaLabel, type TextAreaLabelProps, type TextAreaProps, TextField, TextFieldControl, type TextFieldControlProps, TextFieldDescription, type TextFieldDescriptionProps, TextFieldError, type TextFieldErrorProps, TextFieldLabel, type TextFieldLabelProps, type TextFieldProps, Toast, type ToastContent, type ToastProps, type ToastQueue, ToastRegion, type ToastRegionProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, TooltipTrigger, Wizard, WizardNavigation, type WizardNavigationProps, type WizardProps, WizardStep, type WizardStepProps, WizardSummary, type WizardSummaryProps, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, confirmationDialogMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, groupMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
|
50
|
+
export { Accordion, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AppShell, type AppShellProps, type AppShellSidebarWidth, Badge, type BadgeNumeric, type BadgeProps, Box, type BoxBackground, type BoxBorder, type BoxMaxWidth, type BoxPadding, type BoxProps, type BoxRadius, type BoxWidth, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, Code, type CodeProps, type CodeSize, ConfirmationDialog, type ConfirmationDialogProps, Container, type ContainerGutter, type ContainerProps, type ContainerSize, Dialog, DialogActions, type DialogActionsPlatform, type DialogActionsProps, DialogBody, type DialogBodyProps, DialogHeading, type DialogHeadingProps, DialogModal, type DialogModalProps, type DialogProps, DialogTrigger, Disclosure, DisclosurePanel, type DisclosurePanelProps, type DisclosureProps, DisclosureTrigger, type DisclosureTriggerProps, FileTrigger, type FileTriggerProps, Form, FormActions, type FormActionsProps, type FormProps, FormSubmit, type FormSubmitProps, Grid, type GridAlign, type GridGap, GridList, GridListItem, type GridListItemProps, type GridListProps, type GridMinColumnWidth, type GridProps, Group, type GroupProps, Heading, type HeadingAlign, type HeadingLevel, type HeadingProps, type HeadingSize, ICON_INTENTS, Icon, type IconIntent, type IconProps, type IconSize, Link, type LinkProps, ListBox, ListBoxItem, type ListBoxItemProps, type ListBoxProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MenuTrigger, Meter, type MeterProps, NumberField, type NumberFieldProps, Popover, type PopoverProps, PopoverTrigger, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchField, SearchFieldControl, type SearchFieldControlProps, SearchFieldLabel, type SearchFieldLabelProps, type SearchFieldProps, Select, SelectItem, type SelectItemProps, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, type SortDescriptor, type SortDirection, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, Surface, type SurfaceLevel, type SurfacePadding, type SurfaceProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableColumn, type TableColumnProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, Text, type TextAlign, TextArea, TextAreaControl, type TextAreaControlProps, TextAreaDescription, type TextAreaDescriptionProps, TextAreaError, type TextAreaErrorProps, TextAreaLabel, type TextAreaLabelProps, type TextAreaProps, type TextAs, TextField, TextFieldControl, type TextFieldControlProps, TextFieldDescription, type TextFieldDescriptionProps, TextFieldError, type TextFieldErrorProps, TextFieldLabel, type TextFieldLabelProps, type TextFieldProps, type TextNumeric, type TextProps, type TextTone, type TextVariant, Toast, type ToastContent, type ToastProps, type ToastQueue, ToastRegion, type ToastRegionProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, TooltipTrigger, Wizard, WizardNavigation, type WizardNavigationProps, type WizardProps, WizardStep, type WizardStepProps, WizardSummary, type WizardSummaryProps, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, appShellMeta, badgeMeta, boxMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, codeMeta, confirmationDialogMeta, containerMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, gridMeta, groupMeta, headingMeta, iconMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, stackMeta, surfaceMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, textMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
import { AppShell, AppShellProps, AppShellSidebarWidth, appShellMeta } from "./components/AppShell/AppShell.mjs";
|
|
3
|
+
import { Badge, BadgeNumeric, BadgeProps, badgeMeta } from "./components/Badge/Badge.mjs";
|
|
4
|
+
import { Box, BoxBackground, BoxBorder, BoxMaxWidth, BoxPadding, BoxProps, BoxRadius, BoxWidth, boxMeta } from "./components/Box/Box.mjs";
|
|
2
5
|
import { Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, breadcrumbMeta, breadcrumbsMeta } from "./components/Breadcrumbs/Breadcrumbs.mjs";
|
|
3
6
|
import { Button, ButtonProps, buttonMeta } from "./components/Button/Button.mjs";
|
|
4
7
|
import { Checkbox, CheckboxProps, checkboxMeta } from "./components/Checkbox/Checkbox.mjs";
|
|
5
8
|
import { CheckboxGroup, CheckboxGroupProps, checkboxGroupMeta } from "./components/CheckboxGroup/CheckboxGroup.mjs";
|
|
9
|
+
import { Code, CodeProps, CodeSize, codeMeta } from "./components/Code/Code.mjs";
|
|
10
|
+
import { Container, ContainerGutter, ContainerProps, ContainerSize, containerMeta } from "./components/Container/Container.mjs";
|
|
6
11
|
import { FileTrigger, FileTriggerProps, fileTriggerMeta } from "./components/FileTrigger/FileTrigger.mjs";
|
|
12
|
+
import { Grid, GridAlign, GridGap, GridMinColumnWidth, GridProps, gridMeta } from "./components/Grid/Grid.mjs";
|
|
7
13
|
import { GridList, GridListItem, GridListItemProps, GridListProps, gridListItemMeta, gridListMeta } from "./components/GridList/GridList.mjs";
|
|
8
14
|
import { Group, GroupProps, groupMeta } from "./components/Group/Group.mjs";
|
|
15
|
+
import { Heading, HeadingAlign, HeadingLevel, HeadingProps, HeadingSize, headingMeta } from "./components/Heading/Heading.mjs";
|
|
16
|
+
import { ICON_INTENTS, IconIntent } from "./components/Icon/intents.mjs";
|
|
17
|
+
import { Icon, IconProps, IconSize, iconMeta } from "./components/Icon/Icon.mjs";
|
|
9
18
|
import { Link, LinkProps, linkMeta } from "./components/Link/Link.mjs";
|
|
10
19
|
import { ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, listBoxItemMeta, listBoxMeta } from "./components/ListBox/ListBox.mjs";
|
|
11
20
|
import { Meter, MeterProps, meterMeta } from "./components/Meter/Meter.mjs";
|
|
@@ -15,8 +24,12 @@ import { Radio, RadioGroup, RadioGroupProps, RadioProps, radioGroupMeta, radioMe
|
|
|
15
24
|
import { Select, SelectItem, SelectItemProps, SelectProps, selectItemMeta, selectMeta } from "./components/Select/Select.mjs";
|
|
16
25
|
import { Separator, SeparatorProps, separatorMeta } from "./components/Separator/Separator.mjs";
|
|
17
26
|
import { Slider, SliderProps, sliderMeta } from "./components/Slider/Slider.mjs";
|
|
27
|
+
import { Stack, StackAlign, StackDirection, StackGap, StackJustify, StackProps, stackMeta } from "./components/Stack/Stack.mjs";
|
|
28
|
+
import { Surface, SurfaceLevel, SurfacePadding, SurfaceProps, surfaceMeta } from "./components/Surface/Surface.mjs";
|
|
18
29
|
import { Switch, SwitchProps, switchMeta } from "./components/Switch/Switch.mjs";
|
|
30
|
+
import { SortDescriptor, SortDirection, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableColumn, TableColumnProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta } from "./components/Table/Table.mjs";
|
|
19
31
|
import { Tab, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsProps, tabListMeta, tabMeta, tabPanelMeta, tabsMeta } from "./components/Tabs/Tabs.mjs";
|
|
32
|
+
import { Text, TextAlign, TextAs, TextNumeric, TextProps, TextTone, TextVariant, textMeta } from "./components/Text/Text.mjs";
|
|
20
33
|
import { Toast, ToastContent, ToastProps, ToastQueue, ToastRegion, ToastRegionProps, createToastQueue, toastMeta, toastRegionMeta } from "./components/Toast/Toast.mjs";
|
|
21
34
|
import { ToggleButton, ToggleButtonProps, toggleButtonMeta } from "./components/ToggleButton/ToggleButton.mjs";
|
|
22
35
|
import { ToggleButtonGroup, ToggleButtonGroupProps, toggleButtonGroupMeta } from "./components/ToggleButtonGroup/ToggleButtonGroup.mjs";
|
|
@@ -34,4 +47,4 @@ import { TextArea, TextAreaControl, TextAreaControlProps, TextAreaDescription, T
|
|
|
34
47
|
import { TextField, TextFieldControl, TextFieldControlProps, TextFieldDescription, TextFieldDescriptionProps, TextFieldError, TextFieldErrorProps, TextFieldLabel, TextFieldLabelProps, TextFieldProps, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta } from "./composites/TextField/TextField.mjs";
|
|
35
48
|
import { Tooltip, TooltipProps, TooltipTrigger, tooltipMeta } from "./composites/Tooltip/Tooltip.mjs";
|
|
36
49
|
import { Wizard, WizardNavigation, WizardNavigationProps, WizardProps, WizardStep, WizardStepProps, WizardSummary, WizardSummaryProps, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta } from "./composites/Wizard/Wizard.mjs";
|
|
37
|
-
export { Accordion, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, ConfirmationDialog, type ConfirmationDialogProps, Dialog, DialogActions, type DialogActionsPlatform, type DialogActionsProps, DialogBody, type DialogBodyProps, DialogHeading, type DialogHeadingProps, DialogModal, type DialogModalProps, type DialogProps, DialogTrigger, Disclosure, DisclosurePanel, type DisclosurePanelProps, type DisclosureProps, DisclosureTrigger, type DisclosureTriggerProps, FileTrigger, type FileTriggerProps, Form, FormActions, type FormActionsProps, type FormProps, FormSubmit, type FormSubmitProps, GridList, GridListItem, type GridListItemProps, type GridListProps, Group, type GroupProps, Link, type LinkProps, ListBox, ListBoxItem, type ListBoxItemProps, type ListBoxProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MenuTrigger, Meter, type MeterProps, NumberField, type NumberFieldProps, Popover, type PopoverProps, PopoverTrigger, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchField, SearchFieldControl, type SearchFieldControlProps, SearchFieldLabel, type SearchFieldLabelProps, type SearchFieldProps, Select, SelectItem, type SelectItemProps, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, TextArea, TextAreaControl, type TextAreaControlProps, TextAreaDescription, type TextAreaDescriptionProps, TextAreaError, type TextAreaErrorProps, TextAreaLabel, type TextAreaLabelProps, type TextAreaProps, TextField, TextFieldControl, type TextFieldControlProps, TextFieldDescription, type TextFieldDescriptionProps, TextFieldError, type TextFieldErrorProps, TextFieldLabel, type TextFieldLabelProps, type TextFieldProps, Toast, type ToastContent, type ToastProps, type ToastQueue, ToastRegion, type ToastRegionProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, TooltipTrigger, Wizard, WizardNavigation, type WizardNavigationProps, type WizardProps, WizardStep, type WizardStepProps, WizardSummary, type WizardSummaryProps, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, confirmationDialogMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, groupMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
|
50
|
+
export { Accordion, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AppShell, type AppShellProps, type AppShellSidebarWidth, Badge, type BadgeNumeric, type BadgeProps, Box, type BoxBackground, type BoxBorder, type BoxMaxWidth, type BoxPadding, type BoxProps, type BoxRadius, type BoxWidth, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, Code, type CodeProps, type CodeSize, ConfirmationDialog, type ConfirmationDialogProps, Container, type ContainerGutter, type ContainerProps, type ContainerSize, Dialog, DialogActions, type DialogActionsPlatform, type DialogActionsProps, DialogBody, type DialogBodyProps, DialogHeading, type DialogHeadingProps, DialogModal, type DialogModalProps, type DialogProps, DialogTrigger, Disclosure, DisclosurePanel, type DisclosurePanelProps, type DisclosureProps, DisclosureTrigger, type DisclosureTriggerProps, FileTrigger, type FileTriggerProps, Form, FormActions, type FormActionsProps, type FormProps, FormSubmit, type FormSubmitProps, Grid, type GridAlign, type GridGap, GridList, GridListItem, type GridListItemProps, type GridListProps, type GridMinColumnWidth, type GridProps, Group, type GroupProps, Heading, type HeadingAlign, type HeadingLevel, type HeadingProps, type HeadingSize, ICON_INTENTS, Icon, type IconIntent, type IconProps, type IconSize, Link, type LinkProps, ListBox, ListBoxItem, type ListBoxItemProps, type ListBoxProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MenuTrigger, Meter, type MeterProps, NumberField, type NumberFieldProps, Popover, type PopoverProps, PopoverTrigger, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchField, SearchFieldControl, type SearchFieldControlProps, SearchFieldLabel, type SearchFieldLabelProps, type SearchFieldProps, Select, SelectItem, type SelectItemProps, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, type SortDescriptor, type SortDirection, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, Surface, type SurfaceLevel, type SurfacePadding, type SurfaceProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableColumn, type TableColumnProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, Text, type TextAlign, TextArea, TextAreaControl, type TextAreaControlProps, TextAreaDescription, type TextAreaDescriptionProps, TextAreaError, type TextAreaErrorProps, TextAreaLabel, type TextAreaLabelProps, type TextAreaProps, type TextAs, TextField, TextFieldControl, type TextFieldControlProps, TextFieldDescription, type TextFieldDescriptionProps, TextFieldError, type TextFieldErrorProps, TextFieldLabel, type TextFieldLabelProps, type TextFieldProps, type TextNumeric, type TextProps, type TextTone, type TextVariant, Toast, type ToastContent, type ToastProps, type ToastQueue, ToastRegion, type ToastRegionProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, TooltipTrigger, Wizard, WizardNavigation, type WizardNavigationProps, type WizardProps, WizardStep, type WizardStepProps, WizardSummary, type WizardSummaryProps, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, appShellMeta, badgeMeta, boxMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, codeMeta, confirmationDialogMeta, containerMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, gridMeta, groupMeta, headingMeta, iconMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, stackMeta, surfaceMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, textMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
2
|
'use client';
|
|
3
3
|
|
|
4
|
+
import { AppShell, appShellMeta } from "./components/AppShell/AppShell.mjs";
|
|
5
|
+
import { Badge, badgeMeta } from "./components/Badge/Badge.mjs";
|
|
6
|
+
import { Box, boxMeta } from "./components/Box/Box.mjs";
|
|
4
7
|
import { Breadcrumb, Breadcrumbs, breadcrumbMeta, breadcrumbsMeta } from "./components/Breadcrumbs/Breadcrumbs.mjs";
|
|
5
8
|
import { Button, buttonMeta } from "./components/Button/Button.mjs";
|
|
9
|
+
import { Icon, iconMeta } from "./components/Icon/Icon.mjs";
|
|
10
|
+
import { ICON_INTENTS } from "./components/Icon/intents.mjs";
|
|
6
11
|
import { Checkbox, checkboxMeta } from "./components/Checkbox/Checkbox.mjs";
|
|
7
12
|
import { CheckboxGroup, checkboxGroupMeta } from "./components/CheckboxGroup/CheckboxGroup.mjs";
|
|
13
|
+
import { Code, codeMeta } from "./components/Code/Code.mjs";
|
|
14
|
+
import { Container, containerMeta } from "./components/Container/Container.mjs";
|
|
8
15
|
import { FileTrigger, fileTriggerMeta } from "./components/FileTrigger/FileTrigger.mjs";
|
|
16
|
+
import { Grid, gridMeta } from "./components/Grid/Grid.mjs";
|
|
9
17
|
import { GridList, GridListItem, gridListItemMeta, gridListMeta } from "./components/GridList/GridList.mjs";
|
|
10
18
|
import { Group, groupMeta } from "./components/Group/Group.mjs";
|
|
19
|
+
import { Heading, headingMeta } from "./components/Heading/Heading.mjs";
|
|
11
20
|
import { Link, linkMeta } from "./components/Link/Link.mjs";
|
|
12
21
|
import { ListBox, ListBoxItem, listBoxItemMeta, listBoxMeta } from "./components/ListBox/ListBox.mjs";
|
|
13
22
|
import { Meter, meterMeta } from "./components/Meter/Meter.mjs";
|
|
@@ -17,8 +26,12 @@ import { Radio, RadioGroup, radioGroupMeta, radioMeta } from "./components/Radio
|
|
|
17
26
|
import { Select, SelectItem, selectItemMeta, selectMeta } from "./components/Select/Select.mjs";
|
|
18
27
|
import { Separator, separatorMeta } from "./components/Separator/Separator.mjs";
|
|
19
28
|
import { Slider, sliderMeta } from "./components/Slider/Slider.mjs";
|
|
29
|
+
import { Stack, stackMeta } from "./components/Stack/Stack.mjs";
|
|
30
|
+
import { Surface, surfaceMeta } from "./components/Surface/Surface.mjs";
|
|
20
31
|
import { Switch, switchMeta } from "./components/Switch/Switch.mjs";
|
|
32
|
+
import { Table, TableBody, TableCell, TableColumn, TableHeader, TableRow, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta } from "./components/Table/Table.mjs";
|
|
21
33
|
import { Tab, TabList, TabPanel, Tabs, tabListMeta, tabMeta, tabPanelMeta, tabsMeta } from "./components/Tabs/Tabs.mjs";
|
|
34
|
+
import { Text, textMeta } from "./components/Text/Text.mjs";
|
|
22
35
|
import { Toast, ToastRegion, createToastQueue, toastMeta, toastRegionMeta } from "./components/Toast/Toast.mjs";
|
|
23
36
|
import { ToggleButton, toggleButtonMeta } from "./components/ToggleButton/ToggleButton.mjs";
|
|
24
37
|
import { ToggleButtonGroup, toggleButtonGroupMeta } from "./components/ToggleButtonGroup/ToggleButtonGroup.mjs";
|
|
@@ -36,4 +49,4 @@ import { TextArea, TextAreaControl, TextAreaDescription, TextAreaError, TextArea
|
|
|
36
49
|
import { TextField, TextFieldControl, TextFieldDescription, TextFieldError, TextFieldLabel, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta } from "./composites/TextField/TextField.mjs";
|
|
37
50
|
import { Tooltip, TooltipTrigger, tooltipMeta } from "./composites/Tooltip/Tooltip.mjs";
|
|
38
51
|
import { Wizard, WizardNavigation, WizardStep, WizardSummary, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta } from "./composites/Wizard/Wizard.mjs";
|
|
39
|
-
export { Accordion, AccordionItem, AccordionPanel, AccordionTrigger, Breadcrumb, Breadcrumbs, Button, Checkbox, CheckboxGroup, ConfirmationDialog, Dialog, DialogActions, DialogBody, DialogHeading, DialogModal, DialogTrigger, Disclosure, DisclosurePanel, DisclosureTrigger, FileTrigger, Form, FormActions, FormSubmit, GridList, GridListItem, Group, Link, ListBox, ListBoxItem, Menu, MenuItem, MenuTrigger, Meter, NumberField, Popover, PopoverTrigger, ProgressBar, Radio, RadioGroup, SearchField, SearchFieldControl, SearchFieldLabel, Select, SelectItem, Separator, Slider, Switch, Tab, TabList, TabPanel, Tabs, Tag, TagGroup, TextArea, TextAreaControl, TextAreaDescription, TextAreaError, TextAreaLabel, TextField, TextFieldControl, TextFieldDescription, TextFieldError, TextFieldLabel, Toast, ToastRegion, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, TooltipTrigger, Wizard, WizardNavigation, WizardStep, WizardSummary, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, confirmationDialogMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, groupMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
|
52
|
+
export { Accordion, AccordionItem, AccordionPanel, AccordionTrigger, AppShell, Badge, Box, Breadcrumb, Breadcrumbs, Button, Checkbox, CheckboxGroup, Code, ConfirmationDialog, Container, Dialog, DialogActions, DialogBody, DialogHeading, DialogModal, DialogTrigger, Disclosure, DisclosurePanel, DisclosureTrigger, FileTrigger, Form, FormActions, FormSubmit, Grid, GridList, GridListItem, Group, Heading, ICON_INTENTS, Icon, Link, ListBox, ListBoxItem, Menu, MenuItem, MenuTrigger, Meter, NumberField, Popover, PopoverTrigger, ProgressBar, Radio, RadioGroup, SearchField, SearchFieldControl, SearchFieldLabel, Select, SelectItem, Separator, Slider, Stack, Surface, Switch, Tab, TabList, TabPanel, Table, TableBody, TableCell, TableColumn, TableHeader, TableRow, Tabs, Tag, TagGroup, Text, TextArea, TextAreaControl, TextAreaDescription, TextAreaError, TextAreaLabel, TextField, TextFieldControl, TextFieldDescription, TextFieldError, TextFieldLabel, Toast, ToastRegion, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, TooltipTrigger, Wizard, WizardNavigation, WizardStep, WizardSummary, accordionItemMeta, accordionMeta, accordionPanelMeta, accordionTriggerMeta, appShellMeta, badgeMeta, boxMeta, breadcrumbMeta, breadcrumbsMeta, buttonMeta, checkboxGroupMeta, checkboxMeta, codeMeta, confirmationDialogMeta, containerMeta, createToastQueue, dialogActionsMeta, dialogBodyMeta, dialogHeadingMeta, dialogMeta, dialogModalMeta, disclosureMeta, disclosurePanelMeta, disclosureTriggerMeta, fileTriggerMeta, formActionsMeta, formMeta, formSubmitMeta, gridListItemMeta, gridListMeta, gridMeta, groupMeta, headingMeta, iconMeta, linkMeta, listBoxItemMeta, listBoxMeta, menuItemMeta, menuMeta, meterMeta, numberFieldMeta, popoverMeta, progressBarMeta, radioGroupMeta, radioMeta, searchFieldControlMeta, searchFieldLabelMeta, searchFieldMeta, selectItemMeta, selectMeta, separatorMeta, sliderMeta, stackMeta, surfaceMeta, switchMeta, tabListMeta, tabMeta, tabPanelMeta, tableCellMeta, tableColumnMeta, tableMeta, tableRowMeta, tabsMeta, tagGroupMeta, tagMeta, textAreaControlMeta, textAreaDescriptionMeta, textAreaErrorMeta, textAreaLabelMeta, textAreaMeta, textFieldControlMeta, textFieldDescriptionMeta, textFieldErrorMeta, textFieldLabelMeta, textFieldMeta, textMeta, toastMeta, toastRegionMeta, toggleButtonGroupMeta, toggleButtonMeta, toolbarMeta, tooltipMeta, wizardMeta, wizardNavigationMeta, wizardStepMeta, wizardSummaryMeta };
|
package/llms.txt
CHANGED
|
@@ -69,6 +69,14 @@ Collection: ListBox/ListBoxItem, GridList/GridListItem (+ Menu/MenuItem,
|
|
|
69
69
|
ITEMS are Selection (input chrome, `selected` State) — one
|
|
70
70
|
composite, two entities. GridListItem also has a selectionControl
|
|
71
71
|
(per-row checkbox).
|
|
72
|
+
Table/TableHeader/TableColumn/TableBody/TableRow/TableCell —
|
|
73
|
+
data table with columnheaders, same ADR-007 split (Table =
|
|
74
|
+
Collection surface, TableRow = Selection). Sorting: controlled
|
|
75
|
+
sortDescriptor/onSortChange + allowsSorting on TableColumn
|
|
76
|
+
(aria-sort + direction arrow rendered for you); set isRowHeader
|
|
77
|
+
on the naming column. Selection: selectionMode single|multiple,
|
|
78
|
+
row click toggles (no checkbox column yet). Use for column-
|
|
79
|
+
aligned data; GridList is for single-column rows.
|
|
72
80
|
Input: TextField, TextArea (each + Label/Control/Description/Error),
|
|
73
81
|
SearchField (+ Label/Control; leading search + clear glyphs),
|
|
74
82
|
NumberField (label/description/errorMessage props + −/+ steppers),
|
|
@@ -78,16 +86,51 @@ Overlay: Dialog, DialogModal, DialogTrigger, DialogHeading, DialogBody,
|
|
|
78
86
|
Popover, PopoverTrigger, Tooltip, TooltipTrigger
|
|
79
87
|
Feedback: ProgressBar, Meter, Toast, ToastRegion, createToastQueue
|
|
80
88
|
(Meter = static quantity in a range e.g. battery/disk;
|
|
81
|
-
ProgressBar = a task in flight. Pick by "state" vs "progressing")
|
|
89
|
+
ProgressBar = a task in flight. Pick by "state" vs "progressing"),
|
|
90
|
+
Badge (status pill: evaluation=primary|positive|caution|negative,
|
|
91
|
+
numeric=tabular for counts — never a hand-rolled colored span)
|
|
82
92
|
Structure: Form, FormActions, Wizard, WizardStep, WizardSummary,
|
|
83
93
|
WizardNavigation, Separator, Group (labelled role=group frame),
|
|
84
|
-
Toolbar (role=toolbar, arrow-key roving nav over its controls)
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
94
|
+
Toolbar (role=toolbar, arrow-key roving nav over its controls),
|
|
95
|
+
Surface (depth container: level=flat|raised|overlay|blocking,
|
|
96
|
+
padding=none|sm|md|lg; pairs the elevation shadow with the tonal
|
|
97
|
+
surface colour so depth reads in light AND dark — use for cards,
|
|
98
|
+
panels, sheets instead of a hand-rolled div),
|
|
99
|
+
Heading (h1-h6 bound to the type scale: level=1..6 sets the
|
|
100
|
+
element, size overrides the visual step — never a raw font-size),
|
|
101
|
+
Text (copy + stat figures: variant=display-sm (stat step for KPI
|
|
102
|
+
values/prices — data, not headings)|body|label-lg|md|sm, tone=muted for
|
|
103
|
+
secondary hierarchy, as=p|span|div — never a raw font-size),
|
|
104
|
+
Stack (layout rhythm: direction=vertical|horizontal picks the
|
|
105
|
+
gap.stack|gap.inline family, gap=xs..xl, align, justify, wrap —
|
|
106
|
+
never a raw gap; use instead of a hand-rolled flex div),
|
|
107
|
+
Box (token-constrained escape hatch, ADR-009: padding/
|
|
108
|
+
paddingBlock/paddingInline=none|sm|md|lg, background=none|primary|
|
|
109
|
+
muted, radius=none|control|surface|round, border=none|muted|
|
|
110
|
+
strong, width=auto|full|fit, maxWidth=none|surface|reading —
|
|
111
|
+
never a free style/className),
|
|
112
|
+
Grid (2D layout: columns=N or minColumnWidth=xs|sm|md|lg for
|
|
113
|
+
responsive auto-fit, rows, gap=xs..xl, align, justify — never a
|
|
114
|
+
raw track template),
|
|
115
|
+
Container (centered page column: size=surface|reading,
|
|
116
|
+
gutter=page|section|none — instead of max-width + margin auto),
|
|
117
|
+
AppShell (full-viewport app frame: header?, sidebar?, aside?,
|
|
118
|
+
sidebarWidth/asideWidth=sm|md|lg, sidebarLabel/asideLabel for the
|
|
119
|
+
landmark names; main content as children — instead of a
|
|
120
|
+
hand-rolled viewport grid),
|
|
121
|
+
Code (code text: block=true scrollable <pre> surface, block=false
|
|
122
|
+
inline <code> run)
|
|
123
|
+
|
|
124
|
+
Icons: Icon is a PUBLIC export (ADR-010): a semantic glyph named by intent
|
|
125
|
+
(`icon.{family}.{intent}`), never by picture — e.g.
|
|
126
|
+
<Icon intent="status.success" />, <Icon intent="action.close" size="sm" />.
|
|
127
|
+
Decorative by default (aria-hidden); pass `label` (caller-localized) only
|
|
128
|
+
when the icon is the sole carrier of meaning. Color inherits (currentColor);
|
|
129
|
+
size = sm|md|lg → vars.sizing.icon.*. Intents are a curated registry
|
|
130
|
+
(ICON_INTENTS): disclosure.expand/collapse, selection.checked/indeterminate,
|
|
131
|
+
action.close/search/increment/decrement/sortAscending/sortDescending,
|
|
132
|
+
status.success — it grows only on component/block demand. Glyphs map to
|
|
133
|
+
Lucide via the Iconify provider, registered offline (no runtime API fetch).
|
|
91
134
|
|
|
92
135
|
## Entity → token map (a component reads ONLY its row)
|
|
93
136
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/fsl-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Semantic, token-native component library for the ttoss ecosystem. Built on React Aria Components with @ttoss/fsl-theme tokens.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@iconify-icon/react": "^2.2.0",
|
|
34
34
|
"@iconify/icons-lucide": "^1.2.135",
|
|
35
35
|
"react-aria-components": "~1.19.0",
|
|
36
|
-
"@ttoss/fsl-theme": "^2.1.
|
|
36
|
+
"@ttoss/fsl-theme": "^2.1.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@testing-library/react": "^16.3.2",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"react-hook-form": "^7.71.1",
|
|
51
51
|
"tsdown": "^0.22.2",
|
|
52
52
|
"zod": "^4.4.3",
|
|
53
|
-
"@ttoss/test-utils": "^4.2.18",
|
|
54
53
|
"@ttoss/config": "^1.37.17",
|
|
55
|
-
"@ttoss/forms": "^0.44.4"
|
|
54
|
+
"@ttoss/forms": "^0.44.4",
|
|
55
|
+
"@ttoss/test-utils": "^4.2.18"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"react": ">=18",
|