@liner-fe/prism 1.13.28 → 1.13.30

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.
@@ -141,6 +141,7 @@ export { ICArrowBackward } from './arrow-backward';
141
141
  export { ICLink } from './link';
142
142
  export { ICSheetExport } from './sheet-export';
143
143
  export { ICLpPriIconSArrowBackward } from './lp-pri-icon-s-arrow-backward';
144
+ export { ICLpPriIconSArrowForward } from './lp-pri-icon-s-arrow-forward';
144
145
  export { ICLpPriIconMLink } from './lp-pri-icon-m-link';
145
146
  export { ICLpPriIconMSheetExport } from './lp-pri-icon-m-sheet-export';
146
147
  export { ICLpPriIconMShieldPerson } from './lp-pri-icon-m-shield-person';
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconSArrowForwarddProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconSArrowForward: (props: ICLpPriIconSArrowForwarddProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -12,6 +12,7 @@ export interface SelectProps extends ComponentPropsWithoutRef<typeof SelectPrimi
12
12
  isResponsive?: boolean;
13
13
  openDirection?: 'slide-up' | 'slide-right';
14
14
  badge?: string;
15
+ container?: HTMLElement;
15
16
  }
16
17
  export interface SelectItemProps {
17
18
  value: string;