Skip to content

Commit 92d9b26

Browse files
committed
21.1
1 parent 768c5be commit 92d9b26

File tree

284 files changed

+5158
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+5158
-1
lines changed

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

CHANGE_LOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
v21.1
2+
- Initial Release

LICENSE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
You may use this version for the limited purposes of demonstrations, trials or design-time evaluations.
2+
3+
This project has been released under the IntegralUI Web License, and may not be used except in compliance with the License.
4+
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://lidorsystems.com/products/web/grid/license-agreement.aspx).
5+
6+
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.

README.md

Lines changed: 104 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,104 @@
1-
# integralui-web-grid
1+
# IntegralUI Web - Grid, v21.1
2+
3+
IntegralUI Web - Grid is a native Web Component that displays tabular data sets. It is fully customizable using column and row templates, comes with high performance during loading and scrolling of thousands of records, dynamic grouping with custom aggregation functions, advanced filtering and much more.
4+
5+
A compolete feature list is available here: [IntegralUI Web - Grid features](https://lidorsystems.com/products/web/studio/features/grid/).
6+
7+
<b>Note</b> This component is also part of [IntegralUI Web](https://github.com/lidorsystems/integralui-web.git) product suite.
8+
9+
10+
## Dependencies
11+
12+
IntegralUI Web - Grid 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.
13+
14+
15+
## DEMO
16+
17+
[Online QuickStart App](https://www.lidorsystems.com/products/web/studio/samples/web-components/) - An online demo of each component included
18+
19+
20+
## Installation
21+
22+
Install the repository by running
23+
24+
```bash
25+
npm install https://github.com/lidorsystems/integralui-web-grid.git
26+
```
27+
28+
or directly from NPM
29+
30+
```bash
31+
npm i integralui-web
32+
```
33+
34+
Open your application and add a reference to a component you want to use. For example, if you are using the IntegralUI Grid component:</p>
35+
36+
### Angular
37+
38+
```bash
39+
import 'integralui-web-grid/components/integralui.grid.js';
40+
```
41+
42+
### React
43+
44+
```bash
45+
import IntegralUIGridComponent from 'integralui-web-grid/wrappers/react.integralui.grid.js';
46+
```
47+
48+
<b>Note</b> 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>
49+
50+
### Vanilla JavaScript
51+
52+
```bash
53+
<script type="module" src="integralui-web-grid/components/integralui.grid.js"></script>
54+
```
55+
56+
57+
## Icons
58+
59+
Because of the web component specification that defines URLs to be always relative to the main document, the path that leads to the icons used by the IntegralUI Web components needs to be set. In addition you may also need to copy/paste the /icons folder in your application folder. Depending on the framework of your choosing this may differ.
60+
61+
### Angular
62+
63+
Follow these steps:
64+
1. Copy/Paste the content of the integralui-web-grid/icons folder under /assets/integralui-web-grid/icons subfolder in your React application.
65+
2. Set the resourcePath property of IntegralUI Web components to point to the location set in your /assets folder. In this case, for Grid for example:
66+
67+
```bash
68+
<iui-grid [resourcePath]="'assets/integralui-web-grid/icons'"></iui-grid>
69+
```
70+
71+
### React
72+
73+
Follow these steps:
74+
1. Copy/Paste the content of the integralui-web-grid/icons folder under /public/integralui-web-grid/icons subfolder in your React application.
75+
2. Set the resourcePath property of IntegralUI Web components to point to the location set in your /public folder. In this case, for Grid for example:
76+
77+
```bash
78+
<IntegralUIGridComponent resourcePath="integralui-web-grid/icons"></IntegralUIGridComponent>
79+
```
80+
81+
### Vanilla JavaScript
82+
83+
Set the resourcePath property of IntegralUI Web components to point to /integralui-web-grid/icons folder. In this case, for Grid for example:
84+
85+
```bash
86+
<iui-grid resource-path="../../integralui-web-grid/icons"></iui-grid>
87+
```
88+
89+
90+
## QuickStart App
91+
92+
There is a demo application with source code that contains samples for each component included in the IntegralUI Web Lite library. It can help you to get started quickly with learning about the components and write tests immediatelly.
93+
94+
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.
95+
96+
97+
## License Information
98+
99+
You may use this version for the limited purposes of demonstrations, trials or design-time evaluations.
100+
101+
This project has been released under the IntegralUI Web License, and may not be used except in compliance with the License.
102+
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://lidorsystems.com/products/web/grid/license-agreement.aspx).
103+
104+
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.

components/integralui.base.grid.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.base.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.base.value.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)