ingred-ui 33.6.0 → 33.7.0-canary.0

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.
@@ -8,6 +8,11 @@ export type SlotProps = {
8
8
  * 未指定時のデスクトップ: Fixture。
9
9
  */
10
10
  actions?: React.ReactNode;
11
+ /**
12
+ * モバイル時の上段(閉じるボタン行)左端に表示する操作(検索・通知など)。
13
+ * 未指定時は従来どおり閉じるボタンのみ右寄せ。
14
+ */
15
+ mobileLeadingActions?: React.ReactNode;
11
16
  };
12
17
  declare const Slot: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLDivElement>>;
13
18
  export { Slot };
@@ -4,7 +4,15 @@ type SlotBarProps = {
4
4
  $showCustom: boolean;
5
5
  };
6
6
  export declare const MobileSlotRoot: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never>>> & string;
7
- export declare const MobileCloseBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never>>> & string;
7
+ export declare const MobileCloseBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom" | "$hasLeadingActions"> & SlotBarProps & {
8
+ /** 左端ツールバーがあるときは space-between、無いときは閉じるボタンのみ右寄せ */
9
+ $hasLeadingActions: boolean;
10
+ }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom" | "$hasLeadingActions"> & SlotBarProps & {
11
+ /** 左端ツールバーがあるときは space-between、無いときは閉じるボタンのみ右寄せ */
12
+ $hasLeadingActions: boolean;
13
+ }, never>>> & string;
14
+ export declare const MobileCloseBarLeading: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
15
+ export declare const MobileCloseBarTrailing: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
8
16
  export declare const SlotBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$showCustom"> & SlotBarProps, never>>> & string;
9
17
  type SlotCustomProps = {
10
18
  $showCustom: boolean;