Skip to content

Commit

Permalink
Merge pull request #816 from gisce/sync/v2-to-alpha-20250108-131513
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra authored Jan 8, 2025
2 parents 5026dc8 + 61cc146 commit fbcc01f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
fetch-depth: 0

- name: Sync with Remote Branch
run: |
git fetch origin
git reset --hard origin/${{ github.ref_name }}
- name: Install Dependencies
run: npm ci
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gisce/react-ooui",
"version": "2.53.1",
"version": "2.53.2",
"engines": {
"node": "20.5.0"
},
Expand Down Expand Up @@ -37,7 +37,7 @@
"@ant-design/plots": "^1.0.9",
"@gisce/fiber-diagram": "2.1.1",
"@gisce/ooui": "2.27.0",
"@gisce/react-formiga-components": "1.9.0",
"@gisce/react-formiga-components": "1.9.1",
"@gisce/react-formiga-table": "1.9.1",
"@monaco-editor/react": "^4.4.5",
"@tabler/icons-react": "^2.11.0",
Expand Down
8 changes: 4 additions & 4 deletions src/widgets/containers/Notebook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import { Notebook as NotebookOoui, Group as GroupOoui } from "@gisce/ooui";
import { Group } from "@/index";
const { TabPane } = Tabs;

const StyledTabs = styled(Tabs)<{ borderRadius?: string }>`
const StyledTabs = styled(Tabs)<{ $borderRadius?: string }>`
.ant-tabs-content-holder {
border-left: 1px solid rgba(228, 228, 231, var(--tw-border-opacity));
border-right: 1px solid rgba(228, 228, 231, var(--tw-border-opacity));
border-bottom: 1px solid rgba(228, 228, 231, var(--tw-border-opacity));
padding: 15px;
border-bottom-left-radius: ${(props) => props.borderRadius || "5px"};
border-bottom-right-radius: ${(props) => props.borderRadius || "5px"};
border-bottom-left-radius: ${(props) => props.$borderRadius || "5px"};
border-bottom-right-radius: ${(props) => props.$borderRadius || "5px"};
margin-top: -1px;
}
Expand Down Expand Up @@ -50,7 +50,7 @@ function Notebook(props: Props): React.ReactElement {
<StyledTabs
defaultActiveKey="1"
tabPosition={ooui.tabPosition}
borderRadius={`${token.borderRadius}px`}
$borderRadius={`${token.borderRadius}px`}
>
{tabs
.filter((page: any) => !page.invisible)
Expand Down

0 comments on commit fbcc01f

Please sign in to comment.