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.
hig-vanilla
Advanced tools
Stateless implementation in pure CSS, HTML and JS with no framework dependecies
The HIG Web implementation consists of html
, css
and js
. You can opt to only consume the html
and css
part and write the wrapper against the interface.json
yourself (hard) or opt to use our js
wrapper directly (easy).
npm install
npm run lib
var Button = new Hig.Button({
"title": "just a button",
"link": "http://autodesk.com"
});
Button.mount("body");
Button.onClick(function(e){
e.preventDefault();
console.log("Button CLICK")
});
more advanced button examples can be found in the components tests dir
So you want to help out? Great! Let's get you up and running:
npm install
npm run watch
Creating a new component (or subcomponent) consists of 2 parts:
interface.json
outlineplop skeleton templates
to get you started, type the following command to start the interactive shell:plop
Use the arrows to select the hig_skeleton
, type your component name (ex: component123
), next type the location where you would want your component directory to live (ex: src/components/component123_parent
). This will generate a html
, sass
and js
file in the directory you provided, in our example it would create:
src/components/component123_parent/component123/component123.html
src/components/component123_parent/component123/component123.sass
src/components/component123_parent/component123/component123.js
To add a new svg icon to our stack, simply add the svg
file to the src/basics/icons/src directory.
Next run the following command:
npm run build-icons
which will trigger our build script to create an updated release file in src/basics/icons/release. The build script in itself simply does a SVGO
optimize of the svg, and stores the optimized svg as a string in a key-value object in our release file, read more about the script here: src/basics/icons/build/build.js.
.env
and contact someone on the #orion-hig-web-dev slack channel for credentials (you'll need a SAUCE_USERNAME=xxxxx
and a SAUCE_ACCESS_KEY=xxxxx
)$ npm run gemini-report
$ open ./gemini-report/index.html
FAQs
Stateless implementation in pure CSS, HTML and JS with no framework dependecies
The npm package hig-vanilla receives a total of 0 weekly downloads. As such, hig-vanilla popularity was classified as not popular.
We found that hig-vanilla demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.