Conversation
## Summary - Introduced Vue framework support by adding a new Vue package. - Created essential components for the Vue application, including `MarkedInput`, `Container`, and `OverlayRenderer`. - Implemented TypeScript support and Vite configuration for building the Vue app. - Added a sample application structure with an `index.html` and `App.vue` for demonstration. ## Key Changes - New package: `@markput/vue` with core functionalities for Vue. - Added `@markput/vue-app` for end-to-end testing of the Vue integration. - Updated `package.json` and `pnpm-lock.yaml` to include Vue dependencies and configurations. - Introduced TypeScript definitions and utility hooks for managing state and overlays in Vue. ## Benefits - Enhances the framework-agnostic capabilities of the library by supporting Vue. - Provides a structured approach for building Vue applications with marked input features.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…definitions ## Summary - Added `vue-tsc` as a development dependency for TypeScript support. - Updated `README.md` to clarify installation instructions for Vue. - Enhanced type definitions in components and hooks for better TypeScript integration. - Improved type safety in state management and component props across various Vue components. ## Key Changes - Introduced new `MarkedInputProps` interface for better prop management. - Refined type usage in `defineState.ts`, `useOverlay.ts`, and other components to ensure compatibility with Vue's reactivity system. - Updated `Container.vue`, `EditableSpan.vue`, and other components to use more precise types for state and props. ## Benefits - Enhances developer experience with improved TypeScript support. - Provides clearer documentation and examples for Vue users. - Strengthens the overall type safety and maintainability of the Vue package.
## Summary - Updated versions of several dependencies in `pnpm-lock.yaml` to ensure compatibility and stability. - Notable changes include: - Upgraded `@microsoft/api-extractor` from 7.57.2 to 7.57.6. - Updated `lint-staged` from 16.2.7 to 16.3.2. - Increased `oxlint` version from 1.49.0 to 1.51.0. - Adjusted `@types/node` version from 24.10.13 to 24.11.0 across multiple packages. - Updated `@storybook` packages from 10.2.10 to 10.2.14 for improved functionality and bug fixes. ## Benefits - Ensures the project uses the latest compatible versions of dependencies, enhancing performance and security.
This was referenced Mar 3, 2026
Nowely
pushed a commit
that referenced
this pull request
Mar 3, 2026
🤖 I have created a release *beep* *boop* --- ## [0.2.0](root-0.1.0...root-0.2.0) (2026-03-03) ### Features * **vue:** add initial Vue support ([#125](#125)) ([c479853](c479853)) ### Bug Fixes * **storybook:** prevent caret reset in TextSpan and fix Storybook issues ([#122](#122)) ([3472085](3472085)) ### Refactoring * extract core features and controllers from React package ([#124](#124)) ([c0ad3d7](c0ad3d7)) ### Miscellaneous * add release-please config for unified versioning ([db07f5e](db07f5e)) * upgrade to React 19 ([#121](#121)) ([d9c9531](d9c9531)) ### CI * add automated release workflow and PR validation ([#120](#120)) ([85b6fc4](85b6fc4)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Summary
MarkedInput,Container, andOverlayRenderer.index.htmlandApp.vuefor demonstration.Key Changes
@markput/vuewith core functionalities for Vue.@markput/vue-appfor end-to-end testing of the Vue integration.package.jsonandpnpm-lock.yamlto include Vue dependencies and configurations.