Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
ACL UI Components library, icon font, css and more!
Add this to package.json
, where VERSION_NUMBER
equals e.g. 3.38.0
(get the version from here):
{
"dependencies": {
"@acl-services/acl-ui": "VERSION_NUMBER",
}
}
Note: We use yarn
for faster packages installation and better packages management. If you haven't had yarn
installed, you can install it with
$ brew install yarn
and run
$ yarn
** May 2018 ** Current package issues may occur with node-sass and may be resolved using the following commmand
npm install node-sass --registry=http://registry.npm.taobao.org --sass-binary-site=http://npm.taobao.org/mirrors/node-sass
Assuming you are using Webpack, you can import the base style and mixing helpers in a .scss
file using:
// Import mixins and variables to use
@import "~acl-ui/helpers/css/index";
// Basic style using SASS variables
body {
background-color: $color--black-lighten-80;
color: $color--black;
font-family: $font-family--default;
margin: 0;
width: 100%;
}
import React from "react";
import PropTypes from "prop-types";
import SidePanel from "acl-ui/components/SidePanel";
class SidePanelExample extends React.Component {
openPanel() {
this.refs.panel.open();
}
render() {
return (
<div>
<button onClick={this.openPanel.bind(this)}>Open SidePanel</button>
<SidePanel ref="panel" title="ACL UI is Awesome">
<h1>Objectives:</h1>
<ul>
<li>Happy customers</li>
<li>Profit</li>
</ul>
</SidePanel>
</div>
);
}
}
export default SidePanelExample;
Most of our services use ACL-UI in some format. The following table indicates those that are using and will also serve as the progress check against the move to ACL-UI 3's structure.
Pre 2.0 | acl-ui 2 | acl-ui 3 | Notes | |
---|---|---|---|---|
Accounts | x | x | ||
Inspirations | x | |||
Communities | x | Static assets | ||
ACL Store [wip] | ||||
Project Manager | x | x | ||
Risk Manager | x | x | ||
Results Manager | x | x | ||
Visualizer | x | x | ||
Storyboards | x | x | ||
ACL for Windows | x | |||
Analytic | ||||
AX | x | |||
Project Manager Client | x | |||
ADA | x | |||
Scripthub | x | |||
Report Manager | ||||
iOS App | ||||
Android App | ||||
Style Guide | x | |||
Build ACL | x |
After making a change, make sure to visually verify in the consuming services. If you are unable to verify the change, please let the respective developers and QAs know.
$ yarn design-tokens
Check out the Wiki For more information!
Viewable within ACL’s network only.
FAQs
ACL UI Core + Components
The npm package acl-ui receives a total of 0 weekly downloads. As such, acl-ui popularity was classified as not popular.
We found that acl-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.