diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index dbd3c295..8aaef320 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -1,6 +1,6 @@
# Component Index
-> 143 components exported from carbon-components-svelte 0.10.0
+> 144 components exported from carbon-components-svelte 0.10.0
- Accordion
- [AccordionSkeleton](#accordionskeleton)
@@ -171,6 +171,7 @@
- [HeaderPanelLink](#headerpanellink)
- [HeaderPanelLinks](#headerpanellinks)
- [HeaderUtilities](#headerutilities)
+ - [HeaderGlobalAction](#headerglobalaction)
- [SideNav](#sidenav)
- [SideNavItems](#sidenavitems)
- [SideNavLink](#sidenavlink)
@@ -1693,6 +1694,36 @@ No forwarded events.
---
+## HeaderGlobalAction
+
+### Import path
+
+```js
+import { HeaderGlobalAction } from "carbon-components-svelte";
+```
+
+### Props
+
+| Prop name | Type | Default value |
+| :-------- | :------------------------------------------------------------------ | :------------ |
+| isActive | boolean
| false |
+| icon | typeof import("carbon-icons-svelte/lib/Add16").default
| -- |
+| ref | null | HTMLButtonElement
| null |
+
+### Slots
+
+- `...`
+
+### Forwarded events
+
+- `on:click`
+
+### Dispatched events
+
+No dispatched events.
+
+---
+
## HeaderNav
### Import path
diff --git a/src/UIShell/HeaderGlobalAction.svelte b/src/UIShell/HeaderGlobalAction.svelte
new file mode 100644
index 00000000..de33515f
--- /dev/null
+++ b/src/UIShell/HeaderGlobalAction.svelte
@@ -0,0 +1,33 @@
+
+
+
diff --git a/src/UIShell/UIShell.Story.svelte b/src/UIShell/UIShell.Story.svelte
index bd08b321..f5837b03 100644
--- a/src/UIShell/UIShell.Story.svelte
+++ b/src/UIShell/UIShell.Story.svelte
@@ -27,6 +27,7 @@
import HeaderPanelLinks from "./GlobalHeader/HeaderPanelLinks.svelte";
import Content from "./Content.svelte";
import SkipToContent from "./SkipToContent.svelte";
+ import HeaderGlobalAction from "./HeaderGlobalAction.svelte";
let isSideNavOpen = undefined;
@@ -188,6 +189,15 @@
+{:else if story === 'header-global-action'}
+
{:else if story === 'header-with-switcher'}
diff --git a/src/UIShell/UIShell.stories.js b/src/UIShell/UIShell.stories.js
index d0ccb366..68d34463 100644
--- a/src/UIShell/UIShell.stories.js
+++ b/src/UIShell/UIShell.stories.js
@@ -43,6 +43,16 @@ export const HeaderWithUtilities = () => ({
},
});
+export const HeaderGlobalAction = () => ({
+ Component,
+ props: {
+ story: "header-global-action",
+ href: text("The link href (href)", "#"),
+ company: text("Company name", "IBM"),
+ platformName: text("Platform name", "Platform Name"),
+ },
+});
+
export const HeaderWithSwitcher = () => ({
Component,
props: {
diff --git a/src/UIShell/index.js b/src/UIShell/index.js
index 43757853..c4f78b8e 100644
--- a/src/UIShell/index.js
+++ b/src/UIShell/index.js
@@ -16,3 +16,4 @@ export { default as SideNavMenu } from "./SideNav/SideNavMenu.svelte";
export { default as SideNavMenuItem } from "./SideNav/SideNavMenuItem.svelte";
export { default as Content } from "./Content.svelte";
export { default as SkipToContent } from "./SkipToContent.svelte";
+export { default as HeaderGlobalAction } from "./HeaderGlobalAction.svelte";
diff --git a/src/index.js b/src/index.js
index 6ccef095..3f28bb8c 100644
--- a/src/index.js
+++ b/src/index.js
@@ -124,5 +124,6 @@ export {
SideNavMenuItem,
Content,
SkipToContent,
+ HeaderGlobalAction,
} from "./UIShell";
export { UnorderedList } from "./UnorderedList";
diff --git a/types/index.d.ts b/types/index.d.ts
index 203e4bc5..0b612476 100644
--- a/types/index.d.ts
+++ b/types/index.d.ts
@@ -1591,6 +1591,29 @@ export class HeaderActionSearch extends CarbonSvelteComponent {
};
}
+export class HeaderGlobalAction extends CarbonSvelteComponent {
+ $$prop_def: {
+ /**
+ * Set to `true` to use the active variant
+ * @default false
+ */
+ isActive?: boolean;
+
+ /**
+ * Specify the icon to render
+ */
+ icon?: typeof import("carbon-icons-svelte/lib/Add16").default;
+
+ /**
+ * Obtain a reference to the HTML button element
+ * @default null
+ */
+ ref?: null | HTMLButtonElement;
+ };
+
+ $$slot_def: { default: {} };
+}
+
export class HeaderNav extends CarbonSvelteComponent {
$$prop_def: {
/**