@lux-design-system/components-react 1.1.1 → 1.2.1
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.mjs +4332 -111
- package/dist/index.umd.js +4310 -89
- package/dist/src/accordion/Accordion.d.ts +10 -0
- package/dist/src/accordion/Accordion.spec.d.ts +0 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/link-list/LinkList.d.ts +9 -0
- package/dist/src/link-list/test/Link-list.spec.d.ts +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AccordionProps, AccordionProviderProps, AccordionSectionProps, AccordionSectionProviderProps } from '@utrecht/component-library-react';
|
|
2
|
+
export declare const LuxAccordionSection: import('react').ForwardRefExoticComponent<AccordionSectionProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
3
|
+
export type LuxAccordionSectionProps = AccordionSectionProps;
|
|
4
|
+
export type LuxAccordionSectionProviderProps = AccordionSectionProviderProps;
|
|
5
|
+
export declare const LuxAccordionProvider: (props: LuxAccordionProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const LuxAccordion: import('react').ForwardRefExoticComponent<AccordionProps & {
|
|
7
|
+
children?: import('react').ReactNode | undefined;
|
|
8
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export type LuxAccordionProps = AccordionProps;
|
|
10
|
+
export type LuxAccordionProviderProps = AccordionProviderProps;
|
|
File without changes
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { LuxAccordion, type LuxAccordionProps, LuxAccordionProvider, type LuxAccordionProviderProps, LuxAccordionSection, type LuxAccordionSectionProps, type LuxAccordionSectionProviderProps, } from './accordion/Accordion';
|
|
1
2
|
export { LuxAlert, type LuxAlertProps } from './alert/Alert';
|
|
2
3
|
export { LuxButton, type LuxButtonProps } from './button/Button';
|
|
3
4
|
export { LuxCheckbox, type LuxCheckboxProps } from './checkbox/Checkbox';
|
|
@@ -17,6 +18,7 @@ export { LuxParagraph, type LuxParagraphProps } from './paragraph/Paragraph';
|
|
|
17
18
|
export { LuxFormFieldRadioOption, type LuxFormFieldRadioOptionProps, } from './form-field-radio-option/FormFieldRadioOption';
|
|
18
19
|
export { LuxFormFieldRadioGroup, type LuxFormFieldRadioGroupProps } from './form-field-radio-group/FormFieldRadioGroup';
|
|
19
20
|
export { LuxLink, type LuxLinkProps } from './link/Link';
|
|
21
|
+
export { LuxLinkList, type LuxLinkListProps, LuxLinkListLink, type LuxLinkListLinkProps } from './link-list/LinkList';
|
|
20
22
|
export { LuxPreHeading, type LuxPreHeadingProps } from './pre-heading/PreHeading';
|
|
21
23
|
export { LuxSection, type LuxSectionProps } from './section/Section';
|
|
22
24
|
export { LuxSelect, LuxSelectOption, type LuxSelectProps, type LuxSelectOptionProps } from './select/Select';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { LinkListLinkProps, LinkListProps } from '@utrecht/component-library-react/dist/css-module';
|
|
2
|
+
export declare const LuxLinkList: import('react').ForwardRefExoticComponent<LinkListProps & {
|
|
3
|
+
children?: import('react').ReactNode | undefined;
|
|
4
|
+
} & import('react').RefAttributes<HTMLUListElement>>;
|
|
5
|
+
export type LuxLinkListProps = LinkListProps;
|
|
6
|
+
export declare const LuxLinkListLink: import('react').ForwardRefExoticComponent<LinkListLinkProps & {
|
|
7
|
+
children?: import('react').ReactNode | undefined;
|
|
8
|
+
} & import('react').RefAttributes<HTMLAnchorElement>>;
|
|
9
|
+
export type LuxLinkListLinkProps = LinkListLinkProps;
|
|
File without changes
|
package/package.json
CHANGED