Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@orca-so/design-system
Advanced tools
This is some short description.
This repository contains proprietary fonts that should be removed before open-sourcing this repo.
Two styles of components are available: Base and Pro. Base friendly and inviting. Pro is more serious and business-like.
Including the Orca Design System in your project is easy. Simply add the following to your project's package.json
file:
npm i @orca-so/design-system
yarn add @orca-so/design-system
Add our tailwind configuration to your tailwind config file:
module.exports = {
content: [
// ...
"./node_modules/@orca-so/design-system/dist/**/*.{html,ts,tsx,js,jsx}"
],
presets: [
require('@orca-so/design-system/dist/tailwind.config.js')
],
// ...
}
Add the SuisseIntl font to your project (optional):
@layer base {
@font-face {
font-family: "SuisseIntl";
font-weight: 400;
src: url("path/to/SuisseIntl-Regular-WebS.woff") format("woff");
}
@font-face {
font-family: "SuisseIntl";
font-weight: 500;
src: url("path/to/SuisseIntl-Medium-WebS.woff") format("woff");
}
@font-face {
font-family: "SuisseIntl";
font-weight: 600;
src: url("path/to/SuisseIntl-SemiBold-WebS.woff") format("woff");
}
@font-face {
font-family: "SuisseIntlMono";
font-weight: 400;
src: url("path/to/SuisseIntlMono-Regular-WebS.woff") format("woff");
}
}
Then, you can import the components you need:
import { Button, Colors, Icon } from '@orca-so/design-system';
const Component = () => (
<div style={{ backgroundColor: Colors.Manta }} className="bg-manta">
<Button>Click Me</Button>
<Icon name="orca" />
</div>
);
This library supports tree-shaking, so you can import only the components you need.
git clone
yarn install
yarn dev
If you want to use a local version of the design system in your project, you can do so by following these steps.
package.json
file:"resolutions": {
"@orca-so/design-system": "portal:../design-system"
}
yarn install
in your project.tsc --watch
in the design system project to compile the TypeScript files and watch for changes.next dev
(or whatever development command) in the in your project. Hot reload should work when using next.FAQs
Orca Design System
The npm package @orca-so/design-system receives a total of 0 weekly downloads. As such, @orca-so/design-system popularity was classified as not popular.
We found that @orca-so/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.