You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The reason will be displayed to describe this comment to others. Learn more.
The comment "Temporarily disabled due to missing dependency" is misleading. The @object-ui/data-objectql package exists in the monorepo (packages/data-objectql/), is properly listed in plugin-object's package.json dependencies (line 50), and is only used for type imports in the plugin-object source code.
If there is a genuine build or runtime issue causing this to be disabled, the comment should specify the actual error or problem encountered rather than claiming the dependency is missing.
Suggested change
// import('@object-ui/plugin-object'), // Temporarily disabled due to missing dependency
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
The reason will be displayed to describe this comment to others. Learn more.
The comment "Temporarily disabled due to missing dependency" is misleading. The @object-ui/data-objectql package exists in the monorepo (packages/data-objectql/), is properly listed in plugin-object's package.json dependencies (line 50), and is only used for type imports in the plugin-object source code.
If there is a genuine build or runtime issue causing this to be disabled, the comment should specify the actual error or problem encountered rather than claiming the dependency is missing.
Suggested change
// import('@object-ui/plugin-object'); // Temporarily disabled due to missing dependency
// import('@object-ui/plugin-object'); // Temporarily disabled pending resolution of plugin issues
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
The reason will be displayed to describe this comment to others. Learn more.
This import creates CSS duplication. The components package's index.css (which gets built to dist/index.css) contains '@import tailwindcss' and defines all theme variables (packages/components/src/index.css lines 1-109). The site's global.css already imports tailwindcss and defines the same theme variables (lines 1-104).
With Tailwind 4's @source directive, global.css already scans the components package for classes (line 7: '@source ../../packages/components/src/**/*.{ts,tsx}'). This should generate all needed component styles without requiring a separate CSS import.
However, there's a tradeoff: the components package needs standalone CSS for external consumers. If removing this import causes styling issues, it suggests the @source scanning may not be working correctly. Consider verifying that Tailwind 4's @source properly processes the component classes, or document why both imports are necessary despite the duplication.
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment "Temporarily disabled due to missing dependency" is misleading. The @object-ui/data-objectql package exists in the monorepo (packages/data-objectql/), is properly listed in plugin-object's package.json dependencies (line 50), and is only used for type imports in the plugin-object source code.
If there is a genuine build or runtime issue causing this to be disabled, the comment should specify the actual error or problem encountered rather than claiming the dependency is missing.