@texturehq/edges 1.27.1 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{RichTextEditor-CZCqHSPF.d.cts → RichTextEditor-7jc4jO7e.d.cts} +1 -1
- package/dist/{RichTextEditor-CZCqHSPF.d.ts → RichTextEditor-7jc4jO7e.d.ts} +1 -1
- package/dist/{TimeField-CQgcvUgy.d.ts → TimeField-BbLIbv0J.d.ts} +2 -2
- package/dist/{TimeField-07gPbQ8f.d.cts → TimeField-BqhXKWUT.d.cts} +2 -2
- package/dist/{colors-DKozNGNs.d.ts → colors-CvEXhBTp.d.cts} +3 -2
- package/dist/{colors-CY0JrRSg.d.cts → colors-Edrb81dY.d.ts} +3 -2
- package/dist/components.manifest.json +14 -3
- package/dist/form/index.d.cts +1 -1
- package/dist/form/index.d.ts +1 -1
- package/dist/generated/tailwind-tokens-dark.css +1 -0
- package/dist/generated/tailwind-tokens-light.css +1 -0
- package/dist/{index-rh1icNsb.d.cts → index-BdDvAxFM.d.cts} +1 -1
- package/dist/{index-rh1icNsb.d.ts → index-BdDvAxFM.d.ts} +1 -1
- package/dist/index.cjs +45 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +95 -10
- package/dist/index.d.ts +95 -10
- package/dist/index.js +45 -9
- package/dist/index.js.map +1 -1
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.d.cts +2 -2
- package/dist/rhf/index.d.ts +2 -2
- package/dist/rhf/index.js.map +1 -1
- package/dist/server.cjs +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +2 -2
- package/dist/server.d.ts +2 -2
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/styles/animations.css +20 -0
- package/dist/styles/utilities.css +43 -0
- package/dist/styles.css +46 -0
- package/dist/utilities.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -393,4 +393,4 @@ interface RichTextEditorProps {
|
|
|
393
393
|
*/
|
|
394
394
|
declare function RichTextEditor({ initialContent, onChange, className, isDisabled, placeholder, id, }: RichTextEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
395
395
|
|
|
396
|
-
export { type BaseInputProps as B, ClearButton as C, type DateFieldProps as D, type FileUploadProps as F, Icon as I,
|
|
396
|
+
export { type BaseInputProps as B, ClearButton as C, type DateFieldProps as D, type FileUploadProps as F, Icon as I, Label as L, type RichTextEditorProps as R, type Size as S, DateField as a, FileUpload as b, RichTextEditor as c, type IconName as d, type BaseProps as e, Description as f, type DescriptionPlacement as g, type DescriptionProps as h, FieldError as i, type FieldErrorProps as j, FieldGroup as k, type FieldGroupProps as l, Input as m, type InputProps as n, type InputStyleProps as o, InputWrapper as p, type LabelProps as q, getFieldGroupStyles as r, getInputBackgroundStyles as s, getInputBaseStyles as t, getInputStateStyles as u, useInputFocus as v };
|
|
@@ -393,4 +393,4 @@ interface RichTextEditorProps {
|
|
|
393
393
|
*/
|
|
394
394
|
declare function RichTextEditor({ initialContent, onChange, className, isDisabled, placeholder, id, }: RichTextEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
395
395
|
|
|
396
|
-
export { type BaseInputProps as B, ClearButton as C, type DateFieldProps as D, type FileUploadProps as F, Icon as I,
|
|
396
|
+
export { type BaseInputProps as B, ClearButton as C, type DateFieldProps as D, type FileUploadProps as F, Icon as I, Label as L, type RichTextEditorProps as R, type Size as S, DateField as a, FileUpload as b, RichTextEditor as c, type IconName as d, type BaseProps as e, Description as f, type DescriptionPlacement as g, type DescriptionProps as h, FieldError as i, type FieldErrorProps as j, FieldGroup as k, type FieldGroupProps as l, Input as m, type InputProps as n, type InputStyleProps as o, InputWrapper as p, type LabelProps as q, getFieldGroupStyles as r, getInputBackgroundStyles as s, getInputBaseStyles as t, getInputStateStyles as u, useInputFocus as v };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { ComponentProps, ReactNode } from 'react';
|
|
3
3
|
import { Key, ValidationResult, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, CheckboxRenderProps, CheckboxGroupProps as CheckboxGroupProps$1, TextFieldProps as TextFieldProps$1, NumberFieldProps as NumberFieldProps$1, RadioProps, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, SwitchProps as SwitchProps$1, TimeFieldProps as TimeFieldProps$1, TimeValue } from 'react-aria-components';
|
|
4
|
-
import { S as Size, I as Icon, B as BaseInputProps } from './RichTextEditor-
|
|
4
|
+
import { S as Size, I as Icon, B as BaseInputProps } from './RichTextEditor-7jc4jO7e.js';
|
|
5
5
|
|
|
6
6
|
interface Item {
|
|
7
7
|
id: string;
|
|
@@ -531,4 +531,4 @@ interface TimeFieldProps extends Omit<TimeFieldProps$1<TimeValue>, "isRequired"
|
|
|
531
531
|
*/
|
|
532
532
|
declare function TimeField({ label, description, errorMessage, size, tooltip, isRequired, isDisabled, isInvalid, reserveErrorSpace, validationResult, className, descriptionPlacement, ...props }: TimeFieldProps): react_jsx_runtime.JSX.Element;
|
|
533
533
|
|
|
534
|
-
export { Autocomplete as A, Button as B, Checkbox as C, NumberField as N, RadioCardGroup as R, Select as S, TextArea as T, CheckboxGroup as a, ColorField as b, RadioGroup as c, Switch as d, TextField as e, type TimeFieldProps as f, type ColorFieldProps as g,
|
|
534
|
+
export { Autocomplete as A, Button as B, Checkbox as C, NumberField as N, RadioCardGroup as R, Select as S, TextArea as T, CheckboxGroup as a, ColorField as b, RadioGroup as c, Switch as d, TextField as e, type TimeFieldProps as f, type ColorFieldProps as g, Radio as h, RadioCard as i, type RadioCardGroupProps as j, type RadioCardProps as k, type SelectItem as l, TimeField as m };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { ComponentProps, ReactNode } from 'react';
|
|
3
3
|
import { Key, ValidationResult, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, CheckboxRenderProps, CheckboxGroupProps as CheckboxGroupProps$1, TextFieldProps as TextFieldProps$1, NumberFieldProps as NumberFieldProps$1, RadioProps, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, SwitchProps as SwitchProps$1, TimeFieldProps as TimeFieldProps$1, TimeValue } from 'react-aria-components';
|
|
4
|
-
import { S as Size, I as Icon, B as BaseInputProps } from './RichTextEditor-
|
|
4
|
+
import { S as Size, I as Icon, B as BaseInputProps } from './RichTextEditor-7jc4jO7e.cjs';
|
|
5
5
|
|
|
6
6
|
interface Item {
|
|
7
7
|
id: string;
|
|
@@ -531,4 +531,4 @@ interface TimeFieldProps extends Omit<TimeFieldProps$1<TimeValue>, "isRequired"
|
|
|
531
531
|
*/
|
|
532
532
|
declare function TimeField({ label, description, errorMessage, size, tooltip, isRequired, isDisabled, isInvalid, reserveErrorSpace, validationResult, className, descriptionPlacement, ...props }: TimeFieldProps): react_jsx_runtime.JSX.Element;
|
|
533
533
|
|
|
534
|
-
export { Autocomplete as A, Button as B, Checkbox as C, NumberField as N, RadioCardGroup as R, Select as S, TextArea as T, CheckboxGroup as a, ColorField as b, RadioGroup as c, Switch as d, TextField as e, type TimeFieldProps as f, type ColorFieldProps as g,
|
|
534
|
+
export { Autocomplete as A, Button as B, Checkbox as C, NumberField as N, RadioCardGroup as R, Select as S, TextArea as T, CheckboxGroup as a, ColorField as b, RadioGroup as c, Switch as d, TextField as e, type TimeFieldProps as f, type ColorFieldProps as g, Radio as h, RadioCard as i, type RadioCardGroupProps as j, type RadioCardProps as k, type SelectItem as l, TimeField as m };
|
|
@@ -3,7 +3,7 @@ import * as React$1 from 'react';
|
|
|
3
3
|
import React__default, { ReactNode, ComponentType } from 'react';
|
|
4
4
|
import { ScaleTime, ScaleLinear } from 'd3-scale';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
-
import { d as IconName } from './RichTextEditor-
|
|
6
|
+
import { d as IconName } from './RichTextEditor-7jc4jO7e.cjs';
|
|
7
7
|
import * as react_map_gl from 'react-map-gl';
|
|
8
8
|
import { ViewState, MapRef } from 'react-map-gl';
|
|
9
9
|
import { MeterProps as MeterProps$1 } from 'react-aria-components';
|
|
@@ -193,6 +193,7 @@ declare function useComponentFormatter(formatter?: ComponentFormatter, emptyClas
|
|
|
193
193
|
*/
|
|
194
194
|
type YFormatType = ComponentFormatter;
|
|
195
195
|
interface TooltipData {
|
|
196
|
+
/** The x-axis value (Date for time-series charts) */
|
|
196
197
|
xValue: Date;
|
|
197
198
|
series: TooltipSeries[];
|
|
198
199
|
x: number;
|
|
@@ -1848,4 +1849,4 @@ declare const isLightColor: (color: string) => boolean;
|
|
|
1848
1849
|
*/
|
|
1849
1850
|
declare const getContrastingTextColor: (backgroundColor: string) => string;
|
|
1850
1851
|
|
|
1851
|
-
export { type DistanceFormat as $, type ActionItem as A, type BadgeProps as B, type
|
|
1852
|
+
export { type DistanceFormat as $, type ActionItem as A, type BadgeProps as B, type ChartMargin as C, defaultMargin as D, ENTITY_CONFIG as E, getContrastingTextColor as F, getDefaultChartColor as G, Heading as H, type InteractiveMapProps as I, getDefaultColors as J, getEntityConfig as K, Loader as L, type MapPoint as M, getEntityIcon as N, getEntityLabel as O, getResolvedColor as P, getThemeCategoricalColors as Q, getYFormatSettings as R, type SegmentOption as S, TextLink as T, isLightColor as U, type FieldValue as V, type BooleanFormat as W, type FormattedValue as X, type YFormatSettings as Y, type CurrentFormat as Z, type DateFormat as _, type ActionMenuProps as a, type EnergyFormat as a0, type CurrencyFormat as a1, type NumberFormat as a2, type PhoneFormat as a3, type PowerFormat as a4, type FormatterFunction as a5, type ResistanceFormat as a6, type TemperatureFormat as a7, type TemperatureUnitString as a8, type TemperatureUnit as a9, type LayerFeature as aA, type LayerStyle as aB, MAP_TYPES as aC, Meter as aD, type MetricFormat as aE, type PercentageFormat as aF, type PowerUnit as aG, type RenderType as aH, type ResistanceUnit as aI, SegmentedControl as aJ, StaticMap as aK, type TextTransform as aL, type TextTruncatePosition as aM, type VoltageUnit as aN, type ZoomStops as aO, activeDeviceStates as aP, deviceStateLabels as aQ, deviceStateMetricFormats as aR, formatComponentValue as aS, getDeviceStateLabel as aT, getGridStateLabel as aU, gridStateLabels as aV, isActiveState as aW, useChartContext as aX, useComponentFormatter as aY, type TextFormat as aa, type VoltageFormat as ab, type FieldFormat as ac, type DeviceState as ad, type GridState as ae, type ComponentFormatter as af, type LayerSpec as ag, type CustomPinsSpec as ah, type GeoJsonLayerSpec as ai, type RasterLayerSpec as aj, type VectorLayerSpec as ak, type ClusteredVectorLayerSpec as al, ActionMenu as am, Avatar as an, Badge as ao, type BaseFormat as ap, ChartContext as aq, CodeEditor as ar, type ColorSpec as as, type ComponentFormatOptions as at, type CurrentUnit as au, type CustomFormat as av, type DateFormatStyle as aw, type DistanceUnit as ax, type EnergyUnit as ay, InteractiveMap as az, AppShell as b, type AppShellProps as c, type AvatarProps as d, type BaseDataPoint as e, type CodeEditorProps as f, type CodeLanguage as g, type CodeTheme as h, type EntityConfig as i, type EntityType as j, Logo as k, type MeterProps as l, type SegmentedControlProps as m, SideNav as n, type SideNavItem as o, type SideNavProps as p, type StaticMapProps as q, type TooltipData as r, type TooltipSeries as s, TopNav as t, type TopNavProps as u, type YFormatType as v, clearColorCache as w, createCategoryColorMap as x, createXScale as y, createYScale as z };
|
|
@@ -3,7 +3,7 @@ import * as React$1 from 'react';
|
|
|
3
3
|
import React__default, { ReactNode, ComponentType } from 'react';
|
|
4
4
|
import { ScaleTime, ScaleLinear } from 'd3-scale';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
-
import { d as IconName } from './RichTextEditor-
|
|
6
|
+
import { d as IconName } from './RichTextEditor-7jc4jO7e.js';
|
|
7
7
|
import * as react_map_gl from 'react-map-gl';
|
|
8
8
|
import { ViewState, MapRef } from 'react-map-gl';
|
|
9
9
|
import { MeterProps as MeterProps$1 } from 'react-aria-components';
|
|
@@ -193,6 +193,7 @@ declare function useComponentFormatter(formatter?: ComponentFormatter, emptyClas
|
|
|
193
193
|
*/
|
|
194
194
|
type YFormatType = ComponentFormatter;
|
|
195
195
|
interface TooltipData {
|
|
196
|
+
/** The x-axis value (Date for time-series charts) */
|
|
196
197
|
xValue: Date;
|
|
197
198
|
series: TooltipSeries[];
|
|
198
199
|
x: number;
|
|
@@ -1848,4 +1849,4 @@ declare const isLightColor: (color: string) => boolean;
|
|
|
1848
1849
|
*/
|
|
1849
1850
|
declare const getContrastingTextColor: (backgroundColor: string) => string;
|
|
1850
1851
|
|
|
1851
|
-
export { type DistanceFormat as $, type ActionItem as A, type BadgeProps as B, type
|
|
1852
|
+
export { type DistanceFormat as $, type ActionItem as A, type BadgeProps as B, type ChartMargin as C, defaultMargin as D, ENTITY_CONFIG as E, getContrastingTextColor as F, getDefaultChartColor as G, Heading as H, type InteractiveMapProps as I, getDefaultColors as J, getEntityConfig as K, Loader as L, type MapPoint as M, getEntityIcon as N, getEntityLabel as O, getResolvedColor as P, getThemeCategoricalColors as Q, getYFormatSettings as R, type SegmentOption as S, TextLink as T, isLightColor as U, type FieldValue as V, type BooleanFormat as W, type FormattedValue as X, type YFormatSettings as Y, type CurrentFormat as Z, type DateFormat as _, type ActionMenuProps as a, type EnergyFormat as a0, type CurrencyFormat as a1, type NumberFormat as a2, type PhoneFormat as a3, type PowerFormat as a4, type FormatterFunction as a5, type ResistanceFormat as a6, type TemperatureFormat as a7, type TemperatureUnitString as a8, type TemperatureUnit as a9, type LayerFeature as aA, type LayerStyle as aB, MAP_TYPES as aC, Meter as aD, type MetricFormat as aE, type PercentageFormat as aF, type PowerUnit as aG, type RenderType as aH, type ResistanceUnit as aI, SegmentedControl as aJ, StaticMap as aK, type TextTransform as aL, type TextTruncatePosition as aM, type VoltageUnit as aN, type ZoomStops as aO, activeDeviceStates as aP, deviceStateLabels as aQ, deviceStateMetricFormats as aR, formatComponentValue as aS, getDeviceStateLabel as aT, getGridStateLabel as aU, gridStateLabels as aV, isActiveState as aW, useChartContext as aX, useComponentFormatter as aY, type TextFormat as aa, type VoltageFormat as ab, type FieldFormat as ac, type DeviceState as ad, type GridState as ae, type ComponentFormatter as af, type LayerSpec as ag, type CustomPinsSpec as ah, type GeoJsonLayerSpec as ai, type RasterLayerSpec as aj, type VectorLayerSpec as ak, type ClusteredVectorLayerSpec as al, ActionMenu as am, Avatar as an, Badge as ao, type BaseFormat as ap, ChartContext as aq, CodeEditor as ar, type ColorSpec as as, type ComponentFormatOptions as at, type CurrentUnit as au, type CustomFormat as av, type DateFormatStyle as aw, type DistanceUnit as ax, type EnergyUnit as ay, InteractiveMap as az, AppShell as b, type AppShellProps as c, type AvatarProps as d, type BaseDataPoint as e, type CodeEditorProps as f, type CodeLanguage as g, type CodeTheme as h, type EntityConfig as i, type EntityType as j, Logo as k, type MeterProps as l, type SegmentedControlProps as m, SideNav as n, type SideNavItem as o, type SideNavProps as p, type StaticMapProps as q, type TooltipData as r, type TooltipSeries as s, TopNav as t, type TopNavProps as u, type YFormatType as v, clearColorCache as w, createCategoryColorMap as x, createXScale as y, createYScale as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.28.0",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "ActionCell",
|
|
@@ -691,10 +691,20 @@
|
|
|
691
691
|
"relatedComponents": [],
|
|
692
692
|
"storybookPath": "Components/CarouselRoot"
|
|
693
693
|
},
|
|
694
|
+
{
|
|
695
|
+
"name": "CategoryBarChart",
|
|
696
|
+
"category": "Charts",
|
|
697
|
+
"description": "Show tooltip on hover (default true)",
|
|
698
|
+
"importRoot": "@texturehq/edges",
|
|
699
|
+
"importPath": "@texturehq/edges/components/CategoryBarChart",
|
|
700
|
+
"props": [],
|
|
701
|
+
"relatedComponents": [],
|
|
702
|
+
"storybookPath": "Charts/CategoryBarChart"
|
|
703
|
+
},
|
|
694
704
|
{
|
|
695
705
|
"name": "ChartAxis",
|
|
696
706
|
"category": "Charts",
|
|
697
|
-
"description": "ChartAxis Chart axis components for rendering X and Y axes. Provides formatted bottom (time) and left (numeric) axes with customizable tick formatting.",
|
|
707
|
+
"description": "ChartAxis Chart axis components for rendering X and Y axes. Provides formatted bottom (time) and left (numeric) axes with customizable tick formatting. Components: - Bottom: Time-based x-axis (for time-series charts) - Left: Numeric y-axis - CategoryBottom: Categorical x-axis (for bar charts with labels) - CategoryLeft: Categorical y-axis (for horizontal bar charts) - NumericBottom: Numeric x-axis (for horizontal bar charts)",
|
|
698
708
|
"importRoot": "@texturehq/edges",
|
|
699
709
|
"importPath": "@texturehq/edges/components/ChartAxis",
|
|
700
710
|
"props": [],
|
|
@@ -759,7 +769,7 @@
|
|
|
759
769
|
{
|
|
760
770
|
"name": "ChartTooltip",
|
|
761
771
|
"category": "Uncategorized",
|
|
762
|
-
"description": "ChartTooltip Interactive tooltip component for charts. Displays formatted data values at hover position with automatic positioning and animations. Uses the main formatting system for consistency with Kpi, StatList, and DataTable.",
|
|
772
|
+
"description": "ChartTooltip Interactive tooltip component for charts. Displays formatted data values at hover position with automatic positioning and animations. Uses the main formatting system for consistency with Kpi, StatList, and DataTable. Can be used standalone (with label prop) or within ChartContext (for time-series charts).",
|
|
763
773
|
"importRoot": "@texturehq/edges",
|
|
764
774
|
"importPath": "@texturehq/edges/components/ChartTooltip",
|
|
765
775
|
"props": [],
|
|
@@ -3103,6 +3113,7 @@
|
|
|
3103
3113
|
"Charts": [
|
|
3104
3114
|
"AreaSeries",
|
|
3105
3115
|
"BarSeries",
|
|
3116
|
+
"CategoryBarChart",
|
|
3106
3117
|
"ChartAxis",
|
|
3107
3118
|
"ChartContainer",
|
|
3108
3119
|
"ChartEventMarkers",
|
package/dist/form/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { d as DialogForm, m as DialogFormProps, g as DrawerForm, n as DrawerFormProps, F as FormActions, o as FormActionsProps, i as FormDivider, j as FormGrid, p as FormGridProps, k as FormSection, q as FormSectionProps, l as FormStepper, r as FormStepperProps, S as SaveBar, s as SaveBarProps, t as Step, U as UnsavedChangesPrompt, v as UnsavedChangesPromptProps, w as UseWizardOptions, W as WizardStep, u as useWizard } from '../index-BdDvAxFM.cjs';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
package/dist/form/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { d as DialogForm, m as DialogFormProps, g as DrawerForm, n as DrawerFormProps, F as FormActions, o as FormActionsProps, i as FormDivider, j as FormGrid, p as FormGridProps, k as FormSection, q as FormSectionProps, l as FormStepper, r as FormStepperProps, S as SaveBar, s as SaveBarProps, t as Step, U as UnsavedChangesPrompt, v as UnsavedChangesPromptProps, w as UseWizardOptions, W as WizardStep, u as useWizard } from '../index-BdDvAxFM.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
@@ -194,6 +194,7 @@
|
|
|
194
194
|
--color-background-modal: rgba(255, 255, 255, 0.12);
|
|
195
195
|
--color-background-input: rgba(255, 255, 255, 0.05);
|
|
196
196
|
--theme-background-canvas: linear-gradient(to bottom right, rgb(24 28 48), rgb(30 26 45), rgb(35 26 38));
|
|
197
|
+
--theme-background-ai: linear-gradient(to bottom right, rgb(46 16 101 / 0.2), rgb(31 41 55), rgb(8 47 73 / 0.2));
|
|
197
198
|
--color-text-body: #ededef;
|
|
198
199
|
--color-text-heading: #ffffff;
|
|
199
200
|
--theme-text-label: #ffffff;
|
|
@@ -207,6 +207,7 @@
|
|
|
207
207
|
--color-background-modal: rgba(0, 0, 0, 0.15);
|
|
208
208
|
--color-background-input: #ffffff;
|
|
209
209
|
--theme-background-canvas: linear-gradient(to bottom right, rgb(239 246 255), rgb(250 245 255), rgb(253 242 248));
|
|
210
|
+
--theme-background-ai: linear-gradient(to bottom right, rgb(245 243 255 / 0.5), rgb(255 255 255), rgb(240 249 255 / 0.5));
|
|
210
211
|
--color-text-body: #333333;
|
|
211
212
|
--color-text-heading: #111827;
|
|
212
213
|
--theme-text-label: #111827;
|
|
@@ -336,4 +336,4 @@ declare function useWizard({ steps, initialStepId, canNavigate }: UseWizardOptio
|
|
|
336
336
|
stepIndex: number;
|
|
337
337
|
};
|
|
338
338
|
|
|
339
|
-
export { type DialogAction as D, FormActions as F, SaveBar as S, UnsavedChangesPrompt as U, type WizardStep as W, type DialogHeaderConfig as a, type DialogFooterConfig as b,
|
|
339
|
+
export { type DialogAction as D, FormActions as F, SaveBar as S, UnsavedChangesPrompt as U, type WizardStep as W, type DialogHeaderConfig as a, type DialogFooterConfig as b, Dialog as c, DialogForm as d, type DialogProps as e, Drawer as f, DrawerForm as g, type DrawerProps as h, FormDivider as i, FormGrid as j, FormSection as k, FormStepper as l, type DialogFormProps as m, type DrawerFormProps as n, type FormActionsProps as o, type FormGridProps as p, type FormSectionProps as q, type FormStepperProps as r, type SaveBarProps as s, type Step as t, useWizard as u, type UnsavedChangesPromptProps as v, type UseWizardOptions as w };
|
|
@@ -336,4 +336,4 @@ declare function useWizard({ steps, initialStepId, canNavigate }: UseWizardOptio
|
|
|
336
336
|
stepIndex: number;
|
|
337
337
|
};
|
|
338
338
|
|
|
339
|
-
export { type DialogAction as D, FormActions as F, SaveBar as S, UnsavedChangesPrompt as U, type WizardStep as W, type DialogHeaderConfig as a, type DialogFooterConfig as b,
|
|
339
|
+
export { type DialogAction as D, FormActions as F, SaveBar as S, UnsavedChangesPrompt as U, type WizardStep as W, type DialogHeaderConfig as a, type DialogFooterConfig as b, Dialog as c, DialogForm as d, type DialogProps as e, Drawer as f, DrawerForm as g, type DrawerProps as h, FormDivider as i, FormGrid as j, FormSection as k, FormStepper as l, type DialogFormProps as m, type DrawerFormProps as n, type FormActionsProps as o, type FormGridProps as p, type FormSectionProps as q, type FormStepperProps as r, type SaveBarProps as s, type Step as t, useWizard as u, type UnsavedChangesPromptProps as v, type UseWizardOptions as w };
|