New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@arcgis/charts-spec

Package Overview
Dependencies
Maintainers
0
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcgis/charts-spec - npm Package Compare versions

Comparing version 4.31.0-next.68 to 4.31.0-next.69

40

dist/ts-schema/chart-object-literals.js

@@ -29,3 +29,3 @@ import { RESTStatisticType } from "./rest-js-object-literals";

Buffer: "buffer",
SizePolicy: "sizeScale"
SizePolicy: "sizeScale",
};

@@ -35,7 +35,7 @@ export const WebChartDataTransformations = {

Log: "logarithmic",
Sqrt: "squareRoot"
Sqrt: "squareRoot",
};
export const WebChartColoringPatterns = {
Single: "singleColor", // fixed color value as indicated in markerSymbol
Match: "colorMatch" // apply the color from the layer's renderer symbology
Match: "colorMatch", // apply the color from the layer's renderer symbology
};

@@ -46,3 +46,3 @@ export const WebChartLegendPositions = {

Top: "top",
Bottom: "bottom"
Bottom: "bottom",
};

@@ -52,19 +52,19 @@ export const WebChartStackedKinds = {

Stacked: "stacked",
Stacked100: "stacked100"
Stacked100: "stacked100",
};
export const WebChartBoxPlotMultipleSeriesKinds = {
Side: "sideBySide",
MeanLines: "meanLines"
MeanLines: "meanLines",
};
export const WebChartProbabilityPlotKinds = {
General: "qqPlot",
Normalized: "normalQQPlot"
Normalized: "normalQQPlot",
};
export const WebChartSortOrderKinds = {
Ascending: "ASC",
Descending: "DESC"
Descending: "DESC",
};
export const StatisticsDefaults = {
statisticType: RESTStatisticType.Count,
sortingOrder: WebChartSortOrderKinds.Ascending
sortingOrder: WebChartSortOrderKinds.Ascending,
};

@@ -77,3 +77,3 @@ /**

MonotoneX: "monotoneX",
MonotoneY: "monotoneY"
MonotoneY: "monotoneY",
};

@@ -90,3 +90,3 @@ /**

Months: "esriTimeUnitsMonths",
Years: "esriTimeUnitsYears"
Years: "esriTimeUnitsYears",
};

@@ -99,3 +99,3 @@ /**

Zero: "zero",
Interpolate: "interpolate"
Interpolate: "interpolate",
};

@@ -107,3 +107,3 @@ /**

Start: "equalIntervalsFromStartTime",
End: "equalIntervalsFromEndTime"
End: "equalIntervalsFromEndTime",
};

@@ -117,3 +117,3 @@ /**

Stagger: "stagger",
Wrap: "wrap"
Wrap: "wrap",
};

@@ -124,3 +124,3 @@ export const WebChartVersionStatus = {

Older: "older",
Unrecognized: "unrecognized"
Unrecognized: "unrecognized",
};

@@ -133,3 +133,3 @@ /**

Date: "date",
Category: "category"
Category: "category",
};

@@ -141,3 +141,3 @@ /**

FeatureGauge: "featureGauge",
StatisticGauge: "statisticGauge"
StatisticGauge: "statisticGauge",
};

@@ -149,3 +149,3 @@ /**

Linear: "linear",
Logarithmic: "logarithmic"
Logarithmic: "logarithmic",
};

@@ -158,3 +158,3 @@ /**

Circular: "circular",
Horizontal: "horizontal"
Horizontal: "horizontal",
};

@@ -168,3 +168,3 @@ /**

Median: "arcgis-charts-median",
Category: "arcgis-charts-category"
Category: "arcgis-charts-category",
};
/**
* Version of the current specification.
*/
export const WebChartCurrentVersion = "16.1.0";
export const WebChartCurrentVersion = "16.1.1";

@@ -7,3 +7,3 @@ import type { ISimpleLineSymbol, ISimpleFillSymbol, ISimpleMarkerSymbol, ITextSymbol, Color, IExtent, IEnvelope, IPoint, IPolygon, IPolygonWithCurves, IPolyline, IDrawingInfo, IStatisticDefinition, IFeatureLayer } from "./rest-js-types";

*/
export declare const WebChartCurrentVersion: "16.1.0";
export declare const WebChartCurrentVersion: "16.1.1";
/**

@@ -529,4 +529,9 @@ * Stores information regarding a numeric conversion

/**
* Represents the sorting order of the output result. More info present in [JSAPI docs](https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#orderByFields). The format of any entry in this array is `field_name sorting_order`. When `sorting_order` is not defined, it is assumed to be ascending
* @examples ["STATE_NAME DESC", "CITY_NAME ASC", "CITY_NAME"]
* Represents the sorting order of the output result. More info present in [JSAPI docs](https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#orderByFields).
* The format of any entry in this array is `field_name sorting_order`. When `sorting_order` is not defined, it is assumed to be ascending.
* @example ["STATE_NAME DESC", "CITY_NAME ASC", "CITY_NAME"]
*
* It's recommended to use the `orderByFields` property of the chart's `orderOptions` object instead of this one.
* If both are used, the `orderByFields` property of the chart's `orderOptions` object will take precedence.
*
*/

@@ -1296,6 +1301,9 @@ orderByFields?: string[];

/**
* The orderByFields to be sent with the query when retrieving data for the chart.
* The orderByFields to be sent with the query when retrieving data for the chart. It represents the desired sorting order of the output result from the server.
*
* Use this property for unique cases such as to order data by multiple fields.
* In case both this property and its sibling `data` object are provided, the `data` property will be used.
* More info present in [JSAPI docs](https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#orderByFields).
* The format of any entry in this array is `field_name sorting_order`. When `sorting_order` is not defined, it is assumed to be ascending
* @example ["STATE_NAME DESC", "CITY_NAME ASC", "CITY_NAME"]
*
* In case both this property and its sibling `data` object are provided, the order of the chart elements are settled by the order instruction in the `data` property.
*/

@@ -1302,0 +1310,0 @@ orderByFields?: string[];

{
"name": "@arcgis/charts-spec",
"version": "4.31.0-next.68",
"description": "Provides ArcGIS Charts specifications for representing/authoring and sharing charts across the ArcGIS Platform.",
"keywords": [
"arcgis",
"charts",
"specification"
],
"sideEffects": false,
"main": "dist/ts-schema/index.js",
"module": "dist/ts-schema/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"version": "4.31.0-next.69",
"publishConfig": {

@@ -21,22 +8,34 @@ "registry": "https://registry.npmjs.org/",

},
"description": "Provides ArcGIS Charts specifications for representing/authoring and sharing charts across the ArcGIS Platform.",
"license": "SEE LICENSE IN LICENSE.md",
"repository": "https://devtopia.esri.com/WebGIS/arcgis-charts.git",
"main": "dist/ts-schema/index.js",
"module": "dist/ts-schema/index.js",
"scripts": {
"prebuild": "rimraf dist md-schema",
"build:ts": "yarn g:tsc --pretty --sourceMap",
"build": "yarn build:ts && yarn build:json",
"build:json": "node scripts/ts-json-schema.js",
"build": "yarn build:ts && yarn build:json",
"build:production": "yarn prebuild && tsc --pretty && yarn build:json",
"start:ts": "yarn g:tsc --pretty --sourceMap --watch",
"start:json": "node scripts/ts-json-schema.js --watch",
"start:server": "node server.config.js",
"start": "concurrently 'yarn:start:*' -k",
"build:ts": "yarn g:tsc --pretty --sourceMap",
"docs": "typedoc --out docs",
"lint": "yarn g:eslint '**/*.*' --ignore-path ../../.eslintignore --fix --cache --config ../../.eslintrc.json",
"prebuild": "rimraf dist md-schema",
"precommit": "lint-staged --config=../../.lintstagedrc.json",
"predocs": "rimraf docs",
"docs": "typedoc --out docs",
"prepublicdocs": "rimraf public-docs",
"pretty": "yarn g:pretty --write './**/*.*' --ignore-path ../../.prettierignore",
"publicdocs": "typedoc --excludePrivate --excludeProtected --out public-docs",
"lint": "yarn g:eslint '**/*.*' --ignore-path ../../.eslintignore --fix --cache --config ../../.eslintrc.json",
"pretty": "yarn g:pretty --write './**/*.*' --ignore-path ../../.prettierignore",
"precommit": "lint-staged --config=../../.lintstagedrc.json",
"publish": "node scripts/publish-to-git-wiki.js"
"publish": "node scripts/publish-to-git-wiki.js",
"start": "concurrently 'yarn:start:*' -k",
"start:json": "node scripts/ts-json-schema.js --watch",
"start:server": "node server.config.js",
"start:ts": "yarn g:tsc --pretty --sourceMap --watch"
},
"files": [
"dist/"
],
"keywords": [
"arcgis",
"charts",
"specification"
],
"devDependencies": {

@@ -49,3 +48,4 @@ "@rollup/pluginutils": "^4.1.2",

},
"repository": "https://devtopia.esri.com/WebGIS/arcgis-charts.git"
"types": "dist/types/index.d.ts",
"sideEffects": false
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc