@genesislcap/rapid-grid-tabulator 14.238.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/custom-elements-manifest.config.js +14 -0
- package/dist/custom-elements.json +1231 -0
- package/dist/dts/cell-renderers/action.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/action.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/index.d.ts +2 -0
- package/dist/dts/cell-renderers/index.d.ts.map +1 -0
- package/dist/dts/grid-components.d.ts +16 -0
- package/dist/dts/grid-components.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.d.ts +38 -0
- package/dist/dts/grid-tabulator.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.styles.d.ts +2 -0
- package/dist/dts/grid-tabulator.styles.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.template.d.ts +2 -0
- package/dist/dts/grid-tabulator.template.d.ts.map +1 -0
- package/dist/dts/index.d.ts +9 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/style/colors.d.ts +16 -0
- package/dist/dts/style/colors.d.ts.map +1 -0
- package/dist/dts/style/index.d.ts +3 -0
- package/dist/dts/style/index.d.ts.map +1 -0
- package/dist/dts/style/tokens.d.ts +9 -0
- package/dist/dts/style/tokens.d.ts.map +1 -0
- package/dist/dts/themes/genesis-rapid/theme-genesis-rapid-css.d.ts +2 -0
- package/dist/dts/themes/genesis-rapid/theme-genesis-rapid-css.d.ts.map +1 -0
- package/dist/dts/themes/genesis-rapid/theme-genesis-rapid.d.ts +8 -0
- package/dist/dts/themes/genesis-rapid/theme-genesis-rapid.d.ts.map +1 -0
- package/dist/dts/themes/index.d.ts +2 -0
- package/dist/dts/themes/index.d.ts.map +1 -0
- package/dist/esm/cell-renderers/action.renderer.js +39 -0
- package/dist/esm/cell-renderers/index.js +1 -0
- package/dist/esm/grid-components.js +29 -0
- package/dist/esm/grid-tabulator.js +53 -0
- package/dist/esm/grid-tabulator.styles.js +21 -0
- package/dist/esm/grid-tabulator.template.js +2 -0
- package/dist/esm/index.js +8 -0
- package/dist/esm/style/colors.js +16 -0
- package/dist/esm/style/index.js +2 -0
- package/dist/esm/style/tokens.js +21 -0
- package/dist/esm/themes/genesis-rapid/theme-genesis-rapid-css.js +1326 -0
- package/dist/esm/themes/genesis-rapid/theme-genesis-rapid.js +89 -0
- package/dist/esm/themes/index.js +1 -0
- package/genx.config.ts +11 -0
- package/license.txt +46 -0
- package/package.json +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Genesis Rapid Grid Tabulator
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
To enable this module in your application, follow the steps below.
|
|
7
|
+
|
|
8
|
+
1. Add `@genesislcap/rapid-grid-tabulator` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
9
|
+
|
|
10
|
+
```json
|
|
11
|
+
{
|
|
12
|
+
...
|
|
13
|
+
"dependencies": {
|
|
14
|
+
...
|
|
15
|
+
"@genesislcap/rapid-grid-tabulator": "latest"
|
|
16
|
+
...
|
|
17
|
+
},
|
|
18
|
+
...
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## [API Docs](./docs/api/index.md)
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
|
27
|
+
|
|
28
|
+
### Licensed components
|
|
29
|
+
Genesis low-code platform
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
/** Globs to analyze */
|
|
3
|
+
globs: ['src/**/*.ts'],
|
|
4
|
+
/** Directory to output CEM to */
|
|
5
|
+
outdir: './dist',
|
|
6
|
+
/** Run in dev mode, provides extra logging */
|
|
7
|
+
dev: false,
|
|
8
|
+
/** Enable special handling for FastElement */
|
|
9
|
+
fast: true,
|
|
10
|
+
/** Include third party custom elements manifests */
|
|
11
|
+
dependencies: true,
|
|
12
|
+
/** Output CEM path to `package.json`, defaults to true */
|
|
13
|
+
packagejson: true,
|
|
14
|
+
};
|