Files
blockly/core/utils/svg.ts
dependabot[bot] 2546b01d70 chore(deps): Bump prettier from 2.8.8 to 3.0.0 (#7322)
* chore(deps): Bump prettier from 2.8.8 to 3.0.0

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: Reformat using Prettier v3.0 defaults

The main change is to add trailing commas to the last line of
block-formatted function calls.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Christopher Allen <cpcallen+git@google.com>
2023-07-25 14:56:10 +00:00

86 lines
2.4 KiB
TypeScript

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Defines the Svg class. Its constants enumerate
* all SVG tag names used by Blockly.
*
* @class
*/
import * as goog from '../../closure/goog/goog.js';
goog.declareModuleId('Blockly.utils.Svg');
/**
* A name with the type of the SVG element stored in the generic.
*/
export class Svg<_T> {
/** @internal */
static ANIMATE = new Svg<SVGAnimateElement>('animate');
/** @internal */
static CIRCLE = new Svg<SVGCircleElement>('circle');
/** @internal */
static CLIPPATH = new Svg<SVGClipPathElement>('clipPath');
/** @internal */
static DEFS = new Svg<SVGDefsElement>('defs');
/** @internal */
static FECOMPOSITE = new Svg<SVGFECompositeElement>('feComposite');
/** @internal */
static FECOMPONENTTRANSFER = new Svg<SVGFEComponentTransferElement>(
'feComponentTransfer',
);
/** @internal */
static FEFLOOD = new Svg<SVGFEFloodElement>('feFlood');
/** @internal */
static FEFUNCA = new Svg<SVGFEFuncAElement>('feFuncA');
/** @internal */
static FEGAUSSIANBLUR = new Svg<SVGFEGaussianBlurElement>('feGaussianBlur');
/** @internal */
static FEPOINTLIGHT = new Svg<SVGFEPointLightElement>('fePointLight');
/** @internal */
static FESPECULARLIGHTING = new Svg<SVGFESpecularLightingElement>(
'feSpecularLighting',
);
/** @internal */
static FILTER = new Svg<SVGFilterElement>('filter');
/** @internal */
static FOREIGNOBJECT = new Svg<SVGForeignObjectElement>('foreignObject');
/** @internal */
static G = new Svg<SVGGElement>('g');
/** @internal */
static IMAGE = new Svg<SVGImageElement>('image');
/** @internal */
static LINE = new Svg<SVGLineElement>('line');
/** @internal */
static PATH = new Svg<SVGPathElement>('path');
/** @internal */
static PATTERN = new Svg<SVGPatternElement>('pattern');
/** @internal */
static POLYGON = new Svg<SVGPolygonElement>('polygon');
/** @internal */
static RECT = new Svg<SVGRectElement>('rect');
/** @internal */
static SVG = new Svg<SVGSVGElement>('svg');
/** @internal */
static TEXT = new Svg<SVGTextElement>('text');
/** @internal */
static TSPAN = new Svg<SVGTSpanElement>('tspan');
/**
* @param tagName The SVG element tag name.
* @internal
*/
constructor(private readonly tagName: string) {}
/**
* Returns the SVG element tag name.
*
* @returns The name.
*/
toString(): string {
return this.tagName;
}
}