@discourser/design-system 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -0
- package/dist/index.cjs +121 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +203 -62
- package/dist/index.d.ts +203 -62
- package/dist/index.js +118 -96
- package/dist/index.js.map +1 -1
- package/package.json +7 -1
- package/styled-system/recipes/heading.d.ts +34 -0
- package/styled-system/recipes/heading.mjs +40 -0
- package/styled-system/recipes/index.d.ts +3 -0
- package/styled-system/recipes/index.mjs +3 -0
- package/styled-system/recipes/input-addon.d.ts +38 -0
- package/styled-system/recipes/input-addon.mjs +40 -0
- package/styled-system/recipes/input-group.d.ts +34 -0
- package/styled-system/recipes/input-group.mjs +49 -0
- package/styled-system/recipes/radio-group.d.ts +4 -0
- package/styled-system/recipes/radio-group.mjs +8 -2
- package/styled-system/tokens/index.mjs +352 -220
- package/styled-system/tokens/tokens.d.ts +13 -10
- package/styled-system/types/prop-type.d.ts +16 -1
- package/styled-system/types/style-props.d.ts +20 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import react__default, { ElementType, ComponentType, Component, JSX, ComponentPropsWithRef, ComponentProps as ComponentProps$1, RefAttributes } from 'react';
|
|
2
|
+
import react__default, { ElementType, ComponentType, Component, JSX, ComponentPropsWithRef, ComponentProps as ComponentProps$1, ReactNode, RefAttributes } from 'react';
|
|
3
3
|
import { RecipeConfig as RecipeConfig$1, SlotRecipeConfig as SlotRecipeConfig$1, GlobalStyleObject as GlobalStyleObject$1, TextStyles as TextStyles$1, LayerStyles as LayerStyles$1, PatternConfig as PatternConfig$1, RecipeVariantRecord as RecipeVariantRecord$1 } from '@pandacss/types';
|
|
4
4
|
import * as _ark_ui_react from '@ark-ui/react';
|
|
5
5
|
import { Assign as Assign$1, SelectRootProps } from '@ark-ui/react';
|
|
@@ -8,11 +8,11 @@ import { Dialog as Dialog$1, DialogContext } from '@ark-ui/react/dialog';
|
|
|
8
8
|
import { Switch as Switch$1, SwitchContext } from '@ark-ui/react/switch';
|
|
9
9
|
import { Accordion as Accordion$1, AccordionContext } from '@ark-ui/react/accordion';
|
|
10
10
|
import { Tabs as Tabs$1, TabsContext } from '@ark-ui/react/tabs';
|
|
11
|
+
import { Field } from '@ark-ui/react/field';
|
|
11
12
|
import { Checkbox as Checkbox$1, CheckboxCheckedState, CheckboxGroupProvider } from '@ark-ui/react/checkbox';
|
|
12
13
|
import { RadioGroup as RadioGroup$1, RadioGroupContext } from '@ark-ui/react/radio-group';
|
|
13
14
|
import { Select as Select$1, SelectContext, SelectItemContext, SelectValueChangeDetails } from '@ark-ui/react/select';
|
|
14
15
|
import { Slider as Slider$1, SliderContext } from '@ark-ui/react/slider';
|
|
15
|
-
import { Field } from '@ark-ui/react/field';
|
|
16
16
|
import { Avatar as Avatar$1, AvatarContext } from '@ark-ui/react/avatar';
|
|
17
17
|
import { Progress as Progress$1 } from '@ark-ui/react/progress';
|
|
18
18
|
import { createToaster } from '@ark-ui/react/toast';
|
|
@@ -11814,20 +11814,14 @@ type Nested<P> = P & {
|
|
|
11814
11814
|
}
|
|
11815
11815
|
|
|
11816
11816
|
/* eslint-disable */
|
|
11817
|
-
type Token$1 = `aspectRatios.${AspectRatioToken}` | `borders.${BorderToken}` | `
|
|
11817
|
+
type Token$1 = `aspectRatios.${AspectRatioToken}` | `borders.${BorderToken}` | `blurs.${BlurToken}` | `sizes.${SizeToken}` | `animations.${AnimationToken}` | `colors.${ColorToken}` | `fonts.${FontToken}` | `fontSizes.${FontSizeToken}` | `lineHeights.${LineHeightToken}` | `fontWeights.${FontWeightToken}` | `letterSpacings.${LetterSpacingToken}` | `spacing.${SpacingToken}` | `radii.${RadiusToken}` | `shadows.${ShadowToken}` | `durations.${DurationToken}` | `easings.${EasingToken}` | `borderWidths.${BorderWidthToken}` | `breakpoints.${BreakpointToken}`
|
|
11818
11818
|
|
|
11819
11819
|
type AspectRatioToken = "square" | "landscape" | "portrait" | "wide" | "ultrawide" | "golden"
|
|
11820
11820
|
|
|
11821
11821
|
type BorderToken = "none"
|
|
11822
11822
|
|
|
11823
|
-
type RadiusToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "full" | "l1" | "l2" | "l3"
|
|
11824
|
-
|
|
11825
|
-
type ShadowToken = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inset-2xs" | "inset-xs" | "inset-sm" | "inset"
|
|
11826
|
-
|
|
11827
11823
|
type BlurToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl"
|
|
11828
11824
|
|
|
11829
|
-
type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5" | "-4.5" | "-5.5"
|
|
11830
|
-
|
|
11831
11825
|
type SizeToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "prose" | "full" | "min" | "max" | "fit" | "breakpoint-sm" | "breakpoint-md" | "breakpoint-lg" | "breakpoint-xl" | "breakpoint-2xl"
|
|
11832
11826
|
|
|
11833
11827
|
type AnimationToken = "spin" | "ping" | "pulse" | "bounce"
|
|
@@ -11844,19 +11838,24 @@ type FontWeightToken = "400" | "500" | "thin" | "extralight" | "light" | "normal
|
|
|
11844
11838
|
|
|
11845
11839
|
type LetterSpacingToken = "tighter" | "tight" | "normal" | "wide" | "wider" | "widest" | "displayLarge" | "displayMedium" | "displaySmall" | "headlineLarge" | "headlineMedium" | "headlineSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "labelLarge" | "labelMedium" | "labelSmall"
|
|
11846
11840
|
|
|
11841
|
+
type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "none" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5" | "-4.5" | "-5.5" | "-none" | "-xxs" | "-xs" | "-sm" | "-md" | "-lg" | "-xl" | "-xxl" | "-xxxl"
|
|
11842
|
+
|
|
11843
|
+
type RadiusToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "none" | "extraSmall" | "small" | "medium" | "large" | "extraLarge" | "full" | "l1" | "l2" | "l3"
|
|
11844
|
+
|
|
11845
|
+
type ShadowToken = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inset-2xs" | "inset-xs" | "inset-sm" | "level0" | "level1" | "level2" | "level3" | "level4" | "level5" | "inset"
|
|
11846
|
+
|
|
11847
11847
|
type DurationToken = "fastest" | "faster" | "slowest" | "instant" | "fast" | "normal" | "slow" | "slower"
|
|
11848
11848
|
|
|
11849
11849
|
type EasingToken = "default" | "linear" | "in" | "out" | "in-out" | "standard" | "standardDecelerate" | "standardAccelerate" | "emphasized" | "emphasizedDecelerate" | "emphasizedAccelerate"
|
|
11850
11850
|
|
|
11851
|
+
type BorderWidthToken = "thin" | "medium" | "thick"
|
|
11852
|
+
|
|
11851
11853
|
type BreakpointToken = "sm" | "md" | "lg" | "xl" | "2xl"
|
|
11852
11854
|
|
|
11853
11855
|
type Tokens = {
|
|
11854
11856
|
aspectRatios: AspectRatioToken
|
|
11855
11857
|
borders: BorderToken
|
|
11856
|
-
radii: RadiusToken
|
|
11857
|
-
shadows: ShadowToken
|
|
11858
11858
|
blurs: BlurToken
|
|
11859
|
-
spacing: SpacingToken
|
|
11860
11859
|
sizes: SizeToken
|
|
11861
11860
|
animations: AnimationToken
|
|
11862
11861
|
colors: ColorToken
|
|
@@ -11865,8 +11864,12 @@ type Tokens = {
|
|
|
11865
11864
|
lineHeights: LineHeightToken
|
|
11866
11865
|
fontWeights: FontWeightToken
|
|
11867
11866
|
letterSpacings: LetterSpacingToken
|
|
11867
|
+
spacing: SpacingToken
|
|
11868
|
+
radii: RadiusToken
|
|
11869
|
+
shadows: ShadowToken
|
|
11868
11870
|
durations: DurationToken
|
|
11869
11871
|
easings: EasingToken
|
|
11872
|
+
borderWidths: BorderWidthToken
|
|
11870
11873
|
breakpoints: BreakpointToken
|
|
11871
11874
|
} & { [token: string]: never }
|
|
11872
11875
|
|
|
@@ -11925,6 +11928,7 @@ interface UtilityValues {
|
|
|
11925
11928
|
marginInlineStart: "auto" | Tokens["spacing"];
|
|
11926
11929
|
spaceX: "auto" | Tokens["spacing"] | CssProperties["marginInlineStart"];
|
|
11927
11930
|
spaceY: "auto" | Tokens["spacing"] | CssProperties["marginBlockStart"];
|
|
11931
|
+
outlineWidth: Tokens["borderWidths"];
|
|
11928
11932
|
outlineColor: Tokens["colors"];
|
|
11929
11933
|
outline: Tokens["borders"];
|
|
11930
11934
|
outlineOffset: Tokens["spacing"];
|
|
@@ -11932,8 +11936,10 @@ interface UtilityValues {
|
|
|
11932
11936
|
focusVisibleRing: "outside" | "inside" | "mixed" | "none";
|
|
11933
11937
|
focusRingColor: Tokens["colors"];
|
|
11934
11938
|
focusRingOffset: Tokens["spacing"];
|
|
11935
|
-
focusRingWidth: CssProperties["outlineWidth"];
|
|
11939
|
+
focusRingWidth: Tokens["borderWidths"] | CssProperties["outlineWidth"];
|
|
11936
11940
|
focusRingStyle: CssProperties["outlineStyle"];
|
|
11941
|
+
divideX: Tokens["borderWidths"];
|
|
11942
|
+
divideY: Tokens["borderWidths"];
|
|
11937
11943
|
divideColor: Tokens["colors"];
|
|
11938
11944
|
divideStyle: CssProperties["borderStyle"];
|
|
11939
11945
|
width: "auto" | Tokens["sizes"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | "screen";
|
|
@@ -11988,18 +11994,29 @@ interface UtilityValues {
|
|
|
11988
11994
|
borderEndEndRadius: Tokens["radii"];
|
|
11989
11995
|
borderEndRadius: Tokens["radii"] | CssProperties["borderRadius"];
|
|
11990
11996
|
border: Tokens["borders"];
|
|
11997
|
+
borderWidth: Tokens["borderWidths"];
|
|
11998
|
+
borderTopWidth: Tokens["borderWidths"];
|
|
11999
|
+
borderLeftWidth: Tokens["borderWidths"];
|
|
12000
|
+
borderRightWidth: Tokens["borderWidths"];
|
|
12001
|
+
borderBottomWidth: Tokens["borderWidths"];
|
|
12002
|
+
borderBlockStartWidth: Tokens["borderWidths"];
|
|
12003
|
+
borderBlockEndWidth: Tokens["borderWidths"];
|
|
11991
12004
|
borderColor: Tokens["colors"];
|
|
11992
12005
|
borderInline: Tokens["borders"];
|
|
12006
|
+
borderInlineWidth: Tokens["borderWidths"];
|
|
11993
12007
|
borderInlineColor: Tokens["colors"];
|
|
11994
12008
|
borderBlock: Tokens["borders"];
|
|
12009
|
+
borderBlockWidth: Tokens["borderWidths"];
|
|
11995
12010
|
borderBlockColor: Tokens["colors"];
|
|
11996
12011
|
borderLeft: Tokens["borders"];
|
|
11997
12012
|
borderLeftColor: Tokens["colors"];
|
|
11998
12013
|
borderInlineStart: Tokens["borders"];
|
|
12014
|
+
borderInlineStartWidth: Tokens["borderWidths"];
|
|
11999
12015
|
borderInlineStartColor: Tokens["colors"];
|
|
12000
12016
|
borderRight: Tokens["borders"];
|
|
12001
12017
|
borderRightColor: Tokens["colors"];
|
|
12002
12018
|
borderInlineEnd: Tokens["borders"];
|
|
12019
|
+
borderInlineEndWidth: Tokens["borderWidths"];
|
|
12003
12020
|
borderInlineEndColor: Tokens["colors"];
|
|
12004
12021
|
borderTop: Tokens["borders"];
|
|
12005
12022
|
borderTopColor: Tokens["colors"];
|
|
@@ -12073,6 +12090,7 @@ interface UtilityValues {
|
|
|
12073
12090
|
scrollSnapMarginRight: Tokens["spacing"];
|
|
12074
12091
|
fill: Tokens["colors"];
|
|
12075
12092
|
stroke: Tokens["colors"];
|
|
12093
|
+
strokeWidth: Tokens["borderWidths"];
|
|
12076
12094
|
srOnly: boolean;
|
|
12077
12095
|
debug: boolean;
|
|
12078
12096
|
containerName: CssProperties["containerName"];
|
|
@@ -12934,7 +12952,7 @@ borderBlockEndStyle?: ConditionalValue<CssVars | CssProperties["borderBlockEndSt
|
|
|
12934
12952
|
*
|
|
12935
12953
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
|
|
12936
12954
|
*/
|
|
12937
|
-
borderBlockEndWidth?: ConditionalValue<CssProperties["borderBlockEndWidth"] | AnyString>
|
|
12955
|
+
borderBlockEndWidth?: ConditionalValue<UtilityValues["borderBlockEndWidth"] | CssVars | CssProperties["borderBlockEndWidth"] | AnyString>
|
|
12938
12956
|
/**
|
|
12939
12957
|
* The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
|
|
12940
12958
|
*
|
|
@@ -12988,7 +13006,7 @@ borderBlockStartStyle?: ConditionalValue<CssVars | CssProperties["borderBlockSta
|
|
|
12988
13006
|
*
|
|
12989
13007
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
|
|
12990
13008
|
*/
|
|
12991
|
-
borderBlockStartWidth?: ConditionalValue<CssProperties["borderBlockStartWidth"] | AnyString>
|
|
13009
|
+
borderBlockStartWidth?: ConditionalValue<UtilityValues["borderBlockStartWidth"] | CssVars | CssProperties["borderBlockStartWidth"] | AnyString>
|
|
12992
13010
|
/**
|
|
12993
13011
|
* The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
12994
13012
|
*
|
|
@@ -13016,7 +13034,7 @@ borderBlockStyle?: ConditionalValue<CssVars | CssProperties["borderBlockStyle"]
|
|
|
13016
13034
|
*
|
|
13017
13035
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
13018
13036
|
*/
|
|
13019
|
-
borderBlockWidth?: ConditionalValue<CssProperties["borderBlockWidth"] | AnyString>
|
|
13037
|
+
borderBlockWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | AnyString>
|
|
13020
13038
|
/**
|
|
13021
13039
|
* The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
|
|
13022
13040
|
*
|
|
@@ -13100,7 +13118,7 @@ borderBottomStyle?: ConditionalValue<CssVars | CssProperties["borderBottomStyle"
|
|
|
13100
13118
|
*
|
|
13101
13119
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
|
|
13102
13120
|
*/
|
|
13103
|
-
borderBottomWidth?: ConditionalValue<CssProperties["borderBottomWidth"] | AnyString>
|
|
13121
|
+
borderBottomWidth?: ConditionalValue<UtilityValues["borderBottomWidth"] | CssVars | CssProperties["borderBottomWidth"] | AnyString>
|
|
13104
13122
|
/**
|
|
13105
13123
|
* The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
|
|
13106
13124
|
*
|
|
@@ -13320,7 +13338,7 @@ borderInlineEndStyle?: ConditionalValue<CssVars | CssProperties["borderInlineEnd
|
|
|
13320
13338
|
*
|
|
13321
13339
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
|
|
13322
13340
|
*/
|
|
13323
|
-
borderInlineEndWidth?: ConditionalValue<CssProperties["borderInlineEndWidth"] | AnyString>
|
|
13341
|
+
borderInlineEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | AnyString>
|
|
13324
13342
|
/**
|
|
13325
13343
|
* The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
|
|
13326
13344
|
*
|
|
@@ -13376,7 +13394,7 @@ borderInlineStartStyle?: ConditionalValue<CssVars | CssProperties["borderInlineS
|
|
|
13376
13394
|
*
|
|
13377
13395
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
|
|
13378
13396
|
*/
|
|
13379
|
-
borderInlineStartWidth?: ConditionalValue<CssProperties["borderInlineStartWidth"] | AnyString>
|
|
13397
|
+
borderInlineStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | AnyString>
|
|
13380
13398
|
/**
|
|
13381
13399
|
* The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
13382
13400
|
*
|
|
@@ -13404,7 +13422,7 @@ borderInlineStyle?: ConditionalValue<CssVars | CssProperties["borderInlineStyle"
|
|
|
13404
13422
|
*
|
|
13405
13423
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
|
13406
13424
|
*/
|
|
13407
|
-
borderInlineWidth?: ConditionalValue<CssProperties["borderInlineWidth"] | AnyString>
|
|
13425
|
+
borderInlineWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | AnyString>
|
|
13408
13426
|
/**
|
|
13409
13427
|
* The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
|
|
13410
13428
|
*
|
|
@@ -13458,7 +13476,7 @@ borderLeftStyle?: ConditionalValue<CssVars | CssProperties["borderLeftStyle"] |
|
|
|
13458
13476
|
*
|
|
13459
13477
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
|
|
13460
13478
|
*/
|
|
13461
|
-
borderLeftWidth?: ConditionalValue<CssProperties["borderLeftWidth"] | AnyString>
|
|
13479
|
+
borderLeftWidth?: ConditionalValue<UtilityValues["borderLeftWidth"] | CssVars | CssProperties["borderLeftWidth"] | AnyString>
|
|
13462
13480
|
/**
|
|
13463
13481
|
* The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
|
|
13464
13482
|
*
|
|
@@ -13525,7 +13543,7 @@ borderRightStyle?: ConditionalValue<CssVars | CssProperties["borderRightStyle"]
|
|
|
13525
13543
|
*
|
|
13526
13544
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
|
|
13527
13545
|
*/
|
|
13528
|
-
borderRightWidth?: ConditionalValue<CssProperties["borderRightWidth"] | AnyString>
|
|
13546
|
+
borderRightWidth?: ConditionalValue<UtilityValues["borderRightWidth"] | CssVars | CssProperties["borderRightWidth"] | AnyString>
|
|
13529
13547
|
/**
|
|
13530
13548
|
* The **`border-spacing`** CSS property sets the distance between the borders of adjacent cells in a `<table>`. This property applies only when `border-collapse` is `separate`.
|
|
13531
13549
|
*
|
|
@@ -13663,7 +13681,7 @@ borderTopStyle?: ConditionalValue<CssVars | CssProperties["borderTopStyle"] | An
|
|
|
13663
13681
|
*
|
|
13664
13682
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
|
|
13665
13683
|
*/
|
|
13666
|
-
borderTopWidth?: ConditionalValue<CssProperties["borderTopWidth"] | AnyString>
|
|
13684
|
+
borderTopWidth?: ConditionalValue<UtilityValues["borderTopWidth"] | CssVars | CssProperties["borderTopWidth"] | AnyString>
|
|
13667
13685
|
/**
|
|
13668
13686
|
* The **`border-width`** shorthand CSS property sets the width of an element's border.
|
|
13669
13687
|
*
|
|
@@ -13675,7 +13693,7 @@ borderTopWidth?: ConditionalValue<CssProperties["borderTopWidth"] | AnyString>
|
|
|
13675
13693
|
*
|
|
13676
13694
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-width
|
|
13677
13695
|
*/
|
|
13678
|
-
borderWidth?: ConditionalValue<CssProperties["borderWidth"] | AnyString>
|
|
13696
|
+
borderWidth?: ConditionalValue<UtilityValues["borderWidth"] | CssVars | CssProperties["borderWidth"] | AnyString>
|
|
13679
13697
|
/**
|
|
13680
13698
|
* The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
|
|
13681
13699
|
*
|
|
@@ -16267,7 +16285,7 @@ outlineStyle?: ConditionalValue<CssVars | CssProperties["outlineStyle"] | AnyStr
|
|
|
16267
16285
|
*
|
|
16268
16286
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-width
|
|
16269
16287
|
*/
|
|
16270
|
-
outlineWidth?: ConditionalValue<CssProperties["outlineWidth"] | AnyString>
|
|
16288
|
+
outlineWidth?: ConditionalValue<UtilityValues["outlineWidth"] | CssVars | CssProperties["outlineWidth"] | AnyString>
|
|
16271
16289
|
/**
|
|
16272
16290
|
* The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.
|
|
16273
16291
|
*
|
|
@@ -17420,7 +17438,7 @@ shapeOutside?: ConditionalValue<CssProperties["shapeOutside"] | AnyString>
|
|
|
17420
17438
|
strokeLinejoin?: ConditionalValue<CssProperties["strokeLinejoin"] | AnyString>
|
|
17421
17439
|
strokeMiterlimit?: ConditionalValue<CssProperties["strokeMiterlimit"] | AnyString>
|
|
17422
17440
|
strokeOpacity?: ConditionalValue<CssProperties["strokeOpacity"] | AnyString>
|
|
17423
|
-
strokeWidth?: ConditionalValue<CssProperties["strokeWidth"] | AnyString>
|
|
17441
|
+
strokeWidth?: ConditionalValue<UtilityValues["strokeWidth"] | CssVars | CssProperties["strokeWidth"] | AnyString>
|
|
17424
17442
|
/**
|
|
17425
17443
|
* The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
|
|
17426
17444
|
*
|
|
@@ -18777,7 +18795,7 @@ marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | Cs
|
|
|
18777
18795
|
*
|
|
18778
18796
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-width
|
|
18779
18797
|
*/
|
|
18780
|
-
ringWidth?: ConditionalValue<CssProperties["outlineWidth"] | AnyString>
|
|
18798
|
+
ringWidth?: ConditionalValue<UtilityValues["outlineWidth"] | CssVars | CssProperties["outlineWidth"] | AnyString>
|
|
18781
18799
|
/**
|
|
18782
18800
|
* The **`outline-color`** CSS property sets the color of an element's outline.
|
|
18783
18801
|
*
|
|
@@ -19235,7 +19253,7 @@ borderX?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperti
|
|
|
19235
19253
|
*
|
|
19236
19254
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
|
19237
19255
|
*/
|
|
19238
|
-
borderXWidth?: ConditionalValue<CssProperties["borderInlineWidth"] | AnyString>
|
|
19256
|
+
borderXWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | AnyString>
|
|
19239
19257
|
/**
|
|
19240
19258
|
* The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
19241
19259
|
*
|
|
@@ -19275,7 +19293,7 @@ borderY?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssPropertie
|
|
|
19275
19293
|
*
|
|
19276
19294
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
19277
19295
|
*/
|
|
19278
|
-
borderYWidth?: ConditionalValue<CssProperties["borderBlockWidth"] | AnyString>
|
|
19296
|
+
borderYWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | AnyString>
|
|
19279
19297
|
/**
|
|
19280
19298
|
* The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
19281
19299
|
*
|
|
@@ -19315,7 +19333,7 @@ borderStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | Cs
|
|
|
19315
19333
|
*
|
|
19316
19334
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
|
|
19317
19335
|
*/
|
|
19318
|
-
borderStartWidth?: ConditionalValue<CssProperties["borderInlineStartWidth"] | AnyString>
|
|
19336
|
+
borderStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | AnyString>
|
|
19319
19337
|
/**
|
|
19320
19338
|
* The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
19321
19339
|
*
|
|
@@ -19357,7 +19375,7 @@ borderEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssPro
|
|
|
19357
19375
|
*
|
|
19358
19376
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
|
|
19359
19377
|
*/
|
|
19360
|
-
borderEndWidth?: ConditionalValue<CssProperties["borderInlineEndWidth"] | AnyString>
|
|
19378
|
+
borderEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | AnyString>
|
|
19361
19379
|
/**
|
|
19362
19380
|
* The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
19363
19381
|
*
|
|
@@ -19448,8 +19466,8 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars
|
|
|
19448
19466
|
focusRingOffset?: ConditionalValue<UtilityValues["focusRingOffset"] | CssVars | AnyString>
|
|
19449
19467
|
focusRingWidth?: ConditionalValue<UtilityValues["focusRingWidth"] | CssVars | AnyString>
|
|
19450
19468
|
focusRingStyle?: ConditionalValue<UtilityValues["focusRingStyle"] | CssVars | AnyString>
|
|
19451
|
-
divideX?: ConditionalValue<
|
|
19452
|
-
divideY?: ConditionalValue<
|
|
19469
|
+
divideX?: ConditionalValue<UtilityValues["divideX"] | CssVars | AnyString>
|
|
19470
|
+
divideY?: ConditionalValue<UtilityValues["divideY"] | CssVars | AnyString>
|
|
19453
19471
|
divideColor?: ConditionalValue<UtilityValues["divideColor"] | CssVars | AnyString>
|
|
19454
19472
|
divideStyle?: ConditionalValue<UtilityValues["divideStyle"] | CssVars | AnyString>
|
|
19455
19473
|
boxSize?: ConditionalValue<UtilityValues["boxSize"] | CssVars | AnyString>
|
|
@@ -20328,6 +20346,46 @@ type ButtonVariantProps = {
|
|
|
20328
20346
|
/* eslint-disable */
|
|
20329
20347
|
|
|
20330
20348
|
|
|
20349
|
+
interface InputVariant {
|
|
20350
|
+
/**
|
|
20351
|
+
* @default "outline"
|
|
20352
|
+
*/
|
|
20353
|
+
variant: "outline" | "surface" | "subtle" | "flushed"
|
|
20354
|
+
/**
|
|
20355
|
+
* @default "md"
|
|
20356
|
+
*/
|
|
20357
|
+
size: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl"
|
|
20358
|
+
}
|
|
20359
|
+
|
|
20360
|
+
|
|
20361
|
+
|
|
20362
|
+
type InputVariantProps = {
|
|
20363
|
+
[key in keyof InputVariant]?: ConditionalValue<InputVariant[key]> | undefined
|
|
20364
|
+
}
|
|
20365
|
+
|
|
20366
|
+
/* eslint-disable */
|
|
20367
|
+
|
|
20368
|
+
|
|
20369
|
+
interface InputAddonVariant {
|
|
20370
|
+
/**
|
|
20371
|
+
* @default "outline"
|
|
20372
|
+
*/
|
|
20373
|
+
variant: "outline" | "surface" | "subtle"
|
|
20374
|
+
/**
|
|
20375
|
+
* @default "md"
|
|
20376
|
+
*/
|
|
20377
|
+
size: "xs" | "sm" | "md" | "lg" | "xl"
|
|
20378
|
+
}
|
|
20379
|
+
|
|
20380
|
+
|
|
20381
|
+
|
|
20382
|
+
type InputAddonVariantProps = {
|
|
20383
|
+
[key in keyof InputAddonVariant]?: ConditionalValue<InputAddonVariant[key]> | undefined
|
|
20384
|
+
}
|
|
20385
|
+
|
|
20386
|
+
/* eslint-disable */
|
|
20387
|
+
|
|
20388
|
+
|
|
20331
20389
|
interface GroupVariant {
|
|
20332
20390
|
/**
|
|
20333
20391
|
* @default "horizontal"
|
|
@@ -20378,6 +20436,22 @@ type AbsoluteCenterVariantProps = {
|
|
|
20378
20436
|
/* eslint-disable */
|
|
20379
20437
|
|
|
20380
20438
|
|
|
20439
|
+
interface HeadingVariant {
|
|
20440
|
+
/**
|
|
20441
|
+
* @default "xl"
|
|
20442
|
+
*/
|
|
20443
|
+
size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl"
|
|
20444
|
+
}
|
|
20445
|
+
|
|
20446
|
+
|
|
20447
|
+
|
|
20448
|
+
type HeadingVariantProps = {
|
|
20449
|
+
[key in keyof HeadingVariant]?: ConditionalValue<HeadingVariant[key]> | undefined
|
|
20450
|
+
}
|
|
20451
|
+
|
|
20452
|
+
/* eslint-disable */
|
|
20453
|
+
|
|
20454
|
+
|
|
20381
20455
|
interface BadgeVariant {
|
|
20382
20456
|
/**
|
|
20383
20457
|
* @default "subtle"
|
|
@@ -20439,6 +20513,37 @@ type TextareaVariantProps = {
|
|
|
20439
20513
|
/* eslint-disable */
|
|
20440
20514
|
|
|
20441
20515
|
|
|
20516
|
+
interface InputGroupVariant {
|
|
20517
|
+
/**
|
|
20518
|
+
* @default "md"
|
|
20519
|
+
*/
|
|
20520
|
+
size: "xs" | "sm" | "md" | "lg" | "xl"
|
|
20521
|
+
}
|
|
20522
|
+
|
|
20523
|
+
type InputGroupVariantMap = {
|
|
20524
|
+
[key in keyof InputGroupVariant]: Array<InputGroupVariant[key]>
|
|
20525
|
+
}
|
|
20526
|
+
|
|
20527
|
+
type InputGroupSlot = "root" | "element"
|
|
20528
|
+
|
|
20529
|
+
type InputGroupVariantProps = {
|
|
20530
|
+
[key in keyof InputGroupVariant]?: ConditionalValue<InputGroupVariant[key]> | undefined
|
|
20531
|
+
}
|
|
20532
|
+
|
|
20533
|
+
interface InputGroupRecipe {
|
|
20534
|
+
__slot: InputGroupSlot
|
|
20535
|
+
__type: InputGroupVariantProps
|
|
20536
|
+
(props?: InputGroupVariantProps): Pretty<Record<InputGroupSlot, string>>
|
|
20537
|
+
raw: (props?: InputGroupVariantProps) => InputGroupVariantProps
|
|
20538
|
+
variantMap: InputGroupVariantMap
|
|
20539
|
+
variantKeys: Array<keyof InputGroupVariant>
|
|
20540
|
+
splitVariantProps<Props extends InputGroupVariantProps>(props: Props): [InputGroupVariantProps, Pretty<DistributiveOmit<Props, keyof InputGroupVariantProps>>]
|
|
20541
|
+
getVariantProps: (props?: InputGroupVariantProps) => InputGroupVariantProps
|
|
20542
|
+
}
|
|
20543
|
+
|
|
20544
|
+
/* eslint-disable */
|
|
20545
|
+
|
|
20546
|
+
|
|
20442
20547
|
interface CardVariant {
|
|
20443
20548
|
/**
|
|
20444
20549
|
* @default "outline"
|
|
@@ -20655,6 +20760,10 @@ variant: "solid"
|
|
|
20655
20760
|
* @default "md"
|
|
20656
20761
|
*/
|
|
20657
20762
|
size: "sm" | "md" | "lg"
|
|
20763
|
+
/**
|
|
20764
|
+
* @default "vertical"
|
|
20765
|
+
*/
|
|
20766
|
+
orientation: "horizontal" | "vertical"
|
|
20658
20767
|
}
|
|
20659
20768
|
|
|
20660
20769
|
type RadioGroupVariantMap = {
|
|
@@ -20916,8 +21025,8 @@ declare namespace Button$1 {
|
|
|
20916
21025
|
export { Button$1_Button as Button, Button$1_ButtonGroup as ButtonGroup, type Button$1_ButtonGroupProps as ButtonGroupProps, type Button$1_ButtonProps as ButtonProps };
|
|
20917
21026
|
}
|
|
20918
21027
|
|
|
20919
|
-
type RootProps$
|
|
20920
|
-
declare const Root$
|
|
21028
|
+
type RootProps$e = ComponentProps$1<typeof Root$e>;
|
|
21029
|
+
declare const Root$e: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, CardRecipe>;
|
|
20921
21030
|
declare const Header$3: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>>;
|
|
20922
21031
|
declare const Body$3: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>>;
|
|
20923
21032
|
declare const Footer$3: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>>;
|
|
@@ -20934,11 +21043,11 @@ declare const Card: {
|
|
|
20934
21043
|
|
|
20935
21044
|
declare const Card$1_Card: typeof Card;
|
|
20936
21045
|
declare namespace Card$1 {
|
|
20937
|
-
export { Body$3 as Body, Card$1_Card as Card, Description$3 as Description, Footer$3 as Footer, Header$3 as Header, Root$
|
|
21046
|
+
export { Body$3 as Body, Card$1_Card as Card, Description$3 as Description, Footer$3 as Footer, Header$3 as Header, Root$e as Root, type RootProps$e as RootProps, Title$3 as Title };
|
|
20938
21047
|
}
|
|
20939
21048
|
|
|
20940
|
-
declare const Root$
|
|
20941
|
-
type RootProps$
|
|
21049
|
+
declare const Root$d: undefined<(props: Dialog$1.RootProps) => react_jsx_runtime.JSX.Element, DialogRecipe>;
|
|
21050
|
+
type RootProps$d = ComponentProps$1<typeof Root$d>;
|
|
20942
21051
|
declare const Backdrop$1: undefined<react.ForwardRefExoticComponent<Dialog$1.BackdropProps & react.RefAttributes<HTMLDivElement>>>;
|
|
20943
21052
|
declare const CloseTrigger$2: undefined<react.ForwardRefExoticComponent<Dialog$1.CloseTriggerProps & react.RefAttributes<HTMLButtonElement>>>;
|
|
20944
21053
|
declare const Content$5: undefined<react.ForwardRefExoticComponent<Dialog$1.ContentProps & react.RefAttributes<HTMLDivElement>>>;
|
|
@@ -20951,7 +21060,7 @@ declare const Header$2: undefined<react.ForwardRefExoticComponent<react.ClassAtt
|
|
|
20951
21060
|
declare const Footer$2: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>>;
|
|
20952
21061
|
|
|
20953
21062
|
declare namespace Dialog {
|
|
20954
|
-
export { Backdrop$1 as Backdrop, Body$2 as Body, CloseTrigger$2 as CloseTrigger, Content$5 as Content, DialogContext as Context, Description$2 as Description, Footer$2 as Footer, Header$2 as Header, Positioner$3 as Positioner, Root$
|
|
21063
|
+
export { Backdrop$1 as Backdrop, Body$2 as Body, CloseTrigger$2 as CloseTrigger, Content$5 as Content, DialogContext as Context, Description$2 as Description, Footer$2 as Footer, Header$2 as Header, Positioner$3 as Positioner, Root$d as Root, type RootProps$d as RootProps, Title$2 as Title, Trigger$4 as Trigger };
|
|
20955
21064
|
}
|
|
20956
21065
|
|
|
20957
21066
|
interface IconButtonProps extends ButtonProps {
|
|
@@ -20964,19 +21073,19 @@ declare namespace IconButton$1 {
|
|
|
20964
21073
|
export { IconButton$1_IconButton as IconButton, type IconButton$1_IconButtonProps as IconButtonProps };
|
|
20965
21074
|
}
|
|
20966
21075
|
|
|
20967
|
-
type RootProps$
|
|
20968
|
-
declare const Root$
|
|
21076
|
+
type RootProps$c = ComponentProps$1<typeof Root$c>;
|
|
21077
|
+
declare const Root$c: undefined<react.ForwardRefExoticComponent<Switch$1.RootProps & react.RefAttributes<HTMLLabelElement>>, SwitchComponentRecipe>;
|
|
20969
21078
|
declare const Label$5: undefined<react.ForwardRefExoticComponent<Switch$1.LabelProps & react.RefAttributes<HTMLSpanElement>>>;
|
|
20970
21079
|
declare const Thumb$1: undefined<react.ForwardRefExoticComponent<Switch$1.ThumbProps & react.RefAttributes<HTMLSpanElement>>>;
|
|
20971
21080
|
declare const HiddenInput$2: react.ForwardRefExoticComponent<Switch$1.HiddenInputProps & react.RefAttributes<HTMLInputElement>>;
|
|
20972
21081
|
declare const Control$3: undefined<react.ForwardRefExoticComponent<Switch$1.ControlProps & react.RefAttributes<HTMLSpanElement>>>;
|
|
20973
21082
|
|
|
20974
21083
|
declare namespace Switch {
|
|
20975
|
-
export { SwitchContext as Context, Control$3 as Control, HiddenInput$2 as HiddenInput, Label$5 as Label, Root$
|
|
21084
|
+
export { SwitchContext as Context, Control$3 as Control, HiddenInput$2 as HiddenInput, Label$5 as Label, Root$c as Root, type RootProps$c as RootProps, Thumb$1 as Thumb };
|
|
20976
21085
|
}
|
|
20977
21086
|
|
|
20978
|
-
type RootProps$
|
|
20979
|
-
declare const Root$
|
|
21087
|
+
type RootProps$b = ComponentProps$1<typeof Root$b>;
|
|
21088
|
+
declare const Root$b: undefined<react.ForwardRefExoticComponent<Accordion$1.RootProps & react.RefAttributes<HTMLDivElement>>, AccordionRecipe>;
|
|
20980
21089
|
declare const RootProvider$7: undefined<react.ForwardRefExoticComponent<Accordion$1.RootProviderProps & react.RefAttributes<HTMLDivElement>>, AccordionRecipe>;
|
|
20981
21090
|
declare const Item$2: undefined<react.ForwardRefExoticComponent<Accordion$1.ItemProps & react.RefAttributes<HTMLDivElement>>>;
|
|
20982
21091
|
declare const ItemContent: undefined<react.ForwardRefExoticComponent<Accordion$1.ItemContentProps & react.RefAttributes<HTMLDivElement>>>;
|
|
@@ -20988,11 +21097,11 @@ declare const Accordion_ItemBody: typeof ItemBody;
|
|
|
20988
21097
|
declare const Accordion_ItemContent: typeof ItemContent;
|
|
20989
21098
|
declare const Accordion_ItemTrigger: typeof ItemTrigger;
|
|
20990
21099
|
declare namespace Accordion {
|
|
20991
|
-
export { AccordionContext as Context, Item$2 as Item, Accordion_ItemBody as ItemBody, Accordion_ItemContent as ItemContent, ItemIndicator$1 as ItemIndicator, Accordion_ItemTrigger as ItemTrigger, Root$
|
|
21100
|
+
export { AccordionContext as Context, Item$2 as Item, Accordion_ItemBody as ItemBody, Accordion_ItemContent as ItemContent, ItemIndicator$1 as ItemIndicator, Accordion_ItemTrigger as ItemTrigger, Root$b as Root, type RootProps$b as RootProps, RootProvider$7 as RootProvider };
|
|
20992
21101
|
}
|
|
20993
21102
|
|
|
20994
|
-
type RootProps$
|
|
20995
|
-
declare const Root$
|
|
21103
|
+
type RootProps$a = ComponentProps$1<typeof Root$a>;
|
|
21104
|
+
declare const Root$a: undefined<(props: Dialog$1.RootProps) => react_jsx_runtime.JSX.Element, DrawerRecipe>;
|
|
20996
21105
|
declare const RootProvider$6: undefined<(props: Dialog$1.RootProps) => react_jsx_runtime.JSX.Element, DrawerRecipe>;
|
|
20997
21106
|
declare const Backdrop: undefined<react.ForwardRefExoticComponent<Dialog$1.BackdropProps & react.RefAttributes<HTMLDivElement>>>;
|
|
20998
21107
|
declare const Positioner$2: undefined<react.ForwardRefExoticComponent<Dialog$1.PositionerProps & react.RefAttributes<HTMLDivElement>>>;
|
|
@@ -21007,11 +21116,11 @@ declare const Footer$1: undefined<react.ForwardRefExoticComponent<react.ClassAtt
|
|
|
21007
21116
|
|
|
21008
21117
|
declare const Drawer_Backdrop: typeof Backdrop;
|
|
21009
21118
|
declare namespace Drawer {
|
|
21010
|
-
export { Drawer_Backdrop as Backdrop, Body$1 as Body, CloseTrigger$1 as CloseTrigger, Content$4 as Content, DialogContext as Context, Description$1 as Description, Footer$1 as Footer, Header$1 as Header, Positioner$2 as Positioner, Root$
|
|
21119
|
+
export { Drawer_Backdrop as Backdrop, Body$1 as Body, CloseTrigger$1 as CloseTrigger, Content$4 as Content, DialogContext as Context, Description$1 as Description, Footer$1 as Footer, Header$1 as Header, Positioner$2 as Positioner, Root$a as Root, type RootProps$a as RootProps, RootProvider$6 as RootProvider, Title$1 as Title, Trigger$3 as Trigger };
|
|
21011
21120
|
}
|
|
21012
21121
|
|
|
21013
|
-
type RootProps$
|
|
21014
|
-
declare const Root$
|
|
21122
|
+
type RootProps$9 = ComponentProps$1<typeof Root$9>;
|
|
21123
|
+
declare const Root$9: undefined<react.ForwardRefExoticComponent<Tabs$1.RootProps & react.RefAttributes<HTMLDivElement>>, TabsRecipe>;
|
|
21015
21124
|
declare const RootProvider$5: undefined<react.ForwardRefExoticComponent<Tabs$1.RootProviderProps & react.RefAttributes<HTMLDivElement>>, TabsRecipe>;
|
|
21016
21125
|
declare const List$1: undefined<react.ForwardRefExoticComponent<Tabs$1.ListProps & react.RefAttributes<HTMLDivElement>>>;
|
|
21017
21126
|
declare const Trigger$2: undefined<react.ForwardRefExoticComponent<Tabs$1.TriggerProps & react.RefAttributes<HTMLButtonElement>>>;
|
|
@@ -21019,9 +21128,30 @@ declare const Content$3: undefined<react.ForwardRefExoticComponent<Tabs$1.Conten
|
|
|
21019
21128
|
declare const Indicator$4: undefined<react.ForwardRefExoticComponent<Tabs$1.IndicatorProps & react.RefAttributes<HTMLDivElement>>>;
|
|
21020
21129
|
|
|
21021
21130
|
declare namespace Tabs {
|
|
21022
|
-
export { Content$3 as Content, TabsContext as Context, Indicator$4 as Indicator, List$1 as List, Root$
|
|
21131
|
+
export { Content$3 as Content, TabsContext as Context, Indicator$4 as Indicator, List$1 as List, Root$9 as Root, type RootProps$9 as RootProps, RootProvider$5 as RootProvider, Trigger$2 as Trigger };
|
|
21132
|
+
}
|
|
21133
|
+
|
|
21134
|
+
type InputProps = ComponentProps$1<typeof Input>;
|
|
21135
|
+
declare const Input: StyledComponent<react.ForwardRefExoticComponent<Field.InputProps & react.RefAttributes<HTMLInputElement>>, InputVariantProps>;
|
|
21136
|
+
|
|
21137
|
+
type InputAddonProps = ComponentProps$1<typeof InputAddon>;
|
|
21138
|
+
declare const InputAddon: StyledComponent<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, InputAddonVariantProps>;
|
|
21139
|
+
|
|
21140
|
+
type RootProps$8 = ComponentProps$1<typeof Root$8>;
|
|
21141
|
+
declare const Root$8: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, InputGroupRecipe>;
|
|
21142
|
+
interface InputGroupProps extends RootProps$8 {
|
|
21143
|
+
startElement?: ReactNode | undefined;
|
|
21144
|
+
endElement?: ReactNode | undefined;
|
|
21145
|
+
children?: ReactNode;
|
|
21146
|
+
}
|
|
21147
|
+
declare const InputGroup: react.ForwardRefExoticComponent<Omit<InputGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>> & {
|
|
21148
|
+
Root: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, InputGroupRecipe>;
|
|
21149
|
+
Element: undefined<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>>;
|
|
21023
21150
|
}
|
|
21024
21151
|
|
|
21152
|
+
type TextareaProps = ComponentProps$1<typeof Textarea>;
|
|
21153
|
+
declare const Textarea: StyledComponent<react.ForwardRefExoticComponent<Field.TextareaProps & react.RefAttributes<HTMLTextAreaElement>>, TextareaVariantProps>;
|
|
21154
|
+
|
|
21025
21155
|
type RootProps$7 = ComponentProps$1<typeof Root$7>;
|
|
21026
21156
|
type HiddenInputProps = ComponentProps$1<typeof HiddenInput$1>;
|
|
21027
21157
|
declare const Root$7: undefined<react.ForwardRefExoticComponent<Checkbox$1.RootProps & react.RefAttributes<HTMLLabelElement>>, CheckboxRecipe>;
|
|
@@ -21091,7 +21221,7 @@ declare const Indicator$3: react.ForwardRefExoticComponent<Omit<{
|
|
|
21091
21221
|
strokeLinejoin?: ConditionalValue<undefined | Property.StrokeLinejoin | readonly NonNullable<Property.StrokeLinejoin | undefined>[] | undefined>;
|
|
21092
21222
|
strokeMiterlimit?: ConditionalValue<undefined | Property.StrokeMiterlimit | readonly NonNullable<Property.StrokeMiterlimit | undefined>[] | undefined>;
|
|
21093
21223
|
strokeOpacity?: ConditionalValue<undefined | Property.StrokeOpacity | readonly NonNullable<Property.StrokeOpacity | undefined>[] | undefined>;
|
|
21094
|
-
strokeWidth?: ConditionalValue<undefined | Property.StrokeWidth<undefined | undefined> | readonly NonNullable<Property.StrokeWidth<undefined | undefined> | undefined>[] | undefined>;
|
|
21224
|
+
strokeWidth?: ConditionalValue<BorderWidthToken | undefined | `var(--${string})` | Property.StrokeWidth<undefined | undefined> | readonly NonNullable<Property.StrokeWidth<undefined | undefined> | undefined>[] | undefined>;
|
|
21095
21225
|
textAnchor?: ConditionalValue<undefined | Property.TextAnchor | readonly NonNullable<Property.TextAnchor | undefined>[] | undefined>;
|
|
21096
21226
|
textDecoration?: ConditionalValue<undefined | Property.TextDecoration<undefined | undefined> | readonly NonNullable<Property.TextDecoration<undefined | undefined> | undefined>[] | undefined>;
|
|
21097
21227
|
textRendering?: ConditionalValue<undefined | Property.TextRendering | readonly NonNullable<Property.TextRendering | undefined>[] | undefined>;
|
|
@@ -21629,15 +21759,6 @@ declare namespace Slider {
|
|
|
21629
21759
|
export { SliderContext as Context, Slider_Control as Control, Slider_DraggingIndicator as DraggingIndicator, Slider_HiddenInput as HiddenInput, Label$1 as Label, Slider_Marker as Marker, Slider_MarkerGroup as MarkerGroup, type Slider_MarkerGroupProps as MarkerGroupProps, Slider_MarkerIndicator as MarkerIndicator, Slider_Marks as Marks, type Slider_MarksProps as MarksProps, Range$1 as Range, Root$4 as Root, type RootProps$4 as RootProps, Slider_Thumb as Thumb, type Slider_ThumbProps as ThumbProps, Slider_Thumbs as Thumbs, Track$1 as Track, ValueText$1 as ValueText };
|
|
21630
21760
|
}
|
|
21631
21761
|
|
|
21632
|
-
type TextareaProps = ComponentProps$1<typeof Textarea>;
|
|
21633
|
-
declare const Textarea: StyledComponent<react.ForwardRefExoticComponent<Field.TextareaProps & react.RefAttributes<HTMLTextAreaElement>>, TextareaVariantProps>;
|
|
21634
|
-
|
|
21635
|
-
declare const Textarea$1_Textarea: typeof Textarea;
|
|
21636
|
-
type Textarea$1_TextareaProps = TextareaProps;
|
|
21637
|
-
declare namespace Textarea$1 {
|
|
21638
|
-
export { Textarea$1_Textarea as Textarea, type Textarea$1_TextareaProps as TextareaProps };
|
|
21639
|
-
}
|
|
21640
|
-
|
|
21641
21762
|
type RootProps$3 = ComponentProps$1<typeof Root$3>;
|
|
21642
21763
|
declare const Root$3: undefined<react.ForwardRefExoticComponent<Avatar$1.RootProps & react.RefAttributes<HTMLDivElement>>, AvatarRecipe>;
|
|
21643
21764
|
declare const RootProvider$2: undefined<react.ForwardRefExoticComponent<Avatar$1.RootProviderProps & react.RefAttributes<HTMLDivElement>>, AvatarRecipe>;
|
|
@@ -21776,6 +21897,12 @@ declare namespace Tooltip$1 {
|
|
|
21776
21897
|
export { TooltipContext as Context, Tooltip$1_Tooltip as Tooltip, type Tooltip$1_TooltipProps as TooltipProps };
|
|
21777
21898
|
}
|
|
21778
21899
|
|
|
21900
|
+
type Props = HeadingVariantProps & {
|
|
21901
|
+
as?: ElementType;
|
|
21902
|
+
};
|
|
21903
|
+
type HeadingProps = ComponentProps$1<typeof Heading>;
|
|
21904
|
+
declare const Heading: StyledComponent<"h2", Props>;
|
|
21905
|
+
|
|
21779
21906
|
type CloseButtonProps = IconButtonProps;
|
|
21780
21907
|
declare const CloseButton: react.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
21781
21908
|
|
|
@@ -21841,6 +21968,7 @@ interface DesignLanguageContract {
|
|
|
21841
21968
|
shape: ShapeConfig;
|
|
21842
21969
|
elevation: ElevationConfig;
|
|
21843
21970
|
motion: MotionConfig;
|
|
21971
|
+
border: BorderConfig;
|
|
21844
21972
|
}
|
|
21845
21973
|
interface ColorPalettes {
|
|
21846
21974
|
primary: TonalPalette;
|
|
@@ -21989,6 +22117,14 @@ interface EasingScale {
|
|
|
21989
22117
|
emphasizedDecelerate: string;
|
|
21990
22118
|
emphasizedAccelerate: string;
|
|
21991
22119
|
}
|
|
22120
|
+
interface BorderConfig {
|
|
22121
|
+
widths: BorderWidthScale;
|
|
22122
|
+
}
|
|
22123
|
+
interface BorderWidthScale {
|
|
22124
|
+
thin: string;
|
|
22125
|
+
medium: string;
|
|
22126
|
+
thick: string;
|
|
22127
|
+
}
|
|
21992
22128
|
|
|
21993
22129
|
/**
|
|
21994
22130
|
* Material Design 3 Language Implementation
|
|
@@ -22066,6 +22202,11 @@ declare function transformToPandaTheme(language: DesignLanguageContract): {
|
|
|
22066
22202
|
value: string;
|
|
22067
22203
|
};
|
|
22068
22204
|
};
|
|
22205
|
+
borderWidths: {
|
|
22206
|
+
[k: string]: {
|
|
22207
|
+
value: string;
|
|
22208
|
+
};
|
|
22209
|
+
};
|
|
22069
22210
|
};
|
|
22070
22211
|
semanticTokens: {
|
|
22071
22212
|
colors: {
|
|
@@ -22095,4 +22236,4 @@ declare function transformToPandaTheme(language: DesignLanguageContract): {
|
|
|
22095
22236
|
*/
|
|
22096
22237
|
declare function cn(...inputs: ClassValue[]): string;
|
|
22097
22238
|
|
|
22098
|
-
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge$1 as Badge, Button$1 as Button, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Icon$1 as Icon, IconButton$1 as IconButton, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner$1 as Spinner, Switch, Tabs, Textarea
|
|
22239
|
+
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge$1 as Badge, type BorderConfig, type BorderWidthScale, Button$1 as Button, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Heading, type HeadingProps, Icon$1 as Icon, IconButton$1 as IconButton, Input, InputAddon, type InputAddonProps, InputGroup, type InputGroupProps, type InputProps, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner$1 as Spinner, Switch, Tabs, Textarea, type TextareaProps, Toaster, type TonalPalette, Tooltip$1 as Tooltip, type TypeStyle, type TypographyConfig, type TypographyScale, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|