diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3d7ad693..595f9c54 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/package-lock.json b/package-lock.json index d8d5502e..78461b80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,18 +1,18 @@ { "name": "@gisce/react-ooui", - "version": "2.47.0-rc.4", + "version": "2.53.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@gisce/react-ooui", - "version": "2.47.0-rc.4", + "version": "2.53.2", "dependencies": { "@ant-design/colors": "^7.2.0", "@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", @@ -3396,9 +3396,9 @@ } }, "node_modules/@gisce/react-formiga-components": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@gisce/react-formiga-components/-/react-formiga-components-1.9.0.tgz", - "integrity": "sha512-khyUsa+VAgMYSbgnEGyZmi2rx0dgkrBpjLOk+SUSnbJCzRzbc4X8yfjPVbve3Au+LCsxvVE76sxFYKnbGTPTKQ==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@gisce/react-formiga-components/-/react-formiga-components-1.9.1.tgz", + "integrity": "sha512-7VLIdmnm0gRn5rfHC0zfnZmZv81qAFmDwRNZaLfepQrBxTgULTOW+boCuzxqyAO1G5xN4eXrx55yRyOao7rv+g==", "dependencies": { "antd": "5.13.1", "classnames": "^2.5.1", diff --git a/package.json b/package.json index b4bcbaa5..1d8b5bd9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gisce/react-ooui", - "version": "2.47.0-rc.4", + "version": "2.53.2", "engines": { "node": "20.5.0" }, @@ -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", diff --git a/src/widgets/containers/Notebook.tsx b/src/widgets/containers/Notebook.tsx index f6c00769..75f936a7 100644 --- a/src/widgets/containers/Notebook.tsx +++ b/src/widgets/containers/Notebook.tsx @@ -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; } @@ -50,7 +50,7 @@ function Notebook(props: Props): React.ReactElement { {tabs .filter((page: any) => !page.invisible)