raain-ui 2.3.28 → 2.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -8
  2. package/package.json +70 -70
package/CHANGELOG.md CHANGED
@@ -7,21 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Changed
11
+
12
+ - Raain 3.1.x => 3.2.x
13
+
10
14
  ## [2.3.28] - 2026-02-28
11
15
 
12
16
  ### Added
13
17
 
14
- - [RAD-178] ModelPerformanceElement chart for KPE indicator visualization
15
- - [RAD-178] ElementsFactory extended with model performance chart builder
18
+ - ModelPerformanceElement chart for KPE indicator visualization
19
+ - ElementsFactory extended with model performance chart builder
16
20
 
17
21
  ## [2.3.27] - 2026-01-22
18
22
 
19
- ## [2.3.25] - 2025-12-08
20
-
21
- ## [2.3.24] - 2025-10-28
22
-
23
- ## [2.3.23] - 2025-10-28
24
-
25
23
  ### Added
26
24
 
27
25
  - Add `RaainDivIcon` to show markers in map: it allows rotation and more complex design manipulation
package/package.json CHANGED
@@ -1,72 +1,72 @@
1
1
  {
2
- "name": "raain-ui",
3
- "version": "2.3.28",
4
- "author": "contact@raain.io",
5
- "homepage": "https://github.com/raainio/raain-ui",
6
- "description": "raain.io ui layers",
7
- "keywords": [
8
- "raain.io",
9
- "pixi"
10
- ],
11
- "private": false,
12
- "license": "MIT",
13
- "main": "./index.js",
14
- "types": "./index.d.ts",
15
- "scripts": {
16
- "bp:_clean": "rm -rf package-lock.json node_modules .gen .logs .nyc_output .logs .output.txt .coverage .angular dist disti www && npm i",
17
- "bp:bump": "OLD_VERSION=\"v$(node -e \"console.log(require('./package.json').version)\")\" && VERSION=\"$(npm version patch --no-git-tag-version)\" && echo \"export const bpInfo = {version: '$VERSION'};\" > ./src/bpInfo.ts && git tag $OLD_VERSION && git checkout -b $VERSION && git push origin refs/heads/$VERSION:$VERSION --tags && git push --set-upstream origin $VERSION",
18
- "bp:update-changelog-dates": "node ./scripts/bp/update-changelog-date.cjs",
19
- "bp:style:fix": "eslint 'src/**/*.ts' 'specs/**/*.ts' --fix --no-error-on-unmatched-pattern && eslint 'src/**/*.js' 'specs/**/*.js' --fix --no-error-on-unmatched-pattern && prettier --write \"src/**/*.ts\" --no-error-on-unmatched-pattern && prettier --write \"src/**/*.js\" --no-error-on-unmatched-pattern",
20
- "bp:use-local-deps": "node ./scripts/bp/switch-dependencies.cjs local && npm run bp:_clean",
21
- "bp:use-remote-deps": "node ./scripts/bp/switch-dependencies.cjs remote && npm run bp:_clean",
22
- "bp:branch:push": "BRANCH=$(git rev-parse --abbrev-ref HEAD) && git add . && (git diff-index --quiet HEAD && echo 'No changes to commit' || (git commit -m \"$BRANCH pushed\" && git push))",
23
- "bp:branch:squash": "node ./scripts/bp/squash-commits.cjs",
24
- "bp:branch:check-before-release": "npm run bp:use-remote-deps && node ./scripts/bp/check-before-release.cjs",
25
- "bp:branch:last-push:main": "npm run bp:branch:push && npm run bp:branch:squash && BRANCH=$(git rev-parse --abbrev-ref HEAD) && git checkout main && git merge $BRANCH && git push",
26
- "bp:main:package": "git checkout package && git merge main -m \"$(git log -1 --pretty=%B main)\" && git push --set-upstream origin package && git checkout main",
27
- "test": "./node_modules/.bin/_mocha --require ./tools/register.js 'specs/**/**.spec.ts'",
28
- "build": "npm run build-dist",
29
- "build-dist": "rm -rf dist/ && tsc --project tsconfig.json && cp *.md dist/ && cp package.json dist/ && cp -r src/data dist/"
30
- },
31
- "dependencies": {
32
- "chart.js": "~4.5.1",
33
- "chartjs-chart-geo": "~4.3.6",
34
- "chartjs-plugin-dragdata": "~2.3.1",
35
- "geolib": "~3.3.4",
36
- "leaflet": "~1.9.4",
37
- "pixi.js": "~5.3.12",
38
- "raain-model": "~3.1.27",
39
- "satellite-view": "~2.1.2",
40
- "spinning-ball": "~0.5.0",
41
- "tile-setter": "~0.1.12",
42
- "yawgl": "~0.4.3"
43
- },
44
- "devDependencies": {
45
- "@eslint/eslintrc": "~3.3.1",
46
- "@eslint/js": "~9.29.0",
47
- "@testdeck/mocha": "~0.3.3",
48
- "@types/chai": "~5.2.1",
49
- "@types/jsdom": "~21.1.7",
50
- "@types/leaflet": "~1.9.3",
51
- "@types/mocha": "~10.0.1",
52
- "@types/node": "~12.11.1",
53
- "@types/sinon": "~17.0.4",
54
- "@typescript-eslint/eslint-plugin": "~8.34.0",
55
- "@typescript-eslint/parser": "~8.34.0",
56
- "assert": "~2.0.0",
57
- "chai": "~6.2.0",
58
- "chai-spies": "~1.1.0",
59
- "eslint": "~9.37.0",
60
- "eslint-config-prettier": "~10.1.8",
61
- "eslint-plugin-import": "~2.32.0",
62
- "eslint-plugin-prettier": "~5.5.4",
63
- "jsdom": "~26.1.0",
64
- "mocha": "~11.7.4",
65
- "mock-browser": "~0.92.14",
66
- "prettier": "~3.6.2",
67
- "sinon": "~21.0.0",
68
- "ts-mockito": "~2.6.1",
69
- "ts-node": "~8.3.0",
70
- "typescript": "~4.8.4"
71
- }
2
+ "name": "raain-ui",
3
+ "version": "2.4.1",
4
+ "author": "contact@raain.io",
5
+ "homepage": "https://github.com/raainio/raain-ui",
6
+ "description": "raain.io ui layers",
7
+ "keywords": [
8
+ "raain.io",
9
+ "pixi"
10
+ ],
11
+ "private": false,
12
+ "license": "MIT",
13
+ "main": "./index.js",
14
+ "types": "./index.d.ts",
15
+ "scripts": {
16
+ "bp:_clean": "rm -rf package-lock.json node_modules .gen .logs .nyc_output .logs .output.txt .coverage .angular dist disti www && npm i",
17
+ "bp:bump": "OLD_VERSION=\"v$(node -e \"console.log(require('./package.json').version)\")\" && VERSION=\"$(npm version patch --no-git-tag-version)\" && echo \"export const bpInfo = {version: '$VERSION'};\" > ./src/bpInfo.ts && git tag $OLD_VERSION && git checkout -b $VERSION && git push origin refs/heads/$VERSION:$VERSION --tags && git push --set-upstream origin $VERSION",
18
+ "bp:update-changelog-dates": "node ./scripts/bp/update-changelog-date.cjs",
19
+ "bp:style:fix": "eslint 'src/**/*.ts' 'specs/**/*.ts' --fix --no-error-on-unmatched-pattern && eslint 'src/**/*.js' 'specs/**/*.js' --fix --no-error-on-unmatched-pattern && prettier --write \"src/**/*.ts\" --no-error-on-unmatched-pattern && prettier --write \"src/**/*.js\" --no-error-on-unmatched-pattern",
20
+ "bp:use-local-deps": "node ./scripts/bp/switch-dependencies.cjs local && npm run bp:_clean",
21
+ "bp:use-remote-deps": "node ./scripts/bp/switch-dependencies.cjs remote && npm run bp:_clean",
22
+ "bp:branch:push": "BRANCH=$(git rev-parse --abbrev-ref HEAD) && git add . && (git diff-index --quiet HEAD && echo 'No changes to commit' || (git commit -m \"$BRANCH pushed\" && git push))",
23
+ "bp:branch:squash": "node ./scripts/bp/squash-commits.cjs",
24
+ "bp:branch:check-before-release": "npm run bp:use-remote-deps && node ./scripts/bp/check-before-release.cjs",
25
+ "bp:branch:last-push:main": "npm run bp:branch:push && npm run bp:branch:squash && BRANCH=$(git rev-parse --abbrev-ref HEAD) && git checkout main && git merge $BRANCH && git push",
26
+ "bp:main:package": "git checkout package && git merge main -m \"$(git log -1 --pretty=%B main)\" && git push --set-upstream origin package && git checkout main",
27
+ "test": "./node_modules/.bin/_mocha --require ./tools/register.js 'specs/**/**.spec.ts'",
28
+ "build": "npm run build-dist",
29
+ "build-dist": "rm -rf dist/ && tsc --project tsconfig.json && cp *.md dist/ && cp package.json dist/ && cp -r src/data dist/"
30
+ },
31
+ "dependencies": {
32
+ "chart.js": "~4.5.1",
33
+ "chartjs-chart-geo": "~4.3.6",
34
+ "chartjs-plugin-dragdata": "~2.3.1",
35
+ "geolib": "~3.3.4",
36
+ "leaflet": "~1.9.4",
37
+ "pixi.js": "~5.3.12",
38
+ "raain-model": "~3.2.1",
39
+ "satellite-view": "~2.1.2",
40
+ "spinning-ball": "~0.5.0",
41
+ "tile-setter": "~0.1.12",
42
+ "yawgl": "~0.4.3"
43
+ },
44
+ "devDependencies": {
45
+ "@eslint/eslintrc": "~3.3.1",
46
+ "@eslint/js": "~9.29.0",
47
+ "@testdeck/mocha": "~0.3.3",
48
+ "@types/chai": "~5.2.1",
49
+ "@types/jsdom": "~21.1.7",
50
+ "@types/leaflet": "~1.9.3",
51
+ "@types/mocha": "~10.0.1",
52
+ "@types/node": "~12.11.1",
53
+ "@types/sinon": "~17.0.4",
54
+ "@typescript-eslint/eslint-plugin": "~8.34.0",
55
+ "@typescript-eslint/parser": "~8.34.0",
56
+ "assert": "~2.0.0",
57
+ "chai": "~6.2.0",
58
+ "chai-spies": "~1.1.0",
59
+ "eslint": "~9.37.0",
60
+ "eslint-config-prettier": "~10.1.8",
61
+ "eslint-plugin-import": "~2.32.0",
62
+ "eslint-plugin-prettier": "~5.5.4",
63
+ "jsdom": "~26.1.0",
64
+ "mocha": "~11.7.4",
65
+ "mock-browser": "~0.92.14",
66
+ "prettier": "~3.6.2",
67
+ "sinon": "~21.0.0",
68
+ "ts-mockito": "~2.6.1",
69
+ "ts-node": "~8.3.0",
70
+ "typescript": "~4.8.4"
71
+ }
72
72
  }