Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update for the 4.30 release #40

Merged
merged 25 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ea8a428
chore: update for the 4.30 Release (#38)
sagewall Jun 17, 2024
9bcf06a
chore: improve comment
sagewall Jun 18, 2024
c089f7c
chore(deps): update
sagewall Jun 18, 2024
54c9ed1
feat: add rollup-plugin-visualizer
sagewall Jun 18, 2024
8e5c0f2
fix: clicking on thumbnail image doesn't change symbol
sagewall Jun 18, 2024
9ea88db
fix: old symbols remaining in list on update
sagewall Jun 20, 2024
86b3f8b
chore(deps): update
sagewall Jun 20, 2024
7c4a02e
fix(PlygonSymbol3D): remove deprecated symbol layers
sagewall Jun 20, 2024
b3b5662
fix: remove deprecated label attribute from calcite tooltips
sagewall Jun 20, 2024
9ecc343
fix(LineSymbol3D): allow setting the marker to null
sagewall Jun 20, 2024
3d954c9
fix: Use `React.JSX` instead of the global `JSX` namespace
sagewall Jun 20, 2024
4231245
chore: use calcite navigation
sagewall Jun 20, 2024
791bb2e
feat: add an alert when a snippet is copied to the clipboard
sagewall Jun 20, 2024
3bcab8e
fix: deprecated onCalciteBlockToggle
sagewall Jun 20, 2024
9d02dd1
fix: lineStyleMarker3D getting reset
sagewall Jun 20, 2024
bc69329
fix: symbol layer forms not updating on delete
sagewall Jun 21, 2024
0ef6de3
feat: add zoom to graphics action
sagewall Jun 21, 2024
635f97d
chore(deps): update dev dependencies
sagewall Jun 21, 2024
86b7273
chore: adjust chunkSizeWarningLimit
sagewall Jun 21, 2024
351cadc
chore(deps): update @arcgis/core to 4.30
sagewall Jun 21, 2024
c2348c5
feat: use map components
sagewall Jun 24, 2024
7f88df1
fix: set zoom level on scene
sagewall Jun 24, 2024
73e1567
chore: update geometry types for web style symbols
sagewall Jun 25, 2024
fd02b29
chore: update clipboard security policy
sagewall Jun 25, 2024
e6cec97
fix: revert "feat: use map components"
sagewall Jun 25, 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
29 changes: 0 additions & 29 deletions .eslintrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# rollup-plugin-visualizer
analyze.html
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
package-lock.json
package-lock.json
analyze.html
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginReactConfig from "eslint-plugin-react/configs/recommended.js";

export default [
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"] },
{ languageOptions: { parserOptions: { ecmaFeatures: { jsx: true } } } },
{ languageOptions: { globals: globals.browser } },
{ settings: { react: { version: "detect" } } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
pluginReactConfig
];
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
Loading