Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ba430e9
feat(gauge): register dataFilter for gauge chart
rekilina Feb 26, 2024
bfd3b03
feat(legend): make an exception for gauge chart in LegendView
rekilina Feb 26, 2024
a6bc571
feat(gauge): add LegendVisualProvider to the GaugeSeriesModel class
rekilina Feb 26, 2024
a450d1e
fix(legend): remove exception for gauge chart in LegendView
rekilina Feb 26, 2024
0005229
Merge pull request #2 from TechAudit-BI/feat/gauge-chart/add-legend
Always-prog Feb 28, 2024
8c78806
fix(LegendView): fix layout width and position
rekilina Mar 27, 2024
72e2387
fix(ScrollableLegendView): added margins
rekilina Mar 27, 2024
1370716
Merge pull request #4 from TechAudit-BI/fix/legend/width
Always-prog Mar 27, 2024
a7a863b
Create npm-publish-github-packages.yml
Always-prog Apr 3, 2024
f500c92
fix(pie): fixed half pie slices propotions on legend items toggle #37…
lmmelstron Sep 10, 2024
e56872e
fix(pie) label hover visibility
lmmelstron Sep 11, 2024
45c9fa7
feat(pie): title element #37624816 (#7)
lmmelstron Sep 11, 2024
b25a4aa
Merge branch 'fix/pie/label-hover-visibility' into TechAudit-5.4.1
rekilina Sep 11, 2024
cc80fc9
release
rekilina Sep 11, 2024
c30b272
feat(TimeAxis): change Time axis tick interval calculation (#9)
shulepovalidiya Nov 2, 2024
4c1743c
fix(xAxis): minor ticks depending on interval #43377043 (#10)
aspectie Feb 14, 2025
bc6757f
fix(time): bar bandWidth with inversed time axis #20068
Ovilia Aug 12, 2024
d4f75fc
release
aspectie Feb 18, 2025
563a600
Merge pull request #11 from TechAudit-BI/fix/axis/time-inverse
lmmelstron Feb 18, 2025
e3f4740
fix(tooltip): added container prop of tooltip component for placement
malmakova-na Mar 10, 2025
583be6b
release
malmakova-na Mar 10, 2025
abe05b9
fix indent
malmakova-na Mar 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test

publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Loading