-
Notifications
You must be signed in to change notification settings - Fork 0
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
57a504d
commit 06d05db
Showing
17 changed files
with
650 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
You are FREE to use this product to develop Internet and Intranet web sites, web applications and other products, with no-charge. | ||
|
||
This project has been released under the IntegralUI Web Lite License, and may not be used except in compliance with the License. | ||
A copy of the License should have been installed in the product's root installation directory or it can be found here: [License Agreement](https://www.lidorsystems.com/products/web/lite/integralui-web-lite-license-agreement.pdf). | ||
|
||
This SOFTWARE is provided "AS IS", WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. |
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 +1,181 @@ | ||
# integralui-web-label | ||
# IntegralUI Web - Label, v22.2 | ||
|
||
IntegralUI Web - Label is a native Web Component that is fully customizable label with different alignments relative to attached element. | ||
|
||
![IntegralUI Web - Label, 22.2 - a native Web Component for JavaScript, Angular, React and Vue. A fully customizable label with different alignments relative to attached element.](https://www.lidorsystems.com/products/web/studio/images/integralui-web-label.png) | ||
|
||
<b>Note</b> This component is part of [IntegralUI Web](https://github.com/lidorsystems/integralui-web.git) library. | ||
|
||
Here is a brief overview of what is included: | ||
|
||
|
||
## Components | ||
|
||
[Label](https://www.lidorsystems.com/products/web/studio/samples/#/label) - A fully customizable label with different alignments relative to attached element</li> | ||
|
||
|
||
## Services | ||
|
||
<b>Common</b> - Includes a set of common functions usable in most applications | ||
|
||
|
||
## Dependencies | ||
|
||
IntegralUI Web is built on top of [LitElement](https://github.com/Polymer/lit-element). All necessary files from that library are already included in the /external subfolder of this repository. | ||
|
||
|
||
## DEMO | ||
|
||
[Online QuickStart App](https://www.lidorsystems.com/products/web/studio/samples/) - An online demo of Label component is included | ||
|
||
|
||
## Installation | ||
|
||
Install the repository by running | ||
|
||
```bash | ||
npm install https://github.com/lidorsystems/integralui-web-label.git | ||
``` | ||
|
||
or directly from NPM | ||
|
||
```bash | ||
npm i integralui-web-label | ||
``` | ||
|
||
|
||
## How to Use | ||
|
||
<b>Note</b> A detailed information is available here: [How to Use IntegralUI Web Components](https://www.lidorsystems.com/help/integralui/web-components/introduction/installation/). Explains how to setup and use components for each framework: Angular, React or Vanilla JavaScript. | ||
|
||
In general, you need to open your application and add a reference to a component you want to use. For example, if you are using the IntegralUI Label component:</p> | ||
|
||
### Angular | ||
|
||
```bash | ||
import 'integralui-web-label/components/integralui.label.js'; | ||
import { IntegralUILabelAlignment, IntegralUITheme } from 'integralui-web-label/components/integralui.enums.js'; | ||
|
||
@Component({ | ||
selector: '', | ||
templateUrl: './label-overview.html', | ||
styleUrls: ['./label-overview.css'] | ||
}) | ||
export class LabelOverviewSample { | ||
public labelAlignment: IntegralUILabelAlignment = IntegralUILabelAlignment.Left; | ||
public labelContentSize: any = { width: 200 } | ||
public labelSize: any = { width: 350 } | ||
public currentTheme: IntegralUITheme = IntegralUITheme.Office; | ||
} | ||
``` | ||
Then, place the component in HTML using its tag. Here is an example: | ||
```bash | ||
<div class="alignment-block"> | ||
<iui-label [alignment]="labelAlignment" [contentSize]="labelContentSize" [size]="labelSize" [value]="'Label 1'" [theme]="currentTheme"> | ||
<input value="Sample text" /> | ||
</iui-label> | ||
</div> | ||
``` | ||
Depending on current version of TypeScript, you may need to add some settings in tsconfig.json, under "angularCompilerOptions": | ||
```bash | ||
"angularCompilerOptions": { | ||
|
||
. . . | ||
|
||
"suppressImplicitAnyIndexErrors": true, // solves implicit any values | ||
"noImplicitAny": false, // solves angular could not find a declaration file for module implicitly has an 'any' type | ||
"strictNullChecks": false // solves type null is not assignable to type | ||
|
||
} | ||
``` | ||
### React | ||
Currently [ReactJS doesn't have full support for Web Components](https://custom-elements-everywhere.com/#react). Mainly because of the way data is passed to the component via attributes and their own synthetic event system. For this reason, you can use available wrappers located under /wrappers directory, which are ReactJS components that provide all public API from an IntegralUI component.</p> | ||
```bash | ||
import IntegralUILabelComponent from 'integralui-web-label/wrappers/react.integralui.label.js'; | ||
import { IntegralUILabelAlignment, IntegralUITheme } from 'integralui-web-label/components/integralui.enums.js'; | ||
class LabelOverview extends Component { | ||
constructor(props){ | ||
super(props); | ||
this.state = { | ||
isAnimationAllowed: true, | ||
labelAlignment: IntegralUILabelAlignment.Left, | ||
labelContentSize: { width: 200 }, | ||
labelSize: { width: 350 }, | ||
currentTheme: IntegralUITheme.Office | ||
} | ||
} | ||
} | ||
``` | ||
Then, place the component in HTML using its tag. Here is an example: | ||
```bash | ||
render() { | ||
return ( | ||
<div className="alignment-block"> | ||
<IntegralUILabelComponent alignment={this.state.labelAlignment} contentSize={this.state.labelContentSize} size={this.state.labelSize} value={'Label 1'} theme={this.state.currentTheme}> | ||
<input defaultValue="Sample text" /> | ||
</IntegralUILabelComponent> | ||
</div> | ||
); | ||
} | ||
``` | ||
### Vanilla JavaScript | ||
```bash | ||
<script type="module" src="integralui-web-label/components/integralui.label.js"></script> | ||
``` | ||
Then, place the component in HTML using its tag. Here is an example: | ||
```bash | ||
<div class="alignment-block"> | ||
<iui-label value="Label 1" alignment="Left" theme="Office"><input value="Sample text" /></iui-label> | ||
</div> | ||
``` | ||
## How to Change Appearance | ||
To modify the Label appearance, you can use CSS custom properties: | ||
```bash | ||
.alignment-block iui-label { | ||
--label-background: #cecece; | ||
--label-display: block; | ||
--label-focused-background: #6ea9db; | ||
--label-focused-color: white; | ||
--label-margin: 10px 0; | ||
--label-value-padding: 5px; | ||
} | ||
``` | ||
## QuickStart App | ||
There is a demo application with source code that contains samples for each component included in the IntegralUI Web library. It can help you to get started quickly with learning about the components and write tests immediatelly. | ||
From [IntegralUI Web - QuickStart](https://github.com/lidorsystems/integralui-web-quickstart) you can download a demo app for Angular, AngularJS, React and Vanilla JavaScript. A detailed information about each of these quick-start demos is available in ReadMe file, located in the root folder of the demo app. | ||
## License Information | ||
You are FREE to use this product to develop Internet and Intranet web sites, web applications and other products, with no-charge. | ||
This project has been released under the IntegralUI Web Lite License, and may not be used except in compliance with the License. | ||
A copy of the License should have been installed in the product's root installation directory or it can be found here: [License Agreement](https://www.lidorsystems.com/products/web/lite/integralui-web-lite-license-agreement.pdf). | ||
This SOFTWARE is provided "AS IS", WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.