parent
7c5aab0831
commit
f093473112
@ -1,12 +0,0 @@ |
|||||||
{ |
|
||||||
"presets": [ |
|
||||||
[ |
|
||||||
"@nrwl/react/babel", |
|
||||||
{ |
|
||||||
"runtime": "automatic", |
|
||||||
"useBuiltIns": "usage" |
|
||||||
} |
|
||||||
] |
|
||||||
], |
|
||||||
"plugins": [] |
|
||||||
} |
|
@ -1,18 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": ["plugin:@nrwl/nx/react", "../../../.eslintrc.json"], |
|
||||||
"ignorePatterns": ["!**/*"], |
|
||||||
"overrides": [ |
|
||||||
{ |
|
||||||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], |
|
||||||
"rules": {} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"files": ["*.ts", "*.tsx"], |
|
||||||
"rules": {} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"files": ["*.js", "*.jsx"], |
|
||||||
"rules": {} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
# remix-ui-main-panel |
|
||||||
|
|
||||||
This library was generated with [Nx](https://nx.dev). |
|
||||||
|
|
||||||
## Running unit tests |
|
||||||
|
|
||||||
Run `nx test remix-ui-main-panel` to execute the unit tests via [Jest](https://jestjs.io). |
|
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"name": "@remix-ui/main-panel", |
|
||||||
"version": "0.0.1" |
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
export * from './lib/remix-ui-main-panel'; |
|
@ -1,26 +0,0 @@ |
|||||||
.plugins { |
|
||||||
height: 100%; |
|
||||||
} |
|
||||||
.plugItIn { |
|
||||||
display : none; |
|
||||||
height : 100%; |
|
||||||
} |
|
||||||
.plugItIn > div { |
|
||||||
overflow-y : auto; |
|
||||||
overflow-x : hidden; |
|
||||||
height : 100%; |
|
||||||
width : 100%; |
|
||||||
} |
|
||||||
.plugItIn.active { |
|
||||||
display : block; |
|
||||||
} |
|
||||||
.pluginsContainer { |
|
||||||
height : 100%; |
|
||||||
overflow-y : hidden; |
|
||||||
} |
|
||||||
|
|
||||||
/* .pluginsContainer { |
|
||||||
height: 100%; |
|
||||||
display: flex; |
|
||||||
overflow-y: hidden; |
|
||||||
} */ |
|
@ -1,16 +0,0 @@ |
|||||||
import React, { useEffect, useState, useRef } from 'react' // eslint-disable-line
|
|
||||||
import './remix-ui-main-panel.module.css'; |
|
||||||
export interface RemixUiMainPanelProps { |
|
||||||
plugin: any |
|
||||||
contents: [any] |
|
||||||
} |
|
||||||
|
|
||||||
export const RemixUiMainPanel = (props: RemixUiMainPanelProps) => { |
|
||||||
const dom = useRef(null) |
|
||||||
return ( |
|
||||||
<div className="pluginsContainer" data-id="mainPanelPluginsContainer" id='mainPanelPluginsContainer-id' ref={dom} > |
|
||||||
</div> |
|
||||||
) |
|
||||||
} |
|
||||||
|
|
||||||
export default RemixUiMainPanel; |
|
@ -1,20 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "../../../tsconfig.base.json", |
|
||||||
"compilerOptions": { |
|
||||||
"jsx": "react-jsx", |
|
||||||
"allowJs": true, |
|
||||||
"esModuleInterop": true, |
|
||||||
"allowSyntheticDefaultImports": true, |
|
||||||
"forceConsistentCasingInFileNames": true, |
|
||||||
"strict": true, |
|
||||||
"noImplicitReturns": true, |
|
||||||
"noFallthroughCasesInSwitch": true |
|
||||||
}, |
|
||||||
"files": [], |
|
||||||
"include": [], |
|
||||||
"references": [ |
|
||||||
{ |
|
||||||
"path": "./tsconfig.lib.json" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../../dist/out-tsc", |
|
||||||
"types": ["node"] |
|
||||||
}, |
|
||||||
"files": [ |
|
||||||
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", |
|
||||||
"../../../node_modules/@nrwl/react/typings/image.d.ts" |
|
||||||
], |
|
||||||
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"], |
|
||||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] |
|
||||||
} |
|
Loading…
Reference in new issue