asma-core-ui 3.1.16 → 3.1.18

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.
@@ -1,3 +1,6 @@
1
- import { StyledInputField } from 'asma-core-ui';
2
- import { type FC, type ComponentProps } from 'react';
3
- export declare const StyledSearchField: FC<ComponentProps<typeof StyledInputField>>;
1
+ import { StyledInputField, type TextFieldProps } from 'asma-core-ui';
2
+ import { type ComponentProps } from 'react';
3
+ export type StyledSearchFieldProps = ComponentProps<typeof StyledInputField> & {
4
+ label: Required<TextFieldProps['label']>;
5
+ };
6
+ export declare const StyledSearchField: ({ value, onClear, ...props }: StyledSearchFieldProps) => JSX.Element;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.1.16",
6
+ "version": "3.1.18",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",