Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
117 changes: 117 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<!--

@license Apache-2.0

Copyright (c) 2026 The Stdlib Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

# legendTypes

> List of supported Vega legend types.

<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var legendTypes = require( '@stdlib/plot/vega/legend/types' );
```

#### legendTypes()

Returns a list of legend types.

```javascript
var out = legendTypes();
// returns [ 'discrete', 'gradient', 'symbol' ]
```

</section>

<!-- /.usage -->

<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

</section>

<!-- /.notes -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var contains = require( '@stdlib/array/base/assert/contains' ).factory;
var legendTypes = require( '@stdlib/plot/vega/legend/types' );

var isLegendType = contains( legendTypes() );

var bool = isLegendType( 'symbol' );
// returns true

bool = isLegendType( 'gradient' );
// returns true

bool = isLegendType( 'beep' );
// returns false

bool = isLegendType( 'boop' );
// returns false
```

</section>

<!-- /.examples -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

</section>

<!-- /.references -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var isStringArray = require( '@stdlib/assert/is-string-array' ).primitives;
var pkg = require( './../package.json' ).name;
var legendTypes = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var out;
var i;

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = legendTypes();
if ( out.length < 2 ) {
b.fail( 'should return an array' );
}
}
b.toc();
if ( !isStringArray( out ) ) {
b.fail( 'should return an array of strings' );
}
b.pass( 'benchmark finished' );
b.end();
});
17 changes: 17 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

{{alias}}()
Returns a list of legend types.

Returns
-------
out: Array<string>
List of legend types.

Examples
--------
> var out = {{alias}}()
[ 'discrete', 'gradient', 'symbol' ]

See Also
--------

Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// TypeScript Version: 4.1

/**
* Returns a list of legend types.
*
* @returns list of legend types
*
* @example
* var list = legendTypes();
* // returns [ 'discrete', 'gradient', 'symbol' ]
*/
declare function legendTypes(): Array<string>;


// EXPORTS //

export = legendTypes;
32 changes: 32 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/docs/types/test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import legendTypes = require( './index' );


// TESTS //

// The function returns an array of strings...
{
legendTypes(); // $ExpectType string[]
}

// The compiler throws an error if the function is provided any arguments...
{
legendTypes( 9 ); // $ExpectError
}
40 changes: 40 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/examples/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

var contains = require( '@stdlib/array/base/assert/contains' ).factory;
var legendTypes = require( './../lib' );

var isLegendType = contains( legendTypes() );

var bool = isLegendType( 'symbol' );
console.log( bool );
// => true

bool = isLegendType( 'gradient' );
console.log( bool );
// => true

bool = isLegendType( 'beep' );
console.log( bool );
// => false

bool = isLegendType( 'boop' );
console.log( bool );
// => false
5 changes: 5 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/lib/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[
"discrete",
"gradient",
"symbol"
]
40 changes: 40 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

/**
* Return a list of legend types.
*
* @module @stdlib/plot/vega/legend/types
*
* @example
* var legendTypes = require( '@stdlib/plot/vega/legend/types' );
*
* var out = legendTypes();
* // returns [ 'discrete', 'gradient', 'symbol' ]
*/

// MODULES //

var main = require( './main.js' );


// EXPORTS //

module.exports = main;
44 changes: 44 additions & 0 deletions lib/node_modules/@stdlib/plot/vega/legend/types/lib/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var DATA = require( './data.json' );


// MAIN //

/**
* Returns a list of legend types.
*
* @returns {StringArray} list of legend types
*
* @example
* var out = legendTypes();
* // returns [ 'discrete', 'gradient', 'symbol' ]
*/
function legendTypes() {
return DATA.slice();
}


// EXPORTS //

module.exports = legendTypes;
Loading