@sequencing/design-system 1.0.43 → 1.0.44

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.
@@ -18,7 +18,7 @@ export interface DropdownProps {
18
18
  dismissOnClickOutside?: boolean;
19
19
  /** The hint to be displayed when hovering over the toggle button */
20
20
  hint?: string;
21
- /** The icon to be used as a left addornment of the toggle button */
21
+ /** The icon to be used as a left adornment of the toggle button */
22
22
  icon?: string;
23
23
  /** The label of the toggle button */
24
24
  label: string;
@@ -24,7 +24,7 @@ export interface AppBarProps {
24
24
  description?: ReactNode;
25
25
  /** Application's icon displayed on the left side */
26
26
  icon: string;
27
- /** If `true`, display a BETA addornment at the right side of the app's title */
27
+ /** If `true`, display a BETA adornment at the right side of the app's title */
28
28
  isBeta?: boolean;
29
29
  /** Formatted date of the app's last update, it will appear after the text "Last Updated:" */
30
30
  lastUpdated?: string;
@@ -34,7 +34,7 @@ export interface AppBarProps {
34
34
  * */
35
35
  lastUpdatedTooltip?: ReactNode;
36
36
  /** Custom component to render on the right side */
37
- rightAddornment?: ReactNode;
37
+ rightAdornment?: ReactNode;
38
38
  /**
39
39
  * Component to be displayed when the user clicks on the question mark icon.
40
40
  * If no content is provided, the icon doesn't appear.
@@ -49,8 +49,8 @@ export interface AppBarProps {
49
49
  * The component also supports custom children which will be rendered on the middle of the bar.
50
50
  * For example, you can easily display tabs by rendering a `TabMenu` component as a direct child of this component.
51
51
  * The background is a dark blue gradient but a custom gradient or image can be used.
52
- * The `rightAddornment` allows custom component to be displayed on the right side
52
+ * The `rightAdornment` allows custom component to be displayed on the right side
53
53
  *
54
54
  */
55
- declare const AppBar: ({ icon, isBeta, appName, version, children, customClass, lastUpdated, lastUpdatedTooltip, description, tooltipContent, rightAddornment, backgroundColor, backgroundImage, backgroundGradient, }: PropsWithChildren<AppBarProps>) => React.JSX.Element;
55
+ declare const AppBar: ({ icon, isBeta, appName, version, children, customClass, lastUpdated, lastUpdatedTooltip, description, tooltipContent, rightAdornment, backgroundColor, backgroundImage, backgroundGradient, }: PropsWithChildren<AppBarProps>) => React.JSX.Element;
56
56
  export default AppBar;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencing/design-system",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "Sequencing Design System",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\"",