@kentico/xperience-admin-components 26.0.0 → 26.0.1

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.
package/dist/entry.d.ts CHANGED
@@ -2267,9 +2267,16 @@ export declare interface NotificationBarInfoProps extends Pick<BaseNotificationB
2267
2267
 
2268
2268
  declare enum NotificationBarType {
2269
2269
  Alert = "alert",
2270
+ Warning = "warning",
2270
2271
  Info = "info"
2271
2272
  }
2272
2273
 
2274
+ export declare const NotificationBarWarning: ForwardRefExoticComponent<NotificationBarWarningProps & RefAttributes<HTMLDivElement>>;
2275
+
2276
+ export declare interface NotificationBarWarningProps extends Pick<BaseNotificationBarProps, 'children' | 'childrenAsHtml' | 'dataTestId'> {
2277
+ readonly onDismiss?: () => void;
2278
+ }
2279
+
2273
2280
  export declare const OptionalTooltip: {
2274
2281
  ({ customRenderText, text, tooltipText, children, ...restProps }: OptionalTooltipProps): JSX.Element;
2275
2282
  displayName: string;
@@ -3791,9 +3798,9 @@ export declare enum Zindex {
3791
3798
  DropDown = "100",
3792
3799
  Statusbar = "1000",
3793
3800
  StickyHeader = "200",
3794
- Sidepanel = "2000",
3795
- AppMenu = "3000",
3796
- Dialog = "4000",
3801
+ Sidepanel = "3000",
3802
+ AppMenu = "4000",
3803
+ Dialog = "2000",
3797
3804
  Snackbar = "6000",
3798
3805
  Tooltip = "5000",
3799
3806
  Prompt = "10000"