@stenajs-webui/elements 19.0.0-next.26 → 19.0.0-next.28

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.
@@ -2,7 +2,7 @@ import { DivProps } from "@stenajs-webui/core";
2
2
  import * as React from "react";
3
3
  import { ReactNode } from "react";
4
4
  import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
5
- import { MenuButtonContentProps } from "../buttons/menu-button/MenuButtonContent";
5
+ import { MenuButtonContentProps } from "../buttons/menu-button/internal/MenuButtonContent";
6
6
  export interface ActionMenuItemContentProps extends DivProps, Omit<MenuButtonContentProps, "left"> {
7
7
  leftIcon?: IconDefinition;
8
8
  disabled?: boolean;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import { ReactNode } from "react";
3
+ import { LabelElementProps } from "@stenajs-webui/core";
4
+ export interface ContentMenuButtonProps extends LabelElementProps {
5
+ children?: ReactNode;
6
+ }
7
+ export declare const ContentMenuButton: React.ForwardRefExoticComponent<ContentMenuButtonProps & React.RefAttributes<HTMLLabelElement>>;
@@ -161,7 +161,6 @@ export declare const stenaSailingCrane: IconDefinition;
161
161
  export declare const stenaSailingGate: IconDefinition;
162
162
  export declare const stenaSailingImportExport: IconDefinition;
163
163
  export declare const stenaSailingLocation: IconDefinition;
164
- export declare const stenaSailingNoshow: IconDefinition;
165
164
  export declare const stenaSailingOffpeak: IconDefinition;
166
165
  export declare const stenaSailingOnQuay: IconDefinition;
167
166
  export declare const stenaSailingOnRoute: IconDefinition;
@@ -206,7 +205,7 @@ export declare const stenaStatusBlock: IconDefinition;
206
205
  export declare const stenaStatusCanceled: IconDefinition;
207
206
  export declare const stenaStatusConfirmed: IconDefinition;
208
207
  export declare const stenaStatusDone: IconDefinition;
209
- export declare const stenaStatusInprogress: IconDefinition;
208
+ export declare const stenaStatusInProgress: IconDefinition;
210
209
  export declare const stenaStatusMissing: IconDefinition;
211
210
  export declare const stenaStatusNoShow: IconDefinition;
212
211
  export declare const stenaStatusTodo: IconDefinition;
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from "./components/ui/buttons/SecondaryButton";
17
17
  export * from "./components/ui/buttons/common/ButtonCommon";
18
18
  export * from "./components/ui/buttons/common/ButtonContent";
19
19
  export * from "./components/ui/buttons/menu-button/MenuButton";
20
+ export * from "./components/ui/buttons/menu-button/ContentMenuButton";
20
21
  export * from "./components/ui/buttons/menu-button/IconMenuButton";
21
22
  export * from "./components/ui/buttons/menu-button/MenuButtonLink";
22
23
  export * from "./components/ui/buttons/menu-button/IconMenuButtonLink";