@uidu/page-header 1.1.5 → 1.1.6

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @uidu/page-header
2
2
 
3
+ ## 1.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 0524a19: Bump dependencies
8
+ - Updated dependencies [0524a19]
9
+ - @uidu/shell@2.10.1
10
+ - @uidu/theme@0.12.1
11
+
3
12
  ## 1.1.5
4
13
 
5
14
  ### Patch Changes
package/dist/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@uidu/page-header",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uidu/page-header",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "A React component that represents Header of an application page",
5
5
  "repository": "https://github.com/uidu-org/guidu/tree/main/packages/navigation/page-header",
6
6
  "license": "MIT",
@@ -9,19 +9,19 @@
9
9
  "main": "dist/uidu-page-header.cjs.js",
10
10
  "types": "dist/uidu-page-header.cjs.d.ts",
11
11
  "dependencies": {
12
- "@babel/runtime": "^7.24.1",
13
- "@uidu/shell": "^2.9.0",
14
- "@uidu/theme": "^0.12.0",
12
+ "@babel/runtime": "^7.24.4",
13
+ "@uidu/shell": "^2.10.1",
14
+ "@uidu/theme": "^0.12.1",
15
15
  "tslib": "^2.6.2"
16
16
  },
17
17
  "devDependencies": {
18
- "@uidu/breadcrumbs": "^1.6.0",
19
- "@uidu/button": "^1.9.0",
20
- "@uidu/docs": "^0.11.0",
21
- "@uidu/field-text": "^2.6.0",
22
- "@uidu/form": "^3.2.0",
23
- "@uidu/inline-edit": "0.10.0",
24
- "@uidu/select": "^2.13.0",
18
+ "@uidu/breadcrumbs": "^1.6.1",
19
+ "@uidu/button": "^1.9.1",
20
+ "@uidu/docs": "^0.11.1",
21
+ "@uidu/field-text": "^2.6.1",
22
+ "@uidu/form": "^3.2.1",
23
+ "@uidu/inline-edit": "0.10.1",
24
+ "@uidu/select": "^2.13.2",
25
25
  "react": "^18.2.0",
26
26
  "react-dom": "^18.2.0",
27
27
  "styled-components": "^5.3.11"
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { PageHeaderProps } from "../types.js";
3
- declare function PageHeader({ innerRef, breadcrumbs, actions, children, disableTitleStyles, truncateTitle, className, }: PageHeaderProps): React.JSX.Element;
4
- export default PageHeader;
@@ -1 +0,0 @@
1
- export { default } from "./PageHeader/index.js";
@@ -1,18 +0,0 @@
1
- import { ReactElement, ReactNode } from 'react';
2
- export declare type PageHeaderProps = {
3
- /** Returns the inner ref of the component. This is exposed so the focus can be set. */
4
- innerRef?: (element: HTMLElement) => void;
5
- /** Page breadcrumbs to be rendered above the title. */
6
- breadcrumbs?: ReactElement;
7
- /** Contents of the action bar to be rendered next to the page title. */
8
- actions?: ReactElement;
9
- /** Classnames applied to PageHeader wrapper */
10
- className?: string;
11
- /** Content of the page title. The text would be trimmed if it doesn't fit the
12
- header width and end with an ellipsis */
13
- children?: ReactNode;
14
- /** Disable default styles for page title */
15
- disableTitleStyles?: boolean;
16
- /** Prevent the title from wrapping across lines */
17
- truncateTitle?: boolean;
18
- };