Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eshankvaish committed Nov 15, 2024
1 parent 72c2177 commit ecbd2f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtron-labs/devtron-fe-common-lib",
"version": "1.0.4-beta-4",
"version": "1.0.4-beta-5",
"description": "Supporting common component library",
"type": "module",
"main": "dist/index.js",
Expand Down
7 changes: 6 additions & 1 deletion src/Shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,11 @@ export type InitTabType = Omit<CommonTabArgsType, 'type'> &
(
| {
type: 'fixed'
/**
* Unique identifier for the fixed tab
*
* Note: Shouldn't contain '-'
*/
id: string
idPrefix?: never
}
Expand All @@ -799,7 +804,7 @@ export type InitTabType = Omit<CommonTabArgsType, 'type'> &
export interface DynamicTabType extends CommonTabArgsType {
id: string
/**
* Id of the tab from which the current tab is opened
* Id of the last active tab before switching to current tab
*/
lastActiveTabId: string | null
}

0 comments on commit ecbd2f1

Please sign in to comment.