@oxymormon/chg-unified-ds 0.2.6 → 0.2.8
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 +10 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { ButtonHTMLAttributes } from 'react';
|
|
1
|
+
import { ButtonHTMLAttributes } from '../../../node_modules/react';
|
|
2
2
|
import { ButtonProps as ButtonProps_2 } from 'react-aria-components';
|
|
3
|
-
import { default as default_2 } from 'react';
|
|
3
|
+
import { default as default_2 } from '../../node_modules/react';
|
|
4
4
|
import { DisclosureGroupProps } from 'react-aria-components';
|
|
5
5
|
import { DisclosureProps } from 'react-aria-components';
|
|
6
|
-
import { FC } from 'react';
|
|
7
|
-
import { ForwardRefExoticComponent } from 'react';
|
|
8
|
-
import { HTMLAttributes } from 'react';
|
|
6
|
+
import { FC } from '../../../node_modules/react';
|
|
7
|
+
import { ForwardRefExoticComponent } from '../../../node_modules/react';
|
|
8
|
+
import { HTMLAttributes } from '../../../node_modules/react';
|
|
9
9
|
import { JSX } from 'react/jsx-runtime';
|
|
10
10
|
import { RadioGroupProps as RadioGroupProps_2 } from 'react-aria-components';
|
|
11
11
|
import { RadioProps as RadioProps_2 } from 'react-aria-components';
|
|
12
|
-
import { ReactNode } from 'react';
|
|
13
|
-
import { RefAttributes } from 'react';
|
|
12
|
+
import { ReactNode } from '../../../node_modules/react';
|
|
13
|
+
import { RefAttributes } from '../../../node_modules/react';
|
|
14
14
|
import { SliderProps as SliderProps_2 } from 'react-aria-components';
|
|
15
15
|
import { SwitchProps } from 'react-aria-components';
|
|
16
16
|
import { TabsProps as TabsProps_2 } from 'react-aria-components';
|
|
17
|
-
import { TextareaHTMLAttributes } from 'react';
|
|
17
|
+
import { TextareaHTMLAttributes } from '../../../node_modules/react';
|
|
18
18
|
import { TooltipProps as TooltipProps_2 } from 'react-aria-components';
|
|
19
19
|
|
|
20
20
|
export declare function Accordion({ allowsMultipleExpanded, className, children, ...props }: AccordionProps): JSX.Element;
|
|
@@ -529,7 +529,7 @@ export declare const StepIndicator: typeof StepIndicatorRoot & {
|
|
|
529
529
|
Item: typeof StepIndicatorItem;
|
|
530
530
|
};
|
|
531
531
|
|
|
532
|
-
declare function StepIndicatorItem({ status, label, description, children, className, }: StepIndicatorItemProps): JSX.Element;
|
|
532
|
+
declare function StepIndicatorItem({ status, label, description, children, className, _index, }: StepIndicatorItemProps): JSX.Element;
|
|
533
533
|
|
|
534
534
|
export declare interface StepIndicatorItemProps {
|
|
535
535
|
/** Status of this step */
|
|
@@ -542,6 +542,7 @@ export declare interface StepIndicatorItemProps {
|
|
|
542
542
|
children?: ReactNode;
|
|
543
543
|
/** Additional className */
|
|
544
544
|
className?: string;
|
|
545
|
+
/* Excluded from this release type: _index */
|
|
545
546
|
}
|
|
546
547
|
|
|
547
548
|
export declare interface StepIndicatorProps {
|