@cdmx/wappler_ag_grid 0.0.1
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/.github/workflows/npm-publish.yml +35 -0
- package/README.md +9 -0
- package/ag-grid-community.min.js +8 -0
- package/ag-theme-alpine.css +6 -0
- package/app_connect/components.hjson +512 -0
- package/dmx-ag-grid.js +507 -0
- package/package.json +20 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
name: Node.js Package
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
paths:
|
|
9
|
+
- 'package.json'
|
|
10
|
+
release:
|
|
11
|
+
types: [created]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v3
|
|
18
|
+
- uses: actions/setup-node@v3
|
|
19
|
+
with:
|
|
20
|
+
node-version: 18
|
|
21
|
+
- run: npm ci
|
|
22
|
+
|
|
23
|
+
publish-npm:
|
|
24
|
+
needs: build
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v3
|
|
28
|
+
- uses: actions/setup-node@v3
|
|
29
|
+
with:
|
|
30
|
+
node-version: 18
|
|
31
|
+
registry-url: https://registry.npmjs.org/
|
|
32
|
+
- run: npm ci
|
|
33
|
+
- run: npm publish --access public
|
|
34
|
+
env:
|
|
35
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# wappler_ag_grid
|
|
2
|
+
This Custom Module provides the below features:
|
|
3
|
+
1. Generates AG-Grid given a Data Source
|
|
4
|
+
2. Automatically sets the Filter types and Date formats
|
|
5
|
+
3. Provides Grid Options Applicable for all fields
|
|
6
|
+
4. Dynamic Binding available for Custom Column Definitions
|
|
7
|
+
5. Export to CSV button
|
|
8
|
+
6. Sticky header options
|
|
9
|
+
7. Custom Styles (Column Data)
|