kui-basic 1.0.35 → 1.0.36
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/index.d.ts +19 -17
- package/dist/index.es.js +700 -928
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +700 -928
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -553,29 +553,31 @@ interface AccordionProps
|
|
|
553
553
|
> {
|
|
554
554
|
expanded?: boolean
|
|
555
555
|
onChange?: (expanded: boolean) => void
|
|
556
|
+
disabled?: boolean
|
|
556
557
|
}
|
|
557
558
|
|
|
558
559
|
type AccordionType = (props: AccordionProps) => React.ReactElement
|
|
559
560
|
|
|
560
561
|
declare const Accordion: AccordionType
|
|
561
562
|
|
|
562
|
-
interface AccordionSummaryProps
|
|
563
|
-
extends React.DetailedHTMLProps<
|
|
564
|
-
React.HTMLAttributes<HTMLDivElement>,
|
|
565
|
-
HTMLDivElement
|
|
566
|
-
>,
|
|
567
|
-
React.AriaAttributes {
|
|
568
|
-
detailsBlock?: React.RefObject<HTMLDivElement>
|
|
569
|
-
expandIcon?: React.ReactElement | React.ReactElement[] | string
|
|
570
|
-
contentStyles?: string
|
|
571
|
-
expandedStyles?: string
|
|
572
|
-
iconStyles?: string
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
563
|
+
interface AccordionSummaryProps
|
|
564
|
+
extends React.DetailedHTMLProps<
|
|
565
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
566
|
+
HTMLDivElement
|
|
567
|
+
>,
|
|
568
|
+
React.AriaAttributes {
|
|
569
|
+
detailsBlock?: React.RefObject<HTMLDivElement>
|
|
570
|
+
expandIcon?: React.ReactElement | React.ReactElement[] | string
|
|
571
|
+
contentStyles?: string
|
|
572
|
+
expandedStyles?: string
|
|
573
|
+
iconStyles?: string
|
|
574
|
+
disabled?: boolean
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
type AccordionSummaryType = (
|
|
578
|
+
props: AccordionSummaryProps
|
|
579
|
+
) => React.ReactElement
|
|
580
|
+
|
|
579
581
|
declare const AccordionSummary: AccordionSummaryType
|
|
580
582
|
|
|
581
583
|
type AccordionDetailsType = (
|