-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bf3e73
commit 879ef90
Showing
20 changed files
with
462 additions
and
70 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
const conventional = require("@commitlint/config-conventional"); | ||
const conventional = require('@commitlint/config-conventional'); | ||
|
||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
plugins: ["commitlint-plugin-function-rules"], | ||
helpUrl: "https://github.com/nextui-org/nextui/blob/main/CONTRIBUTING.MD#commit-convention", | ||
extends: ['@commitlint/config-conventional'], | ||
plugins: ['commitlint-plugin-function-rules'], | ||
helpUrl: 'https://github.com/interlay/ui/blob/main/CONTRIBUTING.MD#commit-convention', | ||
rules: { | ||
...conventional.rules, | ||
"type-enum": [ | ||
2, | ||
"always", | ||
["feat", "feature", "fix", "refactor", "docs", "build", "test", "ci", "chore"], | ||
], | ||
"function-rules/header-max-length": [0], | ||
}, | ||
'type-enum': [2, 'always', ['feat', 'feature', 'fix', 'refactor', 'docs', 'build', 'test', 'ci', 'chore']], | ||
'function-rules/header-max-length': [0] | ||
} | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<p align="center"> | ||
<h1 align="center">Interlay UI</h1> | ||
</p> | ||
</br> | ||
|
||
Interlay IU is library of accessible, reusable, and composable React components built | ||
around a crypto business model | ||
|
||
## More infomation | ||
|
||
See [README.md](https://github.com/interlay/ui/blob/master/README.md). |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# @interlay/system | ||
|
||
Interlay UI system primitives, `InterlayUIProvider` and some other utilities. | ||
|
||
## Installation | ||
|
||
```sh | ||
yarn add @interlay/system | ||
# or | ||
npm i @interlay/system | ||
``` | ||
|
||
## Contribution | ||
|
||
Yes please! See the | ||
[contributing guidelines](https://github.com/interlay/ui/blob/master/CONTRIBUTING.MD) | ||
for details. | ||
|
||
## License | ||
|
||
[MIT](https://choosealicense.com/licenses/mit/) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,51 @@ | ||
{ | ||
"name": "@just_testing13/system", | ||
"version": "0.0.0", | ||
"description": "Interlay UI system primitives.", | ||
"homepage": "https://github.com/interlay/ui#readme", | ||
"license": "MIT", | ||
"keywords": [ | ||
"interlay", | ||
"interlay ui", | ||
"system" | ||
], | ||
"main": "src/index.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/interlay/ui.git", | ||
"directory": "packages/core/system" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/interlay/ui/issues" | ||
}, | ||
"scripts": { | ||
"lint": "eslint .", | ||
"lint:fix": "eslint . --ext ts,tsx --fix", | ||
"clean": "rimraf dist .turbo", | ||
"typecheck": "tsc --noEmit", | ||
"build": "tsup src/index.ts --dts", | ||
"prepack": "clean-package", | ||
"postpack": "clean-package restore" | ||
}, | ||
"devDependencies": { | ||
"clean-package": "^2.2.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
"dependencies": { | ||
"@react-aria/overlays": "^3.16.0", | ||
"@react-aria/i18n": "^3.8.1" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=18", | ||
"react-dom": ">=18" | ||
}, | ||
"dependencies": { | ||
"@react-aria/overlays": "^3.16.0", | ||
"@react-aria/i18n": "^3.8.1" | ||
"devDependencies": { | ||
"clean-package": "^2.2.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"clean-package": "../../../clean-package.config.json" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# @interlay/theme | ||
|
||
Interlay UI components theme. | ||
|
||
## Installation | ||
|
||
```sh | ||
yarn add @interlay/theme | ||
# or | ||
npm i @interlay/theme | ||
``` | ||
|
||
## Contribution | ||
|
||
Yes please! See the | ||
[contributing guidelines](https://github.com/interlay/ui/blob/master/CONTRIBUTING.MD) | ||
for details. | ||
|
||
## License | ||
|
||
[MIT](https://choosealicense.com/licenses/mit/) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,53 @@ | ||
{ | ||
"name": "@just_testing13/theme", | ||
"version": "0.1.3", | ||
"main": "src/index.ts", | ||
"description": "The default theme for Interlay UI components", | ||
"homepage": "https://github.com/interlay/ui#readme", | ||
"license": "MIT", | ||
"keywords": [ | ||
"interlay", | ||
"interlay ui", | ||
"theme", | ||
"theming", | ||
"design", | ||
"ui", | ||
"components", | ||
"classNames", | ||
"css" | ||
], | ||
"main": "src/index.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/interlay/ui.git", | ||
"directory": "packages/core/theme" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/interlay/ui/issues" | ||
}, | ||
"scripts": { | ||
"lint": "eslint .", | ||
"lint:fix": "eslint . --ext ts,tsx --fix", | ||
"clean": "rimraf dist .turbo", | ||
"typecheck": "tsc --noEmit", | ||
"build": "tsup", | ||
"prepack": "clean-package", | ||
"postpack": "clean-package restore" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=18", | ||
"react-dom": ">=18" | ||
}, | ||
"devDependencies": { | ||
"clean-package": "^2.2.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=18", | ||
"react-dom": ">=18" | ||
}, | ||
"clean-package": "./clean-package.config.json" | ||
} |
Oops, something went wrong.