File size: 1,703 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"use client"

import type { Assign } from "@ark-ui/react"
import { ark } from "@ark-ui/react/factory"
import { Fieldset } from "@ark-ui/react/fieldset"
import {
  type HTMLChakraProps,
  type SlotRecipeProps,
  type UnstyledProp,
  createSlotRecipeContext,
} from "../../styled-system"

const { withProvider, withContext } = createSlotRecipeContext({
  key: "fieldset",
})

interface FieldsetRootBaseProps
  extends Assign<Fieldset.RootBaseProps, SlotRecipeProps<"fieldset">>,
    UnstyledProp {}

export interface FieldsetRootProps
  extends HTMLChakraProps<"fieldset", FieldsetRootBaseProps> {}

export const FieldsetRoot = withProvider<
  HTMLFieldSetElement,
  FieldsetRootProps
>(Fieldset.Root, "root")

export interface FieldsetErrorTextProps
  extends HTMLChakraProps<"span", Fieldset.ErrorTextBaseProps>,
    UnstyledProp {}

export const FieldsetErrorText = withContext<
  HTMLSpanElement,
  FieldsetErrorTextProps
>(Fieldset.ErrorText, "errorText")

export interface FieldsetHelperTextProps
  extends HTMLChakraProps<"span", Fieldset.HelperTextBaseProps>,
    UnstyledProp {}

export const FieldsetHelperText = withContext<
  HTMLSpanElement,
  FieldsetHelperTextProps
>(Fieldset.HelperText, "helperText")

export interface FieldsetLegendProps
  extends HTMLChakraProps<"legend", Fieldset.LegendBaseProps>,
    UnstyledProp {}

export const FieldsetLegend = withContext<
  HTMLLegendElement,
  FieldsetLegendProps
>(Fieldset.Legend, "legend")

export interface FieldsetContentProps
  extends HTMLChakraProps<"div">,
    UnstyledProp {}

export const FieldsetContent = withContext<
  HTMLDivElement,
  FieldsetContentProps
>(ark.div, "content")

export const FieldsetContext = Fieldset.Context