Conversation
- bump antd 6.4.2 -> 6.6.0 and @ant-design/x 2.7.0 -> 2.9.0, along with React 19.2.8, svelte 5.56.8, babel 8, monaco-editor 0.56, katex 0.18, TypeScript 6 and the @gradio/* packages - switch @vitejs/plugin-react-swc to @vitejs/plugin-react - add GradioDevModePlugin to rewrite the `_NORMAL_` mode marker that @gradio/preview fails to replace when it is emitted as a template literal, so `gradio cc dev` reaches the backend instead of Vite - build global member expressions for dotted global paths and support string literal import/export names in the externalize transform - update monaco-editor worker import paths for monaco-editor 0.56 - reset loading_status to null when `ms_auto_loading` is false - resolve tsconfig `paths` relative to the config file instead of `baseUrl`, which TypeScript 6 deprecates and TypeScript 7 will drop - declare `*less` next to the existing `*css` so side-effect imports of less files type-check under TypeScript 6 - ignore the local `gradio` symlink used for `gradio cc dev`
New components: - add antd.BorderBeam with `color`, `count`, `duration`, `line_width`, `outset` and `size` - add antd.Listy with `items`, `row_key`, `item_render`, `group`, `height`, `sticky`, `virtual`, a `scroll` event and the `itemRender` and `group.title` slots. `row_key` takes either a field name or a Javascript function string; `scrollTo` stays unsupported as the imperative ref cannot be reached from Python antd 6.4.2 -> 6.6.0: - add a `clear` event to DatePicker, DatePicker.RangePicker, TimePicker and TimePicker.RangePicker - add Modal and Modal.Static `scroll_lock`, Steps `max_count` and FloatButton.BackTop `show_progress` - add Mentions `popup_render`, the Tabs `more.popupRender` slot and the `components.sizeChanger` slot for Pagination and Table pagination - allow Slider `disabled` to be a list, Watermark `content` to carry per line font styles and Select `token_separators` to be a function - complete the Dropdown and Dropdown.Button `placement` values - add the `sq_AL` locale to ConfigProvider - fix Input.Password `visiable_toggle` never reaching antd because of the typo, add `visibility_toggle` and keep the old name working - fix a missing comma in Table SLOTS that concatenated `rowSelection` with `loading.tip` antdx 2.7.0 -> 2.9.0: - add Folder `context_menu` (items or a Javascript function string), a `right_click` event and Folder.TreeNode `context_menu`, which also accepts False to opt a single node out - add Think and ThoughtChain.ThoughtChainItem `destroy_on_hidden`
`getInfo` and `getInfoFromPullRequest` were replaced by `getCommitInfo` and `getPullRequestInfo`, which return `undefined` when the commit, pull request or repository cannot be found and expose `markdownLink` on each entity instead of a flat `links` object. - map `links.commit`, `links.pull` and `links.user` onto `commit.markdownLink`, `pull.markdownLink` and `author.markdownLink`, falling back to null so the existing prefix and suffix handling is unchanged - extract `get_repo` to null check `changelogOpts` and narrow the repo to a string, which the `null | Record<string, unknown>` signature requires
The dts build reads the compiler API through `require('typescript')` and
injects `baseUrl` into the compiler options. TypeScript 7 only exposes
`version` from its main entry, so `ts.sys` is undefined and the build
crashes, and TypeScript 6 reports the injected `baseUrl` as a deprecated
option error.
Scope the override to tsup so the workspace keeps TypeScript 6 while the
dts build gets a version that supports both. This also drops the stale
typescript 7 entries that peer resolution could otherwise hand to
typescript-eslint, which refuses to run on TypeScript 7.
The externalize transform referenced an undefined `variable` instead of `entry.ref`, so every chunk importing a global would have thrown a ReferenceError at build time, and the `ImportDefaultSpecifier` branch had lost the `entry.namespace` check while still documenting it in a comment, which silently reverted the Icon default import fix from #123. - pass `entry.ref` to the global expression helpers - resolve default imports of namespace globals back to `<ref>.default`, keeping value globals on `<ref>` itself
🦋 Changeset detectedLatest commit: 73d7555 The changes in this PR will be included in the next version bump. This PR includes changesets to release 8 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.