diff --git a/.changeset/light-trees-smell.md b/.changeset/light-trees-smell.md new file mode 100644 index 00000000000..e51136f10a8 --- /dev/null +++ b/.changeset/light-trees-smell.md @@ -0,0 +1,5 @@ +--- +"@utrecht/component-library-react": minor +--- + +Re-export `FormFieldCombobox` component package diff --git a/packages/component-library-react/package.json b/packages/component-library-react/package.json index 95744aafaee..d9b575b50f8 100644 --- a/packages/component-library-react/package.json +++ b/packages/component-library-react/package.json @@ -89,6 +89,7 @@ "@utrecht/figure-css": "workspace:*", "@utrecht/focus-ring-css": "workspace:*", "@utrecht/form-field-react": "workspace:*", + "@utrecht/form-field-combobox-react": "workspace:*", "@utrecht/form-field-description-css": "workspace:*", "@utrecht/form-field-error-message-css": "workspace:*", "@utrecht/form-fieldset-css": "workspace:*", diff --git a/packages/component-library-react/src/FormFieldCombobox.tsx b/packages/component-library-react/src/FormFieldCombobox.tsx new file mode 100644 index 00000000000..a8e603ed1c7 --- /dev/null +++ b/packages/component-library-react/src/FormFieldCombobox.tsx @@ -0,0 +1,2 @@ +export type { FormFieldComboboxProps } from '@utrecht/form-field-combobox-react'; +export { FormFieldCombobox } from '@utrecht/form-field-combobox-react'; diff --git a/packages/component-library-react/src/css-module/FormFieldCombobox.tsx b/packages/component-library-react/src/css-module/FormFieldCombobox.tsx new file mode 100644 index 00000000000..c765b697aa4 --- /dev/null +++ b/packages/component-library-react/src/css-module/FormFieldCombobox.tsx @@ -0,0 +1 @@ +export * from '@utrecht/form-field-combobox-react/src/css'; diff --git a/packages/component-library-react/src/index.ts b/packages/component-library-react/src/index.ts index fabc620e9ea..7e183408bed 100644 --- a/packages/component-library-react/src/index.ts +++ b/packages/component-library-react/src/index.ts @@ -73,6 +73,8 @@ export type { FigureCaptionProps } from './FigureCaption'; export { FigureCaption } from './FigureCaption'; export type { FormFieldProps } from './FormField'; export { FormField } from './FormField'; +export type { FormFieldComboboxProps } from './FormFieldCombobox'; +export { FormFieldCombobox } from './FormFieldCombobox'; export type { FormFieldDescriptionProps } from './FormFieldDescription'; export { FormFieldDescription } from './FormFieldDescription'; export type { FormFieldErrorMessageProps } from './FormFieldErrorMessage'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 916ec270893..deb1aca04ae 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1572,6 +1572,9 @@ importers: '@utrecht/focus-ring-css': specifier: workspace:* version: link:../../components/focus-ring + '@utrecht/form-field-combobox-react': + specifier: workspace:* + version: link:packages/form-field-combobox-react '@utrecht/form-field-description-css': specifier: workspace:* version: link:../../components/form-field-description