@liner-fe/prism 1.12.19 → 1.12.21

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.
@@ -133,3 +133,4 @@ export { ICLpPriIconMSpinner } from './lp-pri-icon-m-spinner';
133
133
  export { ICLpPriIconSDropDown } from './lp-pri-icon-s-drop-down';
134
134
  export { ICLpPriIconMVolumeUp } from './lp-pri-icon-m-volume-up';
135
135
  export { ICLpPriIconMVolume } from './lp-pri-icon-m-volume';
136
+ export { ICLpPriIconSDropUp } from './lp-pri-icon-s-drop-up';
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconSDropUpProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconSDropUp: (props: ICLpPriIconSDropUpProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -16,8 +16,9 @@ export interface SelectItemProps {
16
16
  value: string;
17
17
  disabled?: boolean;
18
18
  icon?: IconProps;
19
+ onClick?: () => void;
19
20
  }
20
21
  export declare const Select: import("react").ForwardRefExoticComponent<SelectProps & import("react").RefAttributes<never>> & {
21
- Item: ({ value, disabled, icon }: SelectItemProps) => import("react/jsx-runtime").JSX.Element;
22
+ Item: ({ value, disabled, icon, onClick }: SelectItemProps) => import("react/jsx-runtime").JSX.Element;
22
23
  };
23
24
  export {};