Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2ca66b1
Update dependencies and related files
kullJul Aug 7, 2024
2eae7f1
Add eslint, update readme, add github workflows
kullJul Aug 7, 2024
0ea60c9
Split d3 packages
kullJul Aug 7, 2024
ebd0bfa
Migrate to formatting model
kullJul Sep 30, 2024
3aa4e2c
Fix tests
kullJul Oct 1, 2024
b4a4543
Fix subtitle descriptor
kullJul Oct 1, 2024
44d8bc6
add Short and Long description to en-US resources
Demonkratiy Oct 1, 2024
2639607
Merge pull request #1 from Demonkratiy/resDescriptions
kullJul Oct 1, 2024
93c0f53
Refactoring
kullJul Oct 16, 2024
bf5aa26
Update eslint
kullJul Oct 17, 2024
26033a0
Fix eslint errors
kullJul Oct 17, 2024
b27994e
Remove unused dependencies
kullJul Oct 17, 2024
bd1bf61
Add bold, italic and underline settings
kullJul Oct 18, 2024
928802f
Remove phantom js
kullJul Oct 18, 2024
6aeaa1d
Add displayKey for font family
kullJul Oct 18, 2024
3d18744
Rename style prop
kullJul Dec 2, 2024
a84eb0a
Move show property from the base descriptor
kullJul Dec 2, 2024
65fd633
Added settings parsing to containers
kullJul Dec 4, 2024
d5d5d75
Add high contrast mode
kullJul Dec 4, 2024
243fb6f
Fix localization keys
kullJul Dec 5, 2024
42d7c83
Fix npm vulnerabilities
kullJul Dec 5, 2024
db59a02
Update changelog
kullJul Dec 5, 2024
360727d
Remove getMin getMax from axisDescriptor
kullJul Dec 5, 2024
fbdb4a6
Remove setFormat and getFormat
kullJul Dec 5, 2024
03ca8bf
Fix tests
kullJul Dec 5, 2024
02001b3
Remove redundant hcm logic
kullJul Dec 20, 2024
cb812fc
Fix lint error
kullJul Dec 20, 2024
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
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build

on:
push:
branches: [ main, dev, certification]
pull_request:
branches: [ main, dev, certification ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm audit
continue-on-error: true
- run: npm outdated
continue-on-error: true
- run: npm ci
- run: npm run eslint --if-present
- run: npm run lint --if-present
- run: npm run package
- run: npm test
env:
CI: true
49 changes: 49 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: "CodeQL"

on:
push:
branches: [main, dev, certification]
pull_request:
branches: [main, dev, certification]
schedule:
- cron: '0 0 * * 3'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: ['typescript']

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18.x

- name: Install Dependencies
run: npm ci

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.0.0.0
* API 5.11.0
* Migrate to formatting model
* Add high contrast mode
* Add localization
* Update packages

## 2.3.1
* FIX (Regression): Hovering on sparklines did not cause changing of main grap for preview

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi KPI
[![Build Status](https://dev.azure.com/customvisuals/public/_apis/build/status/Microsoft.powerbi-visuals-multikpi)](https://dev.azure.com/customvisuals/public/_build/latest?definitionId=10)
[![Coverage Status](https://coveralls.io/repos/github/microsoft/PowerBI-visuals-MultiKPI/badge.svg?branch=master)](https://coveralls.io/github/microsoft/PowerBI-visuals-MultiKPI?branch=master)
[![Build Status](https://github.com/microsoft/powerbi-visuals-multikpi/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/microsoft/powerbi-visuals-multikpi/actions/workflows/build.yml)

> A powerful Multi KPI visualization of a key KPI along with multiple sparklines of supporting data

![stacked area chart screenshot](./assets/screenshot.png)
Expand Down
33 changes: 0 additions & 33 deletions azure-pipelines.yml

This file was deleted.

Loading