From 0bc73e5a9d94acab25684c95979c16b9dc2b0ca4 Mon Sep 17 00:00:00 2001 From: Krishan Patel Date: Fri, 23 Jan 2026 13:55:59 +0000 Subject: [PATCH 1/3] . --- .github/workflows/deploy-beta.yml | 93 ----------------------- package.json | 3 +- src/wrappers/containingView/component.tsx | 1 - 3 files changed, 2 insertions(+), 95 deletions(-) delete mode 100644 .github/workflows/deploy-beta.yml diff --git a/.github/workflows/deploy-beta.yml b/.github/workflows/deploy-beta.yml deleted file mode 100644 index 1866b795..00000000 --- a/.github/workflows/deploy-beta.yml +++ /dev/null @@ -1,93 +0,0 @@ -name: Deploy -on: - push: - branches: [beta-*] - workflow_dispatch: -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-deploy-beta - cancel-in-progress: false -jobs: - deploy-package-next: - runs-on: ubuntu-latest - env: - DOCKER_IMAGE: package - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - steps: - - name: Check out the repo - uses: actions/checkout@v2 - with: - # NOTE(krishan711): need full history to calculate difference - fetch-depth: 0 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Build docker image - uses: docker/build-push-action@v2 - with: - context: . - load: true - cache-from: type=gha,scope=package - cache-to: type=gha,mode=max,scope=package - tags: ${{ env.DOCKER_IMAGE }} - - name: Calculate commit count since last tag - id: vars - run: echo ::set-output name=commit_count::$(git rev-list $(git describe --tags --abbrev=0)..HEAD --count) - - name: Create .npmrc file - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - - name: Publish next package to npm - if: steps.vars.outputs.commit_count != '0' - run: docker run -v $(pwd)/.npmrc:/root/.npmrc $DOCKER_IMAGE make NEXT_VERSION=${{ steps.vars.outputs.commit_count }} NEXT_TYPE=${{ github.ref_name }} publish-next - # deploy-docs-next: - # runs-on: ubuntu-latest - # env: - # DOCKER_IMAGE: ghcr.io/${{ github.repository }}-docs:next - # steps: - # - name: Check out the repo - # uses: actions/checkout@v2 - # - name: Login to GitHub container registry - # uses: docker/login-action@v2 - # with: - # registry: ghcr.io - # username: ${{ github.actor }} - # password: ${{ secrets.GITHUB_TOKEN }} - # - name: Set up Docker Buildx - # uses: docker/setup-buildx-action@v1 - # - name: Build docker image - # uses: docker/build-push-action@v2 - # with: - # context: . - # push: true - # cache-from: type=gha,scope=docs-app - # cache-to: type=gha,mode=max,scope=docs-app - # tags: ${{ env.DOCKER_IMAGE }} - # file: ./docs.Dockerfile - # run-docs-next: - # needs: deploy-docs-next - # runs-on: ubuntu-latest - # env: - # NAME: ui-react-docs-next - # DOCKER_IMAGE: ghcr.io/${{ github.repository }}-docs:next - # steps: - # - name: executing remote ssh commands - # uses: appleboy/ssh-action@master - # with: - # host: ${{ secrets.KIBA_APP_BOX_URL }} - # username: ${{ secrets.KIBA_APP_BOX_USER }} - # key: ${{ secrets.KIBA_APP_BOX_SSH_KEY }} - # port: ${{ secrets.KIBA_APP_BOX_PORT }} - # envs: DOCKER_IMAGE,NAME - # script_stop: true - # script: | - # url="ui-react-docs-next.kibalabs.com" - # varsFile=~/.${NAME}.vars - # docker pull ${DOCKER_IMAGE} - # docker stop ${NAME} && docker rm ${NAME} || true - # docker run \ - # --name ${NAME} \ - # --detach \ - # --publish-all \ - # --restart on-failure \ - # --env NAME=${NAME} \ - # --env VIRTUAL_HOST=${url} \ - # --env LETSENCRYPT_HOST=${url} \ - # --env-file ${varsFile} \ - # ${DOCKER_IMAGE} diff --git a/package.json b/package.json index 3d7e9ee1..40882def 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "import": "./dist/index.js" }, "./styles.css": "./dist/index.css", - "./styles.scss": "./src/styles/all.scss" + "./styles.scss": "./src/styles/all.scss", + "./mixins.scss": "./src/styles/_mixins.scss" }, "files": [ "dist/*", diff --git a/src/wrappers/containingView/component.tsx b/src/wrappers/containingView/component.tsx index bf9eed88..c0b0e9b0 100644 --- a/src/wrappers/containingView/component.tsx +++ b/src/wrappers/containingView/component.tsx @@ -14,7 +14,6 @@ export function ContainingView(props: IContainingViewProps): React.ReactElement const wrapperStyle: React.CSSProperties = { maxWidth: 'var(--kiba-screen-width-max)', width: '100%', - overflow: 'auto', ...(isCenteredHorizontally ? { marginLeft: 'auto', marginRight: 'auto' } : {}), }; return ( From 9ef1143e45d751c2b870f941ee5d51afd0fa9bd3 Mon Sep 17 00:00:00 2001 From: Krishan Patel Date: Fri, 23 Jan 2026 13:56:36 +0000 Subject: [PATCH 2/3] . --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2cc4fa4..8e77fbfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - [MAJOR] Migrated all components from styled-components to pure CSS/SCSS with CSS layers - [MAJOR] Replaced JavaScript theme system with CSS custom properties (`--kiba-*`) - [MAJOR] Updated to Storybook 10 with CSF3 format and MDX documentation +- [MINOR] Changed `ContainingView` to not make children automatically have `overflow: auto` ### Removed From 711dad2847ccb300e410a4e83a4f5e57636f3a07 Mon Sep 17 00:00:00 2001 From: Krishan Patel Date: Fri, 23 Jan 2026 13:57:02 +0000 Subject: [PATCH 3/3] . --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 40882def..3d7e9ee1 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,7 @@ "import": "./dist/index.js" }, "./styles.css": "./dist/index.css", - "./styles.scss": "./src/styles/all.scss", - "./mixins.scss": "./src/styles/_mixins.scss" + "./styles.scss": "./src/styles/all.scss" }, "files": [ "dist/*",