Remove unused code and refactor components for React Native
Some checks failed
forgejo/Procyon/procyon/pipeline/head There was a failure building this commit
Some checks failed
forgejo/Procyon/procyon/pipeline/head There was a failure building this commit
This commit removes unused placeholder files and updates several components to be compatible with React Native. These updates include changes in styles, properties, and components like Modals, Toaster, Navigator, and others. The affected files were also appropriately reorganized. Additionally, a new .storybook manager file was introduced.
This commit is contained in:
parent
834f2d3bba
commit
9e0aec7186
90 changed files with 718 additions and 686 deletions
6
.storybook/manager.ts
Normal file
6
.storybook/manager.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { addons } from '@storybook/manager-api';
|
||||
|
||||
addons.setConfig({
|
||||
panelPosition: 'bottom',
|
||||
showToolbar: true,
|
||||
});
|
|
@ -63,13 +63,14 @@ export const parameters = {
|
|||
},
|
||||
options: {
|
||||
storySort: {
|
||||
method: 'alphabetical',
|
||||
method: 'alphabetical-by-kind',
|
||||
order: [
|
||||
'Introduction',
|
||||
'Auth',
|
||||
'Api',
|
||||
['Introduction'],
|
||||
'components',
|
||||
['Inputs', 'Layout', 'Display', 'Utils', '*'],
|
||||
'Form',
|
||||
['Introduction', 'Implementation'],
|
||||
'Localization',
|
||||
|
|
|
@ -38,7 +38,6 @@ export default (config) => {
|
|||
'@procyon/forms': path.join(__dirname, '../packages/forms/src'),
|
||||
'@procyon/hooks': path.join(__dirname, '../packages/hooks/src'),
|
||||
'@procyon/localization': path.join(__dirname, '../packages/localization/src'),
|
||||
'@procyon/router': path.join(__dirname, '../packages/router/src'),
|
||||
'@procyon/styles': path.join(__dirname, '../packages/styles/src'),
|
||||
'@procyon/types': path.join(__dirname, '../packages/types/src'),
|
||||
'@procyon/utils': path.join(__dirname, '../packages/utils/src'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue